/* Variables */
:root {
    --color-black: #000000;
    --color-gold: #D4AF37; /* Actual Gold color */
    --color-white: #FFFFFF;
    --color-dark-gray: #1a1a1a;
    --color-medium-gray: #333333;
    --color-light-gray: #f0f0f0;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    --header-height: 80px;
    --border-radius-lg: 15px;
    --border-radius-md: 10px;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-white);
    background-color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

a {
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--color-gold);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    line-height: 1.2;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 3em;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-gold);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-gold);
    border-radius: 2px;
}

/* Glassmorphism Effect */
.glassmorphism {
    background: rgba(255, 255, 255, 0.08); /* Very subtle white for glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-black);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background-color: var(--color-white);
    color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
    backdrop-filter: blur(10px); /* Glassmorphism on header */
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: background var(--transition-speed) ease, padding var(--transition-speed) ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.6em;
    font-weight: 700;
    color: var(--color-light-gold);
}

.logo img {
    height: 35px;
    margin-right: 10px;
    border-radius: 50%; /* Make the logo round */
    border: 2px solid var(--color-gold);
}

.logo span {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    font-size: 1.0em;
    font-weight: 400;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width var(--transition-speed) ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}
@media (max-width: 768px) {
    .header-icons {
        gap: 15px;
    }
}
@media (max-width: 576px) {
    .header-icons {
        gap: 12px;
    }
    
}

.icon-btn {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.3em;
    cursor: pointer;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
    position: relative;
}

.icon-btn:hover {
    color: var(--color-gold);
    transform: scale(1.1);
}

.search-btn .voice-search-icon {
    position: absolute;
    top: -5px; /* Adjust as needed */
    right: -10px; /* Adjust as needed */
    font-size: 0.6em;
    color: var(--color-gold);
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.search-btn:hover .voice-search-icon {
    opacity: 1;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--color-gold);
    color: var(--color-black);
    font-size: 0.7em;
    font-weight: 600;
    border-radius: 50%;
    padding: 2px 6px;
    line-height: 1;
}



.hamburger-menu {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
}

/* New Mobile Navigation Side Drawer Styles */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dim background */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9998; /* Below search overlay, above content */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: absolute;
    top: 0;
    right: 0; /* Start off-screen to the right */
    width: 300px; /* Adjust drawer width as needed */
    max-width: 80%; /* Max width for smaller screens */
    height: 100%;
    padding: 30px 25px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    transform: translateX(100%); /* Move off-screen to the right */
    transition: transform 0.4s ease;
}

.mobile-nav-overlay.active .mobile-nav-drawer {
    transform: translateX(0); /* Slide into view */
}

.close-mobile-nav-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.8em;
    cursor: pointer;
    align-self: flex-end; /* Push to top right */
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.close-mobile-nav-btn:hover {
    color: var(--color-gold);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1; /* Pushes footer to bottom */
}

.mobile-nav ul li {
    margin: 20px 0;
    /* No need for opacity/transform animations on individual list items
       if the drawer itself animates in/out */
}

.mobile-nav ul li a {
    font-size: 1.4em;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block; /* Make the whole area clickable */
    padding: 5px 0;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active { /* Highlight active page */
    color: var(--color-gold);
    transform: translateX(5px); /* Small slide effect on hover/active */
}

.mobile-nav ul li a i {
    margin-right: 10px; /* Space for icon in login link */
}

.drawer-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9em;
}

/* Hamburger menu animations (can keep similar or adjust for drawer) */
@media (max-width: 768px) {
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(-45deg); /* Adjusted for drawer */
    }
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(45deg); /* Adjusted for drawer */
    }
}




/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* NEW: Dark overlay for the video */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2; /* Ensure it's below the new ::before overlay */
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: relative; /* Ensure this is relative for z-index to work */
    z-index: 1; /* Ensures it's above the dark overlay */
    padding: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    border-radius: var(--border-radius-lg);
    max-width: 800px; /* Limit overlay width */
    width: 90%;
}

.hero-title {
    font-size: 5em;
    color: var(--color-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Collections Section */
.collections-section {
    padding: 100px 0;
    text-align: center;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.collection-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 400px; /* Fixed height for consistency */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collection-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.collection-card:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    transform: translateY(100%); /* Start hidden */
    transition: transform 0.5s ease-out;
}

.collection-card:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.8em;
    color: var(--color-gold);
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--color-dark-gray); /* Slightly different background */
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    text-align: center;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px; /* Ensure consistent card height */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-card .rating {
    color: var(--color-gold);
    font-size: 1.2em;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 1.1em;
    margin-bottom: 20px;
    flex-grow: 1; /* Allows text to take available space */
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: auto; /* Pushes client info to the bottom */
}

.testimonial-card .client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold);
}

.testimonial-card .client-info span {
    font-weight: 600;
    color: var(--color-gold);
    font-size: 1.1em;
}

/* Footer */
.main-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 60px 0 20px;
    border-top: 1px solid var(--color-medium-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--color-gold);
    font-size: 1.4em;
    margin-bottom: 20px;
}

.footer-section p, .footer-section ul li {
    font-size: 0.95em;
    line-height: 1.8;
}

.footer-section ul li a {
    color: var(--color-white);
}

.footer-section ul li a:hover {
    color: var(--color-gold);
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid var(--color-medium-gray);
    border-right: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    font-size: 0.9em;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-gold);
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    cursor: pointer;
    font-weight: 600;
    transition: background-color var(--transition-speed) ease;
}

.newsletter-form button:hover {
    background-color: var(--color-white);
    color: var(--color-gold);
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-icons a {
    font-size: 1.8em;
    color: var(--color-white);
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.social-icons a:hover {
    color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-medium-gray);
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .main-nav, .wallet-connect-btn {
        display: none; /* Hide desktop nav and wallet button */
    }

    .hamburger-menu {
        display: block; /* Show hamburger */
    }

    .header-icons {
        gap: 5px;
    }

    .logo {
        font-size: 1.3em;
    }

    .logo img {
        height: 30px;
    }

    .hero-title {
        font-size: 3.5em;
    }

    .hero-overlay {
        padding: 10px;
    }

    .collections-grid, .testimonial-grid, .footer-content {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }

    .collection-card {
        height: 350px;
    }

    .testimonial-card {
        min-height: auto; /* Allow height to adjust */
    }

    .footer-section {
        text-align: center;
    }

    .footer-section ul, .social-icons {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .header-content {
        height: 70px;
        padding: 0 10px;
    }

    .logo {
        font-size: 1.3em;
    }

    .logo img {
        height: 30px;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    .section-title {
        font-size: 2.2em;
        margin-bottom: 40px;
    }

    .collections-section, .testimonials-section {
        padding: 60px 0;
    }
}

/* Existing header-icons styles */
.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* NEW: Style for the login icon button */
.icon-btn.login-btn {
    font-size: 1.5em; /* Match other icons */
    color: var(--color-white);
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.icon-btn.login-btn:hover {
    color: var(--color-gold);
    transform: scale(1.1);
}

/* NEW: Style for the mobile login link */
.mobile-nav a.login-btn-mobile { /* Renamed class for clarity in HTML and CSS */
    background-color: var(--color-gold);
    color: var(--color-black) !important;
    padding: 15px 30px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5em !important;
    margin-top: 20px;
    text-transform: uppercase;
    justify-content: center; /* Center content within button */
}

.mobile-nav a.login-btn-mobile:hover {
    background-color: var(--color-white);
    color: var(--color-gold) !important;
}

/* Remove old .wallet-connect-btn and .wallet-connect-btn-mobile styles if they exist */
.wallet-connect-btn { display: none; }
.wallet-connect-btn-mobile { display: none; }


/* additional shop section */
/* ... (existing CSS from previous steps) ... */

/* Shop Hero Banner */
.shop-hero-banner {
    background-color: var(--color-dark-gray);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: var(--header-height); /* Push content below sticky header */
}

.shop-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212,175,55,0.05), rgba(0,0,0,0.5)); /* Subtle gradient overlay */
    z-index: 0;
}

.shop-hero-banner h1 {
    font-size: 4em;
    color: var(--color-gold);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.shop-hero-banner p {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Shop Content Layout */
.shop-content {
    display: grid;
    grid-template-columns: 280px 1fr; /* Fixed sidebar width, flexible product grid */
    gap: 40px;
    padding: 60px 0;
}

/* Shop Sidebar (Filters) */
.shop-sidebar {
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    height: fit-content; /* Ensure it wraps content, doesn't stretch */
    position: sticky; /* Make sidebar sticky */
    top: calc(var(--header-height) + 20px); /* Stick below header with some margin */
}

.shop-sidebar h2 {
    font-size: 2em;
    color: var(--color-gold);
    margin-bottom: 30px;
    text-align: center;
}

.filter-group {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.filter-group:last-of-type {
    border-bottom: none; /* No border for the last one */
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group h3 {
    font-size: 1.25em;
    color: var(--color-white);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group ul {
    list-style: none;
    padding: 0;
}

.filter-group li {
    margin-bottom: 12px;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.filter-group label:hover {
    color: var(--color-gold);
}

.filter-group input[type="checkbox"] {
    appearance: none; /* Hide default checkbox */
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-gold);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    background-color: transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.filter-group input[type="checkbox"]:checked {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.filter-group input[type="checkbox"]:checked::before {
    content: '\f00c'; /* Font Awesome checkmark icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-black);
    font-size: 0.8em;
}

/* Size Options (Radio buttons) */
.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-options label {
    flex-shrink: 0;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
    font-weight: 600;
}

.size-options label input[type="radio"] {
    display: none; /* Hide actual radio button */
}

.size-options label span {
    display: block; /* Make the text take full label space */
}

.size-options label:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
}

.size-options label input[type="radio"]:checked + span {
    background-color: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
    padding: 8px 15px; /* Re-apply padding after hiding radio */
    border-radius: var(--border-radius-md);
    margin: -8px -15px; /* Adjust margin to counter padding change */
}

/* Price Range Slider */
.price-range-slider {
    padding-top: 10px;
}

.price-range-slider input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    outline: none;
    margin-bottom: 15px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.price-range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--color-gold);
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.6);
}

.price-range-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--color-gold);
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.6);
}

.price-range-slider p {
    color: var(--color-white);
    text-align: center;
    font-size: 1em;
}

.price-range-slider p span {
    color: var(--color-gold);
    font-weight: 600;
}

/* Color Options */
.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.color-box {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.color-box:hover {
    transform: scale(1.1);
    border-color: var(--color-gold);
}

.color-box.selected {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.5), 0 0 10px rgba(212, 175, 55, 0.7); /* Glow effect */
    transform: scale(1.15);
}

.filter-apply-btn {
    width: 100%;
    margin-top: 20px;
    font-size: 1.1em;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05); /* Lighter glass base */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column; /* Stack image and info */
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.08); /* Slightly more prominent glass on hover */
}

.product-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-card img {
    width: 100%;
    height: 300px; /* Fixed height for product images */
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1; /* Allow info to take remaining space */
}

.product-info h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: var(--color-gold);
}

.product-price {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 15px;
}

.add-to-cart-btn {
    width: calc(100% - 40px); /* Account for padding */
    margin: 0 20px 20px; /* Center button horizontally */
    padding: 12px 0;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    background: transparent;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
}

/* Responsive adjustments for Shop Page */
@media (max-width: 992px) {
    .shop-content {
        grid-template-columns: 1fr; /* Stack sidebar and products */
    }

    .shop-sidebar {
        position: static; /* Remove sticky behavior on mobile */
        width: 100%;
        margin-bottom: 40px;
        box-shadow: none; /* Remove shadow if it looks odd when static */
        border: 1px solid rgba(255, 255, 255, 0.1); /* Ensure it still has a border */
    }

    .shop-hero-banner h1 {
        font-size: 3em;
    }
    .shop-hero-banner p {
        font-size: 1em;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust card size */
    }
}

@media (max-width: 576px) {
    .shop-hero-banner {
        padding: 60px 15px 40px;
    }
    .shop-hero-banner h1 {
        font-size: 2.5em;
    }
    .shop-hero-banner p {
        font-size: 0.9em;
    }
    .shop-content {
        padding: 40px 0;
    }
    .shop-sidebar {
        padding: 20px;
    }
    .shop-sidebar h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .filter-group {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    .filter-group h3 {
        font-size: 1.1em;
        margin-bottom: 12px;
    }
    .product-card img {
        height: 250px;
    }
    .product-info h3 {
        font-size: 1.1em;
    }
    .product-price {
        font-size: 1em;
    }
    .add-to-cart-btn {
        font-size: 0.9em;
    }
}

/* ... (footer and other existing styles) ... */


/* custom popup */
/* ... (existing CSS) ... */

/* Custom Toast Notification Styles */
#custom-toast {
    visibility: hidden; /* Hidden by default */
    min-width: 250px;
    background-color: rgba(0, 0, 0, 0.85); /* Dark background */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-white);
    text-align: center;
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    position: fixed;
    z-index: 10000; /* High z-index to be on top */
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1em;
    font-weight: 500;
    transition: visibility 0s, opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateX(-50%) translateY(20px); /* Start slightly below */
}

#custom-toast.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0); /* Slide up */
}

.custom-toast .toast-icon {
    color: var(--color-gold); /* Gold icon */
    font-size: 1.4em;
}

/* Specific icon for error/warning if needed later */
#custom-toast.error .toast-icon {
    color: #dc3545; /* Red for error */
}
#custom-toast.warning .toast-icon {
    color: #ffc107; /* Yellow for warning */
}

/* product detail section */
/* ... (existing styles) ... */

/* Product Detail Section */
.product-detail-section {
    padding: 60px 0;
    margin-top: var(--header-height); /* Push content below sticky header */
}

.product-breadcrumb {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.product-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.product-breadcrumb a:hover {
    color: var(--color-gold);
}

.product-breadcrumb a::after {
    content: '/';
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
}

.product-breadcrumb a:last-child::after {
    content: none;
}

.product-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Image on left, info on right */
    gap: 60px;
    margin-bottom: 80px;
}

/* Product Image Gallery */
.product-image-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.product-image-gallery img#mainProductImage {
    width: 100%;
    max-height: 550px; /* Limit height of main image */
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.thumbnail-gallery {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap; /* Allow thumbnails to wrap */
}

.thumbnail-gallery img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.thumbnail-gallery img:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.thumbnail-gallery img.selected {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3), 0 0 15px rgba(212, 175, 55, 0.6);
    transform: scale(1.05);
}

/* Product Info Panel */
.product-info-panel {
    padding: 30px;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.product-info-panel .product-title {
    font-size: 2.8em;
    color: var(--color-gold);
    margin-bottom: 5px;
}

.product-info-panel .product-price {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.product-rating {
    color: var(--color-gold);
    font-size: 1.1em;
    margin-bottom: 20px;
}
.product-rating i {
    margin-right: 3px;
}

.product-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-sku {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

/* Product Options */
.product-options {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.option-group h3 {
    font-size: 1.1em;
    color: var(--color-white);
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* Re-using size-options and color-options from shop.css */
/* Ensure these styles are already in style.css from shop page */
/*
.size-options { ... }
.size-options label { ... }
.size-options label input[type="radio"]:checked + span { ... }
.color-options { ... }
.color-box { ... }
.color-box.selected { ... }
*/

/* Product Action Panel (Quantity & Add to Cart) */
.product-action-panel {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.3);
}

.qty-btn {
    background-color: var(--color-medium-gray);
    color: var(--color-white);
    border: none;
    padding: 10px 15px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.qty-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.qty-input {
    width: 60px;
    text-align: center;
    padding: 10px 0;
    border: none;
    background-color: transparent;
    color: var(--color-white);
    font-size: 1.1em;
    -moz-appearance: textfield; /* Hide arrows for Firefox */
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-action-panel .add-to-cart-btn {
    flex-grow: 1; /* Make it take available space */
    font-size: 1.2em;
    padding: 15px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Product Tabs */
.product-tabs {
    margin-bottom: 80px;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.tab-header {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    gap: 10px; /* Space between buttons */
}

.tab-button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1em;
    font-weight: 600;
    padding: 15px 25px;
    cursor: pointer;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-button:hover {
    color: var(--color-white);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.tab-button.active {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

.tab-content {
    padding-top: 10px;
}

.tab-pane {
    display: none; /* Hidden by default */
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.tab-pane.active {
    display: block; /* Show active tab */
}

.tab-pane h3 {
    font-size: 1.5em;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.tab-pane ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.tab-pane ul li {
    margin-bottom: 10px;
}

.sizing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.sizing-table th, .sizing-table td {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px;
}

.sizing-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    font-weight: 600;
}

.sizing-table td {
    background-color: rgba(0, 0, 0, 0.2);
}

.sizing-note {
    font-style: italic;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.6);
}

.review-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 600;
    color: var(--color-gold);
    font-size: 1.1em;
}

.review-rating {
    color: var(--color-gold);
    font-size: 0.9em;
}

.review-date {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.5);
}

.review-text {
    font-size: 0.95em;
    margin-top: 10px;
}

.write-review-btn {
    margin-top: 20px;
}

/* Related Products Section (re-using shop.html's product-grid styles) */
.related-products-section {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Responsive adjustments for Product Detail Page */
@media (max-width: 992px) {
    .product-main-content {
        grid-template-columns: 1fr; /* Stack image and info panel */
        gap: 40px;
    }

    .product-image-gallery img#mainProductImage {
        max-height: 450px;
    }

    .product-info-panel {
        padding: 25px;
    }

    .product-info-panel .product-title {
        font-size: 2.2em;
    }

    .product-info-panel .product-price {
        font-size: 1.6em;
    }

    .product-action-panel {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .product-action-panel .add-to-cart-btn {
        width: 100%; /* Make button full width */
        margin: 0;
    }

    .quantity-selector {
        width: 100%;
        justify-content: center;
    }
    .qty-input {
        flex-grow: 1; /* Allow input to grow */
        max-width: 100px; /* Max width for quantity input */
    }

    .product-tabs {
        padding: 25px;
    }

    .tab-header {
        flex-direction: column; /* Stack tab buttons */
        gap: 5px;
        border-bottom: none;
        margin-bottom: 20px;
    }

    .tab-button {
        width: 100%; /* Full width buttons */
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Add border between stacked buttons */
        padding: 12px 15px;
    }
    .tab-button:last-child {
        border-bottom: none;
    }

    .tab-button.active {
        border-bottom: 3px solid var(--color-gold); /* Keep active indicator */
    }

    .related-products-section .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .product-detail-section {
        padding: 40px 0;
    }

    .product-breadcrumb {
        padding: 0 15px; /* Add padding for very small screens */
    }

    .product-image-gallery img#mainProductImage {
        max-height: 350px;
    }

    .thumbnail-gallery img {
        width: 70px;
        height: 70px;
    }

    .product-info-panel {
        padding: 20px;
    }

    .product-info-panel .product-title {
        font-size: 1.8em;
    }

    .product-info-panel .product-price {
        font-size: 1.4em;
    }

    .product-description {
        font-size: 0.9em;
    }

    .qty-btn {
        padding: 8px 12px;
        font-size: 1em;
    }
    .qty-input {
        padding: 8px 0;
        font-size: 1em;
        max-width: 80px;
    }

    .product-action-panel .add-to-cart-btn {
        padding: 12px 15px;
        font-size: 1em;
    }

    .product-tabs {
        padding: 20px;
    }

    .tab-button {
        font-size: 1em;
    }

    .tab-pane h3 {
        font-size: 1.3em;
    }

    .tab-pane ul, .tab-pane p, .sizing-table {
        font-size: 0.9em;
    }

    .review-item {
        padding: 15px;
    }
    .review-author, .review-rating {
        font-size: 0.9em;
    }
    .review-date {
        font-size: 0.7em;
    }
    .review-text {
        font-size: 0.85em;
    }

    .related-products-section .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

/* cart section */
/* ... (existing styles) ... */

/* Cart Section */
.cart-section {
    padding: 60px 0;
    margin-top: var(--header-height); /* Push content below sticky header */
}

.page-title {
    font-size: 3.5em;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 50px;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Cart items on left, summary on right */
    gap: 40px;
    align-items: flex-start; /* Align top */
}

.cart-items-container {
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    min-height: 200px; /* Ensure a minimum height even if empty */
    display: flex; /* For empty message centering */
    flex-direction: column;
    gap: 25px;
}

.cart-item {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2); /* Slightly darker glass for individual items */
    border-radius: var(--border-radius-md);
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* For remove button positioning */
}

.cart-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}

.item-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}
.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex-grow: 1;
    color: var(--color-white);
}

.item-name {
    font-size: 1.4em;
    color: var(--color-gold);
    margin-bottom: 5px;
}

.item-price {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 10px;
}

.item-options span {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 15px;
}

.item-quantity-controls {
    display: flex;
    align-items: center;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.3);
    width: 120px; /* Fixed width for quantity controls */
}

.item-quantity-controls .qty-btn {
    background-color: var(--color-medium-gray);
    color: var(--color-white);
    border: none;
    padding: 8px 12px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.item-quantity-controls .qty-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.item-quantity-controls .qty-input {
    width: 40px;
    text-align: center;
    padding: 8px 0;
    border: none;
    background-color: transparent;
    color: var(--color-white);
    font-size: 1em;
    -moz-appearance: textfield; /* Hide arrows for Firefox */
}
.item-quantity-controls .qty-input::-webkit-outer-spin-button,
.item-quantity-controls .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.remove-item-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2em;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}
.remove-item-btn:hover {
    color: #dc3545; /* Red for remove */
    transform: scale(1.1);
}

/* Empty Cart Message */
.empty-cart-message {
    display: none; /* Hidden by default */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1em;
    gap: 20px;
}
.empty-cart-message .empty-cart-icon {
    font-size: 4em;
    color: rgba(255, 255, 255, 0.3);
}
.empty-cart-message p {
    margin: 0;
}
.empty-cart-message .btn {
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 1em;
}


/* Cart Summary */
.cart-summary {
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    position: sticky; /* Make summary sticky */
    top: calc(var(--header-height) + 20px); /* Stick below header */
}

.cart-summary h2 {
    font-size: 2em;
    color: var(--color-gold);
    margin-bottom: 30px;
    text-align: center;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--color-white);
}

.summary-line span:first-child {
    font-weight: 400;
}
.summary-line span:last-child {
    font-weight: 600;
    color: var(--color-gold);
}

.summary-line.total {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    margin-top: 20px;
    font-size: 1.5em;
    font-weight: 700;
}

.summary-line.total span:last-child {
    color: var(--color-gold);
}

.proceed-to-checkout-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.2em;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.continue-shopping-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    margin-top: 15px;
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}
.continue-shopping-btn:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--color-white);
}


/* Responsive adjustments for Cart Page */
@media (max-width: 992px) {
    .cart-content {
        grid-template-columns: 1fr; /* Stack cart items and summary */
        gap: 30px;
    }

    .cart-summary {
        position: static; /* Remove sticky behavior on mobile */
        margin-top: 30px; /* Add margin when stacked */
    }

    .page-title {
        font-size: 3em;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .cart-item {
        flex-wrap: wrap; /* Allow image and details to wrap */
        justify-content: center; /* Center content when wrapped */
        text-align: center;
    }
    .item-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .item-details {
        width: 100%;
        text-align: center;
    }
    .item-quantity-controls {
        margin-left: auto;
        margin-right: auto;
        margin-top: 15px;
    }
    .remove-item-btn {
        position: static; /* Place remove button in flow */
        margin-top: 15px;
    }
    .item-options span {
        display: block; /* Stack options */
        margin-right: 0;
        margin-bottom: 5px;
    }
}


@media (max-width: 576px) {
    .cart-section {
        padding: 40px 15px;
    }
    .page-title {
        font-size: 2.5em;
        margin-bottom: 30px;
    }
    .cart-items-container,
    .cart-summary {
        padding: 20px;
    }
    .cart-item {
        padding: 10px;
    }
    .item-image {
        width: 80px;
        height: 80px;
    }
    .item-name {
        font-size: 1.2em;
    }
    .item-price {
        font-size: 1em;
    }
    .summary-line {
        font-size: 1em;
    }
    .summary-line.total {
        font-size: 1.3em;
    }
    .proceed-to-checkout-btn,
    .continue-shopping-btn {
        font-size: 1em;
        padding: 12px;
    }
}


/* for search bar */
/* ... (existing CSS) ... */

/* Search Overlay Styles */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Darker overlay background */
    backdrop-filter: blur(10px); /* Stronger blur for overlay */
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999; /* Higher than header, below toast */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 90%;
    max-width: 700px;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    transform: translateY(-20px); /* Start slightly up */
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.search-overlay.active .search-overlay-content {
    transform: translateY(0); /* Slide down */
    opacity: 1;
}

.close-search-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.8em;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-search-btn:hover {
    color: var(--color-gold);
}

.search-input {
    flex-grow: 1;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--color-white);
    font-size: 1.1em;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.search-overlay-submit-btn,
.voice-search-overlay-btn {
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    border-radius: var(--border-radius-md);
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0; /* Prevent buttons from shrinking */
}

.search-overlay-submit-btn:hover,
.voice-search-overlay-btn:hover {
    background-color: var(--color-light-gold);
    transform: translateY(-2px);
}

.voice-search-overlay-btn {
    background-color: var(--color-medium-gray);
    color: var(--color-white);
    padding: 15px 25px; /* Slightly more padding for text */
}

.voice-search-overlay-btn:hover {
    background-color: var(--color-dark-gray);
    color: var(--color-gold);
}

/* Responsive adjustments for Search Overlay */
@media (max-width: 768px) {
    .search-overlay-content {
        flex-wrap: wrap; /* Allow items to wrap */
        padding: 25px;
        gap: 10px;
        text-align: center; /* Center buttons when stacked */
    }

    .search-input {
        order: 1; /* Place input first */
        width: 100%;
        margin-bottom: 10px;
    }

    .search-overlay-submit-btn {
        order: 2; /* Place search button next */
        width: 100%;
        justify-content: center;
        padding: 12px 15px;
        font-size: 1em;
    }

    .voice-search-overlay-btn {
        order: 3; /* Place voice search button last */
        width: 100%;
        justify-content: center;
        padding: 12px 15px;
        font-size: 1em;
    }

    .close-search-btn {
        font-size: 1.5em;
        top: 10px;
        right: 10px;
    }
}

/* checkout section */
/* ... (existing styles) ... */

/* Checkout Section */
.checkout-section {
    padding: 60px 0;
    margin-top: var(--header-height); /* Push content below sticky header */
}

.checkout-progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    padding: 0 20px; /* Padding for the line to extend */
}

.progress-line {
    position: absolute;
    top: 50%;
    left: 20px; /* Match padding */
    right: 20px; /* Match padding */
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1; /* Above the line */
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.progress-step.active {
    color: var(--color-gold);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.progress-step.active .step-number {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.3);
}

.step-name {
    font-size: 0.9em;
    white-space: nowrap; /* Prevent wrapping on smaller steps */
}

.checkout-content {
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    min-height: 500px; /* Ensure content area is visible */
    display: flex;
    flex-direction: column; /* For vertical stacking */
}

.checkout-step {
    display: none; /* Hidden by default */
    flex-grow: 1; /* Takes available space */
    justify-content: center;
    align-items: center;
    flex-direction: column; /* For general content alignment */
}

.checkout-step.active {
    display: flex; /* Show active step */
}

.checkout-step h2 {
    font-size: 2.5em;
    color: var(--color-gold);
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.checkout-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto; /* Center the form */
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.form-group {
    display: flex;
    flex-direction: column;
    grid-column: span 1; /* Default to single column */
}

/* Make specific form groups span full width for better layout */
.form-group:nth-child(1), /* Full Name */
.form-group:nth-child(2), /* Email */
.form-group:nth-child(3), /* Phone */
.form-group:nth-child(4) /* Street Address */
 {
    grid-column: 1 / -1; /* Spans all columns */
}


.checkout-form label {
    color: var(--color-white);
    margin-bottom: 8px;
    font-weight: 500;
}

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"] {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    padding: 12px 15px;
    color: var(--color-white);
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.checkout-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.checkout-form input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.checkout-form input.invalid {
    border-color: #dc3545; /* Red border for invalid input */
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.3);
}

.form-actions {
    grid-column: 1 / -1; /* Spans all columns */
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap */
}

.form-actions .btn {
    flex-grow: 1;
    min-width: 150px; /* Minimum width for buttons */
    padding: 12px 25px;
    font-size: 1.1em;
}

/* Payment Options */
.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.payment-option {
    display: block;
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none; /* Hide default radio button */
}

.payment-option .option-content {
    padding: 25px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    height: 100%; /* Ensure equal height */
}

.payment-option .option-content i {
    font-size: 2.5em;
    color: var(--color-gold);
    margin-bottom: 5px;
}

.payment-option .option-content span {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--color-white);
}

.payment-option .option-content p {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.payment-option input[type="radio"]:checked + .option-content {
    border-color: var(--color-gold);
    background-color: rgba(212, 175, 55, 0.1); /* Light gold tint */
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
}

.payment-option .option-content:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

/* Order Review */
.order-summary-review {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: var(--color-white);
}

.order-summary-review h3 {
    font-size: 1.8em;
    color: var(--color-gold);
    margin-bottom: 25px;
    text-align: center;
}

.review-items-list {
    margin-bottom: 30px;
    max-height: 300px; /* Limit height for scrollable items */
    overflow-y: auto;
    padding-right: 10px; /* For scrollbar */
}

.review-item-card {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-md);
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-item-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    margin-right: 20px;
    flex-shrink: 0;
}

.review-item-card .item-details {
    flex-grow: 1;
}

.review-item-card .item-details h4 {
    font-size: 1.2em;
    color: var(--color-gold);
    margin-bottom: 5px;
}

.review-item-card .item-details p {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3px;
}

.review-item-card .item-details .price {
    font-weight: 600;
    color: var(--color-white);
    margin-top: 8px;
    font-size: 1.1em;
}

/* Re-using summary-line styles from cart.css */
/*
.summary-line { ... }
.summary-line.total { ... }
*/

/* Order Confirmation */
.confirmation-message {
    text-align: center;
    padding: 50px 20px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.confirmation-icon {
    font-size: 5em;
    color: var(--color-gold);
    margin-bottom: 20px;
    animation: bounceIn 0.8s forwards; /* From animations.css */
}

.confirmation-message h2 {
    font-size: 2.8em;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.confirmation-message p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 600px;
}

.confirmation-message #order-id {
    font-weight: 700;
    color: var(--color-gold);
}

.confirmation-message .btn {
    margin-top: 20px;
    min-width: 200px;
}

/* Responsive Adjustments for Checkout */
@media (max-width: 992px) {
    .checkout-progress-bar {
        margin-bottom: 40px;
        padding: 0 10px;
    }
    .progress-line {
        left: 10px;
        right: 10px;
    }
    .progress-step {
        font-size: 0.9em;
    }
    .step-name {
        font-size: 0.8em;
    }

    .checkout-content {
        padding: 30px;
    }
    .checkout-step h2 {
        font-size: 2em;
        margin-bottom: 25px;
    }

    .checkout-form {
        grid-template-columns: 1fr; /* Single column on smaller screens */
        max-width: 450px;
    }

    .form-group {
        grid-column: 1 / -1; /* All groups span full width */
    }

    .form-actions {
        flex-direction: column; /* Stack buttons */
        gap: 15px;
    }
    .form-actions .btn {
        width: 100%;
        min-width: unset;
    }

    .payment-options {
        grid-template-columns: 1fr; /* Stack payment options */
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .order-summary-review h3 {
        font-size: 1.6em;
    }
    .review-item-card {
        flex-wrap: wrap; /* Allow item details to wrap below image */
        justify-content: center;
        text-align: center;
    }
    .review-item-card img {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .review-item-card .item-details {
        width: 100%;
    }

    .confirmation-message h2 {
        font-size: 2.2em;
    }
    .confirmation-message p {
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .checkout-section {
        padding: 30px 15px;
    }
    .page-title {
        font-size: 2.5em;
        margin-bottom: 30px;
    }
    .checkout-progress-bar {
        padding: 0 5px;
    }
    .progress-line {
        left: 5px;
        right: 5px;
    }
    .progress-step {
        font-size: 0.8em;
    }
    .step-name {
        font-size: 0.7em;
        text-align: center;
    }
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }

    .checkout-content {
        padding: 20px;
    }
    .checkout-step h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .checkout-form {
        gap: 15px;
    }
    .checkout-form input {
        padding: 10px 12px;
    }
    .form-actions .btn {
        font-size: 1em;
        padding: 10px 15px;
    }

    .payment-option .option-content {
        padding: 15px;
    }
    .payment-option .option-content i {
        font-size: 2em;
    }
    .payment-option .option-content span {
        font-size: 1.1em;
    }
    .payment-option .option-content p {
        font-size: 0.8em;
    }

    .order-summary-review h3 {
        font-size: 1.4em;
    }
    .review-item-card {
        padding: 10px;
    }
    .review-item-card img {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }
    .review-item-card .item-details h4 {
        font-size: 1.1em;
    }
    .review-item-card .item-details p {
        font-size: 0.8em;
    }
    .review-item-card .item-details .price {
        font-size: 1em;
    }
}


/* about us section */
/* ... (existing styles) ... */

/* About Us Page Styles */
.about-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/about-hero-bg.jpg') no-repeat center center/cover;
    height: 60vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    margin-top: var(--header-height); /* Push content below sticky header */
    position: relative;
    overflow: hidden; /* For animations */
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Darker overlay for text readability */
    backdrop-filter: blur(3px); /* Subtle blur on the background image */
    -webkit-backdrop-filter: blur(3px);
    z-index: 0;
}

.about-hero-section .hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 800px;
}

.about-hero-section .page-title {
    font-size: 4.5em;
    color: var(--color-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.about-hero-section p {
    font-size: 1.5em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.about-story-section {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-content-block {
    display: flex;
    align-items: center;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    gap: 40px;
}

.about-content-block.reverse-layout {
    flex-direction: row-reverse; /* Swap order for alternate blocks */
}

.about-content-block .text-content {
    flex: 1;
    color: var(--color-white);
}

.about-content-block .text-content h2 {
    font-size: 3em;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.about-content-block .text-content p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-content-block .image-content {
    flex: 1;
    min-width: 300px; /* Ensure image isn't too small */
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.about-content-block .image-content img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-values-block {
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: var(--color-white);
}

.about-values-block h2 {
    font-size: 3em;
    color: var(--color-gold);
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background-color: rgba(0, 0, 0, 0.2); /* Slightly darker glass */
    border-radius: var(--border-radius-md);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}

.value-item i {
    font-size: 3em;
    color: var(--color-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.value-item h3 {
    font-size: 1.5em;
    color: var(--color-white);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 1em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}


/* Responsive Adjustments for About Us */
@media (max-width: 992px) {
    .about-hero-section {
        height: 50vh;
    }
    .about-hero-section .page-title {
        font-size: 3.5em;
    }
    .about-hero-section p {
        font-size: 1.2em;
    }

    .about-story-section {
        padding: 60px 0;
        gap: 40px;
    }
    .about-content-block,
    .about-content-block.reverse-layout {
        flex-direction: column; /* Stack content blocks on smaller screens */
        padding: 30px;
        gap: 30px;
        text-align: center;
    }
    .about-content-block .text-content,
    .about-content-block .image-content {
        flex: none; /* Remove flex sizing */
        width: 100%; /* Take full width */
    }
    .about-content-block .text-content h2 {
        font-size: 2.5em;
        margin-bottom: 15px;
    }
    .about-content-block .text-content p {
        font-size: 1em;
    }

    .about-values-block {
        padding: 40px 20px;
    }
    .about-values-block h2 {
        font-size: 2.5em;
        margin-bottom: 30px;
    }
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust grid for values */
        gap: 20px;
    }
    .value-item {
        padding: 25px;
    }
    .value-item h3 {
        font-size: 1.3em;
    }
    .value-item i {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        height: 40vh;
    }
    .about-hero-section .page-title {
        font-size: 3em;
    }
    .about-hero-section p {
        font-size: 1.1em;
    }
    .about-story-section {
        padding: 40px 0;
        gap: 30px;
    }
    .about-content-block {
        padding: 25px;
    }
    .about-content-block .text-content h2 {
        font-size: 2em;
    }
    .about-values-block h2 {
        font-size: 2em;
    }
    .values-grid {
        grid-template-columns: 1fr; /* Stack values on very small screens */
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        height: 35vh;
    }
    .about-hero-section .page-title {
        font-size: 2.5em;
    }
    .about-hero-section p {
        font-size: 1em;
    }
    .about-story-section {
        padding: 30px 15px;
        gap: 20px;
    }
    .about-content-block {
        padding: 20px;
    }
    .about-content-block .text-content h2 {
        font-size: 1.8em;
    }
    .about-values-block {
        padding: 30px 15px;
    }
    .about-values-block h2 {
        font-size: 1.8em;
    }
    .value-item h3 {
        font-size: 1.2em;
    }
    .value-item i {
        font-size: 2em;
    }
    .value-item p {
        font-size: 0.9em;
    }
}


/* contact section */
/* ... (existing styles) ... */

/* Contact Us Page Styles */
.contact-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contact-hero-bg.jpg') no-repeat center center/cover;
    height: 50vh; /* Slightly shorter than about hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    margin-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 0;
}

.contact-hero-section .hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 800px;
}

.contact-hero-section .page-title {
    font-size: 4em;
    color: var(--color-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.contact-hero-section p {
    font-size: 1.4em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.contact-content-section {
    padding: 80px 0;
    display: flex;
    gap: 40px; /* Space between info and form blocks */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center;
    align-items: flex-start; /* Align blocks to the top */
}

.contact-info-block,
.contact-form-block {
    flex: 1; /* Allow blocks to grow */
    min-width: 300px; /* Minimum width for responsiveness */
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    color: var(--color-white);
}

.contact-info-block {
    max-width: 450px; /* Max width for info block */
}

.contact-info-block h2,
.contact-form-block h2 {
    font-size: 2.8em;
    color: var(--color-gold);
    margin-bottom: 30px;
    text-align: center;
}

.contact-info-block h3 {
    font-size: 1.8em;
    color: var(--color-gold);
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.5;
}

.info-item i {
    font-size: 1.5em;
    color: var(--color-gold);
    flex-shrink: 0; /* Prevent icon from shrinking */
    margin-top: 2px; /* Align with text baseline */
}

.info-item span {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.info-item a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

/* Reusing existing .social-icons from footer */
.contact-info-block .social-icons {
    justify-content: center; /* Center icons in this block */
    margin-top: 20px;
}

/* Contact Form */
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contact-form .form-group {
    display: flex;
    flex-direction: column;
}

#contact-form label {
    color: var(--color-white);
    margin-bottom: 8px;
    font-weight: 500;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    padding: 12px 15px;
    color: var(--color-white);
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    resize: vertical; /* Allow vertical resizing for textarea */
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

#contact-form .btn {
    align-self: flex-start; /* Align button to the left */
    min-width: 180px;
    padding: 12px 25px;
    font-size: 1.1em;
}

/* Map Section */
.map-section {
    padding-bottom: 80px;
    text-align: center;
}

.map-section h2 {
    font-size: 3em;
    color: var(--color-gold);
    margin-bottom: 30px;
    text-align: center;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden; /* Ensures iframe respects border-radius */
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    display: block; /* Remove extra space below iframe */
}


/* Responsive Adjustments for Contact Us */
@media (max-width: 992px) {
    .contact-hero-section {
        height: 45vh;
    }
    .contact-hero-section .page-title {
        font-size: 3.5em;
    }
    .contact-hero-section p {
        font-size: 1.2em;
    }

    .contact-content-section {
        padding: 60px 0;
        flex-direction: column; /* Stack info and form blocks */
        align-items: center; /* Center stacked blocks */
        gap: 30px;
    }
    .contact-info-block,
    .contact-form-block {
        max-width: 600px; /* Wider max-width when stacked */
        width: 100%; /* Take full width within container */
        padding: 30px;
    }
    .contact-info-block h2,
    .contact-form-block h2 {
        font-size: 2.2em;
        margin-bottom: 25px;
    }
    .info-item {
        font-size: 1em;
        margin-bottom: 15px;
    }
    .info-item i {
        font-size: 1.3em;
    }

    #contact-form .btn {
        width: 100%; /* Full width button */
        text-align: center;
        align-self: unset; /* Remove align-self */
    }

    .map-section {
        padding-bottom: 60px;
    }
    .map-section h2 {
        font-size: 2.5em;
        margin-bottom: 25px;
    }
    .map-container {
        border-radius: var(--border-radius-md);
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        height: 40vh;
    }
    .contact-hero-section .page-title {
        font-size: 3em;
    }
    .contact-hero-section p {
        font-size: 1.1em;
    }
    .contact-content-section {
        padding: 40px 0;
    }
    .contact-info-block,
    .contact-form-block {
        padding: 25px;
    }
    .contact-info-block h2,
    .contact-form-block h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }
    .info-item {
        flex-direction: column; /* Stack icon and text */
        align-items: center;
        text-align: center;
        gap: 5px;
    }
    .info-item i {
        margin-top: 0;
        margin-bottom: 5px;
    }

    .map-section h2 {
        font-size: 2.2em;
        margin-bottom: 20px;
    }
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        height: 35vh;
    }
    .contact-hero-section .page-title {
        font-size: 2.5em;
    }
    .contact-hero-section p {
        font-size: 1em;
    }
    .contact-content-section {
        padding: 30px 15px;
    }
    .contact-info-block,
    .contact-form-block {
        padding: 20px;
    }
    .contact-info-block h2,
    .contact-form-block h2 {
        font-size: 1.8em;
    }
    #contact-form input,
    #contact-form textarea {
        padding: 10px 12px;
    }
    #contact-form .btn {
        padding: 10px 15px;
        font-size: 1em;
    }

    .map-section {
        padding-bottom: 30px;
    }
    .map-section h2 {
        font-size: 1.8em;
    }
    .map-container iframe {
        height: 250px;
    }
}

/* profile section */
/* ... (existing styles) ... */

/* Profile Page Styles */
.profile-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/profile-hero-bg.jpg') no-repeat center center/cover;
    height: 40vh; /* Adjust height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    margin-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.profile-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 0;
}

.profile-hero-section .hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 800px;
}

.profile-hero-section .page-title {
    font-size: 3.8em;
    color: var(--color-gold);
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.profile-hero-section p {
    font-size: 1.3em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.profile-content-section {
    padding: 80px 0;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.profile-sidebar {
    flex: 0 0 280px; /* Fixed width sidebar */
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    color: var(--color-white);
    position: sticky; /* Sticky sidebar */
    top: calc(var(--header-height) + 20px); /* Position below header */
    z-index: 10;
}

.profile-sidebar .profile-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-sidebar .profile-avatar {
    font-size: 4em;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.profile-sidebar .profile-header h3 {
    font-size: 1.6em;
    margin-bottom: 5px;
    color: var(--color-white);
}

.profile-sidebar .profile-header p {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}

.profile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-nav ul li {
    margin-bottom: 10px;
}

.profile-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--border-radius-md);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.profile-nav-link i {
    margin-right: 15px;
    font-size: 1.2em;
    color: var(--color-gold);
}

.profile-nav-link:hover {
    background-color: rgba(212, 175, 55, 0.1); /* Light gold hover */
    color: var(--color-gold);
    transform: translateX(5px);
}

.profile-nav-link.active {
    background-color: rgba(212, 175, 55, 0.2); /* Stronger gold for active */
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.profile-nav-link.logout-link {
    margin-top: 30px;
    color: var(--color-white); /* Keep white normally */
    background: rgba(255, 0, 0, 0.1); /* Light red background */
}

.profile-nav-link.logout-link i {
    color: var(--color-red); /* Red icon */
}

.profile-nav-link.logout-link:hover {
    background-color: rgba(255, 0, 0, 0.2);
    color: var(--color-red); /* Red text on hover */
}


.profile-main-content {
    flex: 1; /* Takes remaining space */
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    color: var(--color-white);
}

.profile-tab-content {
    display: none; /* Hide all tab content by default */
}

.profile-tab-content.active {
    display: block; /* Show active tab content */
}

.profile-main-content h2 {
    font-size: 2.5em;
    color: var(--color-gold);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-main-content h3 {
    font-size: 1.8em;
    color: var(--color-gold);
    margin-top: 30px;
    margin-bottom: 20px;
}

.profile-main-content p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Dashboard Stats Grid */
.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: var(--border-radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item h3 {
    font-size: 1.2em;
    color: var(--color-white);
    margin-bottom: 10px;
    margin-top: 0;
}

.stat-item p {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0;
}

/* Tables */
.table-responsive {
    overflow-x: auto; /* Make tables scrollable on small screens */
    margin-bottom: 20px;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensure table doesn't get too narrow */
}

.orders-table th,
.orders-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.orders-table th {
    background-color: rgba(0, 0, 0, 0.3);
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    font-size: 0.9em;
}

.orders-table td {
    background-color: rgba(0, 0, 0, 0.15);
}

.orders-table tbody tr:hover td {
    background-color: rgba(0, 0, 0, 0.25);
}

.orders-table .status-shipped {
    color: var(--color-green);
    font-weight: 600;
}
.orders-table .status-pending {
    color: var(--color-yellow);
    font-weight: 600;
}
.orders-table .status-delivered {
    color: var(--color-blue);
    font-weight: 600;
}

.orders-table .view-details-btn {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--color-gold);
    color: var(--color-black);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.orders-table .view-details-btn:hover {
    background-color: var(--color-light-gold);
}

/* Profile Forms (reusing form-group styles but adding specific ones) */
.profile-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px; /* Constrain form width */
}

.profile-form .form-group {
    display: flex;
    flex-direction: column;
}

.profile-form label {
    color: var(--color-white);
    margin-bottom: 8px;
    font-weight: 500;
}

.profile-form input[type="text"],
.profile-form input[type="email"],
.profile-form input[type="password"],
.profile-form input[type="tel"] {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    padding: 12px 15px;
    color: var(--color-white);
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.profile-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.profile-form input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.profile-form .btn {
    align-self: flex-start; /* Align button to the left */
    min-width: 150px;
    padding: 10px 20px;
    font-size: 1em;
}

/* Address Cards */
.address-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.address-card {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.address-card h3 {
    font-size: 1.4em;
    color: var(--color-gold);
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.address-card p {
    margin-bottom: 8px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
}

.address-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.address-actions .btn-sm {
    padding: 8px 15px;
    font-size: 0.9em;
}


/* Utility classes for forms/spacing */
.mt-40 { margin-top: 40px; }
.mt-30 { margin-top: 30px; }


/* Responsive Adjustments for Profile Page */
@media (max-width: 992px) {
    .profile-hero-section {
        height: 35vh;
    }
    .profile-hero-section .page-title {
        font-size: 3em;
    }
    .profile-hero-section p {
        font-size: 1.1em;
    }

    .profile-content-section {
        padding: 60px 0;
        flex-direction: column; /* Stack sidebar and main content */
        align-items: center;
        gap: 30px;
    }

    .profile-sidebar {
        position: relative; /* Un-sticky on smaller screens */
        top: auto;
        width: 100%;
        max-width: 400px; /* Constrain width */
        flex: none;
        padding: 25px;
    }
    .profile-sidebar .profile-avatar {
        font-size: 3.5em;
    }
    .profile-sidebar .profile-header h3 {
        font-size: 1.4em;
    }
    .profile-nav ul li {
        margin-bottom: 5px;
    }
    .profile-nav-link {
        font-size: 0.95em;
        padding: 10px 12px;
    }
    .profile-nav-link i {
        font-size: 1em;
        margin-right: 10px;
    }

    .profile-main-content {
        width: 100%;
        max-width: 800px; /* Constrain width */
        padding: 30px;
    }
    .profile-main-content h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }
    .profile-main-content h3 {
        font-size: 1.6em;
        margin-top: 25px;
    }
    .dashboard-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        margin-bottom: 30px;
    }
    .stat-item p {
        font-size: 1.8em;
    }
    .orders-table {
        min-width: unset; /* Allow table to shrink more */
    }
    .orders-table th, .orders-table td {
        padding: 12px;
        font-size: 0.85em;
    }

    .profile-form .btn {
        width: 100%;
        align-self: unset;
    }
    .address-list {
        grid-template-columns: 1fr; /* Stack addresses */
        gap: 20px;
    }
    .address-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .profile-hero-section {
        height: 30vh;
    }
    .profile-hero-section .page-title {
        font-size: 2.5em;
    }
    .profile-hero-section p {
        font-size: 1em;
    }
    .profile-content-section {
        padding: 40px 0;
    }
    .profile-sidebar {
        padding: 20px;
    }
    .profile-sidebar .profile-avatar {
        font-size: 3em;
    }
    .profile-main-content {
        padding: 25px;
    }
    .profile-main-content h2 {
        font-size: 1.8em;
    }
    .orders-table th, .orders-table td {
        padding: 10px;
        font-size: 0.8em;
    }
    .orders-table .view-details-btn {
        padding: 5px 10px;
        font-size: 0.8em;
    }
}

@media (max-width: 576px) {
    .profile-hero-section {
        height: 25vh;
    }
    .profile-hero-section .page-title {
        font-size: 2em;
    }
    .profile-hero-section p {
        font-size: 0.9em;
    }
    .profile-content-section {
        padding: 30px 15px;
    }
    .profile-sidebar {
        max-width: 100%; /* Full width on tiny screens */
    }
    .profile-main-content {
        padding: 20px;
    }
    .profile-main-content h2 {
        font-size: 1.6em;
    }
    .dashboard-stats-grid {
        grid-template-columns: 1fr; /* Stack stats */
    }
    .stat-item p {
        font-size: 1.5em;
    }
    .address-card h3 {
        font-size: 1.2em;
    }
    .address-actions .btn-sm {
        font-size: 0.8em;
        padding: 6px 10px;
    }
}


/* wishlist section */
/* ... (existing styles) ... */

:root {
    --color-gold: #D4AF37;
    --color-light-gold: #FFD700;
    --color-black: #1a1a1a;
    --color-white: #f5f5f5;
    --color-dark-gray: #333;
    --color-light-gray: #ccc;
    --color-red: #e74c3c; /* Added for delete/error */
    --color-green: #2ecc71; /* Added for shipped/success */
    --color-yellow: #f1c40f; /* Added for pending/warning */
    --color-blue: #3498db; /* Added for delivered/info */
    --header-height: 80px;

    /* Update these to your custom font names */
    --font-playfair: 'Oldwyn Playfair Display', serif;
    --font-poppins: 'Oldwyn Poppins', sans-serif;

    --border-radius-sm: 5px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
}

/* ... (existing styles) ... */

/* Header Icons - Wishlist Count */
.header-icons .wishlist-btn {
    position: relative;
}

.header-icons .wishlist-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--color-gold);
    color: var(--color-black);
    font-size: 0.7em;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* Allow clicks to pass through to the icon-btn */
    display: none; /* Hidden by default if 0 items */
}

/* Wishlist Page Styles */
.wishlist-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/wishlist-hero-bg.jpg') no-repeat center center/cover;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    margin-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.wishlist-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 0;
}

.wishlist-hero-section .hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 800px;
}

.wishlist-hero-section .page-title {
    font-size: 3.8em;
    color: var(--color-gold);
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.wishlist-hero-section p {
    font-size: 1.3em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.wishlist-content-section {
    padding: 80px 0;
    min-height: 400px; /* Ensure content area has some height */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content if sparse */
    justify-content: center;
}

.wishlist-content-section .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px; /* Match container width */
}

.wishlist-content-section .empty-message {
    font-size: 1.5em;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 50px;
    width: 100%;
}

/* Product Card - copied and slightly modified from shop.css for consistency */
/* Ensure these styles are compatible with existing product-card if you have one */
.product-card {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.product-image-container {
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.1);
}

.product-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1; /* Allows info section to take available space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 1.4em;
    color: var(--color-white);
    margin-bottom: 10px;
    font-weight: 600;
}

.product-price {
    font-size: 1.2em;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: auto; /* Push actions to the bottom */
}

.product-actions .btn {
    flex-grow: 1;
    max-width: 150px;
    padding: 10px 15px;
    font-size: 0.95em;
}

.product-actions .icon-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    width: 40px;
    height: 40px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.product-actions .icon-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

/* Specific for remove button */
.remove-from-wishlist-btn {
    background-color: rgba(255, 0, 0, 0.1); /* Light red for remove */
    border-color: rgba(255, 0, 0, 0.2);
    color: var(--color-red);
}

.remove-from-wishlist-btn:hover {
    background-color: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
}


/* Responsive Adjustments for Wishlist Page */
@media (max-width: 992px) {
    .wishlist-hero-section {
        height: 35vh;
    }
    .wishlist-hero-section .page-title {
        font-size: 3em;
    }
    .wishlist-hero-section p {
        font-size: 1.1em;
    }

    .wishlist-content-section {
        padding: 60px 0;
    }
    .wishlist-content-section .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    .product-card {
        padding-bottom: 15px; /* Adjust padding if needed */
    }
    .product-title {
        font-size: 1.3em;
    }
    .product-price {
        font-size: 1.1em;
    }
    .product-actions .btn {
        font-size: 0.9em;
        padding: 8px 12px;
    }
    .product-actions .icon-btn {
        width: 36px;
        height: 36px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .wishlist-hero-section {
        height: 30vh;
    }
    .wishlist-hero-section .page-title {
        font-size: 2.5em;
    }
    .wishlist-hero-section p {
        font-size: 1em;
    }
    .wishlist-content-section {
        padding: 40px 0;
    }
    .wishlist-content-section .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Smaller cards */
        gap: 20px;
    }
    .product-title {
        font-size: 1.2em;
    }
    .product-price {
        font-size: 1em;
    }
    .product-actions .btn {
        font-size: 0.85em;
        padding: 7px 10px;
    }
    .product-actions .icon-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9em;
    }
    .wishlist-content-section .empty-message {
        font-size: 1.2em;
    }
}

@media (max-width: 576px) {
    .wishlist-hero-section {
        height: 25vh;
    }
    .wishlist-hero-section .page-title {
        font-size: 2em;
    }
    .wishlist-hero-section p {
        font-size: 0.9em;
    }
    .wishlist-content-section {
        padding: 30px 15px;
    }
    .wishlist-content-section .product-grid {
        grid-template-columns: 1fr; /* Stack cards on very small screens */
        gap: 15px;
    }
    .product-card {
        flex-direction: row; /* Make cards horizontal on small screens */
        align-items: center;
        padding: 15px;
    }
    .product-image-container {
        width: 100px; /* Fixed width for image in horizontal layout */
        height: 100px;
        padding-top: 0;
        flex-shrink: 0;
        margin-right: 15px;
        border-radius: var(--border-radius-md);
    }
    .product-info {
        text-align: left;
        padding: 0;
        flex-grow: 1;
    }
    .product-title {
        font-size: 1.1em;
        margin-bottom: 5px;
    }
    .product-price {
        font-size: 0.95em;
        margin-bottom: 10px;
    }
    .product-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 5px;
    }
    .product-actions .btn {
        flex-grow: unset;
        max-width: unset;
    }
    .product-actions .icon-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8em;
    }
}

/* login */
