/* Zmienne kolorystyczne */
:root {
    --primary-gold: #Cfb892; /* Kolor złoty/beżowy z grafik */
    --primary-gold-dark: #b59e7a;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --font-main: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

/* Reset i Style Ogólne */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* Typografia */
h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.sub-h2 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Przyciski */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.btn--primary {
    background-color: var(--white);
    color: var(--text-dark);
}

.btn--primary:hover {
    background-color: var(--primary-gold);
    color: var(--white);
}

.btn--gold {
    background-color: var(--primary-gold);
    color: var(--white);
}

.btn--gold:hover {
    background-color: var(--primary-gold-dark);
}

.btn--white {
    background-color: var(--white);
    color: var(--text-dark);
}

/* Header & Nav */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background: transparent; /* Na starcie przezroczysty */
    transition: background 0.3s;
}

/* Klasa dodawana przez JS przy scrollowaniu */
.header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.header.scrolled .nav__list a, 
.header.scrolled .logo {
    color: var(--text-dark);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

.logo span {
    font-weight: 300;
}

.nav__list {
    display: flex;
    gap: 30px;
}

.nav__list a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.nav__list a:hover {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: 0.3s;
}

/* Hero Section - POPRAWIONE */
.hero {
    position: relative;
    height: 65vh; /* Wysokość sekcji powitalnej */
    min-height: 600px; /* Minimalna wysokość dla małych ekranów */
    display: flex;
    align-items: center;
    justify-content: center; /* Centrujemy kontener w poziomie */
    
    /* Poprawiony gradient - ciemniejszy od lewej, żeby biały tekst był czytelny */
    background: linear-gradient(to right, 
        rgba(168, 149, 115, 0.9) 0%, 
        rgba(168, 149, 115, 0.6) 40%, 
        rgba(255, 255, 255, 0.1) 100%), 
        url("https://studiofigurakosakowo.pl/images/AdobeStock_509971306.jpeg");
    background-size: cover;
    background-position: center top;
}

/* Wrapper wewnątrz Hero, który korzysta z klasy .container (max-width: 1200px) */
.hero__container-wrapper {
    position: relative; /* Ważne dla pozycjonowania boxa promocyjnego */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; /* Centrowanie pionowe treści */
}

.hero__content {
    width: 100%;
    color: var(--white);
    max-width: 600px; /* Ograniczenie szerokości tekstu */
    z-index: 2;
}

.hero__content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Lekki cień dla lepszej czytelności */
}

/* Promo Box - Teraz pozycjonowany względem kontenera 1200px */
.hero__promo-box {
    position: absolute;
    right: 0; /* Przyklejony do prawej krawędzi KONTENERA, nie ekranu */
    bottom: 20%; /* Wysokość nad dolną krawędzią */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.6);
    padding: 25px 35px;
    border-radius: 20px;
    color: var(--white);
    text-align: right;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.hero__promo-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.35);
}

.hero__promo-box i {
    position: absolute;
    top: 15px;
    left: 15px; /* Ikona strzałki */
    font-size: 1rem;
    opacity: 0.8;
}

.hero__promo-box p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.hero__promo-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--font-serif);
}

/* Poprawka responsywności dla Hero */
@media (max-width: 992px) {
    .hero__promo-box {
        bottom: 10%;
        padding: 15px 25px;
    }
}

@media (max-width: 768px) {
    .hero {
        justify-content: flex-start; /* Na telefonie tekst od góry */
    }
    
    .hero__container-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero__content {
        margin: 0 auto;
        text-align: center;
        padding-top: 60px; /* Miejsce na menu */
    }

    /* Ukrywamy box promocyjny na bardzo małych ekranach lub zmieniamy jego styl */
    .hero__promo-box {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 40px;
        width: 100%;
        text-align: center;
        background: rgba(255,255,255,0.9);
        color: var(--primary-gold);
        border: none;
    }
    
    .hero__promo-box p, .hero__promo-box h3, .hero__promo-box i {
        color: var(--text-dark);
    }
}

/* Pierwsza Wizyta (Nachodząca sekcja) */
.first-visit {
    position: relative;
    margin-top: -100px; /* Kluczowy element - nasunięcie */
    z-index: 10;
    padding-bottom: 50px;
}

.first-visit__card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.first-visit__desc {
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-light);
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fcfcfc;
    border: 1px solid #eee;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 500;
}

.step__icon {
    color: var(--primary-gold);
}

.step .arrow {
    color: #ddd;
    margin-left: 10px;
}

/* Oferta Grid */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-10px);
}

.offer-card__img {
    height: 250px;
    overflow: hidden;
}

.offer-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.offer-card:hover .offer-card__img img {
    transform: scale(1.05);
}

.offer-card__content {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.offer-list {
    margin-bottom: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.offer-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 5px;
}

.offer-card__content .btn {
    margin-top: auto; /* Przycisk na dole */
}

/* Partnerzy */
.partners {
    background-color: var(--bg-light);
    text-align: center;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.partner-logo {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-weight: 700;
    color: #ccc; /* Placeholder style */
    font-size: 0.8rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(rgba(168, 149, 115, 0.9), rgba(168, 149, 115, 0.9)), url('https://images.unsplash.com/photo-1544717305-2782549b5136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-attachment: fixed; /* Efekt paralaksy */
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--white);
    font-size: 0.9rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    color: var(--primary-gold);
    display: inline-block;
    margin-bottom: 20px;
}

.copyright {
    color: #999;
    font-size: 0.8rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-dark);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.contact-col h4 {
    margin-bottom: 15px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--primary-gold);
}

.contact-col p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.contact-col .btn {
    margin-top: 15px;
    width: 100%;
    text-align: center;
}

.socials {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.socials a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #eee;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.socials a:hover {
    background: var(--primary-gold);
    color: var(--white);
}

/* Responsywność (Mobile) */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .hamburger { display: block; z-index: 101; }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
        z-index: 99;
    }
    
    .nav.active { right: 0; }
    
    .nav__list {
        flex-direction: column;
        text-align: center;
    }
    
    .nav__list a { color: var(--text-dark); font-size: 1.2rem; }
    
    .hamburger.active .bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); background-color: var(--text-dark); }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); background-color: var(--text-dark); }
    
    .hero__promo-box { display: none; } /* Ukrywamy na małym ekranie */
    
    .first-visit__card { padding: 30px 20px; }
    .steps { flex-direction: column; width: 100%; }
    .step { width: 100%; justify-content: center; }
    .step .arrow { transform: rotate(90deg); margin: 0; }
    .step:last-child .arrow { display: none; }
    
    .header.scrolled .hamburger .bar { background-color: var(--text-dark); }
}
/* =========================================
   STYLE PODSTRONY (STREFA FITNESS)
   ========================================= */

/* 1. Nagłówek na podstronie (Ciemny tekst) */
/* Na podstronie nie mamy ciemnego zdjęcia w tle na samej górze, więc menu musi być widoczne od razu */
.header--dark-text {
    position: relative; /* Nie unosi się nad treścią, tylko jest blokiem */
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header--dark-text .logo,
.header--dark-text .nav__list a,
.header--dark-text .hamburger .bar {
    color: var(--text-dark) !important;
}

.header--dark-text .hamburger .bar {
    background-color: var(--text-dark);
}

.header--dark-text .nav__list a:hover,
.header--dark-text .nav__list a.active {
    color: var(--primary-gold) !important;
}

/* 2. Hero Podstrony (Biała karta) */
.subpage-hero {
    background-color: #fcfcfc; /* Bardzo jasne tło pod sekcję */
    padding: 40px 0 80px;
}

.breadcrumbs {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #999;
}

.breadcrumbs a:hover {
    color: var(--primary-gold);
}

.hero-card {
    background: var(--white);
    border-radius: 30px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    min-height: 450px;
}

.hero-card__content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Do lewej */
}

.hero-card__content h1 {
    color: var(--text-dark);
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 5px;
}

.hero-card__desc {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-card__image {
    flex: 1;
    position: relative;
    /* Efekt "wtopienia" zdjęcia - opcjonalnie */
    background: linear-gradient(to right, #ffffff 0%, transparent 20%); 
}

.hero-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 3. Grid Urządzeń */
.machines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.machine-item {
    display: flex;
    flex-direction: column;
}

.machine-item__img {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: -40px; /* Obrazek nachodzi na kartę poniżej? Nie, w projekcie są oddzielne. Ale zróbmy margines dla estetyki */
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.machine-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.machine-item:hover .machine-item__img img {
    transform: scale(1.05);
}

.machine-item__card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    flex-grow: 1; /* Żeby karty były równej wysokości */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.machine-item__card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.machine-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.machine-item__card .btn {
    margin-top: auto; /* Przycisk zawsze na dole */
    background-color: #d8c5a4; /* Nieco jaśniejsze złoto dla tych przycisków */
    color: var(--white);
}

.machine-item__card .btn:hover {
    background-color: var(--primary-gold-dark);
}

/* Wyśrodkowanie ostatniego elementu (EMS) jeśli jest sam w rzędzie */
.machine-item--center {
    /* Opcjonalnie: Jeśli chcesz, aby w układzie 3-kolumnowym ostatni element (7.) był na środku, 
       wymaga to zmiany grid na flex dla kontenera lub skomplikowanego grid-column.
       Najprościej w gridzie: zostawić tak jak jest, wyrówna do lewej. 
       Jeśli bardzo chcesz wyśrodkować: */
}

/* Responsywność dla podstrony */
@media (max-width: 992px) {
    .hero-card {
        flex-direction: column-reverse; /* Obrazek na górę na mobile */
        min-height: auto;
    }

    .hero-card__image {
        height: 300px;
    }

    .hero-card__content {
        padding: 40px 30px;
    }

    .hero-card__content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .machines-grid {
        grid-template-columns: 1fr; /* Jedna kolumna na telefonie */
    }
    
    .header--dark-text {
        position: fixed; /* Na mobile header znów fixed */
        width: 100%;
        top: 0;
        z-index: 100;
    }
    
    .subpage-hero {
        padding-top: 100px; /* Miejsce na fixed header */
    }
}
/* =========================================
   ROZWIJANE MENU (DROPDOWN)
   ========================================= */

/* Ustawienie rodzica, żeby menu pozycjonowało się względem niego */
.dropdown {
    position: relative;
    padding-bottom: 10px; /* Margines, żeby myszka nie uciekała przy przechodzeniu na listę */
    margin-bottom: -10px; /* Kompensacja marginesu */
}

/* Ukryte menu */
.dropdown-menu {
    display: none; /* Domyślnie ukryte */
    position: absolute;
    top: 100%; /* Zaraz pod linkiem "Oferta" */
    left: -20px; /* Lekkie przesunięcie w lewo */
    background-color: var(--white);
    min-width: 260px; /* Szerokość dymka */
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-radius: 10px; /* Zaokrąglone rogi */
    padding: 15px 0;
    z-index: 1000;
    flex-direction: column;
    text-align: left;
}

/* Pokazywanie menu po najechaniu na "Oferta" */
.dropdown:hover .dropdown-menu {
    display: flex;
    animation: fadeIn 0.3s ease;
}

/* Styl linków wewnątrz dropdowna */
.dropdown-menu li {
    margin: 0;
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: var(--primary-gold) !important; /* Wymuszony kolor złoty (jak na screenie) */
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-main);
    transition: 0.3s;
    background: transparent;
}

/* Hover na elementach listy */
.dropdown-menu li a:hover {
    background-color: #f9f9f9;
    color: var(--primary-gold-dark) !important;
    padding-left: 35px; /* Lekki ruch w prawo przy najechaniu */
}

/* Mała strzałeczka (trójkącik) na górze menu - opcjonalne, dla estetyki */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 40px;
    width: 0; 
    height: 0; 
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

/* Animacja pojawiania się */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsywność - Na telefonach menu powinno być zawsze widoczne lub rozwijane inaczej */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static; /* Na mobile menu jest "w treści", a nie latające */
        display: none; /* Domyślnie ukryte, JavaScript (który już mamy) obsłuży mobilne menu */
        box-shadow: none;
        background: transparent;
        padding-left: 20px;
        min-width: auto;
    }
    
    .dropdown:hover .dropdown-menu {
        display: none; /* Na dotykowym ekranie hover nie działa tak samo, zostawiamy to JS lub domyślny układ */
    }
    
    /* W prostym rozwiązaniu na mobile po prostu wyświetlamy linki pod spodem */
    .nav.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        color: var(--text-dark) !important; /* Na mobile ciemny tekst */
        padding: 10px 0;
        text-align: center;
    }
}
/* =========================================
   STYLE PODSTRONY METAMORFOZA
   ========================================= */

/* 1. Specyficzne tło dla Hero Metamorfoza */
.hero--metamorfoza {
    /* Podmień URL na zdjęcie uśmiechniętej kobiety z grafik */
    background: linear-gradient(to right, rgba(168, 149, 115, 0.8), rgba(0,0,0,0.1)), 
                url('https://images.unsplash.com/photo-1548690312-e3b507d8c110?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center top;
}

/* 2. Grid Przemian */
.transformations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dwie kolumny jak na screenie */
    gap: 40px;
    margin-top: 20px;
}

/* 3. Karta Przemiany */
.trans-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden; /* Ważne dla zaokrągleń */
    /* Height może być auto, obrazek nada wysokość */
}

.trans-card__img {
    position: relative;
    width: 100%;
    height: 400px; /* Stała wysokość zdjęcia */
    overflow: hidden;
}

.trans-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.trans-card:hover .trans-card__img img {
    transform: scale(1.03);
}

/* Badge "PRZED | PO" */
.trans-badge {
    position: absolute;
    bottom: 90px; /* Nad białą kapsułką */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 4. Biała kapsułka z wynikiem (The White Pill) */
.trans-result {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 10px 30px;
    border-radius: 50px; /* Kształt pigułki */
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    width: 80%; /* Szerokość względem karty */
    justify-content: center;
    max-width: 350px;
    min-width: 250px;
}

.trans-weight {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--text-dark); /* Ciemnoszary, nie złoty wg screena */
    font-weight: 400;
}

.trans-divider {
    width: 1px;
    height: 30px;
    background-color: var(--primary-gold);
}

.trans-name {
    font-family: var(--font-main);
    font-size: 1rem;
    color: #555;
    font-weight: 400;
}

/* Responsywność */
@media (max-width: 768px) {
    .transformations-grid {
        grid-template-columns: 1fr; /* Jedna kolumna na telefonie */
    }

    .trans-card__img {
        height: 350px;
    }

    .trans-result {
        width: 90%;
        padding: 8px 20px;
    }
    
    .trans-weight {
        font-size: 1.5rem;
    }
}
/* =========================================
   STYLE PODSTRONY KONTAKT
   ========================================= */

/* Intro Kontaktu */
.contact-intro {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 40px;
}

.contact-intro .subtitle {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-gold);
}

.contact-intro h1 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Układ Główny (Grid) */
.contact-main {
    padding-bottom: 80px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Lewa kolumna węższa, prawa szersza */
    gap: 60px;
    align-items: flex-start;
}

/* Lewa kolumna - Informacje */
.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: var(--text-light);
}

.info-list li i {
    color: var(--text-dark); /* Ikony ciemne */
    font-size: 1.1rem;
    width: 20px; /* Stała szerokość dla równego tekstu */
    text-align: center;
}

.info-list a:hover {
    color: var(--primary-gold);
    text-decoration: underline;
}

/* Prawa kolumna - Formularz */
.contact-form-container {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.form-group {
    width: 100%;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 30px; /* Zaokrąglone rogi jak na screenie */
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: 0.3s;
    background: #fff;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 5px rgba(207, 184, 146, 0.3);
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start; /* Wyrównanie do góry przy dłuższym tekście */
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px; /* Lekkie obniżenie checkboxa */
}

.checkbox-group label {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    cursor: pointer;
}

/* Mapa */
.contact-map {
    width: 100%;
    height: 450px;
    filter: grayscale(0%); /* Możesz dać 100% jeśli wolisz szarą mapę */
}

.contact-map iframe {
    display: block;
}

/* Responsywność Kontaktu */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Jedna kolumna na mniejszych ekranach */
        gap: 40px;
    }
    
    .contact-info {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .info-block {
        width: 48%;
    }
}

@media (max-width: 600px) {
    .contact-info {
        flex-direction: column;
    }
    
    .info-block {
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-intro h1 {
        font-size: 2rem;
    }
    
    .contact-intro .subtitle {
        font-size: 1.5rem;
    }
}
/* =========================================
   STYLE STRONY PRODUKTOWEJ (Roll Shaper itp.)
   ========================================= */

.product-page {
    padding-top: 40px; /* Mniejszy padding góry, bo jest breadcrumbs */
}

/* Górna belka: Tytuł + Akcje */
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Wyrównanie do dołu linii tekstu */
    margin-bottom: 40px;
    border-bottom: 1px solid #f0f0f0; /* Opcjonalna linia oddzielająca */
    padding-bottom: 20px;
}

.product-title h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.product-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Okrągłe ikonki social media w nagłówku */
.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #555; /* Ciemnoszare tło jak na screenie */
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-circle:hover {
    background-color: var(--primary-gold);
}

/* Układ Grid (Lewa treść, Prawa Sidebar) */
.product-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* 2/3 dla treści, 1/3 dla sidebara */
    gap: 50px;
}

/* -- LEWA KOLUMNA -- */
.product-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-desc-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: justify; /* Wyjustowanie tekstu */
}

/* Sekcja Efekty */
.product-effects h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tag {
    padding: 10px 25px;
    border: 1px solid #eee;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #888; /* Szary tekst */
    background: var(--white);
    transition: 0.3s;
    /* Delikatny cień opcjonalnie */
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    color: #Cfb892; /* Tekst lekko złoty jak na screenie? Albo szary. Dajmy lekki odcień złota */
    border-color: #f0ebd6;
}

.tag:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold-dark);
}

/* -- PRAWA KOLUMNA (SIDEBAR) -- */
.sidebar-card {
    background: var(--white);
    border: 1px solid #f5f5f5;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    position: sticky; /* Sidebar przykleja się podczas scrollowania */
    top: 120px; /* Odstęp od góry (header + margines) */
}

.sidebar-title {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.sidebar-list li {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list a {
    display: block;
    padding: 15px 0;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: 0.3s;
}

.sidebar-list a:hover {
    color: var(--primary-gold);
    padding-left: 5px; /* Lekki ruch przy najechaniu */
}

/* Responsywność */
@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr; /* Jedna kolumna na mniejszych ekranach */
        gap: 40px;
    }

    .sidebar-card {
        position: static; /* Wyłączamy przyklejanie na mobile */
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .product-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .product-actions {
        width: 100%;
        justify-content: space-between; /* Rozłożenie przycisków na szerokość */
    }
}

/* =========================================
   STYLE PODSTRONY KOSMETYKI I SUPLEMENTY
   ========================================= */

/* 1. Baner "Kosmetyki Studio Figura" */
.cosmetics-banner {
    background-color: #dccbb3; /* Odcień beżu z grafiki */
    /* Jeśli masz zdjęcie tła z pudełkami kosmetyków, wstaw je tutaj w url() */
    background-image: linear-gradient(to right, #dccbb3 40%, rgba(220, 203, 179, 0.8) 100%), 
                      url('https://images.unsplash.com/photo-1616683693504-3ea7e9ad6fec?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: right center;
    padding: 100px 0;
    margin-bottom: 50px;
    color: var(--white);
}

.cosmetics-banner__text {
    max-width: 600px;
    border-left: 4px solid var(--white); /* Biała linia po lewej */
    padding-left: 30px;
}

.cosmetics-banner__text h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 5px;
}

.banner-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.banner-desc {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* 2. Lista Produktów (Specyficzny Grid) */
.cosmetics-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolumny */
    gap: 40px;
}

.cosmetic-item {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Odstęp między zdjęciem a opisem */
}

/* Górny box (Zdjęcie) */
.cosmetic-visual {
    background: var(--white);
    border-radius: 30px;
    padding: 60px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px; /* Wysokie pudełko jak na screenie */
}

.cosmetic-visual img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.cosmetic-item:hover .cosmetic-visual img {
    transform: scale(1.05);
}

/* Dolny box (Opis) */
.cosmetic-info {
    background: var(--white);
    border-radius: 30px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f9f9f9;
    flex-grow: 1; /* Rozciąga się, by wyrównać wysokość w rzędzie */
}

.cosmetic-info h3 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.cosmetic-info ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.cosmetic-info li {
    margin-bottom: 8px;
}

/* Responsywność */
@media (max-width: 992px) {
    .cosmetics-list {
        grid-template-columns: repeat(2, 1fr); /* 2 kolumny na tabletach */
    }
}

@media (max-width: 768px) {
    .cosmetics-banner__text h2 {
        font-size: 2rem;
    }

    .cosmetics-list {
        grid-template-columns: 1fr; /* 1 kolumna na telefonie */
    }

    .cosmetic-visual {
        height: 300px;
    }
}

/* =========================================
   STYLE PODSTRONY NASZE STUDIO
   ========================================= */

/* 1. Hero z innym zdjęciem (Kobiety/Zespół) */
.hero--studio {
    /* Ustawiam przykładowe zdjęcie zespołu/kobiet. Podmień na swoje! */
    background: linear-gradient(to right, rgba(168, 149, 115, 0.7), rgba(0,0,0,0.2)), 
                url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center top;
}

/* 2. Sekcje Overlap (Nakładanie się zdjęć i tekstu) */

.overlap-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 60px; /* Odstęp między sekcjami wewnątrz paddingu */
}

/* Kontener na zdjęcie */
.overlap-image {
    width: 60%; /* Zdjęcie zajmuje 60% szerokości kontenera */
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.overlap-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Kontener na tekst (Karta) */
.overlap-card {
    width: 50%; /* Karta zajmuje 50% szerokości */
    background: var(--white);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    z-index: 2; /* Musi być nad zdjęciem */
    margin-left: -10%; /* Kluczowe: nasuwa kartę na zdjęcie o 10% */
    border: 1px solid #f9f9f9;
}

.overlap-card h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.overlap-card .subtitle {
    margin-bottom: 20px;
}

.overlap-desc {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Wersja Odwrócona (Druga sekcja) */
.overlap-wrapper.reverse {
    flex-direction: row-reverse; /* Odwracamy kolejność flexa */
}

.overlap-wrapper.reverse .overlap-card {
    margin-left: 0;
    margin-right: -10%; /* Nasuwamy z drugiej strony */
}

/* Responsywność */
@media (max-width: 992px) {
    .overlap-wrapper, 
    .overlap-wrapper.reverse {
        flex-direction: column; /* Na tablecie/mobile jeden pod drugim */
    }

    .overlap-image {
        width: 100%;
        height: 350px;
        margin-bottom: -50px; /* Wsuwamy zdjęcie lekko pod kartę */
        z-index: 1;
    }

    .overlap-card {
        width: 90%; /* Karta węższa niż ekran */
        margin: 0 auto;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 40px 30px;
    }
}


/* =========================================
   STYLE PODSTRONY CENNIK
   ========================================= */

.pricing-intro {
    padding-top: 60px;
    padding-bottom: 20px;
    text-align: center;
}

.pricing-intro h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.pricing-accordion {
    padding-bottom: 80px;
}

/* Pojedynczy element akordeonu */
.accordion-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #f5f5f5;
}

/* Nagłówek (klikana belka) */
.accordion-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #fcfcfc;
}

.accordion-title {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-dark); /* Ciemnoszary, nie złoty jak na screenie */
    font-size: 1.2rem;
    font-weight: 500;
}

.accordion-header .accordion-icon {
    font-size: 0.9rem;
    color: #bbb;
    transition: transform 0.3s ease;
}

/* Stan aktywny (otwarty) */
.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-header.active .accordion-title {
    color: var(--primary-gold);
}

/* Treść (ukryta domyślnie) */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: var(--white);
}

.accordion-content {
    padding: 0 30px 30px 30px;
}

/* -- TABELE -- */

.table-responsive {
    overflow-x: auto; /* Przewijanie na mobile */
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    color: var(--text-light);
}

td, th {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

/* Prosta tabela (Konsultacje) */
.simple-table tr:last-child td {
    border-bottom: none;
}

.simple-table td:nth-child(2), 
.simple-table td:nth-child(3) {
    font-weight: 500;
    color: var(--text-dark);
}

/* Złożona tabela (Fitness) */
.complex-table th {
    font-weight: 600;
    color: var(--text-dark);
}

/* Nagłówek Urządzenia (np. Roll Shaper) */
.device-header th {
    font-size: 1.1rem;
    color: var(--text-dark);
    padding-top: 25px;
    padding-bottom: 10px;
    border-bottom: none;
}

/* Nagłówki Kolumn (Cena, Rabat...) */
.column-headers th {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #f0f0f0;
}

/* Szary pasek (co drugi wiersz) */
tr.highlight {
    background-color: #f9f9f9;
}

/* Pusty wiersz odstępu */
.spacer-row td {
    border: none;
    padding: 0;
    height: 10px;
}

/* Responsywność */
@media (max-width: 768px) {
    .accordion-header {
        padding: 20px;
    }
    
    .accordion-content {
        padding: 0 15px 20px 15px;
    }
    
    .pricing-intro h1 {
        font-size: 2rem;
    }
    
    /* Na mobile tabela musi być przewijalna */
    .complex-table {
        min-width: 600px; /* Wymusza szerokość, by scroll działał */
    }
}
/* =========================================
   STYLE PODSTRONY URZĄDZENIA (Z TABAMI)
   ========================================= */

.device-tabbed {
    padding-top: 50px;
}

.device-main-title {
    font-size: 3rem;
    color: var(--text-dark); /* Szary, prawie czarny */
    margin-bottom: 5px;
    font-weight: 500;
}

.back-link {
    display: inline-block;
    color: #999;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    font-weight: 500;
}

.back-link i {
    font-size: 0.7rem;
    margin-right: 5px;
}

.back-link:hover {
    color: var(--primary-gold);
}

/* Układ Główny */
.device-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Podział 50% / 50% */
    gap: 60px;
    align-items: start;
}

/* Lewa strona: Zdjęcie */
.device-gallery {
    border-radius: 20px;
    overflow: hidden;
    /* Ewentualnie cień lub ramka jeśli potrzeba */
}

.device-gallery img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Prawa strona: Zakładki */
.device-info-tabs {
    padding-top: 10px;
}

/* Nawigacja Zakładek */
.tabs-nav {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
    flex-wrap: wrap; /* Żeby się mieściły na mniejszych ekranach */
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 0;
    font-family: var(--font-main);
    font-size: 1rem;
    color: #888;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.tab-btn:hover {
    color: var(--text-dark);
}

/* Aktywna zakładka */
.tab-btn.active {
    color: var(--text-dark);
    font-weight: 600;
}

/* Linia pod aktywną zakładką */
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px; /* Nachodzi na linię border-bottom rodzica */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark); /* Ciemna linia jak na screenie */
}

/* Treść Zakładek */
.tab-pane {
    display: none; /* Domyślnie ukryte */
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    animation: fadeEffect 0.5s;
}

.tab-pane.active {
    display: block; /* Pokazuje aktywną treść */
}

/* Style dla list w zakładce Efekty */
.effects-list {
    list-style: none;
}

.effects-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.effects-list li i {
    color: var(--primary-gold);
}

/* Style dla FAQ */
.faq-item {
    margin-bottom: 20px;
}

.faq-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

/* Animacja przełączania */
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Responsywność */
@media (max-width: 900px) {
    .device-layout {
        grid-template-columns: 1fr; /* Jedna kolumna */
        gap: 40px;
    }

    .device-main-title {
        font-size: 2.2rem;
    }
}
/* Styl pływającego przycisku */
.floating-messenger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0084FF; /* Kolor Messengera */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

/* Tekst pojawiający się po najechaniu (opcjonalne) */
.messenger-text {
    font-size: 14px;
    font-weight: 600;
    max-width: 0;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.4s ease;
    font-family: 'Montserrat', sans-serif;
}

.floating-messenger:hover {
    width: 180px;
    background-color: #0073e6;
}

.floating-messenger:hover .messenger-text {
    max-width: 120px;
    opacity: 1;
    margin-left: 10px;
}

/* Efekt pulsowania */
.messenger-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0084FF;
    border-radius: 50%;
    z-index: -1;
    animation: messenger-pulse-anim 2s infinite;
}

@keyframes messenger-pulse-anim {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* RWD - mniejszy przycisk na telefonach */
@media (max-width: 768px) {
    .floating-messenger {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    .floating-messenger:hover {
        width: 50px; /* Na mobile nie rozwijamy tekstu, żeby nie zasłaniać ekranu */
    }
    .messenger-text {
        display: none;
    }
}

.promo-section {
  padding: 50px 15px;
  background: #f8f2ea;
  font-family: 'Poppins', sans-serif;
  color: #4b341b;
}

.promo-bg {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 24px;
  background: linear-gradient(135deg, #fbf4ea, #eadcc8);
  box-shadow: 0 10px 30px rgba(80, 55, 30, 0.08);
  padding: 45px 20px;
}

.promo-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.promo-overline {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 13px;
  color: #b7834d;
  font-weight: 500;
}

.promo-title {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  line-height: 1;
  color: #5a3b1b;
}

.promo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 28px;
}

.promo-divider span {
  width: 70px;
  height: 1px;
  background: #c69a63;
}

.promo-divider i {
  width: 8px;
  height: 8px;
  background: #c28a4a;
  transform: rotate(45deg);
  display: block;
}

.promo-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 90px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(80, 55, 30, 0.06);
  overflow: hidden;
}

.promo-discount {
  padding: 18px;
  border-right: 1px solid rgba(194, 138, 74, 0.25);
}

.promo-discount span {
  font-family: Georgia, serif;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1;
  color: #5a3b1b;
}

.promo-info {
  text-align: left;
  padding: 18px 24px;
}

.promo-info h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 1.4;
  color: #4a3219;
  font-weight: 600;
}

.promo-info p {
  margin: 4px 0 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #b7834d;
}

.promo-bottom {
  margin-top: 24px;
  text-transform: uppercase;
}

.promo-bottom p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 3px;
  color: #4b341b;
}

.promo-bottom strong {
  display: block;
  margin-top: 5px;
  font-size: 20px;
  letter-spacing: 4px;
  font-weight: 500;
  color: #b7834d;
}

@media (max-width: 768px) {

  .promo-card {
    grid-template-columns: 1fr;
  }

  .promo-discount {
    border-right: none;
    border-bottom: 1px solid rgba(194, 138, 74, 0.2);
    padding-bottom: 10px;
  }

  .promo-info {
    text-align: center;
    padding: 14px 18px 20px;
  }

  .promo-info h3 {
    font-size: 14px;
  }

  .promo-bottom strong {
    font-size: 18px;
  }
}