@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fefefe;
    font-weight: 400;
    letter-spacing: -0.01em;
}

nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    color: #2c2c2c;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 1px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

nav div a {
    color: #2c2c2c;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

nav div a:hover {
    color: #d4a574;
}

.cart-notification {
    position: absolute;
    top: 100%;
    right: 2rem;
    background: #2c2c2c;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1001;
}

.cart-notification.show {
    transform: translateY(10px);
    opacity: 1;
}

.hero {
    background: linear-gradient(135deg, #f8f6f3 0%, #f1ede7 100%);
    padding: 140px 2rem 100px;
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.1rem;
    color: #6b6b6b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: #2c2c2c;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2c2c2c;
    padding: 16px 32px;
    text-decoration: none;
    border: 1px solid #d4a574;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #d4a574;
    color: white;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.categories, .products {
    padding: 100px 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b6b6b;
    max-width: 600px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.category:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.category i {
    font-size: 3rem;
    color: #d4a574;
    margin-bottom: 1.5rem;
}

.category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #1a1a1a;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    text-align: center;
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.image-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    transition: opacity 0.3s ease;
}

.image-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    border-radius: 25px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 50%;
    transition: background 0.3s;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.2);
}

.image-counter {
    color: white;
    font-size: 12px;
    min-width: 30px;
    text-align: center;
    font-weight: 500;
}

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 1.5rem;
}

.product-card button {
    background: #2c2c2c;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.product-card button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.qty-btn {
    background: #d4a574;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #c19660;
    transform: scale(1.1);
}

.quantity {
    font-weight: 600;
    min-width: 24px;
    text-align: center;
    color: #2c2c2c;
}

/* Rest of the existing styles with color updates */
.filters {
    text-align: center;
    margin-bottom: 3rem;
}

.filters a {
    display: inline-block;
    margin: 0 1rem;
    padding: 10px 24px;
    border: 1px solid #d4a574;
    color: #d4a574;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.filters a:hover {
    background: #d4a574;
    color: white;
}

/* Update other sections with the new color scheme */
.cart {
    padding: 120px 2rem 80px;
    max-width: 900px;
    margin: 0 auto;
}

.cart-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.item-details h3 a {
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.item-details h3 a:hover {
    color: #d4a574;
}

.item-price {
    color: #6b6b6b;
    margin-top: 0.5rem;
}

.item-total p {
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 0.5rem;
}

.remove-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #c0392b;
}

.total {
    background: #f8f6f3;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.total button {
    background: #2c2c2c;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.total button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

/* My Account Premium Styling */
.breadcrumb {
    padding: 90px 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b6b6b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: #d4a574;
}

.my-account {
    padding: 40px 2rem 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.account-header {
    text-align: center;
    margin-bottom: 3rem;
}

.account-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.account-header p {
    font-size: 1.1rem;
    color: #6b6b6b;
    max-width: 600px;
    margin: 0 auto;
}

.profile-welcome {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.profile-welcome i {
    font-size: 4rem;
    color: #d4a574;
}

.profile-welcome h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.profile-welcome p {
    color: #6b6b6b;
    font-size: 1rem;
    margin: 0;
}

.account-nav-bar {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    display: flex;
    overflow-x: auto;
    position: relative;
}

.nav-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 24px;
    color: #6b6b6b;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    border-radius: 0;
    flex-shrink: 0;
}

.nav-tab:hover {
    color: #2c2c2c;
    background: #f8f6f3;
}

.nav-tab.active {
    color: #d4a574;
    border-bottom-color: #d4a574;
    background: #fefefe;
}

.nav-tab.delete-tab {
    color: #e74c3c;
    margin-left: auto;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.nav-tab.delete-tab:hover {
    background: #fef2f2;
    color: #dc2626;
}

.account-content {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    min-height: 400px;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fefefe;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.btn-primary {
    background: #ff9900;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: inline-block;
    text-align: center;
    min-width: auto;
    width: auto;
}

.btn-primary:hover {
    background: #e68900;
}

.btn-secondary {
    background: white;
    color: #0f1111;
    border: 1px solid #d5d9d9;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    text-align: center;
    min-width: auto;
    width: auto;
}

.btn-secondary:hover {
    background: #f7f8f8;
    border-color: #c7c7c7;
}

.payment-cards {
    margin: 2rem 0;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    margin-bottom: 1rem;
    background: #fefefe;
    transition: all 0.3s ease;
}

.payment-card:hover {
    border-color: #d4a574;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.payment-card i {
    font-size: 2rem;
    color: #d4a574;
}

.card-info {
    flex: 1;
}

.card-info p {
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 0.25rem;
}

.card-info small {
    color: #6b6b6b;
    font-size: 0.9rem;
}

.add-payment-btn {
    background: white;
    color: #0f1111;
    border: 1px solid #d5d9d9;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    width: auto;
}

.add-payment-btn:hover {
    background: #f7f8f8;
    border-color: #c7c7c7;
}

.payment-form {
    background: #f8f6f3;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.payment-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 2rem;
    align-items: center;
}

.form-buttons button {
    flex: none;
}

.remove-btn {
    background: transparent;
    color: #007185;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
    text-decoration: underline;
    transition: all 0.2s ease;
}

.remove-btn:hover {
    color: #c7511f;
    text-decoration: none;
}

.orders-list {
    text-align: center;
    padding: 3rem 2rem;
    color: #6b6b6b;
}

.orders-list a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 500;
}

.orders-list a:hover {
    text-decoration: underline;
}

/* Auth Pages Premium Styling */
.auth {
    padding: 40px 2rem 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    max-width: 1400px;
    margin: 0 auto;
}

.auth-container {
    max-width: 480px;
    width: 100%;
}

.auth-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.auth-header p {
    color: #6b6b6b;
    font-size: 1rem;
    margin: 0;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
    font-size: 0.95rem;
}

.auth-form input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fefefe;
    box-sizing: border-box;
}

.auth-form input:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.auth-form .btn-primary {
    width: 100%;
    margin: 1.5rem 0 2rem 0;
}

.auth-links {
    text-align: center;
}

.auth-links p {
    margin: 0.75rem 0;
    color: #6b6b6b;
    font-size: 0.95rem;
}

.auth-links a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 500;
}

.auth-links a:hover {
    text-decoration: underline;
}

.admin-form {
    border: 2px solid #d4a574;
}

.admin-form {
    border: 2px solid #d4a574;
}

.admin-form .auth-header h1 {
    color: #d4a574;
}

.admin-form .auth-header h1 i {
    margin-right: 0.5rem;
}

/* Admin Pages Premium Styling */
.admin-dashboard {
    padding: 40px 2rem 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.dashboard-header p {
    font-size: 1.1rem;
    color: #6b6b6b;
    max-width: 600px;
    margin: 0 auto;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem 0;
}

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-card i {
    font-size: 3rem;
    color: #d4a574;
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 600;
    color: #d4a574;
    margin: 0 0 0.5rem 0;
    font-family: 'Inter', sans-serif;
}

.stat-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #6b6b6b;
    margin: 0;
}

.admin-actions {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.admin-actions h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.action-buttons .btn-primary,
.action-buttons .btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 16px 24px;
    font-size: 0.95rem;
    font-weight: 500;
}

.admin-add-product {
    padding: 40px 2rem 80px;
    max-width: 900px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 1.1rem;
    color: #6b6b6b;
}

.add-product-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.add-product-container .form-group {
    margin-bottom: 1.5rem;
}

.add-product-container .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
    font-size: 0.95rem;
}

.add-product-container input,
.add-product-container select,
.add-product-container textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fefefe;
    box-sizing: border-box;
}

.add-product-container input:focus,
.add-product-container select:focus,
.add-product-container textarea:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.add-product-container small {
    color: #6b6b6b;
    font-size: 14px;
    margin-top: 0.5rem;
    display: block;
}

/* Cart, Contact, Checkout Pages */
.cart {
    padding: 40px 2rem 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact, .checkout {
    padding: 40px 2rem 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-container, .checkout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form, .checkout-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form input, .contact-form textarea,
.checkout-form input, .checkout-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fefefe;
    box-sizing: border-box;
}

.contact-form input:focus, .contact-form textarea:focus,
.checkout-form input:focus, .checkout-form textarea:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.total {
    background: #f8f6f3;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    margin-top: 2rem;
}

.total h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.order-summary {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    height: fit-content;
}

/* Admin Orders and Users Pages */
.admin-orders, .admin-users {
    padding: 40px 2rem 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.orders-header, .users-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.order-filters, .user-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.order-filters select,
.order-filters input {
    padding: 8px 12px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

.order-filters input[type="text"] {
    min-width: 200px;
}

.orders-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.orders-table table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.orders-table th {
    background: #f8f6f3;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 14px;
}

.orders-table td {
    font-size: 14px;
    color: #2c2c2c;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

.status-badge.pending { background: #fef3c7; color: #92400e; }
.status-badge.processing { background: #dbeafe; color: #1e40af; }
.status-badge.shipped { background: #d1fae5; color: #065f46; }
.status-badge.delivered { background: #dcfce7; color: #166534; }
.status-badge.cancelled { background: #fee2e2; color: #991b1b; }

.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.user-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.user-card:hover {
    transform: translateY(-2px);
}

.user-avatar i {
    font-size: 3.5rem;
    color: #d4a574;
    margin-bottom: 1rem;
}

.user-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.user-info p {
    margin-bottom: 0.5rem;
    color: #6b6b6b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.user-stats {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: #d4a574;
}

.stat-label {
    font-size: 0.85rem;
    color: #6b6b6b;
}

.user-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 1rem;
    display: inline-block;
}

.user-status.active { background: #dcfce7; color: #166534; }
.user-status.inactive { background: #fef3c7; color: #92400e; }
.user-status.blocked { background: #fee2e2; color: #991b1b; }

.user-card .action-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.user-card .action-buttons button {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-active { background: #22c55e; color: white; }
.btn-block { background: #ef4444; color: white; }
.btn-view { background: #3b82f6; color: white; }
.btn-delete { background: #6b7280; color: white; }

.btn-active:hover { background: #16a34a; }
.btn-block:hover { background: #dc2626; }
.btn-view:hover { background: #2563eb; }
.btn-delete:hover { background: #4b5563; }

/* Product Detail Page Premium Styling */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 40px 2rem 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.product-images {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.image-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: #d4a574;
    box-shadow: 0 0 0 1px #d4a574;
}

.thumbnail:hover {
    border-color: #d4a574;
    opacity: 0.8;
}

.main-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: visible;
    cursor: crosshair;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.zoom-lens {
    position: absolute;
    border: 1px solid #999;
    background: rgba(255, 255, 255, 0.3);
    width: 120px;
    height: 120px;
    display: none;
    pointer-events: none;
    border-radius: 4px;
    box-shadow: 0 0 0 1000px rgba(0,0,0,0.1);
}

.zoom-container {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 20px;
    width: 600px;
    height: 600px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    display: none;
    z-index: 1000;
}

.zoom-image {
    position: absolute;
    border-radius: 20px;
}

.main-image-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.main-nav-btn {
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav-btn:hover {
    background: rgba(0,0,0,0.9);
    transform: scale(1.1);
}

.product-info {
    padding: 2rem 0;
}

.product-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.rating {
    color: #ffa500;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.description {
    font-size: 1.1rem;
    color: #6b6b6b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.features {
    margin-bottom: 2.5rem;
}

.features h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.features ul {
    list-style: none;
    padding-left: 0;
}

.features li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    color: #2c2c2c;
    font-size: 1rem;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 1.2rem;
}

.actions {
    margin-bottom: 2.5rem;
}

.actions label {
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #2c2c2c;
    font-size: 1rem;
}

.actions select {
    padding: 10px 15px;
    margin-left: 1rem;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    font-size: 16px;
    background: white;
    cursor: pointer;
}

.actions select:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.actions .btn-primary,
.actions .btn-secondary {
    margin-right: 1rem;
    margin-top: 1.5rem;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
}

.buy-now {
    background: #2c2c2c !important;
    color: white !important;
}

.buy-now:hover {
    background: #1a1a1a !important;
}

.delivery {
    background: #f8f6f3;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
}

.delivery p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2c2c2c;
    font-size: 0.95rem;
}

.delivery p:last-child {
    margin-bottom: 0;
}

.delivery i {
    color: #22c55e;
    font-size: 1.1rem;
}

#quantity-display {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .zoom-container {
        position: fixed;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        left: auto;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 20px 1rem 60px;
    }
    
    .product-images {
        flex-direction: column-reverse;
    }
    
    .image-thumbnails {
        flex-direction: row;
        justify-content: center;
        overflow-x: auto;
    }
    
    .thumbnail {
        min-width: 60px;
        height: 60px;
    }
    
    .product-info h1 {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .zoom-container {
        display: none !important;
    }
    
    .actions .btn-primary,
    .actions .btn-secondary {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 120px 2rem 80px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    nav {
        flex-direction: column;
        padding: 1rem;
    }
    
    nav div a {
        margin: 0 1rem;
    }
    
    .category-grid, .product-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-welcome {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .account-nav-bar {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-tab {
        min-width: 120px;
        justify-content: center;
    }
    
    .breadcrumb {
        padding: 80px 1rem 0;
    }
    
    .nav-tab.delete-tab {
        position: static;
        margin-left: 0;
    }
    
    .my-account {
        padding: 20px 1rem 60px;
    }
    
    .account-header h1 {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .form-buttons button {
        width: auto;
        min-width: 120px;
    }
}