/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2200;
    padding: var(--spacing-sm) 0;
    transition: var(--transition-slow);
    background: transparent;
}

.navbar.scrolled,
.navbar.forced-scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--luxury-white);
    /* White by default for hero */
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.navbar.scrolled .logo,
.navbar.forced-scrolled .logo {
    color: var(--luxury-black) !important;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--luxury-white);
    /* White by default for hero */
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-links a,
.navbar.forced-scrolled .nav-links a {
    color: var(--luxury-black) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--luxury-white);
}

.navbar.scrolled .nav-actions,
.navbar.forced-scrolled .nav-actions {
    color: var(--luxury-black) !important;
}

.nav-actions button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
}

/* Hero - Minimal & Intense */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding-bottom: 1rem;
    /* Minimal padding to sit at the very bottom */
    position: relative;
    background: var(--luxury-black);
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    /* Increased opacity for better image definition */
    filter: brightness(0.7) contrast(1.1);
    /* Subtle focal boost */
    transition: transform 10s linear;
}

.hero:hover .hero-img {
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    color: var(--luxury-white);
    padding: var(--spacing-md);
    padding-top: 100px;
    /* Clear fixed navbar */
    text-align: center;
    margin: 0 auto 0 auto;
    /* Ensure no bottom margin lifts it up */
}

.hero-content h1,
.hero-content p,
.hero-content .luxury-tag {
    color: var(--luxury-white) !important;
    /* Multi-layered shadow for absolute isolation without box distortion */
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 10px 20px rgba(0, 0, 0, 0.5),
        0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 6rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    /* Deeper shadow for absolute separation */
    color: var(--luxury-white);
}

.hero p {
    font-size: 1.3rem;
    /* Slightly larger for better readability */
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    opacity: 1 !important;
    font-weight: 300;
    /* Increased for contrast */
}

/* Category Boutique Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.category-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.cat-img-wrapper {
    height: 100%;
    width: 100%;
}

.cat-img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card:hover .cat-img-wrapper img {
    transform: scale(1.03);
}

.cat-info {
    position: absolute;
    bottom: var(--spacing-md);
    left: var(--spacing-md);
    z-index: 20;
    /* Ensure it stays above the overlay */
    color: var(--luxury-white) !important;
}

.cat-info h3 {
    font-size: 2.5rem;
    /* Larger for better visibility */
    color: var(--luxury-white) !important;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow:
        0 4px 8px rgba(0, 0, 0, 0.9),
        0 8px 25px rgba(0, 0, 0, 0.7);
}

.cat-info p {
    color: var(--luxury-white) !important;
    font-size: 1.1rem;
    opacity: 1;
    font-weight: 400;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    z-index: 5;
    transition: var(--transition-slow);
}

/* Footer - Sophisticated & Clean */
.footer {
    background: var(--luxury-green-deep);
    /* Psychological anchor - stable and organic */
    padding: var(--spacing-xl) 0 var(--spacing-md) 0;
    color: var(--luxury-white);
    /* White text on dark green for max contrast */
}

.footer .logo,
.footer p,
.footer a {
    color: var(--luxury-white);
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--spacing-xl);
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 968px) {
    h1 {
        font-size: 4rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* FORCED COMPACT SPACING */
#seeds-shelf.section,
#fruits-shelf.section {
    padding-top: 0rem !important;
    padding-bottom: 2rem !important;
}

#seeds-shelf .section-header,
#fruits-shelf .section-header {
    margin-bottom: 1rem !important;
}

/* Obsidian Glassmorphism Search - Exquisite Boutique Edition */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 10, 0.98);
    /* Obsidian depth */
    /* Intense high-end blur */
    backdrop-filter: blur(40px) saturate(1.8);
    -webkit-backdrop-filter: blur(40px) saturate(1.8);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 5vh 2rem 5vh;
    color: var(--luxury-white);
    overflow-y: auto;
}

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

.close-search {
    position: fixed;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    z-index: 10001;
    transition: all 0.4s ease;
}

.close-search:hover {
    color: var(--luxury-gold);
    transform: rotate(90deg);
}

.search-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* Sophisticated staggered entry for container */
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.open .search-container {
    transform: translateY(0);
}

.search-header {
    text-align: center;
    padding-bottom: 3rem;
}

#search-input {
    width: 100%;
    border: none;
    font-size: 4.5rem;
    /* Larger, more cinematic */
    font-family: var(--font-heading);
    color: var(--luxury-gold);
    padding: 1rem 0;
    background: transparent;
    text-align: center;
    outline: none;
    letter-spacing: -0.03em;
    font-style: italic;
    /* Added high-fashion italic flare */
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: border-color 0.4s ease;
}

#search-input:focus {
    border-bottom-color: var(--luxury-gold);
}

.trending-tags {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.7rem;
    flex-wrap: wrap;
}

.trending-tags span {
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-right: 0.5rem;
}

.trending-tags button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 20px;
    border-radius: 0;
    /* Sharp for luxury */
    cursor: pointer;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trending-tags button:hover {
    border-color: var(--luxury-gold);
    color: var(--luxury-gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

#search-results-container {
    padding-bottom: 2rem;
}

#search-results-container::-webkit-scrollbar {
    width: 6px;
}

#search-results-container::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 4px;
}

.category-suggestion {
    margin-bottom: 4rem;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(212, 175, 55, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-slow);
}

.category-suggestion:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--luxury-gold);
}

/* Product Detail Page (PDP) - Amazon Style Luxury */
.pdp-main {
    padding-top: 120px;
}

/* Pure Full Bleed Container */
.pdp-full-bleed {
    width: 100%;
    /* Left padding = max(minimum mobile spacing, (viewport minus 1400px max-width) / 2 + container spacing) */
    padding-left: max(var(--spacing-md), calc((100vw - 1400px) / 2 + var(--spacing-md)));
    padding-right: max(var(--spacing-md), calc((100vw - 1400px) / 2 + var(--spacing-md)));
    overflow-x: hidden; /* Prevent horizontal scrollbars from 100vw/calc bugs */
}

/* Inner Grid */
.pdp-full-bleed .pdp-grid {
    display: grid;
    /* Exactly 50/50 split */
    grid-template-columns: 1fr 1fr;
    gap: 5%;
    align-items: start;
    margin-bottom: 4rem;
}

.pdp-gallery {
    position: sticky;
    top: 120px;
    z-index: 10;
}

.pdp-col-buy-box {
    width: 100%;
    margin-top: 0;
    animation-delay: 0.4s;
    /* synced with reveal delay-2 */
}

/* Horizontal Action Deck Layout */
.transaction-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

.price-group {
    flex: 1;
    min-width: 200px;
}

.controls-group {
    flex: 2;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: flex-end;
    min-width: 300px;
}

@media (max-width: 768px) {
    .transaction-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .controls-group {
        width: 100%;
        justify-content: space-between;
        min-width: 0;
    }

    .cta-actions {
        width: 100%;
    }

    .pdp-buy-box {
        margin-top: 1rem;
    }
}

/* Action Deck Layout */
.action-deck-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .action-deck-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pdp-buy-box {
        margin-top: 1rem;
    }
}

.pdp-gallery .pdp-image-container,
.pdp-col-left .pdp-image-container,
.pdp-gallery-inner .pdp-image-container {
    background: radial-gradient(circle at center, #ffffff 0%, #f4f6f5 100%);
    padding: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    width: 100%;
    position: relative;
    border-radius: var(--radius-large);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.pdp-gallery .main-pdp-img,
.pdp-col-left .main-pdp-img,
.pdp-gallery-inner .main-pdp-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.1));
}

.pdp-gallery .pdp-image-container:hover .main-pdp-img,
.pdp-col-left .pdp-image-container:hover .main-pdp-img,
.pdp-gallery-inner .pdp-image-container:hover .main-pdp-img {
    transform: scale(1.08) translateY(-5px);
}

.pdp-title {
    font-size: 3.8rem;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

/* PDP Discovery & Details */
.pdp-discovery {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
}

.pdp-brand-seal {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--luxury-gold);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.pdp-description {
    margin-bottom: 3rem;
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 1.05rem;
}

.pdp-section-title {
    font-size: 1.35rem;
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
    color: #222;
    letter-spacing: -0.01em;
}

.pdp-features {
    list-style: none;
    margin-top: 2rem;
    padding: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 2rem;
}

.pdp-features li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.pdp-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--luxury-gold);
    font-size: 1.2rem;
    top: -2px;
}

.pdp-features strong {
    display: block;
    color: #222;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.pdp-features span {
    font-size: 0.95rem;
}

/* Buy Deck */
.pdp-buy-deck {
    background: #ffffff;
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-soft);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.pdp-buy-deck::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--luxury-gold), transparent);
}

.pdp-price-info {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pdp-price-info .mrp {
    font-size: 1.15rem;
    color: #a0a0a0;
}

.pdp-price-info .actual-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.tax-tag {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pdp-controls {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 1.5rem;
}

.qty-selector {
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(0, 0, 0, 0.2);
    height: 54px;
    border-radius: 4px;
    overflow: hidden;
    box-sizing: border-box;
    background: transparent;
}

.qty-selector button {
    background: transparent;
    border: none;
    width: 45px;
    height: 100%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--luxury-black);
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-selector button:hover {
    background: rgba(0, 0, 0, 0.05);
}

.qty-selector input {
    width: 45px;
    height: 100%;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--luxury-black);
    -moz-appearance: textfield;
    appearance: textfield;
    background: transparent;
}

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

.btn-pdp-cta {
    flex-grow: 1;
    height: 54px;
    padding: 0;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: goldPulse 2.5s infinite;
}

@keyframes goldPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.btn-full {
    width: 100%;
    height: 54px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

.buy-box-card {
    background: var(--luxury-white);
    padding: 2.5rem;
    border: 1px solid #eee;
    display: block;
    position: relative;
    /* Not sticky, the parent hub is sticky */
    box-shadow: var(--shadow-subtle);
}

/* Recommendations styling in Buy Box */
.bespoke-pairings {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #ddd;
}

.pairings-title {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #999;
    margin-bottom: 1.2rem;
    display: block;
}

.pairing-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.pairing-item:hover {
    transform: translateX(5px);
}

.pairing-thumb {
    width: 50px;
    height: 50px;
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 5px;
    flex-shrink: 0;
}

.pairing-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pairing-info h4 {
    font-size: 0.7rem;
    margin: 0;
    color: var(--luxury-black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.pairing-info span {
    font-size: 0.75rem;
    color: var(--luxury-gold);
    display: block;
    margin-top: 2px;
}

@media (max-width: 1200px) {
    .pdp-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pdp-buy-box {
        grid-column: 1 / -1;
    }

    .buy-box-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .pdp-grid {
        grid-template-columns: 1fr;
    }

    .pdp-title {
        font-size: 2.5rem;
    }
}

/* Search Trigger Button */
.search-trigger {
    background: none;
    border: none;
    color: inherit;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-trigger:hover {
    color: var(--luxury-gold);
}

/* Side Menu Drawer - Royal Elite Edition */
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(8, 20, 15, 0.98), var(--luxury-green-deep));
    backdrop-filter: blur(40px) saturate(1.8);
    -webkit-backdrop-filter: blur(40px) saturate(1.8);
    z-index: 3000;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
    padding: 10vh 3rem;
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.7);
    border-left: 2px solid rgba(212, 175, 55, 0.4);
    /* Enhanced gold border */
    overflow-y: auto;
    scrollbar-width: none;
    /* Hide scrollbar for clean look */
}

.side-menu::-webkit-scrollbar {
    display: none;
}

.side-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15), transparent 70%);
    pointer-events: none;
}

.side-menu.open {
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 3rem;
    left: 4rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(212, 175, 55, 0.6);
    /* Soft gold start */
    transition: var(--transition-fast);
    line-height: 1;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.close-menu:hover {
    color: var(--luxury-gold);
    transform: rotate(90deg);
}

.menu-content {
    margin-top: 4rem;
}

.menu-links {
    list-style: none;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.menu-links li a {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--luxury-white);
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    opacity: 0.8;
    letter-spacing: -0.02em;
    position: relative;
}

.menu-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--luxury-gold);
    transition: width 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.menu-links li a:hover {
    opacity: 1;
    color: var(--luxury-gold);
    transform: translateX(15px);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.menu-links li a:hover::after {
    width: 100%;
}

@media (max-width: 500px) {
    .side-menu {
        width: 100%;
        padding: 10vh 2rem;
    }
}

/* --- Gifting Suite Premium Styles --- */
.vessel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.vessel-card {
    background: var(--luxury-white);
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-soft);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.vessel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-subtle);
    border-color: var(--luxury-gold);
}

.vessel-card.active {
    border-color: var(--luxury-gold);
    background: rgba(212, 175, 55, 0.03);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.vessel-card.active::after {
    content: 'SELECTED';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--luxury-gold);
    letter-spacing: 0.1em;
}

.vessel-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 1rem 0 0.5rem;
    color: var(--luxury-black);
}

.vessel-capacity {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1rem;
}

.vessel-price {
    font-weight: 700;
    color: var(--luxury-gold);
    font-size: 1.1rem;
}

/* Selection Cards in Grid */
.selection-card {
    background: var(--luxury-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: var(--radius-soft);
    transition: var(--transition-fast);
}

.selection-card:hover {
    border-color: var(--luxury-gold);
    background: #fdfdfd;
}

.selection-info {
    flex-grow: 1;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.qty-btn:hover:not(:disabled) {
    border-color: var(--luxury-gold);
    color: var(--luxury-gold);
}

.qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Capacity Multi-Meter */
.capacity-meter-container {
    margin-bottom: 2rem;
}

.capacity-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 0.8rem;
}

.meter-track {
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    display: flex;
}

.meter-segment {
    height: 100%;
    transition: width 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.meter-segment.core {
    background: var(--luxury-black);
}

.meter-segment.choc {
    background: var(--luxury-gold);
}

.meter-segment.flower {
    background: #e27d60;
}

/* Step Transitions */
.builder-step {
    animation: stepFadeIn 0.6s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.curation-search input:focus {
    border-color: var(--luxury-gold) !important;
    background: #fff !important;
}

.selection-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--luxury-black);
    margin-bottom: 0.2rem;
}

.selection-price {
    font-size: 0.8rem;
    color: var(--luxury-gold);
    font-weight: 600;
}

.product-qty-display {
    font-weight: 700;
    color: var(--luxury-black);
    font-size: 1rem;
}

/* Custom Scrollbar for Grid */
#selection-grid::-webkit-scrollbar {
    width: 6px;
}

#selection-grid::-webkit-scrollbar-track {
    background: #f9f9f9;
}

#selection-grid::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

#selection-grid::-webkit-scrollbar-thumb:hover {
    background: var(--luxury-gold);
}

/* Product Page Enhancements */

/* Ratings & Stock */
.pdp-rating-stock {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.pdp-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 1.1rem;
}

.pdp-rating .star {
    color: #ffd700;
}

.pdp-rating .star.empty {
    color: #e0e0e0;
}

.rating-value {
    margin-left: 0.5rem;
    font-weight: 600;
    color: #4a4a4a;
    font-size: 0.95rem;
}

.pdp-stock-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #27ae60;
    border-radius: 50%;
    display: inline-block;
    animation: pulseStock 2s infinite;
}

@keyframes pulseStock {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(39, 174, 96, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

/* PDP Tabs */
.pdp-tabs-container {
    margin-bottom: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 2rem;
}

.pdp-tabs-nav {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0 0 1rem 0;
    font-size: 1rem;
    font-family: var(--font-heading);
    color: #888;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.tab-btn:hover {
    color: var(--luxury-black);
}

.tab-btn.active {
    color: var(--luxury-gold);
    font-weight: 600;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--luxury-gold);
    transition: width 0.3s ease;
}

.tab-btn.active::after {
    width: 100%;
}

.pdp-tab-content {
    display: none;
    animation: fadeInTab 0.4s ease;
    color: #4a4a4a;
    line-height: 1.8;
}

.pdp-tab-content.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

/* Mobile Sticky Buy Bar */
.sticky-buy-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1rem 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2000;
}

.sticky-buy-bar.visible {
    transform: translateY(0);
}

.sticky-product-info {
    display: flex;
    flex-direction: column;
}

.sticky-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--luxury-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.sticky-price {
    font-weight: 600;
    color: var(--luxury-gold);
    font-size: 1.1rem;
}

.btn-sticky-add {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
}

@media (min-width: 769px) {
    .sticky-buy-bar {
        display: none !important;
    }
}

/* Enhanced Buy Deck */
.pdp-buy-deck {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    margin-top: 2rem;
}

/* Extended Product Story */
.extended-product-story {
    margin-top: 4rem;
    padding: 5rem 2rem;
    background: rgba(212, 175, 55, 0.03);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);

    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 0 2rem;
}

.story-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.story-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.story-card h3 {
    font-family: var(--font-heading);
    color: var(--luxury-black);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.story-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .extended-product-story {
        padding: 3rem 1.5rem;
    }
}

/* Weight Selector Buttons */
.weight-btn {
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    background: #fff;
    color: #555;
}

.weight-btn:hover {
    border-color: var(--luxury-black);
    color: var(--luxury-black);
    transform: translateY(-2px);
}

.weight-btn.active {
    border-color: var(--luxury-gold);
    background: rgba(212, 175, 55, 0.08);
    color: var(--luxury-gold);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.1);
}

.custom-weight-box {
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #eee;
    animation: fadeIn 0.3s ease;
}

.custom-weight-input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.3s ease;
    flex: 1;
}

.custom-weight-input:focus {
    border-color: var(--luxury-gold);
}

/* Quality Variant Pills */
.variant-pill {
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    background: #fff;
    color: #555;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.variant-pill:hover {
    border-color: var(--luxury-black);
    color: var(--luxury-black);
    transform: translateY(-2px);
}

.variant-pill.active {
    border-color: var(--luxury-gold);
    background: rgba(212, 175, 55, 0.08);
    color: var(--luxury-gold);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.1);
}

.variant-price-tag {
    opacity: 0.7;
    font-weight: 400;
    font-size: 0.85rem;
}

/* Ensure cohesion between weight and variant buttons */
.weight-btn,
.variant-pill {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

/* Success Screen Enhancements */
.success-checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon {
    width: 64px;
    height: 64px;
    position: relative;
    border-radius: 50%;
    border: 4px solid #27ae60;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon::after {
    content: '';
    width: 15px;
    height: 30px;
    border-right: 4px solid #27ae60;
    border-bottom: 4px solid #27ae60;
    transform: rotate(45deg);
    margin-top: -5px;
    display: block;
}

.order-journey {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 3.5rem auto;
    position: relative;
    padding: 0 10px;
}

.order-journey::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #f0f0f0;
    z-index: 1;
}

.journey-step {
    position: relative;
    z-index: 2;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    width: 80px;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ccc;
    transition: all 0.4s ease;
}

.journey-step.active .step-dot {
    background: var(--luxury-gold);
    border-color: var(--luxury-gold);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.step-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.journey-step.active .step-label {
    color: var(--luxury-black);
}

.success-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.success-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--luxury-black);
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1rem;
}

.next-step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
}

.next-step-item:last-child {
    margin-bottom: 0;
}

.item-number {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--luxury-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.item-text b {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--luxury-black);
}

.item-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Luxury Toast Notifications */
.toast-container {
    position: fixed;
    top: 100px;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.toast-item {
    pointer-events: auto;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 320px;
    max-width: 450px;
    transform: translateX(120%);
    animation: toast-slide-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    overflow: hidden;
}

.toast-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--luxury-gold);
}

.toast-item.exit {
    animation: toast-slide-out 0.5s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}

.toast-icon {
    font-size: 1.25rem;
    color: var(--luxury-gold);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--luxury-gold);
    margin-bottom: 0.2rem;
    display: block;
}

.toast-message {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #fff;
}

@keyframes toast-slide-in {
    from {
        transform: translateX(120%);
        opacity: 0;
    }

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

@keyframes toast-slide-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

/* Amazon-style 3-Column Layout */
.amazon-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 5rem;
}

@media (max-width: 1024px) {
    .amazon-layout {
        grid-template-columns: 1fr 1.2fr;
    }

    .pdp-col-buy-box {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .amazon-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.sticky-element {
    position: sticky;
    top: 100px;
}

/* Middle Column Info */
.pdp-brand-link {
    color: #007185;
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.pdp-price-section {
    padding: 1rem 0;
    border-top: 1px solid #eee;
}

.price-row {
    display: flex;
    align-items: flex-start;
    color: #0F1111;
}

.price-symbol {
    font-size: 0.9rem;
    margin-top: 5px;
}

.price-large {
    font-size: 2rem;
    font-weight: 500;
}

.mrp-row {
    font-size: 0.85rem;
    color: #565959;
}

.mrp-value {
    text-decoration: line-through;
}

/* Buy Box Card */
.pdp-buy-box-inner {
    background: #fff;
    border: 1px solid #D5D9D9;
    border-radius: 8px;
    padding: 1.5rem;
}

.buy-box-price {
    display: flex;
    align-items: flex-start;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.prime-text {
    font-size: 0.9rem;
    color: #007185;
    margin-bottom: 0.5rem;
}

.stock-info {
    color: #007600;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.qty-row {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.amazon-qty-select {
    padding: 6px 12px;
    border: 1px solid #D5D9D9;
    border-radius: 8px;
    background: #F0F2F2;
    box-shadow: 0 2px 5px rgba(213, 217, 217, 0.5);
    cursor: pointer;
}

.amazon-btn {
    width: 100%;
    padding: 10px 0;
    border-radius: 20px;
    border: 1px solid;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(213, 217, 217, 0.5);
}

.amazon-btn.yellow {
    background: #FFD814;
    border-color: #FCD200;
}

.amazon-btn.yellow:hover {
    background: #F7CA00;
}

.amazon-btn.orange {
    background: #FFA41C;
    border-color: #FF8F00;
}

.amazon-btn.orange:hover {
    background: #FA8900;
}

.secure-info {
    font-size: 0.85rem;
    color: #007185;
    text-align: center;
    margin: 1.5rem 0;
}

.weight-btn-small {
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #D5D9D9;
    background: #fff;
    font-size: 0.8rem;
    margin: 0 4px 4px 0;
    cursor: pointer;
}

.weight-btn-small.active {
    border-color: #e77600;
    background: #fdf5ef;
    box-shadow: 0 0 3px 2px rgba(228, 121, 17, .1);
}