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

:root {
    --ink: #17130f;
    --cream: #f3eadc;
    --cream-soft: rgba(246, 239, 229, 0.9);
    --gold: #b88a18;
    --gold-light: #d8b95f;
    --wine: #8f211b;
    --shadow-soft: 0 22px 55px rgba(0,0,0,0.28);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    color: #222;
    line-height: 1.6;
    background: #111;
    overflow-x: hidden;
}

h1, h2, h3 {
  font-family: Arial, sans-serif;
  letter-spacing: 0;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    color: #111;
    background: var(--gold-light);
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-140%);
    transition: transform 0.2s ease;
}

.skip-link:focus-visible {
    transform: translateY(0);
}

/* HERO */
.hero {
    min-height: 90vh;
    background: url("../img/optimized/web_backgroun-1600.jpg") center/cover no-repeat;
  
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.42) 42%, rgba(0, 0, 0, 0.127) 100%);
    min-height: inherit;
    color: white;
}

/* NAV */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px clamp(18px, 5vw, 60px);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(8px);
    background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.08));
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.nav a:hover,
.nav a:focus-visible {
    color: rgb(234, 206, 33);
}

.logo {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(20, 20, 20, 0.55);
    color: white;
    border-radius: 999px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.22);
}

.nav-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* HERO CONTENT */
.hero-content {
    min-height: calc(90vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-content h2 {
    font-size: 24px;
    letter-spacing: 2px;
}

.hero-content h3 {
    font-size: 80px;
    margin: 10px 0;
}

.hero-content p {
    max-width: 600px;
    margin-bottom: 25px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
/* HERO LOGO */
.hero-logo {
    max-width: 440px;   /* tamaño normal desktop */
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* BUTTON */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #15110d;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    position: relative;   /* Agregado */
    z-index: 10;  
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(0,0,0,0.26);
}

.btn:hover {
    background: linear-gradient(180deg, #b83226 0%, var(--wine) 100%);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.65);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: transparent;
}

.site-language {
    position: fixed;
    right: clamp(12px, 3vw, 24px);
    bottom: clamp(12px, 3vw, 24px);
    z-index: 80;
    display: grid;
    justify-items: end;
    gap: 8px;
}

.site-language-toggle,
.site-language-panel button {
    font: inherit;
}

.site-language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(18, 17, 16, 0.82);
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(0,0,0,0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-language-toggle:hover,
.site-language.is-open .site-language-toggle {
    transform: translateY(-2px);
    border-color: rgba(216, 185, 95, 0.62);
    background: rgba(143, 33, 27, 0.92);
}

.site-language-toggle img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-language-panel {
    order: -1;
    width: 168px;
    padding: 8px;
    border: 1px solid rgba(216, 185, 95, 0.28);
    border-radius: 16px;
    background: rgba(18, 16, 14, 0.96);
    box-shadow: 0 20px 44px rgba(0,0,0,0.34);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(0.98);
    transform-origin: bottom right;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-language.is-open .site-language-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.site-language-panel button {
    width: 100%;
    min-height: 40px;
    padding: 9px 12px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: rgba(255, 248, 238, 0.86);
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.site-language-panel button:hover,
.site-language-panel button:focus-visible,
.site-language-panel button.is-active {
    color: #17130f;
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
}

/* SECTIONS */
.section {
    
    padding: 70px 15%;
    text-align: center;
    color: var(--ink);
    background-image: linear-gradient(rgba(14, 10, 7, 0.52), rgba(14, 10, 7, 0.48)), url("../img/optimized/Menu5-1600.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
} 
.section1 h2 {
    color: rgb(238, 230, 218);
}

.section h2 {
    color: rgb(238, 230, 218);
}
.parallax-section {
    position: relative;
    min-height: clamp(520px, 70vh, 760px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(72px, 9vw, 120px) 15%;
    isolation: isolate;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 115%; /* un poco más alto para el efecto */
    background-image:
        linear-gradient(90deg, rgba(10, 8, 6, 0.66), rgba(10, 8, 6, 0.25), rgba(10, 8, 6, 0.68)),
        url("../img/optimized/Menu5-1600.jpg");
    background-size: cover;
    background-position: center;
    transform: translateY(0);
    z-index: -1;
}

.parallax-content {
    background: rgba(255, 255, 255, 0.82);
    padding: clamp(30px, 4vw, 52px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    text-align: center;
    max-width: 760px;
}

.parallax-content h2 {
    color: var(--ink);
    font-size: clamp(30px, 4vw, 48px);
    margin-bottom: 14px;
}

.parallax-content p {
    color: #211a14;
    font-size: clamp(16px, 1.55vw, 19px);
    line-height: 1.8;
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.section1 {
    position: relative;
    overflow: hidden;
    padding: clamp(84px, 10vw, 130px) 15%;
    text-align: center;
    color: var(--cream);
    background:
        linear-gradient(180deg, rgba(17, 13, 10, 0.68) 0%, rgba(47, 28, 20, 0.54) 52%, rgba(17, 13, 10, 0.78) 100%),
        url("../img/web_backgroun4.png") center/cover no-repeat;
}

.section1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.48), transparent 34%, rgba(0,0,0,0.42));
    pointer-events: none;
}

.section1 > * {
    position: relative;
    z-index: 1;
}

.section1 h2 {
    max-width: 720px;
    margin: 0 auto 16px;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.05;
    text-shadow: 0 16px 34px rgba(0,0,0,0.34);
}

.section1 p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 248, 238, 0.92);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.8;
    text-shadow: 0 10px 24px rgba(0,0,0,0.32);
}

.section1 .btn {
    margin-top: 30px;
}
.section h2 {
    font-size: 40px;

    margin-bottom: 20px;
    
}
.section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.gray {  
    background:
        linear-gradient(180deg, rgba(20, 16, 12, 0.5) 0%, rgba(12, 10, 8, 0.85) 100%),
        url("../img/optimized/Menu4-1600.jpg") center/cover no-repeat;
    color: #fffaf4;
}

.gray h2 {
    color: #ffffff !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gray .card {
    background: rgba(255, 255, 255, 0.07);
    color: #fffaf4;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gray .card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(216, 185, 95, 0.2);
    transform: translateY(-8px);
}

.gray .card h3 {
    color: #ffffff;
    margin-bottom: 12px;
}

.gray .card p {
    color: rgba(255, 255, 255, 0.85);
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: linear-gradient(145deg, rgba(246, 239, 229, 0.58), rgba(246, 239, 229, 0.34));
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.62);
    border-radius: 8px;
    box-shadow: 0 24px 58px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.5);
    backdrop-filter: blur(18px) saturate(130%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 68px rgba(0,0,0,0.26), inset 0 1px 0 rgba(255,255,255,0.58);
}

/* FOOTER */
.footer {
    background: #111;
    color: rgb(238, 230, 218);
    text-align: center;
    padding: 40px 20px;
}

.footer p {
    margin-bottom: 10px;
}

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

.footer a:hover,
.footer a:focus-visible {
    color: var(--gold-light);
}
/* SERVICOS IMG */
.card img {
    width: 100%;
    max-width: 300px;   /* controla el tamaño */
    height: 220px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 4px;
}

.parallax-section,
.section,
.section1 {
    content-visibility: auto;
    contain-intrinsic-size: 680px;
}

@media (min-width: 769px) and (max-width: 1100px) {
    .hero-content h3 {
        font-size: clamp(54px, 8vw, 72px);
    }

    .parallax-section,
    .section,
    .section1 {
        padding-left: 8%;
        padding-right: 8%;
    }

    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card:last-child {
        grid-column: 1 / -1;
        max-width: 520px;
        justify-self: center;
    }
}

/* =========================
   RESPONSIVE - MOBILE
========================= */
@media (max-width: 768px) {

    /* NAV */
    .nav {
        position: fixed;
        inset: 0 0 auto 0;
        align-items: center;
        padding: 12px 16px;
        background: rgba(15, 15, 14, 0.72);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        backdrop-filter: blur(16px);
    }

    .nav-toggle {
        display: flex;
    }

    .nav .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        right: 14px;
        display: grid;
        width: min(280px, calc(100vw - 28px));
        flex-direction: column;
        gap: 12px;
        padding: 14px;
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 18px;
        background: rgba(18, 17, 16, 0.96);
        box-shadow: 0 22px 45px rgba(0,0,0,0.34);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a {
        display: block;
        padding: 12px 14px;
        border-radius: 12px;
        background: rgba(255,255,255,0.05);
    }

    .nav a {
        font-size: 16px;
    }

    /* HERO */
    .hero {
        min-height: 100svh;
        padding-top: 70px;
    }

    .section {
        background-attachment: scroll;
    }

    .parallax-section {
        min-height: 520px;
        padding: 84px 20px 72px;
        background-image:
            linear-gradient(180deg, rgba(8, 7, 6, 0.56), rgba(8, 7, 6, 0.36), rgba(8, 7, 6, 0.62)),
            url("../img/optimized/Menu5-1600.jpg");
        background-size: cover;
        background-position: center;
    }

    .parallax-bg {
        display: block;
        height: 100%;
        background-position: center;
        transform: none !important;
        opacity: 0;
    }

    .parallax-content {
        width: min(100%, 560px);
        padding: 28px 22px;
        box-shadow: 0 22px 54px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.52);
        background: linear-gradient(145deg, rgba(250, 246, 238, 0.68), rgba(250, 246, 238, 0.44));
        border-radius: 8px;
    }

    .parallax-content h2 {
        font-size: clamp(28px, 8vw, 38px);
    }

    .parallax-content p {
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-content {
        padding: 15px;
        min-height: calc(100svh - 70px);
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .hero-content h3 {
        width: 100%;
        max-width: calc(100vw - 32px);
        font-size: clamp(32px, 9.2vw, 42px);
        line-height: 1.1;
        overflow-wrap: anywhere;
    }

    .hero-content p {
        font-size: 16px;
        width: min(100%, calc(100vw - 32px));
        max-width: 34rem;
        text-wrap: balance;
    }

    .hero-logo {
        max-width: min(190px, 54vw);
        margin-bottom: 15px;
    }

    /* BUTTON */
    .btn {
        padding: 14px 28px;
        font-size: 16px;
        max-width: 100%;
        text-align: center;
    }

    .site-language {
        right: 12px;
        bottom: 12px;
    }

    .site-language-toggle {
        width: 48px;
        height: 48px;
        padding: 8px;
    }

    .site-language-panel {
        width: 152px;
    }

    /* SECTIONS */
    .section {
        padding: 60px 20px;
    }

    .section1 {
        min-height: 430px;
        padding: 78px 24px 88px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-position: center;
    }

    .section1 h2 {
        font-size: clamp(30px, 9vw, 42px);
        margin-bottom: 18px;
    }

    .section1 p {
        font-size: 16px;
        line-height: 1.7;
        max-width: 32rem;
    }

    .section1 .btn {
        width: fit-content;
        margin: 28px auto 0;
        padding-inline: 24px;
    }

    .section h2 {
        font-size: 30px;
    }

    .section p {
        font-size: 16px;
    }

    /* CARDS */
    .cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .card {
        padding: 25px;
        border-radius: 8px;
    }

    .card img {
        max-width: 220px;
        height: 165px;
        margin: 0 auto 15px;
        display: block;
    }

    /* FOOTER */
    .footer {
        padding: 30px 15px;
        font-size: 14px;
    }
      .about-flex {
        flex-direction: column;
        text-align: center;
    }

    .about-left, .about-right {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .hero-content h3 {
        font-size: 38px;
    }

    .parallax-section {
        min-height: 560px;
        padding-inline: 14px;
    }

    .parallax-content {
        padding: 24px 18px;
    }

    .section1 {
        padding-inline: 18px;
    }

    .section1 .btn {
        width: 100%;
    }
}
/* =========================
   SOCIAL BUTTONS
========================= */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-buttons a {
    width: 58px;
    height: 58px;
    background: rgb(238, 230, 218);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}

.social-buttons a:hover {
    transform: scale(1.1);
    background: rgb(234, 206, 33);
}

.social-buttons img {
    width: 44px;
    height: 44px;
} 
/* ABOUT SECTION */
.about-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    text-align: left;
}

.about-left {
    flex: 1;
}

.about-right {
    flex: 2;
}

.about-right p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    max-width: 100%;
}
.about-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.34));
    padding: 30px;
    border-radius: 0px;
    border: 1px solid rgba(255,255,255,0.58);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255,255,255,0.52);
    backdrop-filter: blur(18px) saturate(130%);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .card,
    .btn,
    .social-buttons a {
        transition: none;
    }
}

/* OFFERS SECTION */
.offers-section {
    background: radial-gradient(circle at bottom, rgba(230, 190, 126, 0.15) 0%, transparent 70%), #111;
    padding: 70px 10%;
    color: white;
}

.offers-shell {
    background: linear-gradient(135deg, rgba(230, 190, 126, 0.15) 0%, rgba(200, 150, 90, 0.05) 100%);
    border: 1px solid rgba(230, 190, 126, 0.2);
    border-radius: 24px;
    padding: 40px clamp(20px, 4vw, 50px);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.offers-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.offers-kicker {
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 6px;
}

.offers-head h2 {
    font-size: clamp(28px, 4vw, 38px);
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
}

.offers-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    max-width: 600px;
}

.offers-admin-link {
    white-space: nowrap;
}

.offers-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.offers-viewport {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.offers-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.offer-card {
    flex: 0 0 calc(50% - 10px); /* 2 cards on tablet */
    aspect-ratio: 210 / 297; /* A4 vertical ratio */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 992px) {
    .offer-card {
        flex: 0 0 calc(33.333% - 13.333px); /* 3 cards on desktop */
    }
}

@media (max-width: 768px) {
    .offer-card {
        flex: 0 0 100%; /* 1 card on mobile */
    }
}

.offer-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(207, 170, 23, 0.2);
}

.offer-card-img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

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

.offer-card-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 13, 10, 0.9) 0%, rgba(17, 13, 10, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    text-align: left;
    color: white;
}

.offer-card-badge {
    align-self: flex-start;
    padding: 6px 14px;
    background: var(--gold-light);
    color: #111;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 999px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.offer-card-title {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.offer-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.offers-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(18, 17, 16, 0.75);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    flex-shrink: 0;
    z-index: 5;
}

.offers-nav:hover:not(:disabled) {
    background: var(--gold-light);
    color: #111;
    transform: scale(1.1);
}

.offers-nav:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

@media (max-width: 576px) {
    .offers-section {
        padding: 40px 15px;
    }
    
    .offers-shell {
        padding: 24px 16px;
        border-radius: 18px;
    }
    
    .offers-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .offers-admin-link {
        width: 100%;
        text-align: center;
    }
    
    .offers-nav {
        display: none;
    }
    
    .offers-viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .offers-track {
        transform: none !important;
    }
    
    .offer-card {
        scroll-snap-align: start;
        flex: 0 0 100%;
    }
}
