:root {
    --bg-black: #05020f;
    --bg-dark: #0d0818;
    --bg-dark-light: #1a0f30;
    --accent: #ff2d9b;
    /* Gold/Bronze */
    --accent-hover: #ff5eb4;
    --text-primary: #f0e6ff;
    --text-secondary: #9d8ec7;
    --border-color: rgba(0, 229, 255, 0.2);
    --sale-color: #ff2d9b;
    --font-main: 'Rajdhani', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
    --shadow: 0 0 20px rgba(255, 45, 155, 0.25);
    --transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    text-shadow: 0 0 20px rgba(255, 45, 155, 0.5);
}

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

/* Cursor defaults: arrow over text/everything, I-beam only in editable fields */
body {
    cursor: default;
}

input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input:not([type]),
textarea {
    cursor: text;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--accent);
    color: #000;
    padding: 8px 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Page Header */
.page-header {
    background-color: var(--bg-dark);
    padding: 100px 0;
    text-align: center;

}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.active-nav {
    color: var(--accent) !important;
}

/* Grid Layouts */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.info-card {
    background: var(--bg-dark);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
}

/* About/Story Layout */
.story-layout {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.story-content {
    flex: 1.2;
}

.story-visual {
    flex: 0.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.value-card {
    background: var(--bg-dark);
    padding: 25px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.value-card i {
    color: var(--accent);
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .story-layout {
        flex-direction: column;
    }
}

/* Header */
.main-header {
    background-color: var(--bg-black);
    position: sticky;
    top: 0;
    z-index: 1000;

    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.header-top {
    position: relative;
    /* Base for absolute logo centering */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    min-height: 120px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-self: start;
    width: 100%;
}

.logo-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    justify-content: center;
}

/* Glow specifically for the text at the bottom of the logo */
.logo-container::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    height: 45px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5) 0%, transparent 75%);
    filter: blur(8px);
    z-index: -1;
    pointer-events: none;
}

.header-logo {
    height: 125px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2)); /* Very subtle glow for the rest of the logo */
}

.search-container {
    width: 260px;
    /* Fixed width to prevent shifting */
}

.search-form {
    display: flex;
    position: relative;
}

.search-form input {
    width: 100%;
    background: var(--bg-dark-light);
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    color: #fff;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.search-form input:focus {
    border-color: var(--accent);
    background: var(--bg-black);
}

.search-form button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
}

.user-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    width: 260px;
    /* Match left side for balance */
}

.action-link {
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-link i {
    font-size: 1.2rem;
}

.cart-icon-wrapper {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--accent);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Category Nav */
.category-nav {
    background-color: var(--bg-dark);
}

.nav-list {
    display: flex;
    justify-content: center;
    padding: 12px 0;
    gap: 30px;
}

.nav-item {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-item:hover,
.nav-item.highlight {
    color: var(--accent);
}

/* Dropdown Styles */
.dropdown {
    position: static;
}

.category-nav {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: calc(100% - 40px);
    max-width: 1260px;
    background-color: var(--bg-dark);
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 229, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                visibility 0.4s;
    z-index: 1001;
    pointer-events: none;
}

.mega-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
    z-index: -1;
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-menu-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1.2fr 1.1fr 1.1fr 1.6fr;
    gap: 40px;
}

.mega-menu-col {
    display: flex;
    flex-direction: column;
}

/* Remove default dividers */
.mega-menu-col:not(:last-child) {
    border-right: none;
    padding-right: 0;
}

/* Put dividers only on Column 1 and Column 3 to avoid dividing the brands list (Cols 2 & 3) */
.mega-menu-col:nth-child(1),
.mega-menu-col:nth-child(3) {
    border-right: 1px solid rgba(0, 229, 255, 0.1);
    padding-right: 30px;
}

.mega-menu-col:nth-child(2) {
    padding-right: 15px;
}

.mega-menu-col:nth-child(3) {
    padding-left: 15px;
}

.mega-menu-col h3 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 45, 155, 0.3);
}

.mega-menu-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-menu-col ul li a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-block;
}

.mega-menu-col ul li a:hover {
    color: var(--text-primary);
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(240, 230, 255, 0.5);
}

.perfume-week-col {
    padding-left: 10px;
}

.perfume-week-card {
    background: linear-gradient(135deg, rgba(26, 15, 48, 0.6) 0%, rgba(13, 8, 24, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.perfume-week-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(255, 45, 155, 0.2);
}


.perfume-week-image {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.perfume-week-image img {
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.6));
}

.perfume-week-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.perfume-week-info .brand {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
}

.perfume-week-info h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.perfume-week-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 12px;
}

.perfume-week-info .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.perfume-week-info .price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
}

.shop-now-btn {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: #000;
    background-color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.shop-now-btn:hover {
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 0 15px var(--accent);
}

.nav-item i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-item i {
    transform: rotate(180deg);
}

.highlight {
    color: var(--sale-color) !important;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
}

/* Hero Section */
.hero-slider {
    position: relative;
    min-height: 640px;
    padding: 96px 64px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('images/single-bottle.png');
    background-size: cover;
    background-position: 55% center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin-bottom: 60px;
}

.hero-label {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1.05;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.accent {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
    border: none;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    margin-left: 15px;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Trust Bar */
.trust-bar {
    background-color: var(--bg-dark);
    padding: 8px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    font-size: 1.1rem;
    color: var(--accent);
}

.trust-text h4 {
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 0px;
    line-height: 1.1;
}

.trust-text p {
    font-size: 0.62rem;
    color: var(--text-secondary);
    line-height: 1.1;
}

/* Category Grid */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* ---- Animated Stroke Hover Effect ---- */
.grid-item::before, .grid-item::after,
.vibe-card::before, .vibe-card::after,
.brand-card::before, .brand-card::after {
    content: '';
    position: absolute;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 10;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Horizontal lines (Top & Bottom) */
.grid-item::before, .vibe-card::before, .brand-card::before {
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-top: 1px solid rgba(255, 45, 155, 0.6);
    border-bottom: 1px solid rgba(255, 45, 155, 0.6);
    transform: scaleX(0);
}

/* Vertical lines (Left & Right) */
.grid-item::after, .vibe-card::after, .brand-card::after {
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-left: 1px solid rgba(255, 45, 155, 0.6);
    border-right: 1px solid rgba(255, 45, 155, 0.6);
    transform: scaleY(0);
}

/* Hover state */
.grid-item:hover::before, .vibe-card:hover::before, .brand-card:hover::before {
    transform: scaleX(1);
}

.grid-item:hover::after, .vibe-card:hover::after, .brand-card:hover::after {
    transform: scaleY(1);
}

.grid-item.large {
    grid-row: span 2;
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 100%);
    transition: background 0.6s ease;
}

.grid-item:hover .item-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 30%, rgba(0, 0, 0, 0.85) 100%);
}

.item-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 5;
}

.item-content h2,
.item-content h3 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
    text-transform: uppercase;
    transition: transform 0.5s ease;
}

.grid-item:hover .item-content h2,
.grid-item:hover .item-content h3 {
    transform: translateY(-4px);
}

.shop-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    background-color: rgba(0, 0, 0, 0.85); /* Solid dark background for readability */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid rgba(200, 162, 74, 0.6);
    border-radius: 2px;
    transition: opacity 0.3s ease, background 0.3s ease;
    text-decoration: none;
    width: max-content;
}

.shop-link i {
    transition: transform 0.3s ease;
}

.shop-link:hover {
    background-color: var(--accent);
    color: #000;
    opacity: 0.9;
}

.shop-link:hover i {
    transform: translateX(4px);
}

.deals {
    background: url('assets/OO%20and%20Carlos/Unbeatable%20Deals.png') 72% center/cover;
}

.men {
    background: url('assets/OO%20and%20Carlos/Justin%27s%20Deals.png') center/cover;
}

.women {
    background: url('assets/OO%20and%20Carlos/Jess%27%20Deals.png') center/cover;
}

/* Product Section */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
}

.view-all {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;

}

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

.product-card {
    background-color: var(--bg-dark);
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 20px;
    z-index: 10;
}

.badge.sale {
    background-color: var(--sale-color);
    color: white;
}

.badge.new {
    background-color: #2ecc71;
    color: white;
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--bg-dark-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-main {
    transform: none;
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.image-placeholder {
    font-family: var(--font-heading);
    opacity: 0.3;
    font-weight: 700;
    text-align: center;
    padding: 20px;
}

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.action-btn {
    background: #fff;
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn.quick-view {
    border-radius: 20px;
    width: auto;
    padding: 0 20px;
    font-weight: 700;
    font-size: 0.7rem;
}

.product-info {
    padding: 12px;
    text-align: center;
}

.product-brand {
    display: block;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-title {
    font-size: 1rem;
    margin-bottom: 6px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-rating {
    display: none;
}

.product-rating span {
    color: var(--text-secondary);
    margin-left: 5px;
}

.product-price {
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-right: 10px;
}

.current-price {
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff;
}

/* Floating wishlist heart on product cards */
.wishlist-float {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 12;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    opacity: 0.65;
    transition: opacity 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover .wishlist-float {
    opacity: 1;
}

.wishlist-float:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
    transform: scale(1.08);
}

.wishlist-float.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    opacity: 1;
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

/* Dark CTA Section */
.dark-cta {
    background-color: var(--bg-dark);
    padding: 100px 0;
}

.story-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.story-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.story-image {
    flex: 1;
    height: 600px;
    /* Reduced height to avoid excessive scrolling */
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    /* Prioritize the faces/top of the original image */
    display: block;
}

.image-placeholder.wide {
    height: 400px;
    background-color: var(--bg-dark-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    opacity: 0.2;
    border: 1px dashed var(--border-color);
}

/* Newsletter */
.newsletter-section {
    background-color: #151515;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    color: #fff;
    border-radius: 4px;
}

/* Footer */
.footer {
    background-color: #151515;
    padding-top: 80px;

}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo-container {
    position: relative;
    display: inline-flex;
    margin-bottom: 25px;
    z-index: 1;
}

.footer-logo-container::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    height: 45px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.4) 0%, transparent 75%);
    filter: blur(8px);
    z-index: -1;
    pointer-events: none;
}

.footer-logo {
    height: 90px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
    display: block;
}

.brand-col p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.footer-col h4 {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.contact-info li {
    display: flex;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.payment-icons {
    display: flex;
    gap: 20px;
    font-size: 1.8rem;
    color: var(--text-secondary);
}

/* Brands Showcase Section */
.brands-section {
    background-color: #050505;
    padding: 100px 0;


}

.brand-showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.brand-showcase-header .sub-label {
    display: block;
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
    font-weight: 600;
}

.brand-showcase-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.header-line {
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 20px auto 0;
}

.brand-slider-wrapper {
    overflow: hidden;
    position: relative;
    margin-bottom: 60px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.brand-slider-track {
    display: flex;
    width: max-content;
    margin-bottom: 24px;
}

.brand-slider-track:last-child {
    margin-bottom: 0;
}

.brand-slider-track.row-left {
    animation: brand-scroll-left 120s linear infinite;
}

.brand-slider-track.row-right {
    animation: brand-scroll-right 120s linear infinite;
}

.brand-slider-track .brand-card {
    flex-shrink: 0;
    margin: 0 16px;
    width: 200px;
}

@keyframes brand-scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes brand-scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    text-decoration: none;
}

.brand-logo-wrap {
    height: 110px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    opacity: 0.6;
    transition: all 0.5s ease;
}

.brand-logo-wrap img {
    max-height: 90px;
    max-width: 170px;
    object-fit: contain;
    filter: invert(1) grayscale(1);
    mix-blend-mode: screen;
    transition: all 0.5s ease;
}

.brand-card-name {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    text-transform: uppercase;
    display: block;
    padding: 0;
    border: none;
    transition: color 0.4s ease;
}

.brand-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.brand-card:hover .brand-logo-wrap {
    opacity: 1;
    transform: translateY(-5px);
}

.brand-card:hover .brand-logo-wrap img {
    filter: invert(1) grayscale(1) drop-shadow(0 0 8px rgba(255, 45, 155, 0.6));
}

.brand-card:hover .brand-card-name {
    color: var(--accent);
}

.view-all-brands {
    text-align: center;
}

@media (max-width: 992px) {
    .brand-slider-track .brand-card {
        width: 130px;
        margin: 0 12px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .search-container {
        display: none;
        /* Hide main search on mobile, can add toggle icon */
    }

    .category-nav {
        display: none;
        /* Mobile menu will handle this */
    }

    .header-top {
        padding: 15px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .story-flex {
        flex-direction: column-reverse;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 20px;
    }
}

/* Trust Banner - Refined Clickable Version */
.trust-banner-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.trust-banner {
    background: url('assets/OO%20and%20Carlos/Cyber%20Banner.png') center/cover no-repeat;
    padding: 80px 0;
    position: relative;
    margin: 40px 0 0 0;
    overflow: hidden;
    cursor: pointer;
    transition: filter 0.4s ease-out;
}

.trust-banner-link:hover .trust-banner {
    filter: brightness(1.2);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Uniform dimming overlay */
    z-index: 1;
}

.trust-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
}

.trust-banner-text {
    text-align: left;
    max-width: 900px;
}

.trust-banner-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    white-space: nowrap;
}

.trust-banner-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.shop-now-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    background-color: rgba(0, 0, 0, 0.85); /* Consistent with other CTAs */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid rgba(200, 162, 74, 0.6);
    border-radius: 2px;
    transition: opacity 0.3s ease, background 0.3s ease;
    text-decoration: none;
    width: max-content;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: normal;
}

.shop-now-text i {
    transition: transform 0.3s ease;
}

.trust-banner-link:hover .shop-now-text {
    background-color: var(--accent);
    color: #000;
    opacity: 0.9;
}

.trust-banner-link:hover .shop-now-text i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .trust-banner {
        padding: 40px 0;
        text-align: center;
    }

    .trust-banner-content {
        justify-content: center;
    }

    .trust-banner-text {
        text-align: center;
    }

    .trust-banner-text h2 {
        font-size: 1.8rem;
    }
}
/* ==========================================================================
   ADDED SECTIONS (Monthly Discovery, Find Your Vibe, Marquee)
   ========================================================================== */

/* Subscription Box (Monthly Discovery) */
.outlaw-discovery {
    position: relative;
    overflow: hidden;
}



.discovery-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 100px;
}

.discovery-info {
    position: relative;
    z-index: 2;
}

.discovery-info h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.discovery-info p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.discovery-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.discovery-features li {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.discovery-features i {
    color: var(--accent);
}

.discovery-visual {
    position: relative;
    z-index: 2;
}

.discovery-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 80px 50px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 20px 20px 0px var(--bg-dark-light);
    position: relative;
}

.discovery-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--accent);
    color: #000;
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(5deg);
    z-index: 5;
}

.discovery-price {
    font-size: 5rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.discovery-price span {
    font-size: 2rem;
    vertical-align: super;
    margin-right: 5px;
}

.discovery-freq {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.discovery-btn {
    display: block;
    width: 100%;
    padding: 22px;
    background: var(--accent);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition);
}

.discovery-btn:hover {
    background: var(--accent-hover);
}

@media (max-width: 992px) {
    .discovery-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
}

/* Vibe Section */
.vibe-section {
    background: var(--bg-black);
    overflow: hidden;
}

.vibe-header {
    margin-bottom: 50px;
}
.vibe-header h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-style: italic;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.vibe-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.vibe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .vibe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.vibe-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    height: 600px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.vibe-card:hover {
    box-shadow: 0 8px 40px rgba(200, 162, 74, 0.15);
    transform: translateY(-4px);
}

@media (min-width: 992px) {
    .vibe-card:nth-child(even) {
        margin-top: 48px;
    }
}

.vibe-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

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

.vibe-img[src="images/vibe-citrus.png"] {
    width: 140%;
    height: 140%;
    left: 0%;
    top: -20%;
}

.vibe-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    transition: background 0.5s ease;
}

.vibe-card:hover .vibe-overlay {
    background: rgba(0,0,0,0.2);
}

.vibe-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 2;
}

.vibe-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    transition: transform 0.5s ease;
}

.vibe-card:hover .vibe-content h3 {
    transform: translateY(-4px);
}

.vibe-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.vibe-card:hover .vibe-content p {
    opacity: 1;
    transform: translateY(0);
}

.vibe-explore {
    font-family: inherit;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent);
    background-color: rgba(0, 0, 0, 0.85);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid rgba(200, 162, 74, 0.6);
    border-radius: 2px;
    transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
    align-self: flex-start; /* Prevents stretching to full width */
    width: max-content;
}

.vibe-explore i {
    transition: transform 0.3s ease;
}

.vibe-explore:hover {
    background: var(--accent);
    color: #000;
    opacity: 0.9;
}

.vibe-explore:hover i {
    transform: translateX(4px);
}

/* Marquee */
.marquee-container {
    background: var(--bg-dark);
    padding: 30px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 60s linear infinite;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    white-space: nowrap;
    cursor: default;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   HERO REDESIGN
   ========================================================================== */
.hero-redesign {
    position: relative;
    min-height: 640px;
    padding: 96px 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #0e0e0e;
}

.hero-redesign-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
    mix-blend-mode: normal;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-redesign-vignette {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 10;
    background: linear-gradient(to top, var(--bg-black) 0%, transparent 100%);
    pointer-events: none;
}

.hero-redesign-content {
    position: relative;
    z-index: 20;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-editorial {
    max-width: 900px;
}

.hero-deco-line {
    display: none;
}

.hero-headlines {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-redesign-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 84px);
    line-height: 1;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    position: relative;
    margin: 0;
}

.hero-title-top {
    display: block;
    color: var(--text-primary);
    text-align: center;
}

.hero-title-bottom {
    display: block;
    margin-top: 10px;
    color: var(--text-primary);
    text-align: center;
}

.hero-title-bottom .hollow-text {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--text-primary);
}

.hero-redesign-sub {
    font-family: var(--font-main);
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin-top: 24px;
}

.hero-redesign-btns {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-redesign-btns {
        flex-direction: row;
    }
}

.btn-hero-primary {
    background-color: #000;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    text-decoration: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.btn-hero-outline {
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    background: rgba(25, 25, 25, 0.3);
    backdrop-filter: blur(4px);
    font-family: var(--font-main);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-hero-outline:hover {
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--accent);
}

/* ==========================================================================
   HERO STANDALONE
   ========================================================================== */
  .hero-standalone {
    position: relative;
    width: 100%;
    min-height: 640px;
    padding: 96px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f3ecdf;
    font-family: 'Fraunces', serif;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('images/single-bottle.png');
    background-size: cover;
    background-position: 55% center;
  }
  .hero-standalone::before {
    content: "";
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 3px);
    pointer-events: none;
  }
  .hero-standalone > * { position: relative; z-index: 10; }

  .hero-standalone .eyebrow {
    display: none;
  }

  .hero-standalone .headline {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(72px, 10vw, 156px);
    line-height: 0.78;
    letter-spacing: -0.04em;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  .hero-standalone .headline .filled { color: #f3ecdf; }
  .hero-standalone .headline .outlined {
    color: transparent;
    -webkit-text-stroke: 1px #f3ecdf;
  }
  .hero-standalone .headline .italic-touch {
    font-style: italic;
    font-weight: 300;
    color: #c8a24a;
    -webkit-text-stroke: 0;
    padding-right: 0.04em;
  }
  .hero-standalone .headline .dot {
    color: #c8a24a;
    -webkit-text-stroke: 0;
    padding-left: 0.08em;
  }

  .hero-standalone .sub {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(243, 236, 223, 0.72);
    max-width: 520px;
    margin: 20px auto;
  }

  .hero-standalone .ctas {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-standalone .cta-primary,
  .hero-standalone .cta-secondary {
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .hero-standalone .cta-primary {
    background: #c8a24a;
    color: #1a1208;
    border: 1px solid #c8a24a;
  }
  .hero-standalone .cta-secondary {
    border: 1px solid rgba(243, 236, 223, 0.4);
    color: #f3ecdf;
    background: transparent;
  }
  .hero-standalone .cta-primary:hover,
  .hero-standalone .cta-secondary:hover { opacity: 0.85; }

/* --- TRENDING NOW REFINEMENTS --- */
.section-header {
    align-items: baseline !important;
}
.section-header h2 {
    margin: 0 !important;
}
.view-all {
    border-bottom: none !important;
    position: relative;
    text-decoration: none;
    padding-bottom: 2px;
}
.view-all::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}
.view-all:hover::after {
    width: 100%;
}

.product-card {
    border: 1px solid transparent !important;
    transition: all 0.3s ease !important;
}
.product-card:hover {
    border-color: rgba(212, 175, 55, 0.4) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5) !important;
    transform: translateY(-5px) !important;
}




/* (removed) black gradient overlay on product images */

.product-actions {
    background: transparent !important;
    opacity: 0 !important;
    bottom: 0 !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
}
.product-card:hover .product-actions {
    opacity: 1 !important;
}

.action-btn {
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: all 0.3s ease !important;
}
.action-btn:hover {
    background: var(--accent) !important;
    color: #000 !important;
    border-color: var(--accent) !important;
}
.action-btn.quick-view {
    letter-spacing: 1px;
}

.btn-add-cart {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
    transition: all 0.3s ease !important;
}
.btn-add-cart:hover {
    background: var(--accent) !important;
    color: #000 !important;
}

.product-badge {
    border-radius: 0 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 10px !important;
}
.product-badge.sale {
    background-color: var(--accent) !important;
    color: #000 !important;
    border: none !important;
}
.product-badge.new {
    background-color: transparent !important;
    color: #fff !important;
    border: 1px solid #fff !important;
}
.product-badge.hot {
    background-color: #d9381e !important;
    color: #fff !important;
    border: none !important;
}

/* --- TRUST BAR OVERHAUL --- */
.trust-bar {
    padding: 35px 0 !important;
    background-color: var(--bg-black) !important;
}

.trust-grid {
    gap: 24px !important;
}

.trust-item {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
    justify-content: flex-start !important;
}

.trust-item i {
    font-size: 2.0rem !important;
    margin-bottom: 8px !important;
    color: var(--accent) !important;
}

.trust-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    align-items: center !important;
}

.trust-text h4 {
    font-family: 'Fraunces', 'Oswald', serif !important;
    font-size: 0.95rem !important;
    letter-spacing: 2px !important;
    color: var(--text-primary) !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
}

.trust-text p {
    font-family: var(--font-main) !important;
    font-size: 0.82rem !important;
    color: var(--text-secondary) !important;
    line-height: 1.4 !important;
    max-width: 250px !important;
}


/* Spread out Trust Bar */
.trust-bar .container {
    max-width: 100% !important;
    padding: 0 4vw !important;
}

.trust-grid {
    display: flex !important;
    justify-content: space-between !important;
    flex-wrap: wrap;
    gap: 24px !important;
}

.trust-item {
    flex: 1;
    min-width: 220px;
}


/* Ultra-wide Trust Bar override */
.trust-bar {
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 35px 4% !important;
    box-sizing: border-box;
}

.trust-bar .container.trust-grid {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    gap: 20px !important;
}

.trust-item {
    flex: 1 1 0;
    min-width: 200px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

/* --- TYPOGRAPHY UPDATES --- */
.vibe-header p {
    margin: 0 !important;
    text-align: left !important;
}

.featured-products .section-header h2,
.category-grid-section .section-header h2,
.discovery-info h2 {
    font-family: var(--font-heading) !important;
    font-size: 3.5rem !important;
    font-style: italic !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 15px !important;
}

/* Ensure the sub-label if present doesn't get messed up */
.category-grid-section .section-header {
    align-items: baseline !important;
}

/* --- LUXURY OUTLAW DISCOVERY OVERRIDES --- */
.discovery-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5) !important;
    border-radius: 0 !important;
}

.discovery-badge {
    transform: none !important;
    border-radius: 0 !important;
    top: -1px !important;
    right: -1px !important;
    border: 1px solid var(--accent);
}

.discovery-btn {
    border-radius: 0 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

.discovery-price {
    font-size: 4rem !important;
}

/* --- DISCOVERY FEATURES REDESIGN --- */
.discovery-features-redesign {
    margin-top: 40px;
    margin-bottom: 50px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;

    padding: 25px 0;
}

.feature-review {

    padding-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-num {
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 3px;
    letter-spacing: 2px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-text h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
}

.feature-text p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.feature-review .stars {
    color: var(--accent);
    font-size: 0.8rem;
    display: flex;
    gap: 4px;
}

.feature-review p {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-review em {
    font-family: 'Fraunces', serif;
    color: var(--accent);
    font-size: 1.05rem;
}

.review-author {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .feature-review {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* --- DISCOVERY FEATURES FONT OVERRIDES --- */
.feature-num {
    font-family: var(--font-heading) !important;
}

.feature-text h4 {
    font-family: var(--font-heading) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.feature-text p {
    font-family: var(--font-main) !important;
}

.feature-review em {
    font-family: var(--font-heading) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-style: normal !important;
}

.review-author {
    font-family: var(--font-main) !important;
}

/* --- VIBE GRID 4x2 LAYOUT --- */
.vibe-card {
    height: 380px !important;
}

@media (min-width: 992px) {
    .vibe-card:nth-child(even) {
        margin-top: 0 !important;
    }
}

.vibe-grid {
    gap: 15px !important;
}

.vibe-content {
    padding: 25px !important;
}

.vibe-content h3 {
    font-size: 1.6rem !important;
}


/* --- RESTORE VIBE STAGGER --- */
@media (min-width: 992px) {
    .vibe-card:nth-child(even) {
        margin-top: 48px !important;
    }
}

/* --- HERO SIZE: Force all 3 heroes to the exact same height --- */
.hero-slider,
.hero-redesign,
.hero-standalone {
    min-height: 80vh !important;
    height: 80vh !important;
}

/* --- HERO FADE: Bottom fade into next section on all 3 heroes --- */
.hero-slider::after,
.hero-standalone::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--bg-black) 0%, transparent 100%);
    pointer-events: none;
    z-index: 5;
}


/* ==========================================================================
   SCROLL ANIMATION SYSTEM
   ========================================================================== */



/* ---- Base Hidden State for all scroll-reveal elements ---- */
[data-scroll] {
    opacity: 0;
    will-change: transform, opacity, filter;
    transition-property: opacity, transform, filter, clip-path;
    transition-duration: 1.2s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-scroll-child] {
    opacity: 0;
    will-change: transform, opacity;
    transition-property: opacity, transform;
    transition-duration: 1.1s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Fade Up (default) ---- */
[data-scroll="fade-up"] {
    transform: translateY(60px);
}
[data-scroll="fade-up"].is-revealed,
[data-scroll-child][data-scroll="fade-up"].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Fade Down ---- */
[data-scroll="fade-down"] {
    transform: translateY(-60px);
}
[data-scroll="fade-down"].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Fade Left ---- */
[data-scroll="fade-left"] {
    transform: translateX(80px);
}
[data-scroll="fade-left"].is-revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Fade Right ---- */
[data-scroll="fade-right"] {
    transform: translateX(-80px);
}
[data-scroll="fade-right"].is-revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Scale In ---- */
[data-scroll="scale-in"] {
    transform: scale(0.85);
    transition-duration: 1.4s;
}
[data-scroll="scale-in"].is-revealed,
[data-scroll-child][data-scroll="scale-in"].is-revealed {
    opacity: 1;
    transform: scale(1);
}

/* ---- Blur In ---- */
[data-scroll="blur-in"] {
    filter: blur(12px);
    transform: translateY(20px);
}
[data-scroll="blur-in"].is-revealed {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* ---- Clip Up (cinematic reveal) ---- */
[data-scroll="clip-up"] {
    clip-path: inset(100% 0 0 0);
    opacity: 1; /* clip handles visibility */
}
[data-scroll="clip-up"].is-revealed {
    clip-path: inset(0 0 0 0);
    transition: clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Stagger Children (generic reveal) ---- */
[data-scroll-child] {
    transform: translateY(50px);
}
[data-scroll-child].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Animated Divider Lines ---- */
.header-line {
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.header-line.line-expanded {
    transform: scaleX(1);
}



/* ---- Enhanced Hero Entrance ---- */
.hero-redesign-content .hero-title-top,
.hero-redesign-content .hero-title-bottom,
.hero-redesign-content .hero-redesign-sub,
.hero-redesign-content .hero-redesign-btns {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-redesign-content .hero-title-top.is-revealed { opacity: 1; transform: translateY(0); }
.hero-redesign-content .hero-title-bottom.is-revealed { opacity: 1; transform: translateY(0); }
.hero-redesign-content .hero-redesign-sub.is-revealed { opacity: 1; transform: translateY(0); }
.hero-redesign-content .hero-redesign-btns.is-revealed { opacity: 1; transform: translateY(0); }


/* ---- Accessibility: Respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    [data-scroll],
    [data-scroll-child],
    .header-line,
    .hero-redesign-bg,
    .hero-redesign-content .hero-title-top,
    .hero-redesign-content .hero-title-bottom,
    .hero-redesign-content .hero-redesign-sub,
    .hero-redesign-content .hero-redesign-btns {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        clip-path: none !important;
        transition: none !important;
        animation: none !important;
    }

}

/* ==========================================================================
   SYNTHWAVE / RETROWAVE OVERRIDES
   ========================================================================== */

/* Perspective grid floor and radial gradient for all heroes */
.hero-slider,
.hero-standalone {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #170d30 0%, #05020f 85%) !important;
}

.hero-redesign {
    position: relative;
    overflow: visible !important; /* Allow the grid to bleed down */
    background: radial-gradient(circle at center, #170d30 0%, #05020f 85%) !important;
    z-index: 1; /* Establish base stacking context for the grid */
}

.hero-slider::before,
.hero-standalone::before {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -50%;
    right: -50%;
    height: 65%;
    background-image: 
        linear-gradient(to right, rgba(0, 229, 255, 0.12) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 45, 155, 0.12) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center bottom;
    transform: perspective(300px) rotateX(75deg);
    transform-origin: center top;
    z-index: 1;
    pointer-events: none;
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 100%);
}


/* Ensure low-opacity image blend for hero backgrounds */
.hero-redesign-bg {
    opacity: 0.6 !important;
    mix-blend-mode: normal !important;
}
.hero-slide {
    opacity: 0.35 !important;
    mix-blend-mode: screen !important;
}

/* Alternating section backgrounds with bleed effect */
.featured-products {
    background: transparent !important;
    position: relative;
    overflow: visible;
    z-index: 2; /* Stack above the hero's grid (z-index 1) so it sits behind everything inside this section */
}

/* Clear out the independent featured products grid, since the hero grid flows into it */
.featured-products::before {
    display: none !important;
}

/* Ensure product content sits above the grid */
.featured-products > * {
    position: relative;
    z-index: 1;
}
.category-grid-section {
    background-color: var(--bg-dark) !important;
    box-shadow: 0 0 0 100vmax var(--bg-dark) !important;
    clip-path: inset(0 -100vmax);
    position: relative;
    z-index: 3; /* Cut off the grid lines exactly at the boundary of this section */
}
.vibe-section {
    background-color: var(--bg-black) !important;
}
.trust-bar {
    background-color: var(--bg-dark) !important;
}
.brands-section {
    background-color: var(--bg-black) !important;
}
.outlaw-discovery {
    background-color: var(--bg-dark) !important;
    box-shadow: 0 0 0 100vmax var(--bg-dark) !important;
    clip-path: inset(0 -100vmax);
}
.newsletter-section {
    background-color: var(--bg-black) !important;
}
.footer {
    background-color: var(--bg-dark) !important;
}

/* Cards & card borders */
.product-card,
.vibe-card,
.brand-card,
.info-card,
.value-card,
.discovery-card,
.grid-item {
    border: 1px solid rgba(255, 45, 155, 0.25) !important;
    background-color: var(--bg-dark) !important;
    transition: all 0.3s ease !important;
}

.product-card:hover,
.vibe-card:hover,
.brand-card:hover,
.info-card:hover,
.value-card:hover,
.discovery-card:hover,
.grid-item:hover {
    border-color: #ff2d9b !important;
    box-shadow: 0 0 15px rgba(255, 45, 155, 0.4) !important;
}

/* Buttons visual overhaul */
/* All buttons (primary, secondary, discovery, and cart): transparent, border: 1px solid #00e5ff, color: #00e5ff, cyan/blue glow on hover */
.btn-primary,
.hero-standalone .cta-primary,
.discovery-btn,
.btn-outline,
.hero-standalone .cta-secondary,
.btn-add-cart {
    background: transparent !important;
    border: 1px solid #00e5ff !important;
    color: #00e5ff !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover,
.hero-standalone .cta-primary:hover,
.discovery-btn:hover,
.btn-outline:hover,
.hero-standalone .cta-secondary:hover,
.btn-add-cart:hover {
    background: #00e5ff !important;
    color: #05020f !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.6) !important;
}

/* Links & mini CTA buttons */
.shop-link,
.shop-now-text,
.vibe-explore {
    background-color: rgba(13, 8, 24, 0.85) !important;
    border: 1px solid rgba(0, 229, 255, 0.5) !important;
    color: #00e5ff !important;
    transition: all 0.3s ease !important;
}
.shop-link:hover,
.shop-now-text:hover,
.vibe-explore:hover {
    background-color: #00e5ff !important;
    color: #05020f !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.6) !important;
}

/* Specific overrides for homepage hero CTAs */
.btn-hero-primary {
    background: transparent !important;
    border: 1px solid #00e5ff !important;
    color: #00e5ff !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}
.btn-hero-primary:hover {
    background: #00e5ff !important;
    color: #05020f !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.6) !important;
}

.btn-hero-outline {
    background: transparent !important;
    border: 1px solid #ff2d9b !important;
    color: #ff2d9b !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}
.btn-hero-outline:hover {
    background: #ff2d9b !important;
    color: #05020f !important;
    box-shadow: 0 0 15px rgba(255, 45, 155, 0.6) !important;
}

/* Brand marquee style */
.marquee-content span {
    color: #ff2d9b !important;
    text-shadow: 0 0 10px rgba(255, 45, 155, 0.6) !important;
}

/* Logo container & logo glows */
.logo-container::after {
    background: radial-gradient(ellipse at center, rgba(255, 45, 155, 0.5) 0%, transparent 75%) !important;
}
.header-logo {
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.4)) !important;
}
.footer-logo-container::after {
    background: radial-gradient(ellipse at center, rgba(255, 45, 155, 0.5) 0%, transparent 75%) !important;
}
.footer-logo {
    filter: drop-shadow(0 0 15px rgba(255, 45, 155, 0.4)) !important;
}

/* ==========================================================================
   HERO LAYOUT REDESIGN (Split Composition)
   ========================================================================== */

/* Structure & Layout */
.hero-redesign {
    min-height: 720px !important;
    padding: 120px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.hero-redesign-content {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    position: relative !important;
    text-align: left !important;
}

.hero-editorial-left {
    flex: 1 !important;
    max-width: 750px !important; /* Expanded to give more room for headline text */
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    z-index: 20 !important;
    position: relative !important;
    padding-left: 0 !important; /* Removed padding to shift text left */
    margin-left: -40px !important; /* Shift text past the default container boundary */
}

/* Typography Left-Alignment */
.hero-headlines {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.hero-redesign-title {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 24px !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.hero-title-top {
    text-align: left !important;
    display: inline-block !important;
    white-space: nowrap !important; /* Force UNLEASH YOUR onto a single line */
}

.hero-title-bottom {
    text-align: left !important;
    display: block !important;
}

.hero-title-bottom span {
    display: block !important;
    margin-top: 10px !important;
    text-align: left !important;
}

.hero-redesign-sub {
    font-size: clamp(1rem, 2vw, 1.25rem) !important;
    line-height: 1.6 !important;
    max-width: 520px !important;
    margin-top: 20px !important;
    text-align: left !important;
}

.hero-redesign-btns {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    margin-top: 40px !important;
    width: auto !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

/* Right Side Visuals (Logo & Striped Sun) */
.hero-visual-right {
    position: absolute !important;
    right: -15% !important; /* Pushed further right */
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: min(65vw, 850px) !important; /* Significantly larger */
    z-index: 12 !important; /* Above grid (11) but below text (20) */
    pointer-events: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.hero-logo-visual {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.25)) drop-shadow(0 0 50px rgba(255, 45, 155, 0.15)) !important;
}

.hero-retro-sun {
    position: absolute !important;
    right: -18% !important; /* Positioned to match larger logo */
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: min(70vw, 900px) !important; /* Scaled up to match logo */
    height: min(70vw, 900px) !important; /* Scaled up to match logo */
    border-radius: 50% !important;
    background: linear-gradient(to bottom, #ff2d9b 0%, #7b2fff 100%) !important;
    opacity: 0.12 !important; /* Faint glow */
    z-index: 2 !important; /* Below vignette (10) so it's softened at the bottom */
    filter: blur(4px) !important;
    /* Repeating striped mask */
    -webkit-mask-image: repeating-linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0px,
        rgba(0, 0, 0, 1) 16px,
        rgba(0, 0, 0, 0) 16px,
        rgba(0, 0, 0, 0) 24px
    ) !important;
    mask-image: repeating-linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0px,
        rgba(0, 0, 0, 1) 16px,
        rgba(0, 0, 0, 0) 16px,
        rgba(0, 0, 0, 0) 24px
    ) !important;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .hero-redesign {
        padding: 120px 0 60px 0 !important;
        overflow: hidden !important; /* Prevent horizontal scroll from visual bleed */
    }
    .hero-redesign-content {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .hero-editorial-left {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        margin-left: 0 !important; /* Reset shift on mobile viewports to prevent clipping */
    }
    .hero-visual-right {
        position: relative !important;
        top: auto !important;
        right: -5% !important;
        transform: none !important;
        width: 110% !important;
        margin-top: 50px !important;
        justify-content: flex-end !important;
    }
    .hero-logo-visual {
        max-width: 85% !important;
    }
    .hero-retro-sun {
        right: -8% !important;
        top: auto !important;
        bottom: -50px !important;
        transform: none !important;
        width: 350px !important;
        height: 350px !important;
    }
}

/* ==========================================================================
   SHOP CATALOG PAGE STYLES
   ========================================================================== */
.shop-page-header {
    text-align: center;
    margin-bottom: 50px;
}
.shop-page-header .sub-label {
    display: block;
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
    font-weight: 600;
}
.shop-page-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.shop-page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 10px auto 0;
}

.shop-catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.shop-page-wrapper {
    max-width: 1600px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

/* Sidebar Filters - Stagnant Layout */
.shop-sidebar {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 25px;
    position: static;
}

/* Responsive 4-Column Grid for Catalog */
@media (min-width: 1200px) {
    .shop-product-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}
@media (min-width: 993px) and (max-width: 1199px) {
    .shop-product-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media (min-width: 576px) and (max-width: 992px) {
    .shop-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 575px) {
    .shop-product-grid {
        grid-template-columns: 1fr !important;
    }
}
.filter-group {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 25px;
}
.filter-group:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}
.filter-group h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--text-primary);
}

/* Sidebar Search */
.sidebar-search-wrapper {
    position: relative;
}
.sidebar-search-wrapper input {
    width: 100%;
    background: var(--bg-dark-light);
    border: 1px solid var(--border-color);
    padding: 10px 35px 10px 15px;
    color: #fff;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: var(--font-main);
    transition: var(--transition);
}
.sidebar-search-wrapper input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 45, 155, 0.2);
    outline: none;
}
.sidebar-search-wrapper .search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Checkboxes */
.filter-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;
}
.filter-checkbox-list::-webkit-scrollbar {
    width: 4px;
}
.filter-checkbox-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 2px;
}
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
    user-select: none;
    transition: color 0.3s ease;
}
.checkbox-container:hover {
    color: var(--text-primary);
}
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkbox-checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: var(--bg-dark-light);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    transition: var(--transition);
}
.checkbox-container input:checked ~ .checkbox-checkmark {
    background-color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(255, 45, 155, 0.5);
}
.checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox-container input:checked ~ .checkbox-checkmark:after {
    display: block;
}
.checkbox-container .checkbox-checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Price Range Slider */
.price-slider-container {
    padding-top: 10px;
}
.price-slider-container input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: var(--bg-dark-light);
    height: 6px;
    border-radius: 3px;
    outline: none;
}
.price-slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 45, 155, 0.7);
    transition: var(--transition);
}
.price-slider-container input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}
.price-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 10px;
    font-family: var(--font-heading);
}

.btn-clear-filters {
    width: 100%;
    background: transparent;
    border: 1px dashed var(--border-color);
    color: var(--text-secondary);
    padding: 12px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
    border-radius: 4px;
    margin-top: 10px;
}
.btn-clear-filters:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255, 45, 155, 0.05);
}

/* Shop Toolbar */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 15px 25px;
    border-radius: 4px;
    margin-bottom: 30px;
}
.product-results-count {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}
.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}
.sort-wrapper label {
    font-size: 0.8rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
}
.sort-wrapper select {
    background: var(--bg-dark-light);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: var(--font-main);
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}
.sort-wrapper select:focus {
    border-color: var(--accent);
}

/* Filter Tags */
.active-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}
.filter-tag {
    background: rgba(255, 45, 155, 0.1);
    border: 1px solid var(--accent);
    color: var(--text-primary);
    padding: 6px 12px;
    font-size: 0.75rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.filter-tag i {
    cursor: pointer;
    color: var(--accent);
    transition: color 0.3s ease;
}
.filter-tag i:hover {
    color: #fff;
}

/* Empty State */
.no-results-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    border: 1px dashed var(--border-color);
    border-radius: 4px;
    background: var(--bg-dark);
    width: 100%;
}
.no-results-container i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}
.no-results-container h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.no-results-container p {
    color: var(--text-secondary);
    max-width: 400px;
    margin-bottom: 30px;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE STYLES
   ========================================================================== */
.back-to-shop-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 40px;
    transition: var(--transition);
}
.back-to-shop-link:hover {
    color: var(--accent);
    transform: translateX(-4px);
}

.product-detail-panel {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

/* Detail Gallery */
.product-gallery-side {
    position: relative;
    z-index: 10;
}
.main-image-viewport {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 550px;
    padding: 40px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.05);
}
.main-image-viewport img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.main-image-viewport:hover img {
    transform: none;
}

/* Detail Texts */
.product-brand-tag {
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.product-name-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}
.product-rating-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.product-rating-row .stars {
    color: var(--accent);
    font-size: 0.85rem;
}
.product-rating-row .reviews-count {
    color: var(--text-secondary);
    font-size: 0.85rem;
}
.product-price-tag {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}
.product-editorial-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Scent Pyramid visualizer */
.scent-profile-visualizer {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 25px;
    margin-bottom: 35px;
}
.scent-profile-visualizer h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-primary);
    border-left: 2px solid var(--accent);
    padding-left: 10px;
}
.scent-pyramid-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.scent-note-node {
    display: flex;
    align-items: center;
    gap: 20px;
}
.note-level {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    width: 60px;
    flex-shrink: 0;
}
.note-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.note-bubble {
    background: var(--bg-dark-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 2px;
    transition: var(--transition);
}
.note-bubble:hover {
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(255, 45, 155, 0.3);
}

/* Config Form sizes & quantities */
.product-config-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.config-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
.size-radio-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
}
.size-option-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
}
.size-option-card input {
    position: absolute;
    opacity: 0;
}
.size-option-card .size-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 600;
}
.size-option-card .size-price {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.size-option-card.active {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(255, 45, 155, 0.25);
    background: rgba(255, 45, 155, 0.02);
}
.size-option-card.active .size-label {
    color: var(--accent);
}

/* Quantity stepper */
.qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-dark);
    height: 45px;
}
.qty-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    width: 45px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.qty-btn:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.02);
}
.qty-stepper input {
    width: 45px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-align: center;
    font-size: 1rem;
    font-family: var(--font-main);
    font-weight: 700;
    outline: none;
    border-radius: 3px;
    transition: var(--transition);
    margin: 0 4px;
}
.qty-stepper input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 5px rgba(255, 45, 155, 0.3);
}
/* Hide number input spinners */
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.qty-stepper input[type=number] {
    -moz-appearance: textfield;
}

.action-buttons-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}
.action-buttons-wrapper .btn {
    flex: 1;
    margin-left: 0;
    text-align: center;
}

/* ==========================================================================
   CHECKOUT PAGE STYLES
   ========================================================================== */
.checkout-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.checkout-form-side {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 40px;
}

.form-block {
    margin-bottom: 40px;
}
.form-block:last-of-type {
    margin-bottom: 30px;
}
.form-block-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}
.step-num {
    background: var(--accent);
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 900;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}
.form-block-header h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-shadow: none;
    margin: 0;
    color: #fff;
}

/* Inputs styling */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.input-row {
    display: flex;
    gap: 20px;
}
.input-row .input-group {
    flex: 1;
}
.input-group label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.input-group input {
    background: var(--bg-dark-light);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 12px 18px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: var(--font-main);
    transition: var(--transition);
}
.input-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 45, 155, 0.2);
    outline: none;
}

/* Shipping options */
.delivery-radio-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.delivery-card-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-dark-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 18px 25px;
    cursor: pointer;
    transition: var(--transition);
}
.delivery-card-option input {
    margin-right: 15px;
    accent-color: var(--accent);
}
.delivery-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-grow: 1;
}
.delivery-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}
.delivery-eta {
    font-size: 0.75rem;
    color: var(--text-secondary);
}
.delivery-price {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}
.delivery-card-option.active {
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(255, 45, 155, 0.2);
}

.card-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.card-input-wrapper input {
    width: 100%;
}
.credit-card-icon {
    position: absolute;
    right: 18px;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.btn-submit-checkout {
    width: 100%;
    border: none;
    font-size: 1rem;
    font-weight: 800;
    padding: 18px;
    letter-spacing: 2px;
    margin-top: 15px;
}

/* Order Summary */
.checkout-summary-side {
    position: sticky;
    top: 150px;
    z-index: 10;
}
.checkout-summary-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 35px;
}
.checkout-summary-card h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 2px;
    text-shadow: none;
    margin-bottom: 20px;
}
.checkout-item-box {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 10px 0;
}
.item-img-wrap {
    width: 70px;
    height: 70px;
    background: var(--bg-dark-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.item-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.item-meta-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-grow: 1;
}
.item-meta-wrap h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-shadow: none;
    color: #fff;
    margin: 0;
}
.item-meta-wrap span {
    font-size: 0.72rem;
    color: var(--text-secondary);
}
.item-price-wrap {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
.cost-row.total-row {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Success Overlay screen */
.order-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 2, 15, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(15px);
}
.success-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    max-width: 550px;
    width: 100%;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.15);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.success-card.is-revealed {
    opacity: 1;
    transform: scale(1);
}
.success-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.2);
}
.success-card h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #fff;
}
.order-id-tag {
    display: inline-block;
    background: var(--bg-dark-light);
    border: 1px solid var(--border-color);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 15px;
    letter-spacing: 1px;
    border-radius: 2px;
    margin-bottom: 25px;
}
.success-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 35px;
}
.delivery-details-card {
    background: var(--bg-dark-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 20px;
    text-align: left;
}
.delivery-details-card h3 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 6px;
    text-transform: uppercase;
}
.delivery-details-card p {
    color: var(--text-primary);
    font-size: 0.85rem;
    margin-bottom: 4px;
    line-height: 1.4;
}
.delivery-details-card p:last-child {
    margin-bottom: 0;
}

/* Responsive layouts */
@media (max-width: 992px) {
    .shop-catalog-layout {
        grid-template-columns: 1fr;
    }
    .shop-sidebar {
        position: static;
    }
    .product-detail-panel {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-gallery-side {
        position: static;
    }
    .main-image-viewport {
        height: 400px;
    }
    .checkout-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .checkout-summary-side {
        position: static;
        order: -1;
    }
}

/* Mega Menu Responsive Styles */
@media (max-width: 992px) {
    .dropdown {
        position: relative;
        width: 100%;
    }
    
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(0, 229, 255, 0.1);
        display: none;
        background-color: var(--bg-dark-light);
        padding: 0;
    }
    
    .dropdown.active .mega-menu {
        display: block;
    }
    
    .mega-menu-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px;
    }
    
    .mega-menu-col {
        padding-right: 0 !important;
        border-right: none !important;
        padding-top: 0 !important;
    }
    
    .mega-menu-col:not(:last-child) {
        border-bottom: 1px solid rgba(0, 229, 255, 0.05);
        padding-bottom: 20px;
    }
    
    .brand-list {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 12px 20px;
    }
    
    
    .perfume-week-card {
        padding: 15px;
    }
}

/* Scent Breakdown Layout - Compact version in Details panel */
.scent-breakdown-subpanel {
    margin-top: 35px;
    border-top: 1px dashed var(--border-color);
    padding-top: 25px;
}
.scent-breakdown-subpanel h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}
.scent-breakdown-compact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}
.scent-breakdown-compact-row:last-child {
    margin-bottom: 0;
}
.scent-breakdown-compact-row .note-level-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 60px;
    flex-shrink: 0;
}
.scent-breakdown-compact-row .note-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* 5-Column Grid for recommendations & recently viewed */
.five-col-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Shipping notice text */
.shipping-info-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
}
.shipping-info-text i {
    color: var(--accent);
}

@media (max-width: 1200px) {
    .five-col-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .five-col-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .five-col-grid {
        grid-template-columns: 1fr;
    }
}

/* Out of Stock Button Styling */
.btn-add-cart.out-of-stock,
.btn-add-cart.out-of-stock:hover {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.3) !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

/* About Page Styling */
.about-page-header {
    text-align: center;
    margin-bottom: 50px;
}
.about-page-header .sub-label {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.about-page-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 45, 155, 0.4);
}
.about-page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.about-page-header .header-line {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 20px auto 0;
    box-shadow: 0 0 10px var(--accent);
}

.about-story-section {
    margin-bottom: 80px;
}
.story-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.story-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
    border-left: 2px solid var(--accent);
    padding-left: 15px;
}
.story-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}
.story-content p:last-child {
    margin-bottom: 0;
}
.story-visual .visual-glowing-container {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 10px;
    background: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.05);
}
.story-visual img {
    width: 100%;
    border-radius: 2px;
    display: block;
}

/* Values Section */
.about-values-section .section-header,
.about-trust-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.about-values-section .section-header h2,
.about-trust-section .section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255, 45, 155, 0.3);
}
.about-values-section .section-header p,
.about-trust-section .section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.value-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
}
.value-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 45, 155, 0.15);
}
.value-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 45, 155, 0.4);
}
.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #fff;
}
.value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.trust-item {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 45, 155, 0.2);
    padding: 30px;
    border-radius: 4px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}
.trust-icon-box {
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.trust-item:hover .trust-icon-box {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00e5ff;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}
.trust-icon-box i {
    font-size: 1.8rem;
    color: #00e5ff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}
.trust-text h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #fff;
    text-transform: uppercase;
}
.trust-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   ABOUT TIMELINES (Boutique Values + Why Choose Us)
   ========================================================================== */

/* Shared spine */
.timeline-spine {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}
.timeline-spine-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--accent), var(--accent-hover));
    box-shadow: 0 0 12px var(--accent);
    transform: scaleY(0);
    transform-origin: top center;
    will-change: transform;
}

/* Shared dot */
.tl-dot {
    position: absolute;
    top: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.tl-dot i {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

/* ---- Two columns, icons side by side in the middle: pink text left, blue text right ---- */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1180px;
    margin: 0 auto;
    align-items: start;
    position: relative;
}
/* Offset the blue column down so its header lands between TIMELY and RELIABLE */
.trust-pillar {
    margin-top: 450px;
}
.pillar-header {
    margin-bottom: 35px;
}
.values-header {
    text-align: right;
    padding-right: 50px;
}
.trust-header {
    text-align: left;
    padding-left: 50px;
}
.pillar-header h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 10px;
    white-space: nowrap;
}
.values-header h2 {
    text-shadow: 0 0 15px rgba(255, 45, 155, 0.35);
}
.trust-header h2 {
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.35);
}
.pillar-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}
/* Divider under each header (pink for values, blue for trust) */
.pillar-divider {
    height: 2px;
    margin-top: 18px;
    border-radius: 2px;
}
.values-header .pillar-divider {
    background: var(--accent);
    box-shadow: 0 0 8px rgba(255, 45, 155, 0.6);
}
.trust-header .pillar-divider {
    background: #00e5ff;
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

/* Both spines coincide on the shared center line */
.values-timeline,
.trust-timeline {
    position: relative;
}
.values-timeline .timeline-spine {
    left: auto;
    right: -1px;
    transform: none;
}
.trust-timeline .timeline-spine {
    left: -1px;
    transform: none;
}

/* Pink nodes: text to the LEFT of the central dot */
.values-timeline .tl-node {
    position: relative;
    text-align: right;
    padding: 0 70px 42px 0;
}
.values-timeline .tl-node .tl-dot {
    right: -26px;
    left: auto;
    top: 0;
}

/* Blue nodes: text to the RIGHT of the central dot */
.trust-timeline .tl-node {
    position: relative;
    text-align: left;
    padding: 0 0 42px 70px;
}
.trust-timeline .tl-node .tl-dot {
    left: -26px;
    right: auto;
    top: 0;
}
.values-timeline .tl-node:last-child,
.trust-timeline .tl-node:last-child {
    padding-bottom: 0;
}
/* Blue accent for index numbers + active icons */
.trust-timeline .tl-index {
    color: #00e5ff;
}
.trust-timeline .tl-node.active .tl-dot i {
    color: #00e5ff;
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
}
.tl-index {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent);
    opacity: 0.7;
    margin-bottom: 6px;
}
.tl-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 10px;
}
.tl-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}
.values-timeline .tl-node.active .tl-dot {
    border-color: var(--accent);
    box-shadow: 0 0 18px rgba(255, 45, 155, 0.55);
    transform: scale(1.06);
}
.values-timeline .tl-node.active .tl-dot i {
    color: var(--accent);
    text-shadow: 0 0 12px rgba(255, 45, 155, 0.6);
}

/* ---- Trust timeline: cyan accent ---- */
.trust-spine .timeline-spine-fill {
    background: linear-gradient(to bottom, #00e5ff, #00a8c4);
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.7);
}
.trust-dot {
    border-color: rgba(0, 229, 255, 0.3);
}
.trust-timeline .tt-node.active .trust-dot {
    border-color: #00e5ff;
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.5);
    transform: scale(1.06);
}

/* Timeline responsive: stack columns, reset to a standard left-aligned timeline */
@media (max-width: 900px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 520px;
    }
    .trust-pillar {
        margin-top: 0;
    }
    .values-header,
    .trust-header {
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }
    .pillar-header h2 {
        white-space: normal;
    }
    .values-timeline .timeline-spine,
    .trust-timeline .timeline-spine {
        left: 25px;
        right: auto;
    }
    .values-timeline .tl-node,
    .trust-timeline .tl-node {
        text-align: left;
        padding: 0 0 42px 88px;
    }
    .values-timeline .tl-node:last-child,
    .trust-timeline .tl-node:last-child {
        padding-bottom: 0;
    }
    .values-timeline .tl-node .tl-dot,
    .trust-timeline .tl-node .tl-dot {
        left: 0;
        right: auto;
    }
}

/* Responsive adjustments for About Us */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .value-card {
        padding: 25px 15px;
    }
    .trust-item {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }
    .trust-icon-box {
        margin: 0 auto;
    }
}
@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .about-page-header h1 {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   SCENT BREAKDOWN MODAL & TRIGGER (CYBERPUNK ULTRA)
   ========================================================================== */

.scent-trigger-container {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-scent-trigger {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 15px 30px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 10px rgba(255, 45, 155, 0.3);
    box-shadow: 0 0 15px rgba(255, 45, 155, 0.1);
}

.btn-scent-trigger i {
    font-size: 1rem;
    transition: transform 0.6s ease;
}

.btn-scent-trigger:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 25px rgba(255, 45, 155, 0.4);
    text-shadow: none;
}

.btn-scent-trigger:hover i {
    transform: rotate(180deg);
}

/* Scent Modal Pop-up */
.scent-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 2, 15, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.scent-modal-container {
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.1), 0 20px 40px rgba(0, 0, 0, 0.8);
    width: 90%;
    max-width: 850px;
    border-radius: 8px;
    padding: 50px;
    box-sizing: border-box;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scent-modal-overlay.active .scent-modal-container {
    transform: translateY(0);
}

.scent-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.scent-modal-close:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.scent-modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.scent-modal-header .sub-label {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 8px;
}

.scent-modal-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin: 0;
    letter-spacing: 2px;
}

.scent-modal-header .header-line {
    width: 80px;
    height: 2px;
    background: var(--accent);
    margin: 20px auto 0 auto;
    box-shadow: 0 0 10px var(--accent);
}

/* Detailed Pyramid Layout */
.scent-pyramid-detailed {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pyramid-level {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
    padding: 25px;
    background: var(--bg-dark-light);
    border: 1px solid rgba(0, 229, 255, 0.08);
    border-radius: 6px;
    align-items: center;
    transition: var(--transition);
}

.pyramid-level:hover {
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.05);
}

.level-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.level-meta .level-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(255, 45, 155, 0.5);
}

.level-meta h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
}

.level-meta .level-timing {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.level-notes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.level-notes-grid .note-bubble {
    font-size: 0.85rem !important;
    padding: 8px 16px !important;
    font-family: var(--font-heading) !important;
    letter-spacing: 1px !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    cursor: default;
}

.level-notes-grid .note-bubble:hover {
    transform: translateY(-2px);
}

/* Responsiveness */
@media (max-width: 768px) {
    .pyramid-level {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    .scent-modal-container {
        padding: 30px 20px;
        width: 95%;
    }
    .scent-modal-header h2 {
        font-size: 1.8rem;
    }
}

/* ===================== Quick Add Modal ===================== */
.quick-add-container {
    max-width: 900px;
    padding: 32px;
}

.quick-add-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.quick-add-image {
    background: var(--bg-dark-light, rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    aspect-ratio: 1 / 1;
}

.quick-add-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.quick-add-details {
    display: flex;
    flex-direction: column;
}

.quick-add-details .product-brand-tag {
    display: block;
    margin-bottom: 6px;
}

.quick-add-name {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    line-height: 1.1;
    color: var(--text-primary);
    margin: 0 0 12px;
}

.quick-add-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.quick-add-details .config-group {
    margin-bottom: 18px;
}

.quick-add-details .config-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.quick-add-full-link {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.quick-add-full-link:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .quick-add-container {
        padding: 30px 20px;
        max-height: 90vh;
        overflow-y: auto;
    }
    .quick-add-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .quick-add-image {
        aspect-ratio: auto;
        padding: 16px;
    }
    .quick-add-image img {
        max-height: 240px;
    }
    .quick-add-name {
        font-size: 1.5rem;
    }
}



/* ==========================================================================
   BLOG / JOURNAL
   ========================================================================== */

/* Quick-jump section nav */
.blog-section-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 auto 70px;
}
.blog-section-nav a {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 11px 24px;
    transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.blog-section-nav a:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(255, 45, 155, 0.04);
    box-shadow: 0 0 15px rgba(255, 45, 155, 0.15);
}

/* Sections */
.blog-section {
    margin-bottom: 90px;
    scroll-margin-top: 130px;
}
.blog-section:last-child {
    margin-bottom: 0;
}
.blog-section-header {
    margin-bottom: 35px;
}
.blog-section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 45, 155, 0.3);
}
.blog-section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-top: 8px;
}
.blog-section-header .header-line {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin-top: 16px;
    box-shadow: 0 0 10px var(--accent);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}
.blog-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 45, 155, 0.12);
}
.blog-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-dark-light);
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 22px;
    box-sizing: border-box;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}
.blog-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(5, 2, 15, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}
.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-meta {
    display: flex;
    gap: 18px;
    color: var(--text-secondary);
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.blog-card-meta i {
    color: var(--accent);
    margin-right: 5px;
}
.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 12px;
}
.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}
.blog-card-readmore {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}
.blog-card:hover .blog-card-readmore {
    gap: 14px;
}

/* Empty / not-found states */
.blog-empty-state {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    padding: 80px 20px;
    max-width: 520px;
    margin: 0 auto;
}
.blog-empty-state i {
    font-size: 3rem;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255, 45, 155, 0.4);
}
.blog-empty-state h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: #fff;
}
.blog-empty-state p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}
.blog-empty-state .btn {
    margin-top: 10px;
}

/* Single article */
.blog-article {
    max-width: 760px;
    margin: 0 auto;
}
.blog-article-header {
    text-align: center;
    margin-bottom: 35px;
}
.blog-article-category {
    display: inline-block;
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.blog-article-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 22px;
    text-shadow: 0 0 20px rgba(255, 45, 155, 0.3);
}
.blog-article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}
.blog-article-meta i {
    color: var(--accent);
    margin-right: 6px;
}
.blog-article-hero {
    margin: 0 0 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.blog-article-hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    box-sizing: border-box;
    display: block;
}
.blog-article-body {
    color: var(--text-primary);
    font-size: 1.08rem;
    line-height: 1.8;
}
.blog-article-body p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.blog-article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin: 38px 0 16px;
    letter-spacing: 0.5px;
}
.blog-article-body ul {
    color: var(--text-secondary);
    margin: 0 0 24px 22px;
    line-height: 1.8;
}
.blog-article-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 6px 0 6px 24px;
    margin: 30px 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.5;
    color: #fff;
    font-style: italic;
}
/* Conversion CTA at the end of an article */
.blog-article-cta {
    margin-top: 45px;
    padding: 36px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 45, 155, 0.08), rgba(0, 229, 255, 0.05));
    border: 1px solid var(--border-color);
    border-radius: 10px;
}
.blog-article-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.blog-article-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}
.blog-article-footer .back-to-shop-link {
    margin-bottom: 0;
}

/* Blog responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 480px;
    }
    .blog-article-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-masonry {
    column-count: 4;
    column-gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    position: relative;
    background: var(--bg-dark-light);
}
.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
}
.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    background: rgba(255, 45, 155, 0.25);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}
.gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 2, 15, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.gallery-lightbox img {
    max-width: 88vw;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}
.gallery-lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.6rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}
.gallery-lightbox-close:hover {
    color: var(--accent);
    transform: scale(1.1);
}
.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.gallery-lightbox-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}
.gallery-lightbox-nav.prev { left: 24px; }
.gallery-lightbox-nav.next { right: 24px; }

@media (max-width: 992px) {
    .gallery-masonry { column-count: 3; }
}
@media (max-width: 680px) {
    .gallery-masonry { column-count: 2; column-gap: 12px; }
    .gallery-item { margin-bottom: 12px; }
    .gallery-lightbox-nav { width: 44px; height: 44px; }
    .gallery-lightbox-nav.prev { left: 10px; }
    .gallery-lightbox-nav.next { right: 10px; }
}

/* ==========================================================================
   CONSULTATION / BOOKING
   ========================================================================== */
.consultation-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}

/* Left: what to expect */
.consultation-info h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 0 15px rgba(255, 45, 155, 0.3);
}
.consult-intro {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 30px;
}
.consult-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}
.consult-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.consult-features li > i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 45, 155, 0.06);
    border: 1px solid rgba(255, 45, 155, 0.3);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    box-shadow: 0 0 12px rgba(255, 45, 155, 0.12);
}
.consult-features li div {
    display: flex;
    flex-direction: column;
}
.consult-features li strong {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 3px;
}
.consult-features li span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.consult-steps {
    border-top: 1px solid var(--border-color);
    padding-top: 26px;
}
.consult-steps h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.consult-steps ol {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.consult-steps li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-primary);
    font-size: 0.98rem;
}
.consult-steps .step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: #0d0818;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right: booking panel */
.booking-panel {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}
.booking-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 6px;
}
.booking-sub {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 22px;
}
.calendly-inline-widget {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-dark);
}
.booking-fallback {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}
.booking-fallback a {
    color: var(--accent);
}
.booking-fallback a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .consultation-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 620px;
    }
    .booking-panel {
        padding: 22px;
    }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}

/* Left: details */
.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 0 15px rgba(255, 45, 155, 0.3);
}
.contact-intro {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 36px;
}
.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-details li > i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 45, 155, 0.06);
    border: 1px solid rgba(255, 45, 155, 0.3);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    box-shadow: 0 0 12px rgba(255, 45, 155, 0.12);
}
.contact-details li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 3px;
}
.contact-label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.contact-details li a,
.contact-details li div > span:last-child {
    color: var(--text-primary);
    font-size: 1rem;
}
.contact-details li a:hover {
    color: var(--accent);
}
.contact-social .contact-label {
    display: block;
    margin-bottom: 12px;
}

/* Right: form */
.contact-form-panel {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 36px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.contact-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.contact-field label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 9px;
}
.contact-field input,
.contact-field textarea {
    background: var(--bg-black);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 13px 15px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(157, 142, 199, 0.5);
}
.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(255, 45, 155, 0.2);
}
.contact-field textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
}
.contact-submit {
    width: 100%;
    margin-left: 0;
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 620px;
    }
    .contact-form-panel {
        padding: 26px 22px;
    }
}
@media (max-width: 520px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================================================
   GLOBAL SEARCH DROPDOWN
   ========================================================================== */
.search-container {
    position: relative;
}
.search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 340px;
    max-width: 80vw;
    max-height: 420px;
    overflow-y: auto;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 45, 155, 0.08);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    padding: 8px;
}
.search-results.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.search-group-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 10px 10px 6px;
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 10px;
    border-radius: 6px;
    transition: background 0.2s ease;
}
.search-result-item:hover {
    background: rgba(255, 45, 155, 0.08);
}
.sr-thumb {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    background: var(--bg-dark-light);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.sr-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
    box-sizing: border-box;
}
.sr-thumb.sr-icon {
    color: var(--accent);
    font-size: 1rem;
}
.sr-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.sr-name {
    color: var(--text-primary);
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-result-item:hover .sr-name {
    color: var(--accent);
}
.sr-brand {
    color: var(--text-secondary);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.search-empty {
    padding: 16px 12px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
}
.search-empty a {
    display: inline-block;
    margin-top: 6px;
    color: var(--accent);
    font-weight: 600;
}
.search-empty a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   IMAGE REQUIRED PLACEHOLDER (no stock photo matched yet)
   ========================================================================== */
.img-required {
    width: 100%;
    height: 100%;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 45, 155, 0.04),
        rgba(255, 45, 155, 0.04) 12px,
        rgba(255, 45, 155, 0.07) 12px,
        rgba(255, 45, 155, 0.07) 24px
    );
    color: var(--text-secondary);
    text-align: center;
    box-sizing: border-box;
    padding: 20px;
}
.img-required i {
    font-size: 1.8rem;
    color: var(--accent);
    opacity: 0.7;
}
.img-required span {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ==========================================================================
   LOGO GLITCH (hover-only)
   ========================================================================== */
.logo-glitch {
    position: relative;
    display: inline-block;
    line-height: 0;
}
.logo-glitch .header-logo.glitch-base {
    position: relative;
    z-index: 2;
    display: block;
}
.logo-glitch .glitch-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    mix-blend-mode: screen;
    opacity: 0;
    pointer-events: none;
}
.logo-glitch .glitch-cyan {
    filter: brightness(1.5) sepia(1) hue-rotate(130deg) saturate(8);
}
.logo-glitch .glitch-magenta {
    filter: brightness(1.5) sepia(1) hue-rotate(290deg) saturate(8);
}
.logo-glitch .glitch-scan {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.22) 3px, rgba(0, 0, 0, 0.22) 4px);
}
/* Trigger on hover only - plays through once */
.logo-glitch:hover .glitch-base { animation: logoJitter 0.55s steps(1) 1; }
.logo-glitch:hover .glitch-cyan { animation: logoCyan 0.55s steps(1) 1; }
.logo-glitch:hover .glitch-magenta { animation: logoMagenta 0.55s steps(1) 1; }
.logo-glitch:hover .glitch-scan { animation: logoScan 0.55s steps(1) 1; }

@keyframes logoJitter {
    0%, 100% { transform: translate(0, 0) skewX(0deg); }
    10% { transform: translate(-3px, 1px) skewX(-2deg); }
    20% { transform: translate(3px, -1px) skewX(2deg); }
    30% { transform: translate(-2px, 0); }
    45% { transform: translate(2px, 1px) skewX(1deg); }
    60% { transform: translate(0, 0); }
    75% { transform: translate(-2px, -1px) skewX(-1deg); }
    90% { transform: translate(1px, 0); }
}
@keyframes logoCyan {
    0%, 100% { transform: translate(0, 0); opacity: 0; }
    10% { transform: translate(-10px, 0); opacity: 0.9; }
    20% { transform: translate(-6px, 2px); opacity: 0.7; }
    30% { transform: translate(-12px, 0); opacity: 0.85; }
    45% { transform: translate(-4px, -2px); opacity: 0.6; }
    60% { transform: translate(0, 0); opacity: 0; }
    75% { transform: translate(-7px, 0); opacity: 0.7; }
    90% { transform: translate(0, 0); opacity: 0; }
}
@keyframes logoMagenta {
    0%, 100% { transform: translate(0, 0); opacity: 0; }
    10% { transform: translate(10px, 0); opacity: 0.9; }
    20% { transform: translate(6px, -2px); opacity: 0.7; }
    30% { transform: translate(12px, 0); opacity: 0.85; }
    45% { transform: translate(4px, 2px); opacity: 0.6; }
    60% { transform: translate(0, 0); opacity: 0; }
    75% { transform: translate(7px, 0); opacity: 0.7; }
    90% { transform: translate(0, 0); opacity: 0; }
}
@keyframes logoScan {
    0%, 100% { opacity: 0; }
    15% { opacity: 0.5; }
    30% { opacity: 0.2; }
    50% { opacity: 0.5; }
    70% { opacity: 0.2; }
}

/* ==========================================================================
   SUBTLE PAGE TRANSITIONS (fade in on load, fade out on navigate)
   ========================================================================== */
body {
    animation: pageFadeIn 0.3s ease;
}
@keyframes pageFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
body.is-leaving {
    opacity: 0;
    transition: opacity 0.25s ease;
}
@media (prefers-reduced-motion: reduce) {
    body { animation: none; }
    body.is-leaving { opacity: 1; transition: none; }
}

/* deploy trigger: 2026-06-15 */

/* deploy 1781575866 */

/* redeploy marker */
