/* Global Styles */
:root {
    --primary-color: #d4af37;
    /* Elegant Gold */
    --secondary-color: #111;
    /* Deep Black */
    --accent-color: #f9f9f9;
    /* Soft White */
    --text-color: #333;
    --light-gray: #f4f4f4;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #fff;
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #bfa13d;
    /* Darker Gold */
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
    /* Changed to fully transparent for clarity */
    border-bottom: none;
}

.navbar.scrolled {
    background: #fff !important;
    /* Forced solid white as requested */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    border-bottom: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 50px;
    /* Added margin/padding for full-width layout */
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    display: block;
    cursor: pointer;
}

.logo img {
    height: 50px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex: 1;
    /* Allow links to take available space */
}

.nav-links a {
    color: #f4c427;
    /* Restored Gold */
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

/* Remove blue button style */
.nav-links a.nav-btn-blue {
    font-size: 13px;
    background: transparent;
    padding: 0;
}

.navbar.scrolled .nav-links a {
    color: #f4c427;
}

.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-icons {
    display: flex;
    gap: 30px;
    align-items: center;
    color: #D4AF37;
    /* Gold Color */
    white-space: nowrap;
    flex-shrink: 0;
}

.order-status-right {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    color: #fff !important;
    /* Prominent white as in screenshot */
    text-decoration: none;
    margin-right: 15px;
}

.nav-icons a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.navbar.scrolled .nav-icons {
    color: #f4c427;
}

.nav-icons.text-gold i {
    color: #f4c427;
}

.icon-link {
    color: #f4c427 !important;
    text-decoration: none;
}

.cart-icon-wrapper {
    position: relative;
    display: inline-block;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #d4af37;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.hamburger {
    display: none;
    color: #f4c427;
    /* Standardized Gold */
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .nav-icons i {
        font-size: 20px;
        color: #f4c427 !important;
    }

    .logo img {
        height: 45px !important;
    }
}

/* Hero Section */
.hero {
    height: 700px;
    background: url('../images/BannerNo1.webp') no-repeat top center/cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    padding-left: 8%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Featured Collection */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 Columns on Desktop */
    gap: 30px;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 Columns on Tablets */
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 Columns on Mobile */
        gap: 15px;
    }
}

.product-card {
    background: #fff;
    transition: var(--transition);
    overflow: hidden;
}

.product-card:hover .product-image .placeholder-img {
    transform: scale(1.05);
}

.product-image {
    position: relative;
    height: 450px;
    overflow: hidden;
    background: #fdfdfd;
}

.product-image img {
    width: 100%;

    object-fit: contain;
}

@media (max-width: 768px) {
    .product-image {
        height: 350px;
        /* Better height for 2-column mobile view */
    }

    .product-info h3,
    .product-info h6 {
        font-size: 1rem;
    }
}

.placeholder-img {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 15px 10px;
    text-align: left;
}

.product-info h3,
.product-info h6 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.price {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-add {
    background: transparent;
    border: 1px solid var(--secondary-color);
    padding: 10px 25px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-add:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* Flipkart Style Rating Badge */
.rating-badge-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    justify-content: flex-start;
}

.rating-badge {
    background-color: #388e3c;
    /* Flipkart green */
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
    line-height: 1;
}

.rating-badge i {
    font-size: 10px;
}

.rating-count {
    font-size: 12px;
    color: #878787;
    font-weight: 500;
}

/* Features */
.features {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    color: #fff;
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Stylish WhatsApp Footer Section */
/* Stylish WhatsApp Floating Button */
.whatsapp-btn-stylish {
    background: #25D366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-stylish i {
    font-size: 1.4rem;
}

.whatsapp-btn-stylish:hover {
    background: #1faf53;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Ripple Animation for WhatsApp */
.wa-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid #25D366;
    border-radius: 50px;
    opacity: 0;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.5;
    }

    100% {
        width: 150%;
        height: 200%;
        opacity: 0;
    }
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background-color: #050505;
    font-size: 0.8rem;
    color: #666;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        /* Reduced gap between feature items */
    }

    .features {
        padding: 25px 0;
        /* Tightened section padding */
    }

    .feature-item i {
        font-size: 1.5rem;
        /* Slightly smaller icons for mobile */
        margin-bottom: 10px;
    }

    .feature-item h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .wa-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Update generic img style */
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

/* Adjust logo container if needed */
.logo img {
    display: block;
    max-height: 50px;
    /* Adjust based on navbar height */
}

/* Styling for product details page */
.product-details-section {
    padding: 120px 0 80px;
    /* Account for fixed navbar */
}

.product-details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    height: auto;
    max-height: 800px;
    overflow: hidden;
    border-radius: 5px;
    background: #fdfdfd;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
}

.thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumb:hover,
.thumb.active {
    border-color: var(--primary-color);
}

.product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.product-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.8;
}

.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 20px;
}


/* Product Share Section */
.product-share {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.product-share span {
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    background: #f4f4f4;
    transition: var(--transition);
    font-size: 1rem;
}

.share-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.share-btn.fb:hover {
    background: #1877F2;
}

.share-btn.wa:hover {
    background: #25D366;
}


/* Image Share Component */
.main-image {
    position: relative;
    /* Ensure absolute children are positioned relative to this */
}

.img-share-component {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.img-share-component .share-toggle {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    color: var(--secondary-color);
}

.img-share-component:hover .share-toggle {
    background: var(--primary-color);
    color: #fff;
}

.img-share-component .social-share-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.img-share-component:hover .social-share-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.img-share-component .share-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    background: #f4f4f4;
    color: var(--secondary-color);
    margin: 0;
}

.img-share-component .share-btn:hover {
    color: #fff;
}


/* Option Group Label Style */
.option-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--secondary-color);
}

.size-selector {
    display: flex;
    gap: 10px;
}

.size-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.size-btn:hover,
.size-btn.active {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    width: fit-content;
}

.qty-btn {
    padding: 10px 15px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.2rem;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1rem;
    appearance: none;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-add-cart {
    flex: 1;
    padding: 15px;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: #333;
}

.btn-whatsapp {
    padding: 15px 20px;
    background: #25D366;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #1faf53;
}

@media (max-width: 768px) {
    .product-details-container {
        grid-template-columns: 1fr;
    }
}

/* Product Details Redesign */

.brand-label {
    display: block;
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    font-style: italic;
    font-family: serif;
}

.product-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #4a3b32;
    /* brownish dark */
}

.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.2rem;
}

.new-price {
    font-size: 1.5rem;
    color: #4a3b32;
    font-weight: 400;
    font-family: 'Cinzel', serif;
}

.sale-badge {
    background: #fff;
    border: 1px solid #ddd;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-style: italic;
    color: #555;
    font-family: serif;
}

.tax-note {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
    font-style: italic;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;
    color: #5d4037;
    font-size: 0.9rem;
}

.review-stars span {
    margin-left: 5px;
    font-style: italic;
    color: #888;
}

/* Updated Product Options */
.option-group label {
    font-style: italic;
    font-family: serif;
    font-size: 1.1rem;
    color: #888;
    font-weight: 400;
}

.size-selector {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.size-btn {
    min-width: 60px;
    width: auto;
    padding: 0 15px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 25px;
    /* Oval shape */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: serif;
    font-style: italic;
    transition: all 0.3s;
    color: #555;
    white-space: nowrap;
}

.size-btn.active {
    background: #5d4037;
    color: #fff;
    border-color: #5d4037;
}

.size-chart-link {
    display: inline-block;
    margin-top: 15px;
    color: #555;
    font-style: italic;
    font-size: 0.9rem;
    text-decoration: none;
    font-family: serif;
}

.size-chart-link i {
    margin-right: 5px;
}

.quantity-selector-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 150px;
    border: 1px solid #5d4037;
    border-radius: 4px;
    padding: 10px 15px;
    margin-top: 10px;
}

.quantity-selector-box button {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #888;
    /* lighter color for symbols */
    cursor: pointer;
}

.quantity-selector-box input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    font-family: serif;
}

/* Service Features */
.service-features {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #5d4037;
}

.feature-item i {
    font-size: 1.8rem;
    /* font-weight: 300; */
}

.feature-item span {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    font-family: serif;
}

/* New Action Buttons */
.product-actions-v2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    max-width: 400px;
    /* Limit width */
}

.btn-add-cart-outline {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid #5d4037;
    color: #5d4037;
    font-family: serif;
    font-style: italic;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart-outline:hover {
    background: #fdfbf9;
}

.btn-buy-now {
    width: 100%;
    padding: 15px;
    background: #5d4037;
    border: 1px solid #5d4037;
    color: #fff;
    font-family: serif;
    font-style: italic;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-buy-now:hover {
    background: #4a332a;
}

.product-description.top-margin {
    margin-top: 20px;
    font-family: serif;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    font-style: italic;
}

.product-description strong {
    color: #333;
    font-weight: 600;
}

.btn-continue {
    width: 100%;
    padding: 12px;
    background-color: #5d4037;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-continue:hover {
    background-color: #4a332a;
}

.signin-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8rem;
    color: #888;
}

.signin-footer a {
    color: #888;
    margin: 0 10px;
    text-decoration: none;
}

.signin-footer a:hover {
    text-decoration: underline;
}

/* Cart Page Styles */
.cart-section {
    padding-top: 120px;
    padding-bottom: 50px;
}

.page-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #4a3b32;
    margin-bottom: 40px;
    text-align: center;
}

.cart-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.cart-items {
    flex: 2;
    min-width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.05); */
}

.cart-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.cart-header span:first-child {
    flex: 2;
}

.cart-header span:nth-child(2) {
    flex: 1;
    text-align: center;
}

.cart-header span:last-child {
    flex: 0.5;
    text-align: right;
}


.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-info {
    display: flex;
    gap: 20px;
    flex: 2;
    align-items: center;
}

.item-image img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
    font-family: 'Cinzel', serif;
}

.item-variant {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-style: italic;
}

.item-price {
    font-weight: 500;
    color: #5d4037;
    margin-top: 5px;
}

.item-quantity {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.quantity-selector-box.small {
    width: 100px;
    padding: 5px 10px;
}

.quantity-selector-box.small button {
    font-size: 1rem;
}

.quantity-selector-box.small input {
    font-size: 1rem;
    width: 40px;
}

.remove-item {
    color: #999;
    font-size: 0.85rem;
    text-decoration: underline;
    cursor: pointer;
    transition: 0.3s;
}

.remove-item:hover {
    color: #d9534f;
}

.item-total {
    flex: 0.5;
    text-align: right;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.cart-summary {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-family: 'Cinzel', serif;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 15px;
    background: #5d4037;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    /* rounded pill shape if preferred */
    margin-top: 20px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    text-decoration: none;
}

.btn-checkout:hover {
    background: #4a332a;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #5d4037;
    text-decoration: underline;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cart-container {
        flex-direction: column;
        gap: 20px;
    }

    .cart-header {
        display: none;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        position: relative;
    }

    .item-info {
        width: 100%;
        margin-bottom: 10px;
    }

    .item-quantity {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    .remove-item {
        position: absolute;
        top: 20px;
        right: 0;
    }

    .item-total {
        text-align: left;
        width: 100%;
        font-size: 1.2rem;
        margin-top: 10px;
        text-align: right;
    }

    .quantity-selector-box.small {
        margin: 0;
    }

    /* Profile Dashboard Styles */
    .profile-section {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .profile-container {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .profile-sidebar {
        width: 280px;
        background: #fff;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .user-brief {
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }

    .user-avatar {
        width: 80px;
        height: 80px;
        background: #f5f5f5;
        color: #bbb;
        border-radius: 50%;
        margin: 0 auto 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
    }

    .user-brief h3 {
        font-size: 1.1rem;
        color: #444;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .user-brief p {
        color: #888;
        font-size: 0.9rem;
    }

    .profile-menu {
        list-style: none;
        padding: 0;
    }

    .profile-menu li {
        margin-bottom: 8px;
    }

    .profile-menu a {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        font-size: 0.95rem;
        color: #666;
        border-radius: 4px;
        transition: all 0.2s;
    }

    .profile-menu a i {
        width: 30px;
        font-size: 1.1rem;
        color: #999;
    }

    .profile-menu li.active a,
    .profile-menu a:hover {
        background: #f9f9f9;
        color: #5d4037;
        font-weight: 500;
    }

    .profile-menu li.active a i,
    .profile-menu a:hover i {
        color: #5d4037;
    }

    .logout-link {
        color: #d9534f !important;
    }

    .logout-link:hover {
        background-color: #ffebee !important;
    }

    .logout-link i {
        color: #d9534f !important;
    }


    /* Profile Content */
    .profile-content {
        flex: 1;
        min-width: 300px;
    }

    .profile-card {
        background: #fff;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
    }

    .profile-card h2 {
        font-size: 1.3rem;
        margin-bottom: 25px;
        font-family: 'Cinzel', serif;
        color: #333;
        padding-bottom: 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Order Item */
    .order-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .order-item {
        border: 1px solid #f0f0f0;
        border-radius: 8px;
        padding: 20px;
        transition: 0.3s;
    }

    .order-item:hover {
        border-color: #ddd;
    }

    .order-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .order-id strong {
        display: block;
        color: #333;
        font-size: 1rem;
    }

    .order-id span {
        font-size: 0.85rem;
        color: #888;
    }

    .order-status {
        font-size: 0.8rem;
        padding: 3px 10px;
        border-radius: 20px;
        height: fit-content;
    }

    .badge-shipped {
        background: #e3f2fd;
        color: #1976d2;
    }

    .badge-delivered {
        background: #e8f5e9;
        color: #2e7d32;
    }

    .order-products {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 15px;
        border-top: 1px dashed #eee;
        margin-bottom: 15px;
    }

    .order-product-thumb {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .order-product-thumb img {
        width: 60px;
        height: 60px;
        border-radius: 4px;
        object-fit: cover;
        border: 1px solid #eee;
    }

    .order-product-thumb span {
        color: #666;
        font-size: 0.9rem;
    }

    .order-total {
        font-weight: 600;
        color: #4a3b32;
    }

    .order-actions {
        display: flex;
        gap: 10px;
    }

    .btn-outline-sm {
        padding: 8px 16px;
        border: 1px solid #ddd;
        background: transparent;
        color: #555;
        font-size: 0.85rem;
        border-radius: 4px;
        cursor: pointer;
        transition: 0.2s;
    }

    .btn-outline-sm:hover {
        border-color: #5d4037;
        color: #5d4037;
    }

    /* Account Form */
    .account-form .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 0;
    }

    .account-form .form-group {
        margin-bottom: 20px;
    }

    .account-form label {
        display: block;
        margin-bottom: 8px;
        font-size: 0.9rem;
        color: #555;
        font-weight: 500;
    }

    .btn-save {
        padding: 12px 25px;
        background: #5d4037;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 1rem;
        cursor: pointer;
        transition: 0.3s;
    }

    .btn-save:hover {
        background: #4a332a;
    }
}

/* Signin Page Styles */
.signin-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.signin-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.signin-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    width: 100%;
}

.signin-logo {
    width: 80px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.signin-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #4a3b32;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signin-card p {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
}

.form-control:focus {
    background: #fff;
    border-color: #ccc;
}

.btn-continue {
    width: 100%;
    padding: 15px;
    background-color: #5d4037;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-continue:hover {
    background-color: #4a332a;
}

/* --- MOBILE MENU SIDEBAR --- */
@media (max-width: 991px) {
    .hamburger {
        display: block !important;
        color: #f4c427 !important;
        font-size: 24px;
        order: -1;
        /* Move to left */
    }

    .navbar {
        backdrop-filter: none !important;
        /* Remove blur to keep faces clear on mobile */
        -webkit-backdrop-filter: none !important;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 100%) !important;
        border: none !important;
    }

    .navbar.scrolled {
        background: #fff !important;
    }

    .nav-container {
        padding: 0 15px !important;
        margin-left: 0 !important;
        position: relative;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 10000;
        flex-direction: column;
        align-items: flex-start;
        transition: transform 0.4s ease;
        padding: 0;
        display: flex;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .hero {
        height: auto;
        min-height: 55vh;
        background-size: cover;
        background-position: 80% center;
        /* Shifted to show the subjects on the right more clearly */
        padding: 130px 25px 40px;
        /* Increased top padding to bring text down further away from the header */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
    }

    .hero-content {
        max-width: 90%;
        position: relative;
        z-index: 2;
    }

    .hero-content h1 {
        font-family: 'Cinzel', serif;
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 12px;
        line-height: 1.3;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.5;
        font-weight: 400;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .hero-content .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
        letter-spacing: 2px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .hero-overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
    }


    .mobile-menu-header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .close-menu {
        font-size: 28px;
        color: #666;
        cursor: pointer;
    }

    .mobile-logo img {
        height: 45px;
    }

    .mobile-top-icons {
        display: flex;
        gap: 15px;
        font-size: 20px;
        color: #333;
    }

    /* Target the links specifically within the sidebar */
    .nav-menu .nav-links {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 20px 0 0 0 !important;
        list-style: none !important;
        flex: none !important;
        /* Removed flex: 1 to prevent stretching */
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10001 !important;
    }

    .nav-links li {
        width: 100% !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav-links li a {
        display: block !important;
        padding: 8px 35px !important;
        color: #111 !important;
        /* Black color */
        font-size: 1.1rem !important;
        text-transform: capitalize !important;
        font-style: italic !important;
        font-weight: 500 !important;
        background: transparent !important;
        border: none !important;
        text-decoration: none !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-family: 'Cinzel', serif !important;
        letter-spacing: 0.5px !important;
        line-height: normal !important;
    }

    .nav-links li.alt-row {
        background: transparent !important;
    }

    .mobile-menu-footer {
        width: 100%;
        margin-top: 20px;
        padding: 30px 25px;
        border-top: 1px solid #eee;
    }

    .mobile-login {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.1rem;
        color: #4a3b32;
        text-decoration: none;
        margin-bottom: 20px;
        font-style: italic;
    }

    .mobile-social {
        display: flex;
        gap: 20px;
        font-size: 22px;
    }

    .mobile-social a {
        color: #333;
    }

    .logo {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
    }

    .logo img {
        height: 40px !important;
    }

    .nav-icons {
        gap: 15px;
    }

    .nav-icons .icon-link {
        display: flex;
    }

    .search-form-desktop {
        display: none !important;
    }

    .search-icon-mobile {
        display: flex !important;
    }

    /* Reduce gaps in Signature Collection / Sections */
    .section {
        padding: 20px 0;
        /* Further reduced from 30px */
    }

    .section-header {
        margin-bottom: 5px;
        /* Highly reduced to remove gap */
    }

    .section-header h2 {
        font-size: 1.6rem;
        line-height: 1.1;
        /* Tighten gap between SIGNATURE and COLLECTION if wrapped */
        margin-bottom: 15px;
        /* Spacing before divider */
    }

    .divider {
        margin-top: 5px;
        /* Keep divider close to text */
    }
}

@media (min-width: 992px) {

    .mobile-menu-header,
    .mobile-menu-footer {
        display: none !important;
    }
}