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

:root {
    /* Updated to sophisticated neutral color palette matching reference design */
    --bg: url('/storage/img/bg/watche_bk.jpg');
    --primary-color: #D4AF37;
    --secondary-color: #8b7355;
    --accent-color: #c9a882;
    --card-color: #111827;
    --card-image: #1f2937;
    --text-color: #2d2d2d;
    --text-light: #6b6b6b;
    --text-muted: #9a9a9a;
    --bg-color: #1E1F22;
    --bg-light: #f7f5f2;
    --bg-cream: #faf8f5;
    --border-color: #e5e5e5;
    --success-color: #4a7c59;
    --error-color: #c84b31;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 2px;
    --accent-gold: #c69b54;
}

body {
    /* Updated typography for more elegant, professional look */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    /* background: #050608; */
    background-image: url('/storage/img/bg/bg.png');
    background-size: cover;
    /* makes it fill the screen */
    background-position: center;
    /* centers it */
    background-attachment: fixed;
    /* makes it stay when scrolling */
    background-repeat: no-repeat;
    /* fallback */

    background-repeat: no-repeat;
    font-size: 15px;
    letter-spacing: 0.01em;
}

.hero-container {
    display: flex;
    gap: 20px;
    position: relative;
    top: 100px;

}

.heroImage {
    margin-left: 115px;
    display: flex;
    justify-content: end;
}

.heroImage img {
    width: 131%;
    position: relative;
    left: 35%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;

}

.products-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 24px;
}

.Incredibly_features {
    margin-top: 70px;
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 6em;
    margin-top: 20px;
}

.feature {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(6, 7, 8, 0.85), rgba(6, 7, 8, 0.75));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 11);
    border-radius: 12px;
    padding: 12px;

}

.feature img {
    width: 150px;
    height: 160px;
    object-fit: cover;
}

.feature h3 {
    background: linear-gradient(0deg, #D4AF37, #fff 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature p {
    color: var(--primary-color);
}


/* Notification modal styles */
.notification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.notification-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 80px;
    padding-right: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.modal-content {
    position: relative;

    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.notification-content p:nth-child(1) {
    background: linear-gradient(0deg, #D4AF37, #fff 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(0deg, #D4AF37, #fff 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.notification-item:hover {
    background-color: var(--bg-tertiary);
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-icon {
    font-size: 24px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.notification-message {
    font-size: 13px;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.notification-time {
    font-size: 12px;
    color: #9ca3af;
}

.modal-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 8px;
}

.btn-secondary {
    flex: 1;
    padding: 10px 16px;
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
}

/* Scrollbar for modal */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Navigation */
.navbar {
    /* Clean white navigation with subtle border */
    color: var(--text-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.45s ease, padding 0.45 ease;

    backdrop-filter: blur(10px);


}

.navbar.blure {
    backdrop-filter: blur(10px);
}

.navbar.sticky {
    width: 100%;
    position: fixed; 
    padding: 0px 25px;
    background-color: #252629;
    z-index: 10000000;
}

.navbar.sticky ul li::before {
    display: none;
    transition: display 0.5s ease-in-out;
}

.navbar.sticky ul {
    gap: 1rem;
    transition: gap 0.5s ease-in-out;
}


.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    /* Refined logo styling */
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 9px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    /* Minimalist navigation links */
    /* color: var(--text-color); */
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.user {
    background: transparent;
    padding: 3px 18px;
    border: 1px solid #fff;
    border-radius: 12px;
    cursor: pointer;
    color: #fff;
}



.cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fa-cart-shopping {
    position: relative;
}

.cart-count {
    /* Subtle cart count badge */
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    position: absolute;
    width: 13px;
    height: 13px;
    display: flex;
    align-items: anchor-center;
    justify-content: center;
    top: -8px;
    bottom: 6px;
    left: 13px;
    background: red;
    font-size: 9px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    /* Elegant hero with cream background and large imagery */
    /* background-color: var(--bg-cream); */
    backdrop-filter: blur(10px);
    color: var(--text-color);
    padding: 0;
    position: relative;
    min-height: 100vh;
    align-items: center;
    position: relative;
    bottom: 72px;
}

.hero-content {
    max-width: 600px;
    padding: 4rem 0;
}

.hero-content h1 {
    /* Large, refined typography */
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
}

/* Buttons */
.btn {
    /* Minimalist button design */
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background-color: #032a41;
    border-radius: 12px;
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-secondary {

    top: 13px;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0 15px;
    border-radius: 12px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
}

/* Promotional Banner */
.promo-banner {
    /* Subtle promotional section */
    margin-top: 100px;
    color: var(--text-color);
    padding: 4rem 0;
    text-align: center;

}

.promo-content {
    text-align: justify;
}

.promo-content h1 {
    font-size: 50px;
    line-height: 1.1em;
    margin-bottom: 0.8rem;
    font-weight: 400;
    background: linear-gradient(0deg, #D4AF37, #fff 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.promo-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}





/* Sections */
.featured-products,
.categories,
.products-section,
.cart-section,
.checkout-section {
    padding: 5rem 0;
}

.section-title,
.page-title {
    /* Refined section titles */
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 300;
    letter-spacing: -0.01em;
}

.page-title {
    font-size: 50px;
    line-height: 1.1em;
    margin-bottom: 0.8rem;
    font-weight: 600;
    background: linear-gradient(0deg, #D4AF37, #fff 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* .product-card {

    background-color: rgb(46, 46, 46);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 12px;
} */
.product-card {
        background: linear-gradient(180deg, rgba(6, 7, 8, 0.85), rgba(6, 7, 8, 0.75));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 11);;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.product-card h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.card-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background-color: var(--card-image);
    border-radius: 12px;
    overflow: hidden;
    /* prevents image overflow */
}

.card-image .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* makes image fill the area nicely */
    border-radius: 12px;
}

.details {
    cursor: pointer;
}

.card-price {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-colors {
    display: flex;
    gap: 4px;
}

.card-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
}

.color-options {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.thumbnail {
    width: auto;
    height: 40px;
    border-radius: 10px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: var(--card-image);
    padding: 3px;
}


.more-colors {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    /* same size as your thumbnails */
    height: 25px;
    background-color: #2d3748;
    /* dark background to match your theme */
    color: #fff;
    /* white text */
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    /* rounded corners */
    cursor: pointer;
    margin: auto;
    transition: 0.3s;
}

.more-colors::after {
    content: "There are more colors";
    /* tooltip text */
    position: absolute;
    bottom: 120%;
    /* place above the box */
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.more-colors:hover::after {
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* makes image fill the area nicely */
    border-radius: 12px;

}

.footer-card {
    width: 100%;
    display: flex;
    justify-content: end;
}

.floating-add-btn {

    width: 100%;
    height: 30px;
    background: linear-gradient(180deg, rgba(198, 155, 84, 0.14), rgba(198, 155, 84, 0.06));
    color: var(--accent-gold);
    border-radius: 12px;
    padding: 8px 10px;
    border: none;
    font-size: 20px;
    font-weight: bold;
    display: grid;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease;
    position: relative;
}
.fa-bag-shopping{
    margin-left: 5px;
}

.floating-add-btn .plus-icon {
    font-size: 16px;
    margin-left: 8px;
    color: #fff;
    top: 10px;
    z-index: 99;
}
.floating-add-btn .textBtn{
    font-size: 14px;
}

.fa-bag-shopping,
.plus-icon {
    position: absolute;
}


.product-card:hover {
    border-color: var(--border-color);
    box-shadow: var(--shadow);
}

.product-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background-color: var(--bg-cream);
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    padding: 1.8rem 1.5rem;
}

.product-category {
    /* Category shown first in muted text */
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.product-name {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1.2rem;
}

.add-to-cart-btn {
    /* Subtle add to cart button */
    width: 100%;
    padding: 0.9rem;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.add-to-cart-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.category-card {
    text-decoration: none;
    color: var(--text-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    background-color: white;
}

.category-card:hover {
    box-shadow: var(--shadow);
    border-color: transparent;
}

.category-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: var(--bg-cream);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.category-card h3 {
    padding: 2rem;
    text-align: center;
    font-size: 1.3rem;
    background-color: white;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    /* Minimal filter buttons */
    padding: 0.7rem 1.8rem;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 400;
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    color: var(--text-color);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Product Detail */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 2.5rem;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--primary-color);
}

/*
.product-detail {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    background-color: white;
    padding: 0;
    border-radius: var(--border-radius);
}

.product-detail-image {
    width: 100%;
    height: 600px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--bg-cream);
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.product-detail-info h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.2;
}

.product-detail-price {
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 400;
    margin-bottom: 2rem;
}

.product-detail-description {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-size: 1rem;
} */

.product-options {
    margin-bottom: 2.5rem;
}

.option-group {
    margin-bottom: 2rem;
}

.option-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.option-btn {
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--border-color);
    background-color: white;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    color: var(--text-color);
}

.option-btn:hover,
.option-btn.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background-color: white;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    color: var(--text-color);
}

.quantity-btn:hover {
    border-color: var(--primary-color);
    background-color: var(--bg-light);
}

.quantity-input {
    width: 70px;
    text-align: center;
    padding: 0.7rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

/* Cart */
.cart-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 3rem;
}

.cart-items {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--bg-cream);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.cart-item-details {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.cart-item-price {
    font-size: 1.15rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cart-item-quantity button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    background-color: white;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
}

.cart-item-quantity button:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-color);
}

.cart-item-quantity span {
    min-width: 35px;
    text-align: center;
    font-weight: 500;
}

.remove-btn {
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 400;
    transition: var(--transition);
    font-size: 0.9rem;
    text-decoration: underline;
}

.remove-btn:hover {
    color: var(--error-color);
}

.empty-cart {
    text-align: center;
    padding: 4rem;
    color: var(--text-light);
}

.empty-cart h2 {
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Cart Summary */
.cart-summary,
.order-summary {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.cart-summary h2,
.order-summary h2 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 400;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.summary-row.total {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-color);
    border-top: 2px solid var(--primary-color);
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 1.5rem;
}

/* Checkout */
.checkout-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 3rem;
}

.checkout-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.form-section {
    margin-bottom: 3rem;
}

.form-section h2 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 400;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: white;
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.checkout-item-name {
    color: var(--text-color);
}

.checkout-item-price {
    color: var(--text-color);
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--bg-light);
    color: var(--text-color);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1rem;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/** products **/
.categories-section {
    margin-bottom: 24px;
}

.category-tags,
.quality {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.quality {
    margin-top: 15px;
}

.category-tag,
.quality-tag {
    background-color: var(--card-color);
    border: none;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    cursor: pointer;
    color: white;
}

.category-tag.active,
.category-tag:hover {
    background-color: var(--primary-color);
    color: white;
}

.quality-tag.slected,
.quality-tag:hover {
    background-color: #624a31;
    color: white;
}

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

.section-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.product-grid-categorys {
    gap: 24px;
    margin-bottom: 24px;
}

.product-grid-category {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hide {
    display: none;
}

.color-options {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.thumbnail {
    background-color: var(--card-color);
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.more-colors {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    /* same size as your thumbnails */
    height: 25px;
    background-color: #2d3748;
    /* dark background to match your theme */
    color: #fff;
    /* white text */
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    /* rounded corners */
    cursor: pointer;

    transition: 0.3s;
}

.more-colors::after {
    content: "There are more colors";
    /* tooltip text */
    position: absolute;
    bottom: 120%;
    /* place above the box */
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.more-colors:hover::after {
    opacity: 1;
}

.allcontent.reactive {
    display: block;
}

.allcontent {
    display: none;
}
/* footer */
footer{
    margin-top: 3rem;
    background:#050608;
    padding: 10px 0 0 0;
    font-size: 15px;
    color: #adb7be;
}
footer p{
    line-height: 1.8em;
    background: linear-gradient(0deg, #D4AF37, #fff 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: ruby;
}
footer ul li{
    margin: 3px 0;
}
footer ul li:hover{
    color:var(--secondary-color) ;
    transition: 0.3s;
}
.widget h5{
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    font-family: var(--title-font);
}
footer form  input{
    width: 100%;
    color: #000;
    background:rgba(255, 255, 255, 1.0) ;
    padding: 12px 10px;
    border-radius: 80px 80px 0 80px;
    border: none;
    outline: none;
    font-size: 18px;
    overflow: hidden;
    box-shadow: 2px 2px 20px 0 rgba(255, 255, 255, 0.05);
}
.btn_dollar{
    margin-left: -64px;
    width: 65px;
    height: 46.1px;
    border-radius: 80px 80px 0 80px;
    margin-top: -1px;
}
.sociale-icones{
    position: relative;
    top: -15px;
}
.sociale-icones a{
    background-color: #333;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;

}
.sociale-icones a i{
    color: var(--secondary-color);
}
.gap-2 {
    gap: 2rem;
}
.gap-1 {
    gap: 1rem;
}
.flex-left {
    align-items: flex-start;
    justify-content: flex-start;
}
.flex {
    display: flex;
    align-items: center;
}
.w-66 {
    width: 66.666666%;
}
.mt-1 {
    margin-top: 1rem;
    position: relative;
    bottom: 14px;
}

footer p {
    line-height: 1.8em;
}
.w-33 {
    width: 33.333333%;
}


.mb-1 {
    margin-bottom: 1rem;
}
.mt-2 {
    margin-top: 2rem;
}
footer ul li {
    margin: 3px 0;
}

li {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}
/* Popup Card */
.user-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #333;
  transition: transform 0.2s ease;
}

.user-btn:hover {
  transform: scale(1.1);
}

/* Popup overlay */
.user-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none; /* hidden by default */
  justify-content: end;
  align-items: self-start;
  z-index: 1000;
}

/* Popup card */
.popup-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  width: 300px;
  margin-top: 90px;
  margin-right: 5px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  animation: pop 0.3s ease;
  transform: translateX(300px);
  transition: transform 0.5s ease-in-out;
}

@keyframes pop {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-card h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.popup-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

.popup-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.popup-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  background: #007bff;
  transition: background 0.2s;
}

.popup-btn:hover {
  background: #0056b3;
}

.popup-btn.outline {
  background: #fff;
  color: #007bff;
  border: 1px solid #007bff;
}

.popup-btn.outline:hover {
  background: #007bff;
  color: #fff;
}

/* Close button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #666;
  cursor: pointer;
}

/* Search Modal Styles */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

.search-modal.active {
    display: flex;
}

.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.search-modal-content {
    position: relative;
    background-color: var(--card-color);
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 1000px;
    margin: 0 16px;
    max-height: 85vh;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.search-modal-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-text-color);
    margin: 0;
}

.close-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #f3f4f6;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s;
}

.close-btn:hover {
    background-color: #e5e7eb;
    color: #111827;
}

.search-container {
    padding: 5px;
}
#openSearchBtnMobile{
    color:#fff;
}
.search-input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 16px;
}

.search-input {
    width:100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-color);
    background-color: #fff;
    transition: all 0.2s;
    outline: none;
}

.search-input:focus {
    border-color: #20b2aa;
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
}

.clear-search-btn {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #e5e7eb;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.clear-search-btn:hover {
    background-color: #d1d5db;
    color: #111827;
}

.clear-search-btn.visible {
    display: flex;
}
/* Loading Indicator */
.search-loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 20px;
    color: #6b7280;
}

.search-loading.visible {
    display: flex;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #20b2aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Search Results */
.search-results {
    display: none;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background-color: white;
}

.search-results.visible {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: all 0.2s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f9fafb;
}

.result-image {

    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--secondary-color);
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
}

.search-result-item:hover .result-image img {
    transform: scale(1.05);
}

.result-info {
    flex: 1;
    min-width: 0;
}

.result-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-text-color);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-category {
    font-size: 14px;
    color: #6b7280;
}

.result-price {
    font-size: 14px;
    font-weight: 600;
    color: #20b2aa;
}

/* Highlight search terms */
.highlight {
    background-color: rgba(32, 178, 170, 0.2);
    color: #20b2aa;
    font-weight: 600;
}

/* No Results */
.no-results {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.no-results.visible {
    display: block;
}

.no-results-icon {
    width: 64px;
    height: 64px;
    background-color: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.no-results-icon i {
    font-size: 24px;
    color: #9ca3af;
}

.no-results h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.no-results p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Popular Searches */
.popular-searches {
    display: block;
}

.popular-searches.hidden {
    display: none;
}

.popular-searches h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-text-color);
    margin-bottom: 16px;
}

.popular-tags {

    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.popular-tag {
    padding: 8px 16px;
    background-color: var(--secondary-color);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    color: var(--text-color);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.popular-tag:hover {
    background-color: #20b2aa;
    border-color: #20b2aa;
    color: white;
}

.search-results {
    background-color: var(--banner-color);
}
@media (max-width:768px) {
    /* Fonts: optionally include a luxe serif + clean sans in your layout head:
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Inter:wght@300;400;600&display=swap" rel="stylesheet">
*/

    /* Root color tokens */
    :root {
        --bg-overlay: rgba(3, 6, 10, 0.55);
        --accent-gold: #c69b54;
        --muted: #bdbdbd;
        --card-bg: rgba(255, 255, 255, 0.03);
        --glass: rgba(255, 255, 255, 0.04);
    }

    /* Mobile-first base */
    * {
        box-sizing: border-box
    }

    html,
    body {
        height: 100%;

    }

    .page-wrapper {
        overflow-x: hidden;
    }

    body {
        margin: 0;
        font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
        color: #e6e6e6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;

    }
    .navbar.sticky{
        padding: 0px 13px;
    }
    .modal-content{
        max-width: 300px;
    }
    .container{
        padding: 0 8px;
    }
    /* page container that uses the supplied background image */
    .hero {
        position: relative;
        min-height: 60vh;
        display: flex;
        align-items: flex-end;
        padding: 28px 20px;
        background-image: linear-gradient(var(--bg-overlay), var(--bg-overlay));
        background-size: cover;
        background-position: center center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    }

    /* hero inner container */
    .hero-container {
        width: 100%;
        display: block;

    }

    /* left content stacked vertically on mobile */
    .hero-content {
        flex: 1 1 55%;
        padding: 6rem 0;
        position: relative;
        bottom: 50px;
        /* max-width: 60%; */
        color: #fff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
        width: 115%;
    }


    .hero-content h1 {
        margin: 0 0 8px 0;
        display: ruby;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 28px;
        line-height: 1.02;
        letter-spacing: 0.4px;
        font-weight: 700;
        background: linear-gradient(0deg, #D4AF37, #fff 75%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero-content p {
        margin: 8px 0 14px 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.5;
        max-width: 92%;
    }

    /* primary button - gold style */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 14px;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .btn-primary {
        background: linear-gradient(90deg, rgba(198, 155, 84, 0.12), rgba(198, 155, 84, 0.06));
        color: var(--accent-gold);
        box-shadow: 0 6px 18px rgba(198, 155, 84, 0.08), 0 1px 0 rgba(255, 255, 255, 0.02) inset;
    }

    /* secondary button - subtle glass */
    .btn-secondary {
        background: var(--glass);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.04);
    }

    /* hero image (right) — collapse on smallest screens */
    .heroImage {
        display: none;
        /* flex: 0 0 34%;
        justify-content: center;
        align-items: center; */
    }

    .heroImage img {
        width: 100%;
        max-width: 170px;
        transform: translateY(6px);
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.55));
    }

    /* Features section - compact cards */
    .Incredibly_features {
        padding: 18px 16px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
    }


    .Incredibly_features .container {
        max-width: 100%;
    }

    .Incredibly_features .btn-secondary {
        margin-bottom: 12px;
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 13px;
    }

    .features {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: none;
        /* firefox */
    }

    .features::-webkit-scrollbar {
        display: none;
    }

    .feature {
        min-width: 140px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
        border-radius: 12px;
        padding: 12px;
        text-align: center;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 11);
        border: 1px solid rgba(198, 155, 84, 0.5);
    }

    .feature img {
        width: 44px;
        height: 44px;
        margin-bottom: 8px;
        object-fit: contain;
        filter: grayscale(10%);
    }

    .feature h3 {
        margin: 0;
        font-size: 13px;
        font-weight: 600;
        color: #fff;
    }

    .feature p {
        margin: 6px 0 0 0;
        font-size: 12px;
        color: var(--muted);
    }

    /* Featured products (mobile grid) */
    .featured-products {
        padding: 12px 16px 22px;
    }

    .section-title {
        font-family: "Playfair Display", serif;
        font-size: 20px;
        margin: 6px 0 12px;
        color: #fff;
    }

    /* product grid single column for mobile */
    .product-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px 5px;
    }

    .card-image {
        height: 208px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 1);
        border-color: rgba(198, 155, 84, 0.5);
    }

    .card-image .product-img {
        object-fit: inherit;
    }

    .card-price {
        margin-bottom: 0px;
    }

    .product-card h3 {
        font-size: 11px;
        font-weight: 0;
    }

    .card-price {
        font-size: 12px;
    }

    .product-grid-category {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5p
    }

    /* product card style */
    .product-card {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
        backdrop-filter: blur(3px);
        /* background: linear-gradient(180deg, rgba(6, 7, 8, 0.85), rgba(6, 7, 8, 0.75)); */
        border-radius: 14px;
        overflow: hidden;
        padding: 10px;
        gap: 10px;
        align-items: center;
        border: 1px solid rgba(255, 255, 255, 0.03);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 1);
        /* border-color: rgba(198, 155, 84, 0.5); */
    }


    .product-image {
        flex: 0 0 96px;
        width: 96px;
        height: 96px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.02);
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-info {
        flex: 1;
        min-width: 0;
    }

    .product-category {
        font-size: 11px;
        color: var(--muted);
        margin: 0 0 4px;
    }

    .product-name {
        margin: 0 0 6px;
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        font-family: "Playfair Display", serif;
    }

    .product-price {
        margin: 0;
        font-size: 14px;
        color: var(--accent-gold);
        font-weight: 700;
    }

    /* Add to cart button compact */
    .add-to-cart-btn {
        padding: 8px 10px;
        border-radius: 10px;
        border: none;
        cursor: pointer;
        background: linear-gradient(90deg, rgba(198, 155, 84, 0.12), rgba(198, 155, 84, 0.06));
        color: var(--accent-gold);
        font-weight: 600;
    }

    /* promo banner */
    .promo-banner {
        padding: 18px 16px;
        margin-top: 10px;
        background: linear-gradient(180deg, rgba(6, 7, 8, 0.85), rgba(6, 7, 8, 0.75));
        border-radius: 12px;
    }

    .promo-content h1 {
        font-size: 18px;
        margin: 0 0 6px;
        font-family: "Playfair Display", serif;
        color: #fff;
    }

    .promo-content p {
        margin: 0 0 10px;
        color: var(--muted);
        font-size: 13px;
    }

    /* categories filter / tags (scrollable on mobile) */
    .products-container {
        padding: 12px 8px 40px;
    }

    .filter-bar,
    /* .category-tags, */
    .quality {
        display: flex;
        gap: 10px;
        padding-bottom: 8px;
    }

    .filter-btn,
    .category-tag,
    .quality-tag {
        white-space: nowrap;
        padding: 8px 12px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.03);
        background: transparent;
        color: var(--muted);
        font-weight: 600;
        font-size: 13px;
        cursor: pointer;
    }

    .filter-btn.active,
    .category-tag.active,
    .quality-tag.slected {
        color: var(--accent-gold);
        background: linear-gradient(90deg, rgba(198, 155, 84, 0.06), rgba(198, 155, 84, 0.03));
        box-shadow: 0 8px 20px rgba(198, 155, 84, 0.05);
        border-color: rgba(198, 155, 84, 0.07);
    }

    /* color thumbnails for product details */
    .color-options {
        display: flex;
        gap: 8px;
        margin-top: 10px;
        align-items: center;
    }

    .thumbnail {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.03);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* floating add button */
    .floating-add-btn {
        background: linear-gradient(180deg, rgba(198, 155, 84, 0.14), rgba(198, 155, 84, 0.06));
        color: var(--accent-gold);
        border-radius: 12px;
        padding: 8px 10px;
        border: none;
        
    }

    /* Small interactions */
    .btn,
    .add-to-cart-btn,
    .filter-btn {
        transition: transform .18s ease, box-shadow .18s ease;
    }

    .btn:hover,
    .add-to-cart-btn:hover,
    .filter-btn:hover {
        transform: translateY(-4px);
    }

    /* accessibility / focus */
    button:focus,
    a:focus {
        outline: 3px solid rgba(198, 155, 84, 0.12);
        outline-offset: 3px;
    }





    /* Categories section sticky behavior */
    .filter-bar {
        margin-bottom: 1rem;
    }

    .categories-section {
        position: sticky;
        top: 0;
        /* sticks to top of viewport */
        z-index: 1000;
        background: linear-gradient(180deg, rgba(6, 7, 8, 0.85), rgba(6, 7, 8, 0.75));
        /* glassy dark backdrop */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        padding: 10px 16px 12px;
        transition: all 0.3s ease;
    }

    /* While sticky (active) - slightly compact */
    .categories-section.sticky-active {
        padding: 8px 14px;
        background: rgba(5, 6, 8, 0.95);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
    }

    /* Category inner layout */
    .page-title {
        font-family: "Playfair Display", serif;
        font-size: 24px;
        color: #fff;
        margin: 0 0 8px;
        text-align: center;
    }

    .section-header h2 {
        color: var(--accent-gold);
        font-size: 16px;
        margin: 10px 0 6px;
        text-align: center;
    }

    /* Scrollable filters */
    .filter-bar,
    .category-tags,
    .quality {
        display: flex;
        gap: 10px;
        scrollbar-width: none;
        /* Firefox */
        padding-bottom: 6px;
    }

    .filter-bar::-webkit-scrollbar,
    .category-tags::-webkit-scrollbar,
    .quality::-webkit-scrollbar {
        display: none;
    }

    /* Buttons style */
    .filter-btn,
    .category-tag,
    .quality-tag {
        white-space: nowrap;
        padding: 8px 12px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.04);
        background: rgba(255, 255, 255, 0.02);
        color: var(--muted);
        font-weight: 600;
        font-size: 13px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .filter-btn:hover,
    .category-tag:hover,
    .quality-tag:hover {
        color: #fff;
        background: rgba(198, 155, 84, 0.08);
    }

    .filter-btn.active,
    .category-tag.active,
    .quality-tag.slected {
        color: var(--accent-gold);
        background: linear-gradient(90deg,
                rgba(198, 155, 84, 0.08),
                rgba(198, 155, 84, 0.05));
        border-color: rgba(198, 155, 84, 0.1);
        box-shadow: 0 4px 14px rgba(198, 155, 84, 0.05);
    }

    /* footer */
        footer .flex-left {
        flex-direction: column;
    }
        footer .w-33, footer .w-66
    {
        width: 100% !important;
    }


}
