:root {
    /* Color Palette - Updated per Spec */
    --primary-color: #FFC107;
    /* Yellow/Orange */
    --primary-hover: #FFA000;
    --secondary-color: #000000;
    /* Black */
    --secondary-hover: #333333;

    --spec-red: #FF0000;
    /* Banner & Price */
    --spec-green: #00AA00;
    /* Discount & Economy */
    --spec-blue: #0066CC;
    /* Info/Trust Links */
    --spec-gray-bg: #F5F5F5;
    --spec-gray-med: #999999;
    --spec-gray-light: #E0E0E0;

    --text-main: #000000;
    --text-light: #666666;
    --bg-body: #FFFFFF;

    /* Typography */
    --font-main: 'Inter', Arial, Helvetica, sans-serif;

    /* Spacing/Sizes */
    --container-width: 1200px;
    --header-height: 70px;
    /* Reduced from 90px */
    --top-bar-height: 30px;
    /* Reduced from 40px */
    --radius-sm: 5px;
    --radius-md: 8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.5;
    padding-top: calc(var(--header-height) + var(--top-bar-height) + 50px);
    /* adjusted for menu height */
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Utilities */
.grid {
    display: grid;
    gap: 20px;
}

.flex {
    display: flex;
    gap: 10px;
    align-items: center;
}

.text-center {
    text-align: center;
}

.font-bold {
    font-weight: 700;
}

.hidden-mobile {
    display: block;
}

@media(max-width: 768px) {
    .hidden-mobile {
        display: none;
    }
}

/* 1.1 Top Banner */
.top-bar {
    background-color: var(--spec-red);
    color: white;
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1002;
    gap: 20px;
    transition: transform 0.3s ease-in-out;
    /* Enable Animation */
}

/* Scroll Hide State */
body.scroll-hide .top-bar,
body.scroll-hide .main-header,
body.scroll-hide .main-nav {
    transform: translateY(-200px);
    /* Moves everything up out of view */
}

/* 1.2 Main Header */
/* 1.2 Main Header */
.main-header {
    background-color: #000000;
    /* Restored to Black */
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: var(--top-bar-height);
    width: 100%;
    z-index: 1001;
    padding: 0 15px;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* 1.3 Navigation Menu */
.main-nav {
    background-color: #000000;
    height: 50px;
    display: flex;
    align-items: center;
    position: fixed;
    top: calc(var(--top-bar-height) + var(--header-height));
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    /* Animation */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo - Magic Fix */
.logo {
    display: block;
    height: 100%;
    /* Fill header */
    padding: 5px 0;
}

.logo img {
    height: 100%;
    /* Maximize within padding */
    width: auto;
    object-fit: contain;
    filter: invert(1);
    /* Turns White bg -> Black, Black text -> White */
}

/* Search */
.search-bar {
    flex: 1;
    max-width: 40%;
    margin: 0 30px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    background: #E8E8E8;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

/* Right Links */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #CCC;
    font-size: 13px;
}

.nav-icons a:hover {
    color: white;
}

.cart-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.cart-wrap span {
    font-size: 24px;
    color: var(--primary-color);
}

.cart-badge {
    background: var(--spec-red);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    position: absolute;
    top: -5px;
    right: -5px;
}

/* 1.3 Navigation Menu */
.main-nav {
    background-color: #000000;
    height: 50px;
    display: flex;
    align-items: center;
    position: fixed;
    top: calc(var(--top-bar-height) + var(--header-height));
    width: 100%;
    z-index: 1000;
}

.main-nav ul {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 5px;
}

/* Horizontal scroll on mobile */
.main-nav a {
    color: white;
    font-size: 14px;
    text-transform: uppercase;
}

.main-nav a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}


/* --- PRODUCT PAGE SPECIFIC --- */

/* Breadcrumbs */
.breadcrumb {
    padding: 10px 0;
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--spec-blue);
}

.breadcrumb span {
    margin: 0 5px;
}

/* Product Layout */
.product-layout {
    display: grid;
    grid-template-columns: 45% 45%;
    /* Desktop: 2 cols */
    gap: 10%;
    margin-bottom: 60px;
}

/* Left: Gallery */
.gallery-main {
    border: 1px solid var(--spec-gray-light);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
    background: white;
}

/* Increased Specificity for Main Image */
.gallery-main img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.thumb {
    width: 80px;
    height: 80px;
    border: 1px solid var(--spec-gray-light);
    border-radius: 4px;
    cursor: pointer;
    object-fit: cover;
}

.thumb:hover,
.thumb.active {
    border: 2px solid var(--primary-color);
}

/* Right: Info */
.p-badge {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.p-title {
    font-size: 28px;
    font-weight: 700;
    color: black;
    margin-bottom: 5px;
    line-height: 1.2;
}

.p-seller {
    font-size: 12px;
    color: var(--spec-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Price Section */
.price-box {
    border-bottom: 1px solid var(--spec-gray-light);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 5px;
}

.p-old {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
}

.p-new {
    color: var(--spec-red);
    font-size: 32px;
    font-weight: 700;
}

.p-discount {
    background: var(--spec-green);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
}

.p-installments {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}

.p-economy {
    color: var(--spec-green);
    font-size: 12px;
    margin-top: 5px;
}

.p-pix {
    background: var(--spec-blue);
    color: white;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 10px;
}

/* Selectors */
.selector-row {
    border-bottom: 1px solid var(--spec-gray-light);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.sel-label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Size Buttons */
.size-opts {
    display: flex;
    gap: 10px;
}

.size-btn {
    width: 60px;
    height: 40px;
    background: white;
    border: 2px solid var(--spec-red);
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-btn.selected {
    background: var(--spec-red);
    color: white;
}

.size-btn:hover {
    background: #EEE;
}

/* Quantity */
.qty-ctrl {
    display: flex;
    align-items: center;
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #DDD;
    font-size: 18px;
    cursor: pointer;
}

.qty-input {
    width: 60px;
    height: 40px;
    border: 1px solid #DDD;
    text-align: center;
    border-left: none;
    border-right: none;
}

/* Shipping Info */
.ship-info div {
    display: flex;
    margin-bottom: 10px;
    font-size: 12px;
    align-items: center;
    gap: 8px;
}

.ship-full {
    color: var(--spec-green);
    font-weight: 700;
}

.ship-link {
    color: var(--spec-blue);
    cursor: pointer;
}

/* Actions */
.btn-action {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    margin-bottom: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-cart {
    background: var(--primary-color);
    color: black;
}

.btn-cart:hover {
    background: var(--primary-hover);
}

.btn-buy {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-buy:hover {
    background: #FAFAFA;
}

.whatsapp-link {
    display: block;
    text-align: center;
    color: #25D366;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
}

/* Sections 5 & 6 */
.related-section {
    border-top: 2px solid #EEE;
    padding-top: 30px;
    margin-top: 40px;
}

.trust-footer {
    background: #F5F5F5;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.trust-card {
    text-align: center;
}

.trust-card h4 {
    font-size: 14px;
    margin: 10px 0 5px;
}

.trust-card p {
    font-size: 12px;
    color: #666;
}

/* Mobile Response */
@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-footer {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }

    .trust-card {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .search-bar {
        display: none;
    }

    /* Hide search on mobile for space, per spec "takes more space" - simplified to hide for now */
}


/* =========================================
   RESTORED HOME & COMPONENT STYLES
   ========================================= */

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-full {
    width: 100%;
}


/* Grid System Utilities */
.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1100px) {

    .grid-cols-4,
    .grid-cols-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {

    .grid-cols-3,
    .grid-cols-4,
    .grid-cols-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .grid-cols-3,
    .grid-cols-4,
    .grid-cols-5 {
        grid-template-columns: 1fr;
    }
}


/* Hero Section - Split Layout */
.hero-section {
    position: relative;
    min-height: 500px;
    background-color: #333333;
    /* Dark Gray Background */
    display: flex;
    align-items: center;
    padding: 40px 0;
    margin-bottom: 40px;
    overflow: hidden;
}

/* Container for split content */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    /* Align content to TOP */
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

/* Left Column: Text */
.hero-text {
    text-align: left;
    color: white;
    padding-top: 20px;
    /* Slight top padding for breathing room */
}

/* ... content omitted ... */

/* Right Column: Video */
.hero-video-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg-video {
    width: 100%;
    max-width: 300px;
    /* Ensure 300px constraint */
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

/* Hero Gallery (Polaroids) */
.hero-gallery {
    display: flex;
    gap: 20px;
    /* Increased gap */
    margin-top: 100px;
    /* Much more space below button */
    /* padding-left removed to move left */
}

/* Global Spacer for Fixed Header */
/* Global Spacer for Fixed Header - REMOVED per user revert request */

.hero-polaroid {
    background: white;
    padding: 10px 10px 35px 10px;
    /* Thicker larger frame */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    flex: 0 0 auto;
    width: 150px;
    /* Larger size (was 90px) */
    cursor: pointer;
}

.hero-polaroid img {
    width: 100%;
    height: 180px;
    /* Taller image */
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

/* Rotations */
.hero-polaroid:nth-child(1) {
    transform: rotate(-4deg);
}

.hero-polaroid:nth-child(2) {
    transform: rotate(2deg);
}

.hero-polaroid:nth-child(3) {
    transform: rotate(-2deg);
}

.hero-polaroid:nth-child(4) {
    transform: rotate(4deg);
}

.hero-polaroid:hover {
    transform: scale(1.1) rotate(0deg);
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-polaroid:hover img {
    filter: grayscale(0%);
}

.hero-text h1 {
    font-size: 36px;
    /* Reduced from 48px */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    color: white;
}

.hero-text p {
    font-size: 16px;
    /* Reduced from 18px */
    margin-bottom: 20px;
    color: #DDDDDD;
}

/* Right Column: Video */
.hero-video-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg-video {
    width: 100%;
    max-width: 400px;
    /* Constrained width */
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: static;
    /* No absolute */
    object-fit: contain;
}

/* Remove overlay */
.hero-section .overlay {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-video-wrapper {
        margin-top: 30px;
    }

    .hero-text {
        text-align: center;
    }
}

.hero-content {
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
    /* Ensure text is white */
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
}


/* Section Styles */
.section {
    padding: 40px 0;
    margin-bottom: 40px;
}

.section-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}


/* Category Cards */
.category-card {
    background: #FAFAFA;
    border: 1px solid #EEE;
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 180px;
    /* Increased height */
    overflow: hidden;
    /* Ensure image stays in */
}

/* ... existing hover styles ... */

/* Image-based Category */
.category-card.has-image {
    padding: 0;
    /* Remove padding to let image fill or fit nicely */
    background: white;
}

.cat-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    margin-bottom: -10px;
    /* Pull text closer/overlay logic if needed, simplify for now */
}

.category-card.has-image span {
    padding: 10px;
    z-index: 2;
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cat-icon span {
    font-size: 40px;
    color: var(--text-main);
}

.category-card span {
    font-weight: 700;
    font-size: 16px;
}

.category-card:hover .cat-icon span {
    color: var(--primary-color);
}


/* Product Cards (Grid) */
.product-card {
    background: white;
    border: 1px solid #EEE;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #DDD;
}

.product-image {
    height: 250px;
    background: #F9F9F9;
    position: relative;
    overflow: hidden;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1523381210434-271e8be1f52b?q=80&w=600&auto=format&fit:crop');
    /* Placeholder image */
    background-size: contain;
    /* Changed from cover to contain */
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s;
}

.product-card:hover .img-placeholder {
    transform: scale(1.05);
}

.cart-wrap {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    left: 15px;
    /* Adjusted position */
    background-color: var(--spec-red);
    color: white;
    font-size: 10px;
    /* Reduced from default/inherited */
    font-weight: 700;
    width: 16px;
    /* Fixed smaller width */
    height: 16px;
    /* Fixed smaller height */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Modal */
.cart-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    /* Hidden by default */
    justify-content: flex-end;
}

.cart-modal {
    width: 400px;
    height: 100%;
    background: white;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #EEE;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.cart-header h2 {
    font-size: 20px;
    font-weight: 700;
}

.close-cart {
    cursor: pointer;
    font-size: 24px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #F5F5F5;
    padding-bottom: 15px;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.cart-item-info p {
    color: var(--spec-red);
    font-weight: 700;
    font-size: 14px;
}

.remove-item {
    color: #999;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 5px;
    display: block;
}

.cart-footer {
    border-top: 1px solid #EEE;
    padding-top: 20px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-checkout {
    width: 100%;
    background: var(--spec-green);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--spec-green);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

.product-info {
    padding: 15px;
}

.product-info h3 {
    font-size: 14px;
    margin-bottom: 10px;
    height: 40px;
    /* Limit height for 2 lines */
    overflow: hidden;
}

.price {
    margin-bottom: 15px;
}

.old-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}

.new-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--spec-red);
}


/* Trust Bar Components */
.trust-bar {
    background: #FAFAFA;
    padding: 40px 0;
    border-top: 1px solid #EEE;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    /* Added padding */
}

.trust-item span {
    font-size: 40px;
    color: var(--secondary-color);
}

.trust-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.trust-item p {
    font-size: 12px;
    color: #666;
}


/* Footer Layout override */
footer {
    background: #111;
    color: #EEE;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #AAA;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

@media(max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   BRAND STORY SECTION (Editorial Style)
   ========================================= */
.brand-story-section {
    background-color: #F5F5F3;
    /* Off-white/Beige Neutral */
    padding: 80px 0;
}

.brand-story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.editorial-image {
    width: 100%;
    max-width: 300px;
    /* Increased to 300px */
    height: auto;
    display: block;
    margin: 0 auto;
    /* Center in column */

    /* Polaroid Effect */
    background-color: white;
    padding: 15px 15px 60px 15px;
    /* Thicker bottom padding */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    /* Realistic shadow */
    transform: rotate(-2deg);
    /* Slight rotation for natural look */

    filter: grayscale(100%);
    /* Force B&W as requested */
    transition: all 0.5s ease;
}

.editorial-image:hover {
    filter: grayscale(0%);
    /* Reveal color on hover */
    transform: rotate(0deg) scale(1.02);
    /* Straighten and zoom slightly */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.brand-story-content {
    padding: 20px;
}

.brand-story-title {
    font-family: 'Playfair Display', serif;
    /* Elegant Serif */
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #1A1A1A;
    letter-spacing: -0.5px;
}

.brand-story-text {
    font-family: 'Inter', sans-serif;
    /* Clean Sans for body */
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    font-weight: 300;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-story-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .brand-story-title {
        font-size: 26px;
        text-align: center;
    }

    .brand-story-text {
        text-align: center;
    }

    .editorial-image {
        margin-bottom: 20px;
    }
}

/* =========================================
   MOBILE SUPER ADAPTATION
   ========================================= */
@media (max-width: 768px) {

    /* --- 1. Header & Navigation --- */
    .top-bar {
        font-size: 10px;
        padding: 5px 0;
    }

    .header-content {
        padding: 15px 0;
        display: flex;
        justify-content: space-between;
        /* Ensure spacing */
        align-items: center;
    }

    .logo img {
        height: 50px;
        /* Increased from 30px to 50px */
    }

    .nav-icons {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* Cart: Icon only */
    .cart-wrap span:not(.material-symbols-outlined):not(.cart-badge) {
        display: none;
        /* Hide text "Carrinho" */
    }

    .cart-wrap {
        gap: 0;
    }

    .cart-wrap .material-symbols-outlined {
        font-size: 28px;
        /* Bigger icon */
    }

    /* Search: Mobile Icon */
    .search-bar {
        display: block;
        /* Unhide */
        position: relative;
    }

    .search-input {
        display: none;
        /* Hide input by default on mobile, just show icon */
        /* Note: To make it functional, we'd need JS to toggle. 
            For now, user just asked to 'put a lupa'. 
            I will make the icon visible. */
    }

    .search-icon {
        background: none;
        color: var(--text-main);
        font-size: 28px;
        padding: 0;
        position: static;
        pointer-events: auto;
        /* Ensure clickable */
    }

    /* --- 2. Homepage Hero --- */
    .hero-section {
        height: auto;
        min-height: auto;
        flex-direction: column;
        padding-top: 0;
        padding-bottom: 40px;
        background: #000000;
        /* Black Background */
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        display: flex;
        flex-direction: column;
    }

    .hero-video-wrapper {
        display: none !important;
    }

    .hero-text {
        order: 1;
        padding: 40px 20px 0 20px;
        text-align: center;
        background: #000000;
        /* Match section bg */
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Flex center cross-axis */
        justify-content: center;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 10px;
        color: #FFFFFF;
        /* White Text */
        font-weight: 800;
        text-transform: uppercase;
        text-align: center;
        width: 100%;
    }

    .hero-text p {
        color: #CCCCCC;
        /* Light Gray Subhead */
        font-size: 14px;
        margin-bottom: 25px;
        text-align: center;
        max-width: 90%;
        width: 100%;
    }

    .hero-text .btn {
        width: auto;
        min-width: 200px;
        margin: 0 auto 40px auto;
        /* Margin auto for block centering */
        border-radius: 50px;
        padding: 12px 30px;
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
        display: inline-block;
    }

    /* Mobile Hero Carousel (The Polaroids) */
    .hero-gallery {
        display: flex !important;
        /* Unhide/Force flex */
        width: 100vw;
        /* Full width */
        margin-left: -20px;
        /* Counteract padding */
        margin-right: -20px;
        overflow-x: auto;
        padding: 10px 20px 30px 20px;
        /* Padding for shadow/scroll */
        gap: 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-top: 0;
    }

    .hero-polaroid {
        min-width: 200px;
        /* Good size for mobile card */
        height: 250px;
        background: white;
        padding: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: rotate(0deg) !important;
        /* Reset any rotation */
        scroll-snap-align: center;
        border-radius: 4px;
        flex-shrink: 0;
    }

    .hero-polaroid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* --- 3. Horizontal Categories (Instagram Stories Style) --- */
    .category-grid {
        display: flex !important;
        /* Override grid */
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        padding-left: 10px;
        /* Safe area */
    }

    .category-card {
        min-width: 120px;
        /* Fixed width cards */
        width: 120px;
        height: 120px;
        scroll-snap-align: start;
        border-radius: 50%;
        /* Circle shape like stories? Or kept square? Let's keep card but smaller */
        flex-shrink: 0;
        /* Redefine for circle story style if 'wow' factor needed, but keep square per previous design consistency */
        border-radius: 12px;
    }

    .cat-img {
        height: 80px;
        /* Adjust image height */
    }

    /* --- 4. Product Grid (2 Columns) --- */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        /* Force 2 cols */
        gap: 10px !important;
        padding: 0 10px;
    }

    .product-card {
        border-radius: 8px;
    }

    .product-image {
        height: 180px;
        /* Taller relative to width */
    }

    .product-info {
        padding: 10px;
    }

    .product-info h3 {
        font-size: 13px;
        height: 36px;
        /* 2 lines max */
        margin-bottom: 5px;
        overflow: hidden;
    }

    .price .old-price {
        font-size: 11px;
    }

    .price .new-price {
        font-size: 15px;
    }

    .btn-action {
        font-size: 12px;
        padding: 8px;
    }
}