/* Global Styles & Variables */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Colors */
    --primary-color: #c9a961;
    --primary-dark: #b8934e;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #10b981;
    --error-color: #ef4444;

    /* Spacing */
    --container-width: 1400px;
    --header-height: 80px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-normal);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    outline: none;
    cursor: pointer;
}



/* ── Header (master) ── */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.header.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.header-top {
    display: flex;
    align-items: center;
    height: 72px;
    padding: 0 50px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 0;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-transform: uppercase;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.header-logo a:hover {
    color: #c9a961;
    letter-spacing: 3px;
}

/* ── Nav links (center) ── */
.header-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    flex: 1;
    justify-content: center;
}

.header-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #555;
    text-decoration: none;
    padding: 0;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    display: inline-block;
    transition: color 0.25s ease, transform 0.25s ease;
}

.header-nav a:hover {
    color: #c9a961;
    transform: translateY(-1px);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: #c9a961;
    transition: width 0.3s ease;
}

.header-nav a:hover::after {
    width: 100%;
}

/* ── Action buttons (right) ── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.action-btn {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #555;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.25s ease, transform 0.25s ease;
    vertical-align: middle;
    text-decoration: none;
}

.action-btn:hover {
    color: #c9a961;
    transform: translateY(-1px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.header-secondary {
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    padding: 8px 50px;
    display: flex;
    justify-content: space-between;
    letter-spacing: 0.5px;
}

.header-secondary a:hover {
    color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full screen height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Keep text above video */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the hero section */
    z-index: 1;
}


.hero h1 {
    font-size: 80px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -2px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: white;
    color: var(--text-dark);
    border-color: white;
}

.btn-primary:hover {
    background-color: transparent;
    color: white;
}

/* ... existing button styles ... */

/* Featured Collections */
.section {
    padding: 100px 50px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.collection-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
}

.collection-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: white;
    transition: background 0.3s ease;
}

.collection-card:hover .collection-image {
    transform: scale(1.05);
}

.collection-card:hover .collection-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%);
}

.collection-overlay h3 {
    font-size: 32px;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.collection-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.collection-card:hover .collection-link {
    opacity: 1;
    transform: translateY(0);
}

/* Category Images */
.bg-diamond {
    background-image: url('uploads/ring2.png');
}

.bg-sapphire {
    background-image: url('uploads/neclace2.png');
}

.bg-emerald {
    background-image: url('uploads/longearing3.png');
}

/* Product Grid */
.products-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.product-card {
    position: relative;
    transition: transform var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-container {
    position: relative;
    height: 380px;
    background-color: #f7f7f7;
    margin-bottom: 20px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-actions-overlay {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.product-card:hover .product-actions-overlay {
    opacity: 1;
    transform: translateY(0);
}

.action-icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.action-icon-btn:hover {
    background-color: var(--text-dark);
    color: white;
}

.product-details {
    text-align: center;
}

.product-cat {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 8px;
}

.product-price {
    font-weight: 600;
    color: var(--primary-color);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toast {
    background: white;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--text-dark);
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left-color: var(--success-color);
}

.toast.error {
    border-left-color: var(--error-color);
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
}

/* Cart Drawer */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 450px;
    background: white;
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 24px;
}

.close-cart {
    font-size: 24px;
    background: none;
    cursor: pointer;
    color: var(--text-light);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
}

.cart-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--text-light);
    font-size: 14px;
}

.cart-item-remove {
    margin-top: 10px;
    font-size: 12px;
    color: var(--error-color);
    text-decoration: underline;
    cursor: pointer;
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid var(--border-color);
    background: #f9f9f9;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* Newsletter */
.newsletter {
    background-color: var(--text-dark);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.newsletter h2 {
    color: white;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 30px auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-family: 'Inter', sans-serif;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    padding: 0 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    transition: background var(--transition-normal);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

/* Footer */
.footer {
    background-color: #111;
    color: #999;
    padding: 80px 50px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    border-bottom: 1px solid #333;
    padding-bottom: 60px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: white;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-section a {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
    .header-nav {
        display: none;
    }

    .hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px;
    }

    .header-top {
        padding: 0;
    }

    .section {
        padding: 60px 20px;
    }

    .cart-drawer {
        width: 100%;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="gems" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="100" cy="100" r="60" fill="none" stroke="%23c9a961" stroke-width="2" opacity="0.3"/><circle cx="100" cy="100" r="40" fill="none" stroke="%23c9a961" stroke-width="1" opacity="0.2"/></pattern></defs><rect width="1200" height="600" fill="%23f5f5f5"/><rect width="1200" height="600" fill="url(%23gems)"/></svg>') center/cover;
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 20px;
    color: #000;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 24px;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 16px 50px;
    border: 2px solid #000;
    background-color: transparent;
    color: #000;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #000;
    color: #fff;
}

.cta-button.secondary {
    border-color: #c9a961;
    color: #c9a961;
}

.cta-button.secondary:hover {
    background-color: #c9a961;
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Featured Collections */
.featured-collections {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: #000;
    text-transform: uppercase;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.collection-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-image {
    height: 350px;
    border-radius: 8px;
    margin-bottom: 25px;
    background-size: cover;
    background-position: center;
    transition: box-shadow 0.3s ease;
}

.collection-card:hover .collection-image {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.diamond-collection {
    background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
    position: relative;
}

.diamond-collection::before {
    content: '💎';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
}

.sapphire-collection {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    position: relative;
}

.sapphire-collection::before {
    content: '💙';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
}

.emerald-collection {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
    position: relative;
}

.emerald-collection::before {
    content: '💚';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
}

.collection-card h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #000;
    letter-spacing: 1px;
}

.collection-card p {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.discover-link {
    font-size: 12px;
    letter-spacing: 1px;
    color: #c9a961;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.discover-link:hover {
    transform: translateX(5px);
}

.view-all {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.view-all-link {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    transition: color 0.3s ease;
    position: relative;
}

.view-all-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c9a961;
    transition: width 0.3s ease;
}

.view-all-link:hover::after {
    width: 100%;
}

/* Featured Product */
.featured-product {
    padding: 100px 50px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    text-align: center;
    position: relative;
}

.featured-product::before {
    content: '✨';
    position: absolute;
    top: 50%;
    right: 10%;
    font-size: 120px;
    opacity: 0.1;
    transform: translateY(-50%);
}

.featured-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.featured-content h2 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #9b7625;
    text-transform: uppercase;
}

.featured-content p {
    font-size: 16px;
    color: #121111;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Categories */
.categories {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.categories h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 60px;
    color: #000;
    text-transform: uppercase;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    padding: 40px 30px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #fff;
}

.category-card:hover {
    border-color: #c9a961;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.15);
    transform: translateY(-2px);
}

.category-card span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.category-card p {
    font-size: 13px;
    color: #999;
}

/* Services */
.services {
    padding: 100px 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.services h2 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: #000;
    text-transform: uppercase;
}

.services>p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.service-card {
    padding: 40px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #c9a961;
    transform: translateY(-2px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.service-card p {
    font-size: 14px;
    color: #999;
}

.services .cta-button {
    margin-top: 20px;
}

/* Newsletter */
.newsletter {
    padding: 80px 50px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.newsletter-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    font-size: 14px;
    background-color: #fff;
    color: #333;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 14px 30px;
    background-color: #c9a961;
    color: #fff;
    border: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.newsletter-form button:hover {
    background-color: #b8934e;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 50px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    font-size: 13px;
    color: #999;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #c9a961;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links a {
    font-size: 12px;
    color: #999;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #666;
}

.footer-bottom p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .header-logo a {
        font-size: 20px;
    }

    .header-nav {
        gap: 20px;
        flex-basis: 100%;
        justify-content: flex-start;
        order: 3;
        margin-top: 15px;
    }

    .header-nav a {
        font-size: 11px;
    }

    .header-actions {
        gap: 15px;
        font-size: 11px;
    }

    .hero {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 42px;
        letter-spacing: 4px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .featured-collections,
    .featured-product,
    .categories,
    .services {
        padding: 60px 20px;
    }

    .section-header h2,
    .featured-content h2,
    .categories h2,
    .services h2 {
        font-size: 32px;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .categories-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .newsletter {
        padding: 50px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 10px 15px;
    }

    .header-secondary {
        padding: 10px 15px;
        flex-direction: column;
        gap: 10px;
        font-size: 11px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .featured-collections,
    .featured-product,
    .categories,
    .services {
        padding: 40px 15px;
    }

    .section-header h2,
    .featured-content h2,
    .categories h2,
    .services h2 {
        font-size: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}