/* ============================================================
   Bahçeden — Main Stylesheet
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--ff-main);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    color: var(--clr-dark);
    background: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
    width: 90%;
    max-width: var(--container-max);
    margin-inline: auto;
}

.section-pad { padding-block: var(--space-3xl); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--ff-main);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform var(--duration-fast) var(--ease-bounce),
                box-shadow var(--duration-mid) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.15);
    opacity: 0;
    transition: opacity var(--duration-fast);
}

.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--clr-blue);
    color: var(--clr-white);
    border-color: var(--clr-blue);
}

.btn-outline {
    background: transparent;
    color: var(--clr-blue);
    border-color: var(--clr-blue);
}

.btn-outline:hover { background: var(--clr-blue); color: var(--clr-white); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--navbar-h);
    z-index: 1000;
    transition: background .3s ease, box-shadow .3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 90%;
    max-width: var(--container-max);
    margin-inline: auto;
    position: relative;
}

.navbar__logo {
    display: flex;
    align-items: center;
    line-height: 1;
    z-index: 1001;
}

.navbar__logo-img {
    height: auto;
    width: auto;
    display: block;
}

/* Desktop nav */
.navbar__nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.navbar__link {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--clr-dark);
    position: relative;
    padding-bottom: 3px;
    transition: color .2s;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--clr-blue);
    border-radius: 2px;
    transition: width .25s ease;
}

.navbar__link:hover { color: var(--clr-blue); }
.navbar__link:hover::after,
.navbar__link.is-active::after { width: 100%; }
.navbar__link.is-active { color: var(--clr-blue); }

/* Hamburger — sadece mobilde göster */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--clr-dark);
    border-radius: 3px;
    transition: transform .3s ease, opacity .3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #F7F7F7;
    position: relative;
    overflow: hidden;
    padding-top: 10px;
}

/* ── Yapraklar ───────────────────────────────────────────── */
.hero-leaf {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
    user-select: none;
}

/*
 * Görseldeki konumlar (screenshot):
 *  --1  Sol üst büyük           top:4%    left:1%
 *  --2  Sol alt (şişe yanı)     bottom:8% left:30%
 *  --3  Sağ üst küçük grup      top:2%    right:4%
 *  --4  Sağ alt büyük           bottom:4% right:10%
 *  --5  Sağ kenar orta          top:32%   right:-1%
 */

/* 1 — Sol üst */
.hero-leaf--1 {
    top: 15%;
    left: 1%;
    width: clamp(130px, 8vw, 175px);
    transform: rotate(-22deg);
}

/* 2 — Sol alt, şişenin hemen solunda */
.hero-leaf--2 {
    bottom: 10%;
    left: 30%;
    width: clamp(115px, 8vw, 155px);
    transform: rotate(18deg);
}

/* 3 — Sağ üst küçük yaprak grubu */
.hero-leaf--3 {
    top: 55%;
    right: 40%;
    width: clamp(150px, 10vw, 205px);
    transform: rotate(-8deg);
}

/* 4 — Sağ alt büyük yaprak */
.hero-leaf--4 {
    bottom: 10%;
    right: 10%;
    width: clamp(150px, 10vw, 205px);
    transform: rotate(14deg);
}

/* 5 — Sağ kenar orta */
.hero-leaf--5 {
    top: 15%;
    right: -1%;
    width: clamp(105px, 21vw, 400px);
    transform: rotate(24deg);
}

/* ── Grid layout ─────────────────────────────────────────── */
.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    min-height: calc(100vh - var(--navbar-h));
    padding-block: var(--space-2xl);
    gap: 0;
}

/* ── Sol: metin ──────────────────────────────────────────── */
.hero__content {
    padding-right: var(--space-lg);
}

.hero__heading {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: var(--fw-bold);
    line-height: 1.1;
    letter-spacing: -.01em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero__heading .txt-blue   { color: var(--clr-blue); }
.hero__heading .txt-orange { color: var(--clr-orange); }
.hero__heading .txt-yellow { color: var(--clr-yellow); }
.hero__heading .txt-red { color: var(--clr-red); }

.hero__sub {
    font-size: .95rem;
    color: #555;
    line-height: 1.78;
    max-width: 100%;
    margin-bottom: 2.4rem;
    font-weight: var(--fw-regular);
}

.hero__cta { display: flex; }

.hero__cta .btn-primary {
    background: var(--clr-blue);
    color: #fff;
    border-radius: 4px;
    padding: .9rem 2.2rem;
    font-size: .75rem;
    font-weight: var(--fw-semibold);
    letter-spacing: .12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s var(--ease-bounce);
}

.hero__cta .btn-primary:hover {
    background: #003070;
    transform: translateY(-2px);
}

/* ── Sağ: görsel ─────────────────────────────────────────── */
.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__visual-img {
    width: 100%;
    max-width: 640px;
    height: auto;
    object-fit: contain;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products {
    background: transparent;
    padding-block: 80px 90px;
    position: relative;
    overflow: hidden;
}

/* Sol üst köşe gölge görseli */
.products__corner-tl {
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(180px, 18vw, 300px);
    height: auto;
    pointer-events: none;
    z-index: 0;
    display: block;
}

/* Sağ alt köşe gölge görseli */
.products__corner-br {
    position: absolute;
    bottom: 0;
    right: 0;
    width: clamp(180px, 18vw, 300px);
    height: auto;
    pointer-events: none;
    z-index: 0;
    display: block;
}

/* Grid ve header z-index üstte kalsın */
.products .container {
    position: relative;
    z-index: 1;
}

.products__header {
    text-align: center;
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 60px;
}

.section__title {
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    font-weight: var(--fw-bold);
    color: var(--clr-blue);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section__desc {
    font-size: .92rem;
    color: var(--clr-gray);
    line-height: 1.85;
    max-width: 640px;
    margin-inline: auto;
}

/* Grid — eşit yükseklik için stretch */
/*
 * ── Kart yapısı ───────────────────────────────────────────────
 *  Grid  → align-items:stretch → tüm kartlar aynı yükseklik
 *  Kart  → flex kolon, beyaz kutu, gölge tüm karda
 *          padding-top: 240px → şişe için boşluk rezerv eder
 *  img-wrap → position:absolute, top:-70px → kartın üstüne taşar
 *  body  → flex:1 → kalan alanı doldurur, buton her zaman altta
 */
.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;   /* tüm kartlar eşit yükseklik */
}

/* ── Product Card ── */
.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: visible;       /* şişe/blob üstten taşsın */
    box-shadow:
        0 2px 8px  rgba(0,0,0,.06),
        0 6px 24px rgba(0,0,0,.06);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    /* Şişe için alan rezerve et (img-wrap yüksekliği - taşma miktarı) */
    padding-top: 230px;
    transition: transform .4s var(--ease-bounce), box-shadow .3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 40px rgba(0,67,143,.13),
        0 4px  16px rgba(0,0,0,.07);
}

.product-card__blob { display: none; }

/* ── Görsel alanı — kartın dışına taşar ──
   Kart position:relative, img-wrap position:absolute
   top: -70px → şişe kartın 70px üstünden başlar
   Tüm kartlarda aynı → hizalama garantili
*/
.product-card__img-wrap {
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    z-index: 3;
    padding: 0 20px;
}

.product-card__img {
    height: 100%;
    width: auto;
    max-width: 65%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    filter: drop-shadow(0 14px 20px rgba(0,0,0,.20));
    transition: transform .4s var(--ease-bounce);
}

.product-card:hover .product-card__img {
    transform: scale(1.05) translateY(-8px);
}

/* ── Metin alanı ── */
.product-card__body {
    flex: 1;                 /* kalan tüm alanı doldurur */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 28px 32px;
}

.product-card__name {
    font-size: 1.15rem;
    font-weight: var(--fw-bold);
    color: var(--clr-blue);
    margin-bottom: .65rem;
}

.product-card__desc {
    font-size: .86rem;
    color: var(--clr-gray);
    line-height: 1.75;
    margin-bottom: 24px;
    flex: 1;                 /* desc uzunsa buton yine de alta yapışır */
}

.product-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .62rem 2rem;
    background: var(--clr-blue);
    color: #fff;
    border-radius: 6px;
    font-size: .72rem;
    font-weight: var(--fw-semibold);
    letter-spacing: .09em;
    text-transform: uppercase;
    width: 100%;
    margin-top: auto;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, transform .2s var(--ease-bounce);
}

.product-card__btn:hover {
    background: var(--clr-orange);
    transform: scale(1.02);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--clr-blue);
    color: var(--clr-white);
    position: relative;
    overflow: hidden;
}

/* Alt renk çizgisi */
.footer::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        var(--clr-red),
        var(--clr-orange),
        var(--clr-yellow),
        var(--clr-orange),
        var(--clr-red));
}

/* Grid — 4 kolon */
.footer__inner {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1.3fr 1.2fr;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

/* ── Marka kolonu ──────────────────────────────────────── */
.footer__logo-link {
    display: inline-block;
    margin-bottom: 12px;
}

.footer__logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.footer__logo-text {
    font-size: 1.9rem;
    font-weight: var(--fw-bold);
    font-style: italic;
    color: var(--clr-white);
    line-height: 1;
}

.footer__tagline {
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 20px;
}

.footer__copy {
    font-size: .75rem;
    color: rgba(255,255,255,.4);
    line-height: 1.75;
}

.footer__copy span {
    display: block;
    margin-top: 4px;
}

/* ── Diğer kolonlar ────────────────────────────────────── */
.footer__col-title {
    font-size: .7rem;
    font-weight: var(--fw-semibold);
    color: var(--clr-white);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px;
}

/* Nav listesi */
.footer__nav-list li + li { margin-top: 8px; }

.footer__nav-list a {
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    transition: color .2s, padding-left .2s;
    display: inline-block;
}

.footer__nav-list a:hover {
    color: var(--clr-yellow);
    padding-left: 5px;
}

/* Adres */
.footer__address {
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    line-height: 1.8;
    font-style: normal;
}

/* İletişim listesi */
.footer__contact-list li + li { margin-top: 12px; }

.footer__contact-list a {
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
    word-break: break-all;
}

.footer__contact-list a:hover { color: var(--clr-yellow); }

.footer__contact-list svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: .7;
}

/* ── Alt çubuk ─────────────────────────────────────────── */
.footer__bottom {
    padding-block: 18px;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__bottom-copy {
    font-size: .72rem;
    color: rgba(255,255,255,.35);
    text-align: center;
}

/* ============================================================
   SCROLL ANIMATIONS — GSAP from() kullandığı için CSS'te opacity:0 YOK
   ============================================================ */

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet 1024px ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero__heading { font-size: clamp(1.8rem, 3.2vw, 2.8rem); }

    /* Yapraklar tablet'te biraz küçülür */
    .hero-leaf--1 { width: 130px; }
    .hero-leaf--4 { width: 130px; }
    .hero-leaf--5 { width: 105px; }
    .hero-leaf--2 { width: 110px; }
    .hero-leaf--3 { width: 150px; }

    .products__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .product-card { padding-top: 200px; }
    .product-card__img-wrap { top: -55px; height: 255px; }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

/* ── Mobile 768px ────────────────────────────────────────── */
@media (max-width: 768px) {
    :root { --navbar-h: 64px; }

    /* ── Hamburger — zorla göster ──────────────────────── */
    .hamburger {
        display: flex !important;
    }

    /* ── Mobil menü — ekranın dışında gizli başlar ──────── */
    .navbar__nav {
        position: fixed;
        top: var(--navbar-h);
        left: 0;
        right: 0;
        display: flex !important;
        flex-direction: column;
        gap: 0;
        background: #fff;
        box-shadow: 0 8px 24px rgba(0,0,0,.12);
        padding: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
        z-index: 998;
    }

    .navbar__nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar__link {
        padding: 16px 24px;
        width: 100%;
        display: block !important;
        font-size: 1rem;
        font-weight: 500;
        color: #111 !important;
        border-bottom: 1px solid #f0f0f0;
        text-decoration: none;
    }

    .navbar__link:last-child { border-bottom: none; }

    .navbar__link::after { display: none; }

    /* ── Hero ───────────────────────────────────────────── */
    .hero {
        min-height: 100vh;
        padding-top: var(--navbar-h);
        padding-bottom: 0;
        overflow: hidden;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        min-height: calc(100vh - var(--navbar-h));
        padding-block: 28px 40px;
        gap: 0;
    }

    .hero__content { padding-right: 0; order: 1; }
    .hero__visual  { order: 2; margin-top: 20px; }

    .hero__visual-img {
        max-width: 86vw;
        margin-inline: auto;
        display: block;
    }

    .hero__heading {
        font-size: clamp(2rem, 8.5vw, 3rem);
        line-height: 1.1;
        margin-bottom: 1.1rem;
    }

    .hero__sub {
        font-size: .88rem;
        margin-bottom: 1.6rem;
        max-width: 100%;
        line-height: 1.72;
    }

    /* ── Yapraklar mobilde ──────────────────────────────── */
    .hero-leaf--2,
    .hero-leaf--4 { display: none; }

    .hero-leaf--1 {
        top: 3%;
        left: 0;
        width: 100px;
        transform: rotate(-20deg);
    }

    .hero-leaf--3 {
        top: 2%;
        right: 2%;
        width: 115px;
        transform: rotate(-10deg);
    }

    .hero-leaf--5 {
        top: 34%;
        right: -1%;
        width: 88px;
        transform: rotate(22deg);
    }

    /* ── Products ───────────────────────────────────────── */
    .products { padding-block: 44px 60px; }
    .products__header { margin-bottom: 32px; }
    .products__corner-tl,
    .products__corner-br { width: 110px; }

    .products__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-inline: auto;
        gap: 32px;
    }

    .products__grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-inline: auto;
        gap: 28px;
    }
    .product-card { padding-top: 190px; }
    .product-card__img-wrap { top: -50px; height: 240px; }
    .product-card__body { padding: 16px 20px 26px; }



    /* ── Footer ─────────────────────────────────────────── */
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ── Küçük Mobil 480px ───────────────────────────────────── */
@media (max-width: 480px) {
    .hero__heading    { font-size: clamp(1.8rem, 9vw, 2.5rem); }
    .hero__visual-img { max-width: 92vw; }
    .products__grid   { max-width: 100%; }
    .product-card { padding-top: 170px; }
    .product-card__img-wrap { top: -44px; height: 214px; }

    .hero-leaf--1 { width: 82px; }
    .hero-leaf--3 { width: 92px; }
    .hero-leaf--5 { width: 72px; }
}


/* ============================================================
   HAKKIMIZDA SECTION
   ============================================================ */
.about {
    background: #fff;
    padding-block: 90px;
    position: relative;
    overflow: hidden;
}

/* Sol üst köşe dekorasyon */
.about__corner {
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(150px, 16vw, 260px);
    height: auto;
    pointer-events: none;
    z-index: 0;
    opacity: .55;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ── Sol: görsel ── */
.about__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__visual-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
}

/* ── Sağ: metin ── */
.about__content {}

.about__label {
    font-size: .75rem;
    font-weight: var(--fw-semibold);
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--clr-orange);
    margin-bottom: 14px;
    display: block;
}

.about__title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: var(--fw-bold);
    color: var(--clr-blue);
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.about__lead {
    font-size: .97rem;
    font-weight: var(--fw-semibold);
    font-style: italic;
    color: var(--clr-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    border-left: 3px solid var(--clr-orange);
    padding-left: 14px;
}

.about__text {
    font-size: .88rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 16px;
}

.about__text:last-child { margin-bottom: 0; }

.about__text strong {
    color: var(--clr-dark);
    font-weight: var(--fw-semibold);
}

/* ============================================================
   SLOGAN BANDI
   ============================================================ */
.slogan {
    background: #fff;
    padding-block: 64px 60px;
    text-align: center;
}

.slogan__title {
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    font-weight: var(--fw-regular);
    color: var(--clr-blue);
    margin-bottom: 16px;
}

.slogan__title strong {
    font-weight: var(--fw-bold);
    color: var(--clr-blue);
}

.slogan__desc {
    font-size: .9rem;
    color: #666;
    line-height: 1.85;
    max-width: 580px;
    margin-inline: auto;
}

/* ============================================================
   BANNER — tam genişlik görsel
   ============================================================ */
.banner {
    display: block;
    line-height: 0;   /* img altında boşluk olmasın */
}

.banner__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about__inner { gap: 40px; }
}

@media (max-width: 768px) {
    .about { padding-block: 56px; }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about__visual-img { max-width: 300px; margin-inline: auto; }

    .slogan { padding-block: 48px 44px; }
}

@media (max-width: 480px) {
    .about__title { font-size: clamp(1.5rem, 7vw, 2rem); }
    .slogan__title { font-size: clamp(1.3rem, 6vw, 1.9rem); }
}

/* ============================================================
   AROMA SECTION
   ============================================================ */
.aroma {
    background: #fff;
    position: relative;
    overflow: hidden;
    padding-block: 70px;
    min-height: 360px;
    display: flex;
    align-items: center;
}

/* Yaprak animasyonları */
@keyframes aroma-float-1 {
    0%, 100% { transform: rotate(-15deg) translateY(0px) translateX(0px); }
    33%       { transform: rotate(-8deg)  translateY(-14px) translateX(5px); }
    66%       { transform: rotate(-18deg) translateY(-6px)  translateX(-4px); }
}
@keyframes aroma-float-2 {
    0%, 100% { transform: rotate(30deg) translateY(0px)   translateX(0px); }
    50%       { transform: rotate(38deg) translateY(-10px) translateX(-6px); }
}

/* Sağ üst — büyük yaprak grubu */
.aroma__leaves {
    position: absolute;
    top: -10px;
    right: -10px;
    width: clamp(200px, 24vw, 340px);
    height: auto;
    pointer-events: none;
    z-index: 3;
    animation: aroma-float-1 5s ease-in-out infinite;
    transform-origin: top right;
    will-change: transform;
}

/* Tek yaprak */
.aroma__leaf {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: clamp(70px, 7vw, 105px);
    height: auto;
    pointer-events: none;
    z-index: 3;
    animation: aroma-float-2 4s ease-in-out infinite;
    animation-delay: .8s;
    transform-origin: center;
    will-change: transform;
}

/* Sağ alt köşe — şeffaf PNG, bg yok */
.aroma__corner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: clamp(150px, 18vw, 260px);
    height: auto;
    pointer-events: none;
    z-index: 1;
}

/* İçerik */
.aroma__inner {
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 2;
    width: 100%;
        background: #F7F7F7;

}

/* Sol: görsel — sade beyaz, padding yok */
.aroma__visual {
    flex-shrink: 0;
    width: 45%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.aroma__visual-img {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
}

/* Sağ: metin — beyaz, bg yok */
.aroma__content {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aroma__sub {
    font-size: .84rem;
    color: #888;
    font-weight: var(--fw-regular);
    margin-bottom: 10px;
    display: block;
    letter-spacing: .02em;
}

.aroma__title {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: var(--fw-bold);
    color: var(--clr-blue);
    line-height: 1.2;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .aroma { padding-block: 52px; min-height: auto; }

    .aroma__inner {
        flex-direction: column;
        gap: 24px;
    }

    .aroma__visual {
        width: 80%;
        margin-inline: auto;
    }

    .aroma__content { text-align: center; }

    .aroma__leaves { width: 150px; }
    .aroma__leaf   { width: 60px; bottom: 4%; right: 4%; }
    .aroma__corner { width: 110px; }
}

@media (max-width: 480px) {
    .aroma__visual { width: 95%; }
    .aroma__title  { font-size: clamp(1.5rem, 7vw, 2rem); }
}

/* ============================================================
   ÜRÜNLER SAYFASI — urunlerimiz.php
   ============================================================ */

/* ── Page Hero ── */
.up-hero {
    background: #fff;
    padding-block: 100px 0;
    position: relative;
    overflow: visible;
    padding-top: calc(var(--navbar-h) + 52px);
}

.up-hero__leaf {
    position: absolute;
    pointer-events: none;
}

.up-hero__leaf--tl {
    top: calc(var(--navbar-h) - 10px);
    left: -10px;
    width: clamp(80px, 9vw, 140px);
    transform: rotate(-20deg);
    opacity: .85;
}

.up-hero__leaf--tr {
    top: calc(var(--navbar-h));
    right: 2%;
    width: clamp(60px, 7vw, 110px);
    transform: rotate(15deg);
    opacity: .7;
}

.up-hero__title {
    font-size: clamp(1.8rem, 4vw, 2rem);
    font-weight: var(--fw-bold);
    color: var(--clr-blue);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}


/* ── Product List ── */
.up-list {
    background: #fff;
    padding-block: 60px 100px;
}

/* ── Product Card ── */
.up-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
    align-items: center;
    padding-block: 70px;
    position: relative;
}

.up-card:last-child { border-bottom: none; }

/* Dir: right → görsel sol, metin sağ (varsayılan) */
.up-card--right .up-card__visual  { order: 1; }
.up-card--right .up-card__content { order: 2; }

/* Dir: left → görsel sağ, metin sol */
.up-card--left .up-card__visual  { order: 2; }
.up-card--left .up-card__content { order: 1; }

/* ── Görsel alanı ── */
.up-card__visual {
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Blob arka plan */
.up-card__bg-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.up-card__bg {
    width: 90%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Şişe carousel — yan şişeler peek eder */
.up-card__carousel {
    position: relative;
    z-index: 1;
    flex: 1;
    width: 100%;
    min-height: 360px;
    overflow: visible;   /* yan şişeler taşsın */
}

.up-card__bottle {
    position: absolute;
    top: 50%;
    left: 50%;
    height: auto;
    width: auto;
    object-fit: contain;
    pointer-events: none;
    filter: drop-shadow(0 12px 20px rgba(0,0,0,.15));
    transition: transform .45s cubic-bezier(.4,0,.2,1),
                opacity   .35s ease;
    /* gizli — hiçbir class yokken */
    transform: translate(-50%, -50%) scale(.5);
    opacity: 0;
}

/* Aktif — ortada, tam boy */
.up-card__bottle.is-active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 3;
}

/* Sol komşu — solda, küçük, yarı saydam */
.up-card__bottle.is-prev {
    transform: translate(calc(-50% - 170px), -50%) scale(.62);
    opacity: .5;
    z-index: 2;
}

/* Sağ komşu — sağda, küçük, yarı saydam */
.up-card__bottle.is-next {
    transform: translate(calc(-50% + 170px), -50%) scale(.62);
    opacity: .5;
    z-index: 2;
}

/* ml pill seçiciler */
.up-card__pills {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.up-card__pill {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #f5f5f5;
    font-size: .68rem;
    font-weight: var(--fw-semibold);
    color: #888;
    cursor: pointer;
    font-family: var(--ff-main);
    transition: all .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.up-card__pill:hover {
    border-color: var(--clr-blue);
    color: var(--clr-blue);
    background: #fff;
}

.up-card__pill.is-active {
    background: var(--clr-blue);
    border-color: var(--clr-blue);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,67,143,.30);
}

/* ── Metin alanı ── */
.up-card__content {
    padding-block: 20px;
}

.up-card__name {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: var(--fw-regular);
    color: var(--clr-blue);
    margin-bottom: 22px;
    line-height: 1.2;
}

.up-card__name strong {
    font-weight: var(--fw-bold);
    color: var(--clr-blue);
}

.up-card__desc {
    font-size: .9rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 16px;
}

.up-card__desc:last-of-type { margin-bottom: 28px; }

.up-card__btn {
    display: inline-flex;
    align-items: center;
    padding: .65rem 1.8rem;
    background: var(--clr-blue);
    color: #fff;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: var(--fw-semibold);
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .2s, transform .2s;
}

.up-card__btn:hover {
    background: var(--clr-orange);
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .up-card { gap: 0 40px; }
    .up-card__bottle { height: auto }
    .up-card__bottle.is-prev { transform: translate(calc(-50% - 140px), -50%) scale(.6); }
    .up-card__bottle.is-next { transform: translate(calc(-50% + 140px), -50%) scale(.6); }
}

@media (max-width: 768px) {
    .up-card {
        grid-template-columns: 1fr;
        gap: 32px 0;
        padding-block: 52px;
    }

    .up-card--right .up-card__visual,
    .up-card--left  .up-card__visual  { order: 1; }
    .up-card--right .up-card__content,
    .up-card--left  .up-card__content { order: 2; }

    .up-card__visual  { min-height: 320px; }
    .up-card__bottle  { height: auto; }
    .up-card__bottle.is-prev { transform: translate(calc(-50% - 120px), -50%) scale(.58); }
    .up-card__bottle.is-next { transform: translate(calc(-50% + 120px), -50%) scale(.58); }
    .up-card__content { padding-block: 0; }
}

@media (max-width: 480px) {
    .up-card__visual { min-height: 280px; }
    .up-card__bottle { height: auto; }
    .up-card__bottle.is-prev { transform: translate(calc(-50% - 100px), -50%) scale(.55); }
    .up-card__bottle.is-next { transform: translate(calc(-50% + 100px), -50%) scale(.55); }
    .up-hero__title  { font-size: clamp(1.5rem, 7vw, 2rem); }
}



















