/* ============================================================
   BARCAPRINTSHOP — STYLESHEET
   GelatoSans local font + Gelato-inspired clean layout
   ============================================================ */

/* ── Local Font: GelatoSans ─────────────────────────────── */
@font-face {
    font-family: 'TT Neoris';
    src: url('fonts/TT Neoris.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ── Design Tokens ──────────────────────────────────────── */
:root {
    --black:       #000000;
    --yellow:      #FFD700;
    --star-yellow: #FBBC04;
    --white:       #FFFFFF;
    --gray-50:     #FAFAFA;
    --gray-100:    #F4F4F4;
    --gray-200:    #E8E8E8;
    --gray-400:    #AAAAAA;
    --gray-600:    #666666;
    --gray-800:    #222222;

    --font: 'TT Neoris', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --r-sm:  8px;
    --r-md:  14px;
    --r-lg:  24px;
    --r-pill: 999px;

    --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.18);

    --ease: 0.25s ease;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a  { text-decoration: none; color: inherit; transition: color var(--ease); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

button {
    cursor: pointer;
    border: none;
    font-family: var(--font);
    transition: all var(--ease);
}

/* ── Focus ──────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }

/* ============================================================
   LOADING SCREEN & ANIMATIONS
   ============================================================ */
/* Keyframe animations */
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fade-in-scale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade-out-up {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-30px);
    }
}

@keyframes slide-up-fade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-left-fade {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
    animation: fade-out-up 0.36s ease-in-out 1.14s forwards;
}

.loading-screen.hidden {
    display: none;
}

.loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loading-logo-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: fade-in-scale 0.27s ease-out forwards;
    z-index: 1;
}

.loading-spinner {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top: 2px solid var(--black);
    border-radius: 50%;
    animation: spin-slow 0.91s linear infinite;
}

/* Hero animations */
.hero-content {
    animation: slide-left-fade 0.36s ease-out 1.14s both;
}

.hero-headline {
    animation: slide-up-fade 0.36s ease-out 1.27s both;
}

.hero-subheadline {
    animation: slide-up-fade 0.36s ease-out 1.41s both;
}

.hero-ctas {
    animation: slide-up-fade 0.36s ease-out 1.55s both;
}

.google-reviews {
    animation: slide-up-fade 0.36s ease-out 1.68s both;
}

.hero-visual {
    animation: slide-left-fade 0.36s ease-out 1.14s both;
}

.hero-image {
    animation: fade-in-scale 0.36s ease-out 1.14s both;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .loading-logo-wrapper {
        width: 80px;
        height: 80px;
    }

    .loading-logo {
        width: 60px;
        height: 60px;
    }

    .loading-spinner {
        width: 100px;
        height: 100px;
    }

    .hero-content {
        animation: slide-up-fade 0.36s ease-out 1.14s both;
    }

    .hero-visual {
        animation: slide-up-fade 0.36s ease-out 1.14s both;
        margin-top: 1.5rem;
    }
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
/* === ANNOUNCEMENT BAR (Refactored) === */
.announce-bar {
    height: 48px;
    background: #ff3636;
    position: sticky;
    top: 0;
    z-index: 901;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.announce-msg {
    width: 100vw;
    max-width: 100vw;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #000000;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
    padding: 0 24px;
    white-space: nowrap;
    transition: opacity 0.5s;
}
.announce-msg .ann-link {
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: 0.9;
    font-weight: 700;
    margin-left: 8px;
    transition: opacity 0.2s;
}
.announce-msg .ann-link:hover { opacity: 1; }

@media (max-width: 768px) {
    .announce-bar {
        height: 44px;
    }
    .announce-msg {
        height: 44px;
        font-size: 0.93rem;
        padding: 0 10vw;
        text-align: center;
        justify-content: center;
        width: 100vw;
        max-width: 100vw;
    }
}

@keyframes announce-cycle {
    0%, 32%   { transform: translateX(0);         }   /* hold msg1 */
    38%, 62%  { transform: translateX(-33.333%);  }   /* hold msg2 */
    68%, 100% { transform: translateX(-66.666%);  }   /* hold msg1-copy; loop resets invisibly */
}

@media (max-width: 768px) {


    /* Right actions */
    .navbar-actions {
        
        gap: 0.5rem !important;
    }


    .announce-bar {
        height: 49px;
    }
    .announce-track {
        width: 300%;
        min-width: 300vw;
        align-items: center;
        justify-content: center;
    }
    .announce-msg {
        height: 44px;
        font-size: 0.58rem;
        padding: 0 10vw;
        text-align: center;
        justify-content: center;
    }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: sticky;
    top: 48px;   /* sits directly below the sticky announce bar */
    z-index: 900;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.navbar-logo { display: flex; align-items: center; flex-shrink: 0; }
.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: transform var(--ease);
}
.brand-name {
    font-family: inherit;
    color: #000000;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: none;
    white-space: nowrap;
}
.navbar-logo:hover .logo-img { transform: scale(1.04); }

/* Nav links – centered via flex-grow spacer trick */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
}
.nav-link {
    font-size: 0.9375rem;   /* 15px */
    font-weight: 500;
    color: var(--gray-800);
    position: relative;
    padding: 0 20px 2px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--black);
    transition: width var(--ease);
}
.nav-link:hover::after { width: 100%; }

/* Right actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 0.875rem;
    font-weight: 600;
}
.lang-sep { color: var(--gray-400); }
.lang-btn {
    background: none;
    color: var(--gray-400);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font);
    padding: 2px 4px;
    border-radius: 4px;
}
.lang-btn.active { color: var(--black); }
.lang-btn:hover   { color: var(--black); }

/* Cart */
.cart-btn {
    position: relative;
    background: none;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    padding: 4px;
}
.cart-btn:hover { color: var(--black); }
.cart-count {
    position: absolute;
    top: -4px; right: -6px;
    background: var(--black);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 4px;
}
.hamburger span {
    width: 22px; height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--ease);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 123px; right: 0;   /* 48px announce + 75px mobile navbar */
    width: min(300px, 100%);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 899;
}
.mobile-menu.active { display: block; }
.mobile-nav { display: flex; flex-direction: column; }
.mobile-nav-link {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    font-weight: 500;
    font-size: 0.95rem;
}
.mobile-nav-link:hover { background: var(--gray-100); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-family: var(--font);
    font-size: 0.9375rem;   /* 15px */
    font-weight: 600;
    border-radius: var(--r-pill);
    transition: all var(--ease);
    white-space: nowrap;
    border: 2px solid transparent;
    line-height: 1.4;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.btn-primary:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}
.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-yellow {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}
.btn-yellow:hover {
    background: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 0rem 2rem 2rem;
    background: var(--white);
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Headline uses the 2rem/2.5rem spec */
.hero-headline {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--black);
}

.hero-subheadline {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-600);
    max-width: 480px;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Google Reviews */
.google-reviews {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: wrap;
}
.google-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
}
.review-stars {
    display: flex;
    gap: 2px;
}
.star {
    width: 18px;
    height: 18px;
    fill: var(--star-yellow);
}
.review-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Hero visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.hero-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-section {
    background: var(--black);
    color: var(--white);
    padding: 4.5rem 2rem 4.5rem 2rem;
}
.trust-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    margin-top: 2px;
    transition: width 0.2s, height 0.2s;
}
.trust-item strong {
    display: block;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}
.trust-item p {
    font-size: 1.01rem;
    color: #AAAAAA;
    line-height: 1.6;
}
@media (min-width: 769px) {
    .trust-section {
        padding-top: 6.5rem;
        padding-bottom: 6.5rem;
    }
    .trust-icon {
        width: 72px;
        height: 72px;
    }
    .trust-item strong {
        font-size: 1.35rem;
    }
    .trust-item p {
        font-size: 1.13rem;
    }
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
    padding: 5rem 2rem;
    background: var(--white);
}
.products-container {
    max-width: 1440px;
    margin: 0 auto;
}
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 700;
    text-align: center;
    color: var(--black);
    letter-spacing: -0.3px;
}
.section-subtitle {
    font-size: 1rem;
    text-align: center;
    color: var(--gray-600);
    margin-top: 0.5rem;
    margin-bottom: 3rem;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.product-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--ease);
    background: var(--white);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.product-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gray-100);
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-image img { transform: scale(1.06); }
.product-info {
    padding: 1.25rem 1.25rem 1.5rem;
}
.product-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
}
.product-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
}
.price {
    display: block;
    margin-top: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
}

/* ============================================================
   GOOGLE REVIEWS SECTION
   ============================================================ */
.grev-section {
    background: var(--gray-50);
    padding: 5rem 2rem 4rem;
    border-top: 1px solid var(--gray-200);
}
.grev-container {
    max-width: 1440px;
    margin: 0 auto;
}
.grev-heading {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 700;
    color: var(--black);
    text-align: center;
    letter-spacing: -0.3px;
    margin-bottom: 2.5rem;
}

/* Carousel wrapper */
.grev-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    position: relative;
}
.grev-overflow {
    flex: 1;
    overflow: visible;
}
.grev-track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Review card */
.grev-card {
    flex: 0 0 calc(20% - 1rem);
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    padding: 1.5rem 1.375rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.grev-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}

/* Top row: stars + badge */
.grev-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.grev-stars {
    display: flex;
    gap: 2px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left center;
}
@media (hover: hover) {
    .grev-card:hover .grev-stars {
        transform: scale(1.05);
    }
}
.grev-stars svg {
    width: 16px;
    height: 16px;
}
.grev-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gray-600);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    background: var(--gray-100);
    border-radius: 99px;
    padding: 3px 10px 3px 6px;
    white-space: nowrap;
}
.grev-g {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Card text */
.grev-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    margin: 0;
}
.grev-body {
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}
.grev-author {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-100);
}
.grev-author time {
    font-weight: 400;
}

/* Nav buttons */
.grev-nav {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}
.grev-nav:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}
.grev-nav:disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Footer rating */
.grev-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}
.grev-rating-line {
    font-size: 0.8125rem;
    color: var(--gray-600);
    text-align: center;
}
.grev-rating-line strong {
    color: var(--black);
    font-weight: 700;
}
.grev-google-wordmark {
    height: 20px;
    width: auto;
    opacity: 0.75;
}

/* Responsive */
@media (max-width: 1024px) {
    .grev-card { flex: 0 0 calc(33.333% - 1rem); }
}
@media (max-width: 768px) {
    .grev-section { padding: 3.5rem 0rem 3rem; }
    .grev-card { flex: 0 0 calc(80vw - 2rem); min-width: 0; }
    .grev-nav { display: flex; }
    .grev-overflow {overflow: hidden !important;}
}
@media (max-width: 480px) {
    .grev-card { flex: 0 0 calc(88vw - 2rem); }
}

/* ============================================================
   ABOUT US SECTION
   ============================================================ */
.about-section {
    display: flex;
    align-items: stretch;
    min-height: 480px;
    background: #e7e7e7;
    overflow: hidden;
    padding: 5rem;
    gap: 5rem;
}

/* Left panel */
.about-left {
    flex: 0 0 50%;
    max-width: 600px;
    padding: 5rem 4rem 5rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}
.about-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    text-transform: none;
}
.about-heading {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    color: var(--black);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 2.25rem;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.about-icon-wrap {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    margin-top: 2px;
}
.about-feature h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.3rem;
    margin-top: 0;
}
.about-feature p {
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}
.about-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.btn-about-fill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 10rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    border: 2px solid var(--black);
    font-family: var(--font);
}
.btn-about-fill:hover {
    background: var(--gray-800);
    transform: translateY(-1px);
}
.btn-about-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    background: transparent;
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 10rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    border: 2px solid var(--black);
    font-family: var(--font);
}
.btn-about-outline:hover {
    background: var(--gray-100);
    transform: translateY(-1px);
}

/* Right panel — image */
.about-right {
    flex: 1;
    min-height: 420px;
    overflow: hidden;
    background: var(--gray-200);
}
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Keep the desktop visual balanced so the image is not overly dominant */
@media (min-width: 901px) {
    .about-right {
        flex: 0 0 46%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2.5rem 2rem;
    }

    .about-img {
        width: min(100%, 760px);
        height: auto;
        max-height: 540px;
        object-fit: cover;
        border-radius: 18px;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .about-section {
        padding: 0rem;
        flex-direction: column;
    }
    .about-left {
        flex: none;
        max-width: 100%;
        padding: 3rem 1.5rem;
    }
    .about-right {
        min-height: 250px;
    }
}
@media (max-width: 480px) {
    .about-heading { font-size: 2.25rem; }
    .about-left { padding: 2.5rem 1.25rem; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-section {
    background: var(--black);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}
.cta-container { max-width: 720px; margin: 0 auto; }
.cta-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}
.cta-section p {
    font-size: 1rem;
    color: #AAAAAA;
    margin-bottom: 2rem;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    background: #f8f8f6;
    padding: 100px 0;
}

.faq-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: minmax(260px, 35%) minmax(420px, 65%);
    gap: clamp(2rem, 4vw, 5rem);
    align-items: start;
}

.faq-aside {
    position: sticky;
    top: 155px;
}

.faq-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #555555;
    margin-bottom: 1rem;
}

.faq-title {
    font-size: clamp(2.8rem, 8vw, 6rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    font-weight: 900;
    color: #111111;
    margin-bottom: 0.85rem;
}

.faq-copy {
    max-width: 28ch;
    color: #656565;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-list {
    border-top: 1px solid #e5e5e5;
}

.faq-item {
    position: relative;
    border-bottom: none;
    transition: opacity 0.28s ease;
}

.faq-reveal-line {
    display: block;
    height: 1px;
    width: 100%;
    background: #e5e5e5;
    transform-origin: left center;
    transform: scaleX(0);
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #ffffff00;
    opacity: 0;
    transform: scaleY(0.35);
    transform-origin: 50% 50%;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.45rem 0;
    text-align: left;
}

.faq-question-text {
    font-size: clamp(1.05rem, 2.1vw, 1.25rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #111111;
    transition: color 0.3s ease;
}

.faq-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    flex-shrink: 0;
    transform-origin: 50% 50%;
}

.faq-icon svg {
    display: block;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.faq-answer-inner {
    padding: 0 0 1.4rem;
    max-width: 62ch;
    color: #5f5f5f;
    font-size: 0.98rem;
    line-height: 1.8;
    transform: translateY(15px);
    opacity: 0;
}

.faq-item.is-open .faq-question-text {
    color: #111111;
}

.faq-item.is-open::before {
    opacity: 1;
    transform: scaleY(1);
}

.faq-item.is-open .faq-icon {
    color: var(--yellow);
}

@media (hover: hover) and (pointer: fine) {
    .faq-list:hover .faq-item {
        opacity: 0.4;
    }

    .faq-list:hover .faq-item:hover,
    .faq-list:hover .faq-item.is-open {
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-aside {
        position: static;
    }

    .faq-copy {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-container {
        padding: 0;
        gap: 1rem;
    }

    .faq-title {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .faq-trigger {
        padding: 1.15rem 0;
    }

    .faq-question-text {
        font-size: 1.02rem;
    }

    .faq-answer-inner {
        font-size: 0.93rem;
        line-height: 1.7;
        max-width: none;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--black);
    color: var(--white);
    border-top: 1px solid #222;
    padding: 4rem 2rem 2rem;
}
.footer-container { max-width: 1440px; margin: 0 auto; }
.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #222;
    align-items: start;
}
.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}
.footer-section h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 1.1rem;
}
.footer-section p, .footer-section li {
    font-size: 0.9rem;
    color: #AAAAAA;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.footer-section a { color: #AAAAAA; }
.footer-section a:hover { color: var(--white); }

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    justify-content: flex-start;
    align-items: center;
}
.social-links a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AAAAAA;
    transition: all var(--ease);
}
.social-links a:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8125rem;
    color: #555;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .trust-container { grid-template-columns: repeat(2, 1fr); }
    .footer-content  { grid-template-columns: repeat(2, 1fr); }
    .products-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero {
        min-height: auto;
        padding: 3rem 2rem 2rem;
    }
    .hero-visual { justify-content: center; }
    .hero-image  { max-width: 520px; }
    .hero-headline { font-size: 2.4rem; }
}

@media (max-width: 768px) {
    .nav-menu   { display: none; }
    .hamburger  { display: flex; }

    .navbar-container { padding: 0 0.75rem 0 1.25rem; height: 75px; justify-content: space-between; gap: 0; }
    .brand-wrapper { gap: 8px; }
    .logo-img { height: 75px; }
    .brand-name { font-size: 1rem; }

    .hero { padding: 2rem 1.25rem; }
    .hero-headline { font-size: 2rem; }
    .hero-ctas { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }

    .trust-container { grid-template-columns: 1fr; gap: 1.5rem; }
    .products-grid   { grid-template-columns: 1fr; }
    .footer-content  { grid-template-columns: 1fr; gap: 2rem; }
    .cta-section h2  { font-size: 1.75rem; }
    .section-title   { font-size: 1.75rem; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 1.65rem; }
    .hero-subheadline { font-size: 0.9375rem; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero-content { animation: fadeUp 0.7s ease both; }
.hero-visual  { animation: fadeRight 0.7s ease 0.15s both; }

@media (prefers-reduced-motion: reduce) {
    .hero-content,
    .hero-visual {
        animation: none;
    }
    .carousel-card-img img,
    .carousel-card,
    .carousel-arrow,
    .grev-card,
    .grev-stars {
        transition: none;
    }
    .carousel-section--focus .carousel-card:hover,
    .carousel-section--focus:has(.carousel-card:hover) .carousel-card:not(:hover) {
        transform: none;
        opacity: 1;
    }
}

/* Print */
@media print {
    .navbar, .mobile-menu, .hamburger { display: none; }
}

/* ============================================================
   PRODUCT CAROUSELS
   ============================================================ */
.carousel-section {
    padding: 3rem 3rem 3rem 2rem; /* left padding, no right so cards bleed */
    background: var(--white);
    overflow: hidden;
    max-width: 1440px;
    margin: 0 auto;
}

.carousel-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-right: 2rem;
    margin-bottom: 1.25rem;
}

.carousel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}

.carousel-show-all {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-800);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--ease);
}
.carousel-show-all:hover { color: var(--gray-400); }

/* The scrollable track — no right padding so last card peeks */
.carousel-wrapper {
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;      /* Firefox */
    padding-right: 2rem;        /* breathing room at end */
    /* Show exactly 3.25 cards: width = (100vw - 2rem padding) / 3.25 */
}
.carousel-track::-webkit-scrollbar { display: none; }

/* Each card is 1/3.25 of the visible container */
a.carousel-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.carousel-card {
    flex: 0 0 calc((100vw - 4rem) / 3.25);
    scroll-snap-align: start;
    cursor: pointer;
}

/* Card image frame */
.carousel-card-img {
    width: 100%;
    aspect-ratio: 3 / 4.5;
    border-radius: 24px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.carousel-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}
.carousel-card:hover .carousel-card-img img {
    transform: scale(1.04);
}

/* Nuestros Productos — focus mode */
.carousel-section--focus .carousel-card {
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
    .carousel-section--focus:has(.carousel-card:hover) .carousel-card:not(:hover) {
        opacity: 0.5;
    }
    .carousel-section--focus .carousel-card:hover {
        transform: translateY(-8px);
    }
}

.black-rect { background: #111111; }
.gray-rect  { background: #CCCCCC; }

.carousel-card-type {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 2px;
}
.carousel-card-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}
.carousel-card-price {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
}

/* Arrow buttons */
.carousel-arrow {
    display: none; /* shown on wider screens */
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: var(--black);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                background var(--ease),
                color var(--ease),
                border-color var(--ease);
}
@media (hover: hover) {
    .carousel-wrapper:hover .carousel-arrow-left {
        transform: translate(-6px, -50%);
    }
    .carousel-wrapper:hover .carousel-arrow-right {
        transform: translate(6px, -50%);
    }
}
.carousel-arrow:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.carousel-arrow-left  { left: -48px; }   /* will be repositioned */
.carousel-arrow-right { right: 12px; }

@media (min-width: 769px) {
    .carousel-arrow { display: flex; }
    .carousel-section { padding-left: 3rem; }
    .carousel-header  { padding-right: 3rem; }
    .carousel-track   { padding-right: 3rem; }
    .carousel-card {
        flex: 0 0 calc((100vw - 6rem) / 3.25);
    }
    .carousel-arrow-left  { left: -1rem; }
    .carousel-arrow-right { right: 1.5rem; }
}

@media (max-width: 768px) {
    .carousel-card {
        flex: 0 0 calc((100vw - 3rem) / 1.2);
    }

    .carousel-section {
        padding: 3rem 0rem 3rem 2rem !important;
    }
}

/* ============================================================
   EDITORIAL BANNER
   ============================================================ */
.editorial-banner {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    margin: 0;
    overflow: hidden;
}

.editorial-banner-media {
    position: absolute;
    inset: -8% 0;
    background-image: url('images/barcabackground.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    will-change: transform;
    filter: brightness(0.82) saturate(0.9);
}

/* Dark overlay so text is always readable */
.editorial-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.58) 55%,
        rgba(0, 0, 0, 0.22) 100%
    );
}

.editorial-inner {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.editorial-copy {
    max-width: 520px;
}

.editorial-headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
}

.editorial-line-mask {
    display: block;
    overflow: hidden;
}

.editorial-line {
    display: block;
    will-change: transform;
}

.editorial-sub {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2rem;
    max-width: 440px;
}

/* Editorial CTA — yellow fill by default, mild lift on hover */
.btn-editorial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--r-pill);
    border: 2px solid var(--yellow);
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.28);
    transition: background 0.25s ease,
                border-color 0.25s ease,
                transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}
@media (hover: hover) {
    .btn-editorial:hover {
        background: #ffe44d;
        border-color: #ffe44d;
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(255, 215, 0, 0.42);
    }
}
.btn-editorial:active {
    transform: translateY(0);
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .editorial-banner {
        min-height: 420px;
    }
    .editorial-banner-media {
        background-position: center center;
    }
    .editorial-headline { font-size: 1.9rem; }
    .editorial-sub { font-size: 0.9375rem; }
    .editorial-banner::before {
        background: rgba(0, 0, 0, 0.68);
    }
    .editorial-banner-media {
        filter: brightness(0.78) saturate(0.88);
    }
}

/* ============================================================
   HOMEPAGE 2ND TEASER (VIDEO CARD)
   ============================================================ */
.homepage-2nd-teaser {
  max-width: 1440px;
  margin: 0 auto 3.5rem auto;
  padding: 0 3rem;
}
.homepage-2nd-teaser .container {
  width: 100%;
}
.homepage-2nd-teaser__video-teaser {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  background: #f7f3f5;
}
/* Both videos fill the card */
.homepage-2nd-teaser__desktop-video,
.homepage-2nd-teaser__mobile-video {
  width: 100%;
  max-height: 600px;
  height: calc(100svh - 200px);
  object-fit: cover;
  display: block;
}
/* Hide mobile video on desktop */
.homepage-2nd-teaser__mobile-video {
  display: none !important;
}
/* On mobile: swap */
@media (max-width: 768px) {
  .homepage-2nd-teaser {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  .homepage-2nd-teaser__video-teaser {
    border-radius: 18px;
  }
  .homepage-2nd-teaser__desktop-video {
    display: none !important;
  }
  .homepage-2nd-teaser__mobile-video {
    display: block !important;
    max-height: 700px;
    height: 55vw;
    min-height: 700px;
  }
}
/* Overlay text */
.homepage-2nd-teaser__text-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  padding: 0 36px 32px 36px;
  color: #222;
  text-shadow: 0 2px 10px rgba(255,255,255,0.75);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.homepage-2nd-teaser__headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.13;
  color: #111;
  margin-bottom: 0.75rem;
  letter-spacing: -0.4px;
}
.homepage-2nd-teaser__text-wrapper p {
  font-size: 1rem;
  color: #222;
  line-height: 1.55;
  margin-bottom: 1.4rem;
  max-width: 480px;
}
.sprd-button.dark-ghost {
  display: inline-block;
  padding: 11px 28px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.9);
  color: #111;
  border: 2px solid #111;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.sprd-button.dark-ghost:hover {
  background: #111;
  color: #fff;
}
@media (max-width: 600px) {
  .homepage-2nd-teaser__text-wrapper {
    padding: 0 14px 18px 14px;
    max-width: 100%;
  }
  .homepage-2nd-teaser__headline { font-size: 1.3rem; }
  .homepage-2nd-teaser__text-wrapper p { font-size: 0.9rem; }
}
