/* ==========================================================================
   Calzados MX - Complete Refined Stylesheet with Background Video
   ========================================================================== */

:root {
    --primary-red: #e60000;
    --dark-header: #000000;
    --bg-light: #ffffff;
    --bg-gray: #f5f5f7;
    --text-main: #111111;
    --text-muted: #666666;
    --border-light: #e5e5e5;
    --font-family: 'Montserrat', sans-serif;
}

/* Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

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

/* 1. Top Announcement Bar */
.top-announcement {
    background-color: var(--dark-header);
    color: #ffffff;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* 2. Header Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.navbar.transparent-header {
    background: transparent;
    border-bottom: none;
}

.navbar.transparent-header .nav-item,
.navbar.transparent-header .icon-btn {
    color: #ffffff;
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border-light);
    top: 0;
}

.navbar.scrolled .nav-item,
.navbar.scrolled .icon-btn {
    color: #111111;
}

/* Hover header background transition for transparent header */
.navbar.transparent-header:hover {
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.navbar.transparent-header:hover .nav-item,
.navbar.transparent-header:hover .icon-btn {
    color: #111111 !important;
}

.nav-item.highlight-red,
.navbar.transparent-header .nav-item.highlight-red,
.navbar.scrolled .nav-item.highlight-red,
.navbar.transparent-header:hover .nav-item.highlight-red {
    color: var(--primary-red) !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    position: relative;
}

.nav-left-group {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item-has-dropdown {
    position: static;
    height: 75px;
    display: flex;
    align-items: center;
}

.nav-item {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    text-transform: uppercase;
}

.nav-item.highlight-red {
    color: var(--primary-red) !important;
}

.nav-item:hover {
    color: var(--primary-red);
}

.nav-item-has-dropdown:hover > .nav-item {
    color: #111111;
}

.nav-item-has-dropdown:hover > .nav-item.highlight-red {
    color: var(--primary-red);
}

/* ==========================================
   MEGA DROPDOWN MENUS (CALZZAPATO STYLE)
   ========================================== */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
    z-index: 999;
}

.nav-item-has-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-dropdown-content {
    display: flex;
    gap: 90px;
    padding: 28px 20px 38px 20px;
    align-items: flex-start;
    justify-content: flex-start;
}

.mega-dropdown-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mega-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    margin-top: 2px;
    display: block;
}

.mega-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 3px 0;
    line-height: 1.85;
    text-decoration: none;
    transition: color 0.15s ease;
    display: block;
}

.mega-link:hover {
    color: var(--primary-red) !important;
}

/* Marcas Specific Multi-column Layout */
.mega-marcas-dropdown {
    max-height: calc(100vh - 85px);
    overflow-y: auto;
}

.marcas-columns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 100%;
}

.marcas-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.brand-group {
    display: flex;
    flex-direction: column;
}

.brand-letter {
    font-size: 0.78rem;
    font-weight: 600;
    color: #777777;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.header-logo-img {
    height: 170px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 1.15rem;
    cursor: pointer;
    position: relative;
    padding: 4px;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--primary-red);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3. Hero Section with Video Background */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    background: #000000;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    padding-top: 60px;
    z-index: 2;
}

.hero-text-content {
    max-width: 750px;
    color: #ffffff;
}

.hero-sparkle-title,
.hero-main-title {
    font-family: 'Titan One', 'Syne', 'Unbounded', 'Montserrat', sans-serif;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.hero-sparkle-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.05;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: -4px;
}

.hero-sparkle-title .text-tus {
    margin-right: 4px;
}

.hero-sparkle-title .text-nuevos {
    font-weight: 900;
}

.hero-main-title {
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 18px;
    text-transform: lowercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sparkle {
    font-size: 1.8rem;
    color: #ffffff;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    animation: sparkleGlow 2.5s ease-in-out infinite alternate;
}

.sparkle.left-sparkle {
    margin-right: 4px;
    font-size: 1.6rem;
}

.sparkle.right-sparkle {
    margin-left: 4px;
    font-size: 1.4rem;
}

.sparkle.lower-sparkle {
    margin-left: 6px;
    font-size: 1.9rem;
}

@keyframes sparkleGlow {
    0% { transform: scale(0.9) rotate(0deg); opacity: 0.85; }
    100% { transform: scale(1.15) rotate(12deg); opacity: 1; }
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.5;
    color: #f1f5f9;
}

.btn-hero-action {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-hero-action:hover {
    background: #f1f5f9;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000000;
    color: #ffffff;
    border: none;
    width: 32px;
    height: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.arrow-right {
    right: 0;
    border-radius: 4px 0 0 4px;
}

/* 4. Marquee Info Strip */
.info-strip-marquee {
    background: #000000;
    color: #ffffff;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

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

.marquee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    padding-right: 30px;
}

.bullet {
    color: var(--primary-red);
    font-size: 1.2rem;
}

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

/* 5. Brand Strip */
.brand-strip {
    background: #ffffff;
    padding: 45px 0;
    border-bottom: 1px solid var(--border-light);
}

.brands-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 45px;
}

.brand-logo-svg {
    height: 100px;
    max-width: 170px;
    object-fit: contain;
    transition: transform 0.2s;
}

.brand-logo-svg:hover {
    transform: scale(1.05);
}

/* 6. Lacoste Section */
.lacoste-section {
    padding: 60px 20px;
}

.lacoste-grid {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 40px;
    align-items: center;
}

.lacoste-banner-card {
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
}

.lacoste-banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lacoste-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.lacoste-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.lacoste-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

/* Product Card */
.lacoste-prod-card {
    position: relative;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-red);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
}

.img-box {
    width: 100%;
    padding-top: 85%;
    position: relative;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prod-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.prod-price-box {
    display: flex;
    gap: 10px;
    align-items: baseline;
    font-size: 0.88rem;
    margin-bottom: 12px;
}

.price-current {
    font-weight: 800;
    color: #000;
}

.price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 0.75rem;
}

.btn-add-quick {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-add-quick:hover {
    background: var(--primary-red);
}

/* 7. "En tendencia" Draggable Slider */
.trending-section {
    padding: 50px 20px;
}

.section-heading {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.trending-carousel-wrapper {
    position: relative;
}

.trending-draggable-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    cursor: grab;
    user-select: none;
}

.trending-draggable-container::-webkit-scrollbar {
    display: none;
}

.trending-card {
    flex: 0 0 240px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 290px;
}

.trending-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 10px 5px;
    font-size: 0.8rem;
    font-weight: 700;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000000;
    color: white;
    border: none;
    width: 36px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    z-index: 5;
}

.arrow-prev { left: -15px; }
.arrow-next { right: -15px; }

/* 8. Testimonials Section */
.testimonials-section {
    padding: 40px 20px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.testimonials-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex-grow: 1;
}

.testimonial-card {
    text-align: center;
    padding: 20px;
}

.stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.review-text {
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
}

.reviewer-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

.nav-arrow {
    background: #000;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 9. Payment Banners Section */
.payment-promos-section {
    padding: 50px 20px;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pay-card-img-wrapper img,
.pay-card-sub-img img,
.pay-card-msi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.pay-right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pay-subgrid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* 10. Summer Sale Banner */
.summer-sale-banner-img {
    width: 100%;
    height: 440px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 60px 20px;
    color: #ffffff;
}

.summer-overlay-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto 0;
}

.summer-left-tag {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-size: 2.5rem;
    font-weight: 900;
    background: #ffffff;
    color: var(--primary-red);
    padding: 15px 30px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.tag-verano {
    color: var(--primary-red);
}

.summer-right-discount {
    text-align: center;
}

.hasta-off-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.hasta-txt {
    font-size: 2rem;
    font-weight: 900;
}

.num-50 {
    font-size: 7.5rem;
    font-weight: 900;
    line-height: 0.9;
}

.percent-off-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.percent-symbol {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.off-badge {
    background: #ffffff;
    color: var(--primary-red);
    font-size: 1rem;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 4px;
}

.descuento-title {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.productos-sub {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.summer-bottom-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.comprar-mini-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.8rem;
}

/* 11. Novedades Section */
.novedades-section {
    padding: 50px 20px;
}

.novedades-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

/* 12. Split 2-Card Promo Section */
.split-promo-section {
    width: 100%;
    padding: 40px 0;
}

.split-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.split-promo-card {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.split-promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-promo-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #ffffff;
    max-width: 450px;
}

.split-promo-overlay h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1;
}

.split-promo-overlay p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #f1f5f9;
}

.btn-split-more {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
}

/* 13. Value Props Row */
.value-props-section {
    background: #ffffff;
    padding: 40px 20px;
    border-top: 1px solid var(--border-light);
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-prop-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.value-prop-item i {
    font-size: 1.8rem;
    color: #111111;
    margin-top: 2px;
}

.prop-content h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 6px;
}

.prop-content p {
    font-size: 0.82rem;
    color: #666666;
    line-height: 1.4;
}

/* 14. Newsletter Discount Box */
.newsletter-discount-section {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.newsletter-discount-box h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.newsletter-discount-box p {
    font-size: 0.85rem;
    color: #444444;
    max-width: 580px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.newsletter-pill-form {
    display: flex;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
}

.newsletter-pill-form input {
    width: 100%;
    padding: 14px 24px;
    padding-right: 60px;
    border: 1px solid #111111;
    border-radius: 30px;
    font-size: 0.85rem;
    outline: none;
}

.newsletter-pill-form button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px 16px;
}

/* 15. Black Site Footer */
.site-footer-black {
    background: #000000;
    color: #ffffff;
    padding-top: 60px;
}

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

.footer-block h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-block ul li {
    margin-bottom: 10px;
    font-size: 0.82rem;
}

.footer-block ul a {
    color: #cccccc;
    transition: color 0.2s;
}

.footer-block ul a:hover {
    color: #ffffff;
}

.contact-highlight {
    color: #ffffff;
    font-weight: 600;
}

.footer-mini-form {
    display: flex;
    position: relative;
    border-bottom: 1px solid #444;
    padding-bottom: 6px;
    margin-bottom: 30px;
}

.footer-mini-form input {
    background: none;
    border: none;
    color: white;
    width: 100%;
    font-size: 0.82rem;
    outline: none;
}

.footer-mini-form button {
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
}

.other-sites-block h4, .app-download-block h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.sites-logos-flex {
    display: flex;
    gap: 15px;
    font-size: 0.95rem;
    font-weight: 800;
    color: #dddddd;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.app-stores-flex {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.store-badge {
    background: #111111;
    border: 1px solid #333333;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

/* Payment Image Logos */
.footer-payment-strip {
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding: 20px 0;
    text-align: center;
}

.payment-badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pay-img-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Copyright & Social Row */
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 0.75rem;
    color: #888888;
}

.copyright-text a {
    color: #888888;
    text-decoration: underline;
}

.social-icons-row {
    display: flex;
    gap: 16px;
    font-size: 1rem;
}

.social-icons-row a {
    color: #ffffff;
}

/* Floating Widgets */
.floating-whatsapp {
    position: fixed;
    bottom: 75px;
    left: 20px;
    background: #25d366;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.floating-chat {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    color: #333;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    cursor: pointer;
}

.floating-bestsellers-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #000000;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

/* Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: white;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

.cart-drawer.active {
    right: 0;
}

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

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-light);
    background: #f9f9f9;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.btn-checkout {
    width: 100%;
    padding: 12px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
}

/* 16. Inner Pages Solid Header */
.navbar.solid-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
}

.navbar.solid-header .nav-item,
.navbar.solid-header .icon-btn {
    color: #111111;
}

.navbar.solid-header .nav-item:hover {
    color: var(--primary-red);
}

/* 17. Collection Page Styles */
.collection-page-header {
    padding: 30px 0 15px;
    background: #ffffff;
}

.collection-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #111111;
}

.collection-filters-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 25px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.filters-left-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn-dropdown {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 8px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #333333;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.filter-btn-dropdown:hover {
    border-color: #000000;
    color: #000000;
}

.filters-right-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.articles-count {
    font-size: 0.75rem;
    font-weight: 700;
    color: #555555;
    letter-spacing: 0.5px;
}

.sort-dropdown-btn {
    background: #ffffff;
    border: none;
    font-size: 0.75rem;
    font-weight: 700;
    color: #111111;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.grid-view-switchers {
    display: flex;
    align-items: center;
    gap: 6px;
}

.view-btn {
    background: none;
    border: 1px solid #e0e0e0;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    color: #666666;
    transition: all 0.2s;
}

.view-btn.active, .view-btn:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.collection-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.collection-products-grid.grid-4col {
    grid-template-columns: repeat(4, 1fr);
}

.collection-products-grid.grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

.collection-prod-card {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.collection-prod-card:hover {
    transform: translateY(-4px);
}

.collection-prod-card .img-box {
    width: 100%;
    padding-top: 85%;
    position: relative;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.collection-prod-card .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-prod-card .prod-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 6px;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.collection-prod-card .price-current {
    font-size: 0.88rem;
    font-weight: 800;
    color: #000000;
}

/* Floating Bottom Right Collection Badge */
.floating-bottom-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #000000;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    z-index: 999;
    cursor: pointer;
}

.floating-bottom-badge i {
    font-size: 0.9rem;
}

/* 18. Product Detail Page Styles */
.breadcrumb-nav {
    padding: 15px 0;
    font-size: 0.78rem;
    color: #666666;
    margin-bottom: 10px;
}

.breadcrumb-nav a {
    color: #666666;
    transition: color 0.2s;
}

.breadcrumb-nav a:hover {
    color: #000000;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #999999;
}

.product-detail-section {
    padding: 20px 0 60px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Gallery Column */
.product-gallery-container {
    display: flex;
    gap: 20px;
}

.thumbnails-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 80px;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.thumb-item.active, .thumb-item:hover {
    opacity: 1;
    border-color: #000000;
}

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

.main-image-wrapper {
    flex-grow: 1;
    position: relative;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 520px;
}

.gallery-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e0e0e0;
    color: #111111;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
    z-index: 5;
}

.gallery-nav-arrow:hover {
    background: #ffffff;
}

.gallery-arrow-left { left: 10px; }
.gallery-arrow-right { right: 10px; }

/* Product Info Column */
.product-info-column {
    display: flex;
    flex-direction: column;
}

.product-code-text {
    font-size: 0.72rem;
    font-weight: 700;
    color: #888888;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-main-heading {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.25;
    margin-bottom: 12px;
}

.product-main-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 6px;
}

.price-subtext {
    font-size: 0.75rem;
    color: #666666;
    margin-bottom: 15px;
}

.online-exclusive-banner {
    font-size: 0.78rem;
    color: #444444;
    line-height: 1.4;
    margin-bottom: 25px;
}

/* Size Selector */
.size-selector-block {
    margin-bottom: 25px;
}

.size-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;

}

.size-buttons-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #d0d0d0;
    background: #ffffff;
    color: #111111;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-btn:hover, .size-btn.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

/* Quantity & Blue Add to Cart Row */
.purchase-actions-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.quantity-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    height: 48px;
}

.qty-btn {
    background: none;
    border: none;
    width: 36px;
    height: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
}

.qty-value {
    width: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-add-cart-blue {
    flex-grow: 1;
    background: #0052cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 800;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease;
}

.btn-add-cart-blue:hover {
    background: #003e99;
}

.btn-search-store {
    width: 100%;
    background: #ffffff;
    border: 1px solid #0052cc;
    color: #0052cc;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
    transition: background 0.2s;
}

.btn-search-store:hover {
    background: #f0f6ff;
}

/* Payment Icons & Promo */
.payment-methods-strip {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    margin-bottom: 20px;
}

.payment-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
}

.payment-badges-flex {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.payment-badge-img {
    height: 24px;
    object-fit: contain;
}

.aplazo-promo-text {
    font-size: 0.78rem;
    color: #555555;
    line-height: 1.4;
}

.aplazo-highlight {
    background: #80f3ec;
    color: #000;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 3px;
}

/* Product Accordions */
.product-accordions-group {
    border-top: 1px solid var(--border-light);

}

.accordion-item {
    border-bottom: 1px solid var(--border-light);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: #111111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-content {
    display: none;
    padding-bottom: 16px;
    font-size: 0.82rem;
    color: #555555;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    display: block;
}

/* 19. Black Benefits Ticker Bar (Image 3) */
.benefits-ticker-bar {
    background: #000000;
    color: #ffffff;
    padding: 12px 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.ticker-items-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticker-item i {
    font-size: 1rem;
}

/* Other Options Section (Image 3) */
.other-options-section {
    padding: 60px 0;
    background: #ffffff;
}

/* 20. Checkout Page Styles (Shopify Checkout Replica) */
.checkout-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    padding: 8px 0;
}

.checkout-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 70px;
}

.checkout-logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
    display: block;
}

.checkout-bag-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: #0052cc;
}

.checkout-body-wrapper {
    min-height: calc(100vh - 80px);
    display: flex;
    background: #ffffff;
}

.checkout-main-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Left Form Column */
.checkout-left-col {
    padding: 40px 40px 60px 30px;
}

.express-checkout-box {
    text-align: center;
    margin-bottom: 25px;
}

.express-title {
    font-size: 0.78rem;
    color: #707070;
    margin-bottom: 12px;
}

.express-btns-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.btn-express-paypal {
    background: #ffc439;
    border: none;
    height: 46px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #003087;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-express-gpay {
    background: #000000;
    border: none;
    height: 46px;
    border-radius: 5px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.checkout-divider {
    position: relative;
    text-align: center;
    border-bottom: 1px solid #e1e1e1;
    margin: 25px 0 30px;
}

.checkout-divider span {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 0 15px;
    font-size: 0.8rem;
    color: #707070;
}

.checkout-section-block {
    margin-bottom: 30px;
}

.checkout-section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
}

.checkout-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111111;
}

.checkout-login-link {
    font-size: 0.82rem;
    color: #0052cc;
    text-decoration: underline;
}

.checkout-input-field {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    font-size: 0.85rem;
    color: #333333;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 12px;
}

.checkout-input-field:focus {
    border-color: #0052cc;
    box-shadow: 0 0 0 1px #0052cc;
}

.checkout-input-wrapper {
    position: relative;
}

.checkout-input-wrapper .input-icon-help {
    position: absolute;
    right: 12px;
    top: 14px;
    color: #888888;
    font-size: 0.85rem;
}

.checkout-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: #444444;
    cursor: pointer;
    margin-top: 5px;
    margin-bottom: 15px;
}

.checkout-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkout-grid-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.shipping-method-disabled-box {
    background: #f4f4f4;
    padding: 15px;
    border-radius: 5px;
    font-size: 0.82rem;
    color: #707070;
}

/* Payment Methods Radio List */
.payment-radios-container {
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 15px;
}

.payment-radio-item {
    border-bottom: 1px solid #d9d9d9;
    background: #ffffff;
}

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

.payment-radio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    cursor: pointer;
}

.payment-radio-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #222222;
}

.payment-radio-item.selected {
    border: 2px solid #0052cc;
    background: #ffffff;
}

.payment-radio-subcontent {
    background: #fafafa;
    padding: 20px;
    border-top: 1px solid #e6e6e6;
    text-align: center;
    font-size: 0.82rem;
    color: #555555;
}

.payment-badges-row-mini {
    display: flex;
    gap: 6px;
    align-items: center;
}

.badge-mini {
    height: 18px;
    object-fit: contain;
}

.btn-pay-now-primary {
    width: 100%;
    background: #0052cc;
    color: #ffffff;
    border: none;
    height: 54px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 25px;
    margin-bottom: 35px;
    transition: background 0.2s;
}

.btn-pay-now-primary:hover {
    background: #003e99;
}

.checkout-footer-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: #0052cc;
    border-top: 1px solid #eeeeee;
    padding-top: 20px;
}

.checkout-footer-links a {
    text-decoration: underline;
}

/* Right Summary Panel */
.checkout-right-col {
    background: #fafafa;
    border-left: 1px solid #e1e1e1;
    padding: 40px 30px 60px 40px;
}

.summary-items-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
}

.summary-item-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary-img-box {
    position: relative;
    width: 64px;
    height: 64px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
}

.summary-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.summary-badge-qty {
    position: absolute;
    top: -8px;
    right: -8px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-item-info {
    flex-grow: 1;
}

.summary-item-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 4px;
}

.summary-item-variant {
    font-size: 0.78rem;
    color: #707070;
}

.summary-item-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: #111111;
}

.discount-code-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.btn-discount-apply {
    background: #e6e6e6;
    border: none;
    padding: 0 20px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #707070;
    cursor: pointer;
}

.summary-calc-breakdown {
    border-top: 1px solid #e1e1e1;
    padding-top: 20px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #555555;
    margin-bottom: 12px;
}

.calc-row.total-row {
    border-top: 1px solid #e1e1e1;
    padding-top: 18px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #000000;
}

.currency-symbol {
    font-size: 0.78rem;
    font-weight: 600;
    color: #707070;
    margin-right: 5px;
}

@media (max-width: 992px) {
    .checkout-main-grid {
        grid-template-columns: 1fr;
    }
    .checkout-right-col {
        border-left: none;
        border-top: 1px solid #e1e1e1;
    }
}

/* ==========================================================================
   21. Pagou.ai Payment Module & Payment Element SDK v3 Custom Styles
   ========================================================================== */
.payment-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagou-badge-secured {
    font-size: 0.72rem;
    font-weight: 700;
    color: #008a00;
    background: #e6f4ea;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.payment-badges-row-mini {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.svg-badge-card {
    height: 25px;
    width: 40px;
    border-radius: 5px;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s ease;
}

.svg-badge-card:hover {
    transform: translateY(-1px);
}

.pagou-card-input-box {
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    padding: 14px 16px;
    margin-top: 10px;
    min-height: 54px;
    transition: border-color 0.2s;
}

.pagou-card-input-box:focus-within {
    border-color: #0052cc;
    box-shadow: 0 0 0 1px #0052cc;
}

.card-element-loading {
    font-size: 0.82rem;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagou-error-msg {
    color: #d32f2f;
    background: #fde8e8;
    border: 1px solid #f8b4b4;
    padding: 10px 14px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
}

.btn-express-applepay {
    background: #000000;
    border: none;
    height: 46px;
    border-radius: 5px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: opacity 0.2s;
}

.btn-express-applepay:hover {
    opacity: 0.9;
}

.shipping-method-box-active {
    background: #f0f7ff;
    border: 1px solid #b3d7ff;
    padding: 14px 18px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #111111;
    font-weight: 600;
}

.shipping-price-badge {
    color: #008a00;
    font-weight: 800;
    font-size: 0.85rem;
}

.payment-result-box {
    margin-top: 25px;
    padding: 24px;
    border-radius: 8px;
    background: #ffffff;
    border: 2px solid #0052cc;
    box-shadow: 0 4px 16px rgba(0, 82, 204, 0.12);
}

.voucher-info-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 16px;
    margin-top: 15px;
}

.voucher-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 0.85rem;
}

.voucher-row:last-child {
    border-bottom: none;
}

.voucher-label {
    font-weight: 600;
    color: #475569;
}

.voucher-value-box {
    font-family: monospace;
    font-weight: 700;
    color: #0f172a;
    background: #e2e8f0;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.copy-btn-sm {
    background: #0052cc;
    color: #ffffff;
    border: none;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    margin-left: 6px;
}

/* ==========================================================================
   22. MOBILE RESPONSIBNESS & HAMBURGER DRAWER SYSTEM (CALZZAPATO STYLE)
   ========================================================================== */

/* Mobile Hamburger Button */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    font-size: 1.35rem;
    color: inherit;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Off-Canvas Mobile Navigation Drawer */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2000;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 86vw;
    height: 100vh;
    background: #ffffff;
    z-index: 2001;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

.mobile-nav-drawer.active {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
}

.mobile-drawer-logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.mobile-drawer-close {
    background: none;
    border: none;
    font-size: 1.35rem;
    color: #333333;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.mobile-drawer-close:hover {
    background: #f0f0f0;
}

.mobile-drawer-search {
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #eeeeee;
}

.mobile-search-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 25px;
    padding: 6px 14px;
    gap: 8px;
}

.mobile-search-form .search-icon {
    color: #888888;
    font-size: 0.85rem;
}

.mobile-search-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.82rem;
    font-family: inherit;
    color: #111111;
    background: transparent;
}

.mobile-search-submit {
    background: none;
    border: none;
    color: var(--primary-red);
    font-size: 0.9rem;
    cursor: pointer;
}

.mobile-drawer-nav {
    flex-grow: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.mobile-nav-accordion {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: none;
    border: none;
    font-size: 0.85rem;
    font-weight: 800;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

.mobile-accordion-header .nav-icon-prefix {
    margin-right: 8px;
    color: #666666;
    width: 18px;
    text-align: center;
}

.mobile-accordion-header .accordion-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: #888888;
}

.mobile-nav-accordion.active .mobile-accordion-header {
    color: var(--primary-red);
    background: #fafafa;
}

.mobile-nav-accordion.active .mobile-accordion-header .nav-icon-prefix {
    color: var(--primary-red);
}

.mobile-nav-accordion.active .accordion-arrow {
    transform: rotate(180deg);
    color: var(--primary-red);
}

.mobile-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    padding: 0 18px;
}

.mobile-nav-accordion.active .mobile-accordion-body {
    max-height: 600px;
    padding: 8px 18px 14px 18px;
}

.mobile-nav-link {
    padding: 9px 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #444444;
    text-decoration: none;
    border-bottom: 1px dashed #e8e8e8;
    text-transform: uppercase;
    transition: color 0.15s;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link.highlight {
    color: var(--primary-red);
    font-weight: 800;
}

.mobile-nav-link:hover {
    color: var(--primary-red);
}

.mobile-brands-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
}

.brand-chip {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #333333;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 0.2s, color 0.2s;
}

.brand-chip:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.mobile-single-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #111111;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    text-transform: uppercase;
}

.mobile-single-link .nav-icon-prefix {
    margin-right: 8px;
    width: 18px;
    text-align: center;
}

.mobile-single-link.text-red {
    color: var(--primary-red);
}

.mobile-drawer-footer {
    padding: 14px 18px;
    background: #f5f5f7;
    border-top: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.75rem;
    color: #555555;
    font-weight: 600;
}

.mobile-footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-footer-item i {
    color: var(--primary-red);
}

/* Global Search Modal Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 2500;
    padding: 30px 15px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

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

.search-overlay-content {
    width: 100%;
    max-width: 650px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transform: translateY(-10px);
    transition: transform 0.25s ease;
}

.search-overlay.active .search-overlay-content {
    transform: translateY(0);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eeeeee;
    gap: 12px;
}

.search-modal-icon {
    font-size: 1.1rem;
    color: #888888;
}

#globalSearchInput {
    width: 100%;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: inherit;
    color: #111111;
}

.close-search-btn {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: #777777;
    padding: 4px;
    transition: color 0.2s;
}

.close-search-btn:hover {
    color: var(--primary-red);
}

.search-quick-results {
    max-height: 420px;
    overflow-y: auto;
    padding: 16px 20px;
}

.suggestion-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.suggestion-chips a {
    background: #f0f2f5;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #333333;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.suggestion-chips a:hover {
    background: var(--primary-red);
    color: #ffffff;
}

.search-results-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.search-mark {
    background: #fff0f0;
    color: var(--primary-red);
    font-weight: 800;
    padding: 0 2px;
    border-radius: 2px;
}

.search-no-results {
    padding: 30px 20px;
    text-align: center;
    background: #fafafa;
    border-radius: 8px;
    border: 1px dashed #e0e0e0;
}

.search-results-header {
    font-size: 0.75rem;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-items-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #eeeeee;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-result-item:hover {
    background: #f8f9fa;
    border-color: #e0e0e0;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.search-result-img-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.search-result-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-discount-badge {
    position: absolute;
    top: 2px;
    left: 2px;
    background: var(--primary-red);
    color: #ffffff;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 2px 4px;
    border-radius: 3px;
}

.search-result-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.search-result-brand {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 0.5px;
}

.search-result-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #111111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

.search-result-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 3px;
}

.search-result-price {
    font-size: 0.85rem;
    font-weight: 800;
    color: #111111;
}

.search-result-old-price {
    font-size: 0.75rem;
    color: #888888;
    text-decoration: line-through;
}

.search-item-arrow {
    font-size: 0.8rem;
    color: #cccccc;
    transition: transform 0.2s ease, color 0.2s ease;
}

.search-result-item:hover .search-item-arrow {
    color: var(--primary-red);
    transform: translateX(2px);
}

.search-view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    background: #000000;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.search-view-all-btn:hover {
    background: var(--primary-red);
}

.search-view-all-btn.btn-secondary {
    background: #f0f2f5;
    color: #111111;
}

.search-view-all-btn.btn-secondary:hover {
    background: #e4e6ea;
}

/* Sticky Mobile Bottom Buy Bar */
.sticky-mobile-buy-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1500;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    border-top: 1px solid #e5e5e5;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.sticky-bar-info {
    display: flex;
    flex-direction: column;
    max-width: 60%;
}

.sticky-bar-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #222222;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sticky-bar-price {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-red);
}

.sticky-bar-btn {
    background: var(--primary-red);
    color: #ffffff;
    border: none;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(230, 0, 0, 0.3);
    transition: transform 0.15s ease;
}

.sticky-bar-btn:active {
    transform: scale(0.96);
}

/* ==========================================================================
   23. MEDIA QUERIES FOR TABLET AND MOBILE (< 991px & < 576px)
   ========================================================================== */
@media (max-width: 991px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-left-group .nav-menu {
        display: none;
    }

    .nav-container {
        height: 64px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        position: relative;
    }

    .nav-left-group {
        gap: 0;
    }

    .brand-logo-img-link {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .header-logo-img {
        height: 40px !important;
        max-height: none !important;
        width: auto !important;
        object-fit: contain;
        transform: scale(1.75) !important;
        transform-origin: center !important;
    }

    .nav-icons {
        gap: 12px;
    }

    .icon-btn {
        font-size: 1.1rem;
        padding: 6px;
    }

    /* Hero section */
    .hero-section {
        height: 70vh;
        min-height: 460px;
    }

    .hero-sparkle-title {
        font-size: 1.6rem;
    }

    .hero-main-title {
        font-size: 2.3rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        max-width: 90%;
        margin: 12px auto;
    }

    .btn-hero-action {
        font-size: 0.82rem;
        padding: 12px 24px;
    }

    /* Collection Grid Page */
    .collection-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .collection-filters-bar {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .filters-left-group {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        width: 100%;
    }

    .filter-btn-dropdown {
        width: 100%;
        font-size: 0.74rem;
        padding: 8px 4px;
        text-align: center;
    }

    .filters-right-group {
        width: 100%;
        justify-content: space-between;
    }

    /* Product Detail Page */
    .product-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .product-main-heading {
        font-size: 1.4rem;
    }

    .product-main-price {
        font-size: 1.4rem;
    }

    .purchase-actions-row {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .btn-add-cart-blue {
        width: 100%;
        height: 52px;
        font-size: 0.95rem;
    }

    .btn-search-store {
        width: 100%;
        height: 50px;
    }
}

/* ==========================================================================
   24. STRICT MOBILE OVERFLOW & ALIGNMENT OVERRIDES (CALZZAPATO PERFECT FIT)
   ========================================================================== */
/* Mobile Left Group (Hamburger + Search Icon on Left) */
.mobile-left-nav-group {
    display: none;
    align-items: center;
    gap: 10px;
}

@media (max-width: 991px) {
    html, body {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* Mobile Header & Large Logo (Exact Image 3 Layout) */
    .mobile-left-nav-group {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        z-index: 10 !important;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .search-btn-desktop {
        display: none !important;
    }

    .nav-left-group {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
    }

    .nav-left-group .nav-menu {
        display: none !important;
    }

    .nav-container {
        height: 75px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 15px !important;
        position: relative !important;
    }

    .brand-logo-img-link {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 25 !important;
        pointer-events: auto !important;
    }

    .header-logo-img {
        height: 58px !important;
        max-height: 62px !important;
        width: auto !important;
        object-fit: contain !important;
        display: block !important;
    }

    .nav-icons {
        gap: 14px !important;
        z-index: 10 !important;
    }

    .icon-btn {
        font-size: 1.15rem !important;
        padding: 6px !important;
    }

    /* Hide desktop carousel side arrows that stick out on mobile screen edges */
    .slider-arrow,
    .carousel-arrow,
    .arrow-right,
    .arrow-left,
    .arrow-next,
    .arrow-prev,
    .nav-arrow,
    .prev-review,
    .next-review {
        display: none !important;
    }

    /* Announcement Bar */
    .top-announcement {
        font-size: 0.76rem !important;
        padding: 6px 12px !important;
        text-align: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        width: 100% !important;
    }

    /* Large & Draggable Brand Logos Row below Hero */
    .brand-strip {
        padding: 30px 0 !important;
        overflow: hidden !important;
        background: #ffffff !important;
        border-bottom: 1px solid var(--border-light) !important;
    }

    .brands-flex {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 35px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 10px 20px !important;
        scrollbar-width: none !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
    }

    .brands-flex::-webkit-scrollbar {
        display: none !important;
    }

    .brand-logo-svg {
        height: 75px !important;
        max-height: 85px !important;
        width: auto !important;
        max-width: 160px !important;
        flex: 0 0 auto !important;
        scroll-snap-align: start !important;
        object-fit: contain !important;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05)) !important;
    }

    /* Lacoste Section Layout */
    .lacoste-section {
        padding: 25px 15px !important;
        overflow: hidden !important;
    }

    .lacoste-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .lacoste-banner-card {
        width: 100% !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }

    .lacoste-banner-card img {
        width: 100% !important;
        height: auto !important;
        max-height: 380px !important;
        object-fit: cover !important;
    }

    .lacoste-header h2 {
        font-size: 1.5rem !important;
        margin-bottom: 6px !important;
    }

    /* "En tendencia" Touch Slider */
    .trending-section {
        padding: 25px 15px !important;
        overflow: hidden !important;
    }

    .trending-carousel-wrapper {
        width: 100% !important;
        overflow: hidden !important;
    }

    .trending-draggable-container {
        display: flex !important;
        gap: 12px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        padding-bottom: 8px !important;
        scrollbar-width: none !important;
    }

    .trending-draggable-container::-webkit-scrollbar {
        display: none !important;
    }

    .trending-card {
        flex: 0 0 45% !important;
        min-width: 45% !important;
        scroll-snap-align: start !important;
        border-radius: 10px !important;
        overflow: hidden !important;
    }

    .trending-card img {
        height: 180px !important;
        object-fit: cover !important;
        width: 100% !important;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 30px 15px !important;
        overflow: hidden !important;
    }

    .testimonials-wrapper {
        width: 100% !important;
    }

    .testimonials-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 15px !important;
        scrollbar-width: none !important;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none !important;
    }

    .testimonial-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        scroll-snap-align: center !important;
        background: #fafafa !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 12px !important;
        padding: 22px 18px !important;
        text-align: center !important;
    }

    .review-text {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    /* Payment Promo Banners */
    .payment-promos-section {
        padding: 20px 15px !important;
        overflow: hidden !important;
    }

    .payment-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .pay-card-img-wrapper,
    .pay-right-column,
    .pay-subgrid-top,
    .pay-card-sub-img,
    .pay-card-msi-img {
        width: 100% !important;
    }

    .pay-subgrid-top {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .pay-card-img-wrapper img,
    .pay-card-sub-img img,
    .pay-card-msi-img img {
        width: 100% !important;
        height: auto !important;
        border-radius: 10px !important;
        display: block !important;
        object-fit: cover !important;
    }

    /* Summer Sale Red Banner */
    .summer-sale-banner-img {
        padding: 30px 15px !important;
        background-size: cover !important;
        background-position: center !important;
        overflow: hidden !important;
    }

    .summer-overlay-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 12px !important;
    }

    .summer-left-tag {
        font-size: 1.1rem !important;
    }

    .num-50 {
        font-size: 3.2rem !important;
    }

    .summer-bottom-bar {
        flex-direction: column !important;
        gap: 8px !important;
        text-align: center !important;
    }

    /* Novedades Grid (2 Columns on Mobile) */
    .novedades-section {
        padding: 25px 15px !important;
        overflow: hidden !important;
    }

    .novedades-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .lacoste-prod-card {
        padding: 10px !important;
        border: 1px solid #eeeeee !important;
        border-radius: 10px !important;
        background: #ffffff !important;
    }

    .lacoste-prod-card .img-box img {
        height: 135px !important;
        object-fit: contain !important;
        width: 100% !important;
    }

    .lacoste-prod-card .prod-title {
        font-size: 0.78rem !important;
        line-height: 1.3 !important;
        height: 2.6em !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    /* Collection / Catalog Page Mobile Optimization (Exact Image 2) */
    .collection-page-header {
        padding: 15px 0 10px 0 !important;
        text-align: center !important;
    }

    .collection-title {
        font-size: 1.35rem !important;
        word-break: break-word !important;
    }

    .collection-filters-bar {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .filters-left-group {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .filter-btn-dropdown {
        width: 100% !important;
        font-size: 0.74rem !important;
        padding: 8px 6px !important;
    }

    .filters-right-group {
        width: 100% !important;
        justify-content: space-between !important;
    }

    /* Force 2 products per row on mobile regardless of grid-4col / grid-5col classes */
    #collectionGrid,
    #collectionGrid.grid-4col,
    #collectionGrid.grid-5col,
    #collectionGrid.grid-2col,
    .collection-grid,
    .collection-grid.grid-4col,
    .collection-grid.grid-5col {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 15px 0 !important;
        box-sizing: border-box !important;
    }

    #collectionGrid .collection-prod-card,
    .collection-grid .collection-prod-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 8px !important;
        background: #ffffff !important;
        border: 1px solid #eeeeee !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
    }

    #collectionGrid .collection-prod-card .img-box,
    .collection-grid .collection-prod-card .img-box {
        width: 100% !important;
        height: 145px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 6px !important;
    }

    #collectionGrid .collection-prod-card .img-box img,
    .collection-grid .collection-prod-card .img-box img {
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
    }

    #collectionGrid .collection-prod-card .prod-title,
    .collection-grid .collection-prod-card .prod-title {
        font-size: 0.78rem !important;
        font-weight: 700 !important;
        color: #222222 !important;
        line-height: 1.3 !important;
        height: 2.6em !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        margin-bottom: 4px !important;
    }

    /* Product Detail Page Mobile Optimization */
    .product-detail-section {
        padding: 15px 0 30px 0 !important;
    }

    .product-detail-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .product-gallery-container {
        width: 100% !important;
    }

    .main-image-wrapper {
        width: 100% !important;
        max-height: 380px !important;
        border-radius: 10px !important;
        overflow: hidden !important;
    }

    .main-image-wrapper img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    .product-info-column {
        width: 100% !important;
    }

    .product-main-heading {
        font-size: 1.35rem !important;
    }

    .product-main-price {
        font-size: 1.35rem !important;
    }

    .purchase-actions-row {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
    }

    .btn-add-cart-blue {
        width: 100% !important;
        height: 52px !important;
        font-size: 0.95rem !important;
    }

    .btn-search-store {
        width: 100% !important;
        height: 50px !important;
    }

    .payment-methods-strip {
        width: 100% !important;
        padding: 15px 10px !important;
        border-radius: 8px !important;
    }

    .payment-badges-flex {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        justify-content: center !important;
    }

    /* Full-Width Mobile Footer Fix */
    .site-footer-black {
        padding-top: 40px !important;
        padding-bottom: 10px !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .footer-cols-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        padding: 0 20px 35px 20px !important;
        text-align: left !important;
        width: 100% !important;
    }

    .footer-payment-strip {
        padding: 20px 15px !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .payment-badges-row {
        gap: 12px !important;
        justify-content: center !important;
    }

    .pay-img-logo {
        height: 24px !important;
        padding: 3px 8px !important;
    }

    .footer-bottom-row {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
        padding: 20px 15px 95px 15px !important;
        width: 100% !important;
    }

    /* Floating Widgets on Mobile */
    .floating-whatsapp {
        bottom: 70px !important;
        left: 15px !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 1.4rem !important;
        z-index: 1200 !important;
    }

    .floating-chat {
        bottom: 15px !important;
        left: 15px !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 1.1rem !important;
        z-index: 1200 !important;
    }

    .floating-bestsellers-btn {
        bottom: 15px !important;
        right: 15px !important;
        padding: 10px 16px !important;
        font-size: 0.8rem !important;
        z-index: 1200 !important;
    }
}

@media (max-width: 576px) {
    .trending-card {
        flex: 0 0 46% !important;
        min-width: 46% !important;
    }
    .trending-card img {
        height: 160px !important;
    }
}

/* Promo Cart Limit Alert Styles */
.cart-promo-limit-alert {
    background-color: #fdf2f2;
    border: 1px solid #f8b4b4;
    border-left: 4px solid #d32f2f;
    border-radius: 6px;
    padding: 12px 14px;
    margin: 10px 0 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #222222;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.08);
}

.btn-checkout.disabled,
.btn-checkout:disabled,
.btn-pay-now-primary.disabled,
.btn-pay-now-primary:disabled {
    background: #cccccc !important;
    background-color: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed !important;
    opacity: 0.75 !important;
    box-shadow: none !important;
    transform: none !important;
    pointer-events: auto !important;
}




