/* Variables & Theme Colors */
:root {
    --primary-dark: #000000;
    /* Dark background */
    --primary-light: #111111;
    /* Dark secondary background */
    --accent-gold: #C4984B;
    /* Gold accent - titles, hover, highlights */
    --accent-light: #CDB390;
    /* Gold light version */
    --text-white: #ffffff;
    /* Main text - white on dark */
    --text-gray: #aaaaaa;
    /* Secondary text */
    --bg-light: #1a1a1a;
    /* Dark card background */
    --font-primary: 'Mulish', 'Outfit', sans-serif;
    --font-secondary: 'Mulish', 'Inter', sans-serif;
    --font-display: 'Mulish', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html,
body {
    font-family: var(--font-primary);
    color: var(--text-white);
    background-color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Typography Base */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    color: var(--accent-gold);
    font-weight: 700;
}

h3 {
    font-size: 45px;
    line-height: 1.2;
}

.text-green {
    color: var(--accent-gold);
}

/* Button Utilities */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-dark);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--accent-gold);
}

.btn-header {
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
}

.nav-links li:last-child a {
    background-color: var(--accent-gold);
    color: #ffffff;
    /* margin: 20px 40px 0; */
    padding: 15px 30px;
    border-radius: 50px;
    display: block;
    border-color: var(--accent-gold);
}

.nav-links li:last-child a:hover {
    background-color: var(--accent-light);
    color: #000000;
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.hero-content .btn-outline-white {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.hero-content .btn-outline-white:hover {
    background-color: var(--accent-gold);
    color: #fff;
}

.ts-header .btn-outline-white {
    border-color: #ffffff;
    color: #ffffff;
}

.ts-header .btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--primary-dark);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-dark:hover {
    background-color: var(--primary-dark);
    color: #fff;
}

.btn-accent-light {
    background-color: var(--accent-light);
    color: var(--primary-dark);
}

.btn-accent-light:hover {
    background-color: var(--accent-gold);
    color: #fff;
}

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

.link-styled {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
}

.link-styled:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* Neon Buy Button */
.btn-comprar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #000000;
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.btn-comprar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: #222222;
    color: #fff;
}

@keyframes neonGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header & Nav */
.top-bar {
    background-color: #0a0a0a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5%;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    border-bottom: 1px solid #222;
}

.top-bar-social a {
    margin-right: 18px;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
}

.top-bar-social .material-icons {
    font-size: 20px;
}

.top-bar-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-text .material-icons-outlined,
.top-bar-contact .material-icons-outlined {
    font-size: 20px;
    color: var(--accent-gold);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    border-bottom: 1px solid #222;
    background: #000000;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo h1 {
    margin: 0;
}

.header-logo-text {
    color: #000000;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
}

.nav-links {
    display: flex;
    gap: 70px;
    align-items: center;
}

.nav-links a {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a.btn-header:hover {
    color: #ffffff;
}

.nav-links a.btn-header.active {
    color: #ffffff;
}

.nav-links a .dropdown-icon {
    font-size: 18px;
}

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

.nav-icons a {
    color: var(--text-white);
    display: flex;
    align-items: center;
}

.nav-icons a:hover {
    color: var(--accent-gold);
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--accent-gold);
    color: #fff;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    color: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    height: 480px;
    padding: 0 5%;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(70deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
}

/* ---- Hero slide con VIDEO ---- */
.hero-slide-video {
    /* No usa background-image, usa <video> interno */
    background: #000;
}

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

.hero-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.hero-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--accent-light), var(--accent-gold));
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(4px);
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
}

.hero:hover .hero-arrow {
    opacity: 1;
    visibility: visible;
}

.hero-arrow:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
}

.hero-arrow.hero-prev {
    left: 20px;
}

.hero-arrow.hero-next {
    right: 20px;
}

.hero-content {
    max-width: 500px;
    z-index: 2;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.hero-title span {
    font-style: italic;
    font-weight: 800;
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-white);
}

@keyframes slideLeftFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-anim-trigger h2,
.hero-anim-trigger h1,
.hero-anim-trigger p,
.hero-anim-trigger a.btn,
.hero-anim-trigger .hero-pagination {
    opacity: 0;
    animation: slideLeftFadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-anim-trigger h2 {
    animation-delay: 0s;
}

.hero-anim-trigger h1 {
    animation-delay: 0.2s;
}

.hero-anim-trigger p {
    animation-delay: 0.4s;
}

.hero-anim-trigger a.btn {
    animation-delay: 0.6s;
}

.hero-anim-trigger .hero-pagination {
    animation-delay: 0.8s;
}

.hero-pagination {
    margin-top: 60px;
    display: flex;
    gap: 10px;
}

.dot {
    width: 30px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    display: inline-block;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--accent-gold);
}

/* Features Slider marquee effect */
.features-bar {
    overflow: hidden;
    background-color: #111111;
    border-bottom: 1px solid #222;
    border-top: 1px solid #222;
    padding: 30px 0;
}

.features-track {
    display: flex;
    width: max-content;
    animation: scrollFeatures 30s linear infinite;
    will-change: transform;
}

.features-group {
    display: flex;
    gap: 80px;
    padding-right: 80px;
    /* Space before the next group */
}

.features-track:hover {
    animation-play-state: paused;
}

@keyframes scrollFeatures {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    scroll-snap-align: start;
}

.feature-item .material-icons-outlined {
    font-size: 24px;
    color: var(--accent-gold);
}

.feature-item p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

/* =============================
   Videos Destacados Section
   ============================= */
.reels-section {
    padding: 60px 0;
    overflow: hidden;
    background-color: #000000;
    background-image: url('../images/videos_fondo.png');
    background-repeat: repeat;
    background-position: center;
}

@media (max-width: 768px) {
    .reels-section {
        background-image: url('../images/videos_fondo_telefono.png');
    }
}

.reels-section .section-header {
    max-width: 1320px;
    margin: 0 auto 30px;
    padding: 0 10px 10px;
    border-bottom: 1px solid rgba(196, 152, 75, 0.5);
    /* Subtle gold line */
    text-align: left;
}

.reels-section .section-header h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 26px;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    line-height: 1.2;
}

.reels-section .section-header h3 .title-normal {
    font-weight: 400;
    color: var(--accent-gold);
}

.reels-section .section-header h3 .title-gold {
    font-weight: 900;
    color: #C4984B;
}

.reels-track-wrapper {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 0px;
    /* Space for arrows */
}

.reels-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    /* small gap between videos */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    padding: 15px 10px;
    scrollbar-width: none;
    max-width: 1310px;
    margin: 0 auto;
}

.reels-track::-webkit-scrollbar {
    display: none;
}

.reel-card {
    box-sizing: border-box;
    flex: 0 0 210px;
    height: 370px;
    scroll-snap-align: start;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, border 0.3s ease;
    border: 2px solid transparent;
}

.reel-card:hover,
.reel-card.active-center {
    transform: scale(1.03);
    border-color: #C4984B;
    z-index: 2;
}

.reel-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.reel-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-video-wrapper img.reel-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.reel-video-wrapper img.reel-poster.hidden {
    opacity: 0;
    pointer-events: none;
}

.reel-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.3s;
}

.reel-play-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.reel-play-btn img {
    width: 48px;
    height: 48px;
    transition: transform 0.2s;
}

.reel-card:hover .reel-play-btn img {
    transform: scale(1.1);
}

.reel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 10px 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.reel-info h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin: 0;
    font-family: var(--font-secondary);
}

.reels-nav-container {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 5;
}

.reel-nav-btn {
    width: 34px;
    height: 34px;
    background: #D7C6A0;
    /* Light beige/gold from mockup */
    border: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.3s;
}

.reel-nav-btn:hover {
    background: #C4984B;
}

.reel-nav-btn i {
    font-size: 16px;
    color: #000000;
}

.reels-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.reels-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.reels-dots .dot.active,
.reels-dots .dot:hover {
    background-color: #C4984B;
}

/* best Sellers â€“ escort card grid */
.best-sellers {
    padding: 50px 0;
    background-color: #000000;
}

.best-sellers .section-header {
    max-width: 1320px;
    margin: 0 auto 20px;
    padding: 10px 10px 18px;
    border-bottom: 2px solid #C4984B;
    text-align: left;
}

.best-sellers .section-header h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 26px;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    line-height: 1.2;
}

.best-sellers .section-header h3 .title-normal {
    font-weight: 700;
    color: #ffffff;
}

.best-sellers .section-header h3 .title-gold {
    font-weight: 900;
    color: #C4984B;
}

.best-sellers .section-header p {
    font-size: 14px;
    color: #888888;
    margin: 0;
}

/* ---- Escort Filter ---- */
.escort-filter {
    display: flex;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 6px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: var(--transition-smooth);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-gold);
    color: #ffffff;
}

/* ---- Product Card Grid ---- */
.products-grid-new {
    display: grid;
    grid-template-columns: repeat(5, 260px);
    gap: 10px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 20px 10px;
    justify-content: center;
}

/* Each card: fixed 260Ã—340 */
.product-card-new {
    position: relative;
    width: 260px;
    height: 340px;
    flex-shrink: 0;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    display: block;
    background: #111;
}

/* Full-height image wrapper */
.product-img-new {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #111;
}

.product-img-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

/* Secondary image hidden by default */
.product-img-new .img-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

/* Hover: swap images */
.product-card-new:hover .product-img-new .img-primary {
    opacity: 0;
}

.product-card-new:hover .product-img-new .img-secondary {
    opacity: 1;
    transform: scale(1.04);
}

/* ----- Badges (VIP / Premium / Nueva) ----- */
.badge {
    display: none;
    /* hidden by default */
    position: absolute;
    top: 10px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
    z-index: 10;
    pointer-events: none;
}

/* show only when badge-active is present */
.badge.badge-active {
    display: block;
}

.badge-vip {
    left: 10px;
    background-color: #C4984B;
    color: #000;
}

.badge-premium {
    left: 10px;
    background-color: #1a1a1a;
    color: #C4984B;
    border: 1px solid #C4984B;
}

/* If BOTH vip and premium are active, offset premium */
.badge-vip.badge-active+.badge-premium.badge-active {
    left: 54px;
}

.badge-nueva {
    right: 10px;
    left: auto;
    background-color: #ffffff;
    color: #000;
}

/* ----- Info Overlay (bottom, always visible) ----- */
.product-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 260px 14px 14px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85) 70%);
    z-index: 5;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-info-overlay h4 {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    outline: 1px solid var(--accent-gold);
    border: none;
    height: 40px;
    margin: 0px 20px 10px 20px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.product-card-new:hover .product-info-overlay h4 {
    background: var(--accent-gold);
    color: #ffffff;
}

.card-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0 0 2px;
    font-family: var(--font-secondary);
    letter-spacing: 0.5px;
}

.card-age {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-secondary);
    letter-spacing: 0.3px;
    margin: 0;
}

/* ----- Hover: Ver Info button (center) ----- */
.card-hover-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 10px));
    background: rgba(0, 0, 0, 0.92);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 22px;
    border-radius: 4px;
    z-index: 8;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    font-family: var(--font-secondary);
    backdrop-filter: blur(2px);
    white-space: nowrap;
}

.product-card-new:hover .card-hover-btn {
    opacity: 1;
    transform: translate(-50%, -50%);
}

/* Dim overlay on hover */
.product-card-new::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 4;
    border-radius: 4px;
}

.product-card-new:hover::after {
    opacity: 1;
}



.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    color: #aaaaaa;
    font-size: 20px;
    margin-top: 10px;
}

.products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.products-grid::-webkit-scrollbar {
    height: 8px;
}

.products-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

/* Slider Wrappers */
.slider-wrapper {
    position: relative;
    width: 100%;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.slider-arrow.prev-arrow {
    left: -20px;
}

.slider-arrow.next-arrow {
    right: -20px;
}

.footer-logo-container {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 80px;
}

.footer-logo-text {
    color: #000000;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
}

.product-card {
    text-align: center;
    width: 375px;
    max-width: 90vw;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.product-img {
    background-color: var(--bg-light);
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.product-img:hover img {
    transform: scale(1.08);
    /* Premium hover effect */
}

.rating .product {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
}

.rating .material-icons,
.rating .material-icons-star_half,
.rating .material-icons-star_outline {
    font-size: 16px;
}

.rating .material-icons-star_half {
    color: #ffffff;
    font-size: 16px;
}

.reviews {
    font-size: 13px;
    color: var(--text-gray);
    margin-left: 5px;
}

.product-card h4 {
    font-size: 30px;
    margin-bottom: 5px;
}

.product-desc {
    font-size: 14px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.price {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.product-actions .btn {
    padding: 10px 20px;
    font-size: 12px;
}

/* Banners Section */
.banners-section {
    padding: 60px 20px 40px 10px;
    background-color: #000;
    display: flex;
    justify-content: center;
}

.banners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1320px;
    width: 100%;
}

.banner-card {
    display: block;
    width: 430px;
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.banner-card:hover {
    box-shadow: 0 4px 15px rgba(196, 152, 75, 0.4);
}

.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.banner-card:hover img {
    transform: scale(1.05);
}

/* Contact Module */
.contact-module {
    padding: 20px 20px 60px 20px;
    background-color: #000;
    display: flex;
    justify-content: center;
}

.contact-banner-container {
    display: flex;
    max-width: 1320px;
    width: 100%;
    height: 300px;
    background-color: #462D10;
    /* Fallback base color */
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease;
}

.contact-banner-container:hover {
    box-shadow: 0 10px 40px rgba(150, 112, 67, 0.4);
}

.contact-banner-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 650px;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    /* Keeps zoom within image box */
}

.contact-banner-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.contact-banner-container:hover .contact-banner-image img {
    transform: scale(1.06);
}

.contact-banner-text {
    position: relative;
    z-index: 3;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 670px;
    height: 300px;
    color: #fff;
    background: linear-gradient(to right, #462D10 0%, #967043 100%);
}

.contact-banner-text h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
}

.contact-banner-text p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.contact-buttons {
    display: flex;
    gap: 15px;
}

.btn-solid {
    background-color: #D7C6A0;
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.3s;
    display: flex;
    align-items: center;
}

.btn-solid:hover {
    background-color: #C4984B;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
    background-color: #ff2020;
    color: #ffffff;
}

.btn-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

.btn-outline:hover .btn-icon {
    filter: none;
}

/* Restriction Banner */
.Restriction-banner {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #C4984B;
    border-bottom: 1px solid #C4984B;
    overflow: hidden;
}

.Restriction-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.Restriction-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Restriction-content {
    position: relative;
    z-index: 1;
}

.Restriction-content p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 1300px;
}

.Restriction-content strong {
    color: #C4984B;
    /* Gold for emphasis */
    font-weight: 700;
}

/* Main Footer */
.main-footer {
    background-color: #000000;
    color: #fff;
    padding: 50px 0px 0px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #C4984B;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.footer-logo-col {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-logo-container {
    display: flex;
    align-items: center;
}

.footer-gold-title {
    color: #C4984B;
    /* Gold color matching the mockup */
    font-family: var(--font-primary);
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 16px;
}

.footer-contact-item a {
    color: #d0d0d0;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: #fff;
}

.diamond-bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: transparent;
    border: 1px solid #C4984B;
    transform: rotate(45deg);
    margin-right: 12px;
}

.footer-important-text {
    font-size: 16px;
    line-height: 1.6;
    color: #d0d0d0;
    max-width: 250px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px 5%;
    font-size: 12px;
    color: #888;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 30px;
}

.payment-logos img {
    height: 30px;
    width: auto;
}

.copyright-bar span {
    margin-left: 0;
    font-size: 16px;
    color: #fff;
    align-items: center;
    text-align: center;
}



.banderas-bar span {
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
}

.anacondaweb-bar span {
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* Side Drawers */
.side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    z-index: 2000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, visibility 0.4s;
    visibility: hidden;
    display: flex;
    flex-direction: column;
}

.side-drawer.active {
    transform: translateX(0);
    visibility: visible;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.drawer-header h3 {
    margin: 0;
    font-size: 24px;
}

.close-drawer {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-white);
}

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

.drawer-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    outline: none;
}

.drawer-input:focus {
    border-color: var(--accent-gold);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Responsive Media Queries */
@media screen and (max-width: 1024px) {
    h3 {
        font-size: 36px;
    }

    .hero {
        background-position: center;
    }

    .hero-title {
        font-size: 48px;
    }

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

    .blog-main-card img {
        height: 400px;
    }

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

@media screen and (max-width: 768px) {

    .top-bar-text {
        display: none;
    }

    .top-bar-social {
        display: flex;
        gap: 0px;
    }

    .top-bar {
        justify-content: space-between;
    }

    .header-logo-text {
        font-size: 28px;
    }

    .main-nav {
        flex-wrap: wrap;
    }

    .nav-icons {
        order: 2;
        margin-left: auto;
    }

    .menu-toggle {
        display: block;
        order: 3;
        margin-left: 30px;
        position: relative;
        z-index: 1000;
    }

    .menu-toggle .material-icons {
        font-size: 38px;
        font-weight: 700;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        transform: translateX(-100%);
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        transition: transform 0.4s ease, visibility 0.4s;
        visibility: hidden;
        z-index: 999;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links li a {
        font-size: 26px;
        padding: 15px 0;
        text-align: center;
    }

    .nav-links li a.btn-header {
        margin: 20px 40px 0;
        padding: 15px 30px;
        border-radius: 50px;
        display: block;
    }

    .hero {
        height: 480px;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.65);
    }

    .hero-arrow,
    .slider-arrow {
        display: none;
    }

    .hero-content {
        background: transparent;
        padding: 30px 20px;
    }

    .ts-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header {
        justify-content: center !important;
        text-align: center;
    }

    .section-header h3 {
        text-align: center;
        width: 100%;
        margin-bottom: 15px !important;
    }

    .escort-filter {
        justify-content: center;
        width: 100%;
    }

    .bs-card {
        flex-direction: column;
        align-items: stretch;
    }

    .bs-img,
    .bs-img img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .bs-content {
        padding: 20px;
    }

    .ig-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 40px;
        gap: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .ig-grid::-webkit-scrollbar {
        display: none;
    }

    .ig-grid a {
        flex: 0 0 65%;
        scroll-snap-align: center;
    }

    .ig-grid a:nth-child(5) {
        display: block;
    }

    /* Hide 5th internal block */

    .footer-newsletter {
        flex-direction: column;
        text-align: center;
    }

    .fn-form {
        width: 100%;
        flex-direction: column;
    }

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

    .f-col ul {
        display: inline-block;
        text-align: left;
    }

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

    .footer-logo-col {
        justify-content: center;
        align-items: center;
    }

    .footer-logo-container {
        justify-content: center;
    }

    .footer-important-text {
        margin: 0 auto;
    }

    .payment-logos {
        gap: 10px;
    }

    .copyright-bar span {
        display: block;
        margin: 5px 0;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content video {
    height: 85vh;
    width: auto;
    max-width: 100%;
    border-radius: 12px;
    outline: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background: #000;
    object-fit: contain;
}

.close-video-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s;
}

.close-video-modal:hover {
    color: #C4984B;
}

.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(196, 152, 75, 0.2);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: background 0.3s;
}

.modal-nav-btn:hover {
    background: #C4984B;
}

.modal-nav-btn.prev {
    left: 20px;
}

.modal-nav-btn.next {
    right: 20px;
}

.modal-nav-btn i {
    font-size: 24px;
    color: #000000;
}

/* Extracted Inline Styles */
.header-logo-img {
    height: 60px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .header-logo-img {
        height: 50px;
    }
}

.slide-1 {
    background-image: url('../images/slide_1.jpg');
}

.slide-2 {
    background-image: url('../images/slide_2.jpg');
}

.slide-3 {
    background-image: url('../images/slide_3.jpg');
}

.slide-4 {
    background-image: url('../images/slide_4.jpg');
}

@media (max-width: 768px) {
    .slide-1 {
        background-image: url('../images/slide_1_telefono.jpg');
    }

    .slide-2 {
        background-image: url('../images/slide_2_telefono.jpg');
    }

    .slide-3 {
        background-image: url('../images/slide_3_telefono.jpg');
    }

    .slide-4 {
        background-image: url('../images/slide_4_telefono.jpg');
    }
}

.hero-subtitle-green {
    color: var(--accent-gold);
    font-family: var(--font-primary);
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 700;
}

.mt-50 {
    margin-top: 50px;
}

.reel-link {
    text-decoration: none;
    color: inherit;
}

.footer-logo-img {
    width: 268px;
    height: auto;
    display: block;
}

.copyright-bar-container {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.copyright-text {
    font-size: 16px;
    color: #ffffff;
}

.whatsapp-icon-img {
    display: block;
}

/* Drawer Styles */
.drawer-padded {
    padding: 20px;
}

.drawer-text {
    margin-bottom: 20px;
    font-size: 14px;
}

.drawer-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-secondary);
}

.drawer-input-last {
    margin-bottom: 15px;
}

.drawer-btn-mb15 {
    width: 100%;
    margin-bottom: 15px;
}

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

.drawer-link-green {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 14px;
}

.drawer-hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

.drawer-text-mb10 {
    margin-bottom: 10px;
    font-size: 14px;
}

.drawer-btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

.drawer-btn-mt15 {
    width: 100%;
    margin-top: 15px;
}

.drawer-footer-padded {
    padding: 20px;
    border-top: 1px solid #eee;
}

.drawer-btn-mb10 {
    width: 100%;
    margin-bottom: 10px;
}

.drawer-btn-full {
    width: 100%;
}

/* ----- Modal Profile Overlay ----- */
.modal-profile-overlay {
    position: absolute;
    bottom: 12vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

@media (max-width: 768px) {
    .modal-profile-overlay {
        bottom: 20vh;
    }
}

.modal-profile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(17, 17, 17, 0.85);
    color: var(--accent-gold);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-secondary);
    border: 1px solid var(--accent-gold);
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-profile-link:hover {
    background: var(--accent-gold);
    color: #000;
}

/* ----- Card Actions (Search & Favorite) ----- */
.card-actions {
    position: absolute;
    top: 15px;
    right: -50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    transition: all 0.3s ease;
}

.product-card-new:hover .card-actions {
    right: 15px;
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.action-btn:hover {
    background: var(--accent-gold);
    color: #fff;
}


/* Custom Tooltip for Nav Icons */
.nav-icons a {
    position: relative;
}

.nav-icons a::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 180%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: var(--font-primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.nav-icons a::before {
    content: '';
    position: absolute;
    top: calc(180% - 11px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #000 transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.nav-icons a:hover::after,
.nav-icons a:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mobile-only {
    display: none !important;
}

/* --- Responsive Overrides for Grid and Contact Banner --- */
@media (max-width: 1319px) {
    .products-grid-new {
        grid-template-columns: repeat(4, 260px);
    }
}

@media (max-width: 1120px) {
    .products-grid-new {
        grid-template-columns: repeat(3, 260px);
    }
}

@media (max-width: 840px) {
    .products-grid-new {
        grid-template-columns: repeat(2, 260px);
    }
}

@media (max-width: 580px) {
    .products-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px 5px;
    }

    .mobile-only {
        display: flex !important;
    }

    .products-grid-new.mobile-slider {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .products-grid-new.mobile-slider::-webkit-scrollbar {
        display: none;
    }

    .products-grid-new.mobile-slider .product-card-new {
        flex: 0 0 85%;
        scroll-snap-align: center;
        width: 85%;
    }

    .product-card-new {
        width: 100%;
        height: auto;
        aspect-ratio: 260 / 340;
    }

    .products-grid-new .product-card-new:nth-child(15) {
        display: none;
    }

    .product-info-overlay {
        padding: 60% 8px 8px 8px;
    }

    .product-info-overlay h4 {
        font-size: 11px;
        margin: 0px 5px 5px 5px;
        height: 30px;
    }

    .card-price,
    .card-age {
        font-size: 11px;
    }

    .card-hover-btn {
        display: none;
        /* Hide hover button on very small mobile screens */
    }

    .contact-banner-container {
        flex-direction: column;
        height: auto;
    }

    .contact-banner-image {
        position: relative;
        width: 100%;
        height: 250px;
    }

    .contact-banner-image img {
        object-position: center top;
    }

    .contact-banner-text {
        width: 100%;
        height: auto;
        padding: 40px 20px;
        text-align: center;
    }

    .contact-banner-text h2 {
        font-size: 26px;
    }

    .contact-banner-text p {
        font-size: 15px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 15px;
    }

    .contact-buttons .btn-solid,
    .contact-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .banners-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .banner-card {
        width: 100%;
        height: auto;
        aspect-ratio: 430 / 220;
    }
}

/* --- Better Tablet/Mobile Responsiveness for Contact Banner --- */
@media (max-width: 1120px) {
    .contact-banner-container {
        flex-direction: column;
        height: auto;
    }

    .contact-banner-image {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .contact-banner-text {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 40px 20px;
        text-align: center;
    }

    .contact-banner-text h2 {
        font-size: 32px;
    }

    .contact-buttons {
        justify-content: center;
    }
}

/* --- Large Screen Constraints --- */
@media (min-width: 1320px) {
    .top-bar {
        padding-left: calc((100% - 1320px) / 2);
        padding-right: calc((100% - 1320px) / 2);
    }

    .main-nav {
        padding-left: calc((100% - 1320px) / 2);
        padding-right: calc((100% - 1320px) / 2);
    }

    .hero {
        padding-left: calc((100% - 1320px) / 2);
        padding-right: calc((100% - 1320px) / 2);
    }

    .hero-arrow.hero-prev {
        left: calc(((100% - 1320px) / 2) + 20px);
    }

    .hero-arrow.hero-next {
        right: calc(((100% - 1320px) / 2) + 20px);
    }
}