    *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      :root {
        --green: #3a6647;
        --green-light: #4e8460;
        --green-bg: #f0f5f1;
        --gold: #c9a42a;
        --gold-light: #e8c84a;
        --cream: #faf8f3;
        --dark: #1c2219;
        --gray: #6b7a6e;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Nunito", sans-serif;
        background: var(--cream);
        color: var(--dark);
        overflow-x: hidden;
      }

      /* ── NAV ── */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5%;
        height: 72px;
        background: rgba(250, 248, 243, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(58, 102, 71, 0.1);
        transition: box-shadow 0.3s;
      }
      nav.scrolled {
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
      }
      .nav-logo img {
        height: 44px;
      }
      .nav-links {
        display: flex;
        gap: 1.25rem;
        list-style: none;
      }
      .nav-links a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 700;
        font-size: 0.9rem;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 2px;
      }
      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gold);
        transform: scaleX(0);
        transition: transform 0.25s;
      }
      .nav-links a:hover::after {
        transform: scaleX(1);
      }
      .nav-insta {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: var(--green);
        font-weight: 700;
        font-size: 0.85rem;
        background: var(--green-bg);
        padding: 8px 16px;
        border-radius: 50px;
        transition:
          background 0.2s,
          color 0.2s;
      }
      .nav-insta:hover {
        background: var(--green);
        color: #fff;
      }
      .nav-insta svg {
        width: 16px;
        height: 16px;
      }

      /* ── LANGUAGE SWITCHER ── */
      .lang-switcher {
        display: flex;
        align-items: center;
        gap: 0;
        background: var(--green-bg);
        border-radius: 50px;
        padding: 3px;
        border: 1px solid rgba(58, 102, 71, 0.12);
      }
      .lang-btn {
        border: none;
        background: transparent;
        color: var(--gray);
        font-family: inherit;
        font-weight: 800;
        font-size: 0.72rem;
        padding: 5px 10px;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.25s;
        letter-spacing: 0.03em;
      }
      .lang-btn.active {
        background: var(--green);
        color: #fff;
        box-shadow: 0 2px 8px rgba(58, 102, 71, 0.25);
      }
      .lang-btn:hover:not(.active) {
        background: rgba(58, 102, 71, 0.1);
        color: var(--dark);
      }

      /* ── RTL (ARABIC) ── */
      [dir="rtl"] {
        direction: rtl;
      }
      [dir="rtl"] .nav-links {
        direction: rtl;
      }
      [dir="rtl"] .about-text blockquote {
        border-left: none;
        border-right: 3px solid var(--gold);
        padding-left: 0;
        padding-right: 20px;
      }
      [dir="rtl"] .contact-item {
        flex-direction: row-reverse;
        text-align: right;
      }
      [dir="rtl"] .consult-points li {
        flex-direction: row-reverse;
      }
      [dir="rtl"] .faq-item summary {
        padding: 18px 18px 18px 52px;
      }
      [dir="rtl"] .faq-item summary::after {
        right: auto;
        left: 18px;
      }
      [dir="rtl"] .hero-cta {
        direction: ltr;
      }

      /* ── MOBILE-ONLY LANG (hidden on desktop) ── */
      .nav-lang-mobile {
        display: none;
      }

      /* ── HAMBURGER TOGGLE ── */
      .hamburger-toggle {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        border: none;
        border-radius: 12px;
        background: var(--green-bg);
        cursor: pointer;
        padding: 0;
        position: relative;
        z-index: 110;
        transition: background 0.25s;
      }
      .hamburger-toggle:hover {
        background: rgba(58, 102, 71, 0.15);
      }
      .hamburger-line {
        display: block;
        width: 22px;
        height: 2.5px;
        background: var(--green);
        border-radius: 2px;
        transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1),
                    opacity 0.25s ease;
        transform-origin: center;
      }
      /* Animated X when open */
      .hamburger-toggle.is-active .hamburger-line:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
      }
      .hamburger-toggle.is-active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
      }
      .hamburger-toggle.is-active .hamburger-line:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
      }

      /* ── MOBILE DRAWER OVERLAY ── */
      .nav-drawer-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 98;
        background: rgba(28, 34, 25, 0.4);
        backdrop-filter: blur(4px);
        opacity: 0;
        transition: opacity 0.35s ease;
      }
      .nav-drawer-overlay.is-visible {
        display: block;
        opacity: 1;
      }

      /* ── HERO ── */
      #hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }
      #hero-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
      }
      .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(
          135deg,
          rgba(30, 55, 35, 0.72) 0%,
          rgba(30, 55, 35, 0.35) 100%
        );
      }
      .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: #fff;
        padding: 0 20px;
      }
      .hero-logo {
        width: 110px;
        margin-bottom: 24px;
        filter: invert(1) brightness(2);
      }
      .hero-content h1 {
        font-family: "Playfair Display", serif;
        font-size: clamp(2.8rem, 6vw, 5rem);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 16px;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
      }
      .hero-content h1 span {
        color: var(--gold-light);
      }
      .hero-content p {
        font-size: clamp(1rem, 2vw, 1.2rem);
        font-weight: 600;
        opacity: 0.9;
        margin-bottom: 36px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
      }
      .hero-badges {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 40px;
      }
      .hero-badge {
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(8px);
        color: #fff;
        font-weight: 700;
        font-size: 0.85rem;
        padding: 8px 18px;
        border-radius: 50px;
      }
      .hero-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--gold);
        color: #fff;
        font-family: "Nunito", sans-serif;
        font-weight: 800;
        font-size: 1rem;
        padding: 16px 36px;
        border-radius: 50px;
        text-decoration: none;
        box-shadow: 0 8px 30px rgba(201, 164, 42, 0.4);
        transition:
          transform 0.2s,
          box-shadow 0.2s;
      }
      .hero-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(201, 164, 42, 0.5);
      }
      .scroll-hint {
        position: absolute;
        bottom: 32px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        color: rgba(255, 255, 255, 0.7);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        animation: bounce 2s ease-in-out infinite;
      }
      .scroll-hint svg {
        width: 24px;
        height: 24px;
      }
      @keyframes bounce {
        0%,
        100% {
          transform: translateX(-50%) translateY(0);
        }
        50% {
          transform: translateX(-50%) translateY(8px);
        }
      }

      /* ── SECTIONS ── */
      section {
        padding: 100px 5%;
      }
      .section-label {
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 12px;
      }
      .section-title {
        font-family: "Playfair Display", serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        line-height: 1.15;
        color: var(--dark);
        margin-bottom: 16px;
      }
      .section-sub {
        font-size: 1.05rem;
        color: var(--gray);
        max-width: 560px;
        line-height: 1.7;
      }
      .section-header {
        margin-bottom: 56px;
      }
      .section-header.center {
        text-align: center;
      }
      .section-header.center .section-sub {
        margin: 0 auto;
      }

      /* ── KATEGORILER ── */
      #kategoriler {
        position: relative;
        overflow: hidden;
        background:
          radial-gradient(
            circle at 10% 12%,
            rgba(201, 164, 42, 0.16),
            transparent 34%
          ),
          radial-gradient(
            circle at 88% 8%,
            rgba(58, 102, 71, 0.14),
            transparent 32%
          ),
          linear-gradient(180deg, #faf8f3 0%, #f2f6ef 100%);
      }
      #kategoriler::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image:
          linear-gradient(rgba(58, 102, 71, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(58, 102, 71, 0.04) 1px, transparent 1px);
        background-size: 26px 26px;
        mask-image: linear-gradient(
          180deg,
          rgba(0, 0, 0, 0.3),
          transparent 72%
        );
      }
      .categories-grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 16px;
      }
      .cat-card {
        grid-column: span 4;
        position: relative;
        isolation: isolate;
        background: #fff;
        border-radius: 22px;
        padding: 24px 22px 22px;
        border: 1.5px solid rgba(58, 102, 71, 0.12);
        box-shadow: 0 14px 34px rgba(28, 34, 25, 0.08);
        display: flex;
        flex-direction: column;
        min-height: 214px;
        transition:
          border-color 0.3s,
          transform 0.3s,
          box-shadow 0.3s;
        cursor: default;
      }
      .cat-card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: radial-gradient(
          circle at 85% 12%,
          rgba(201, 164, 42, 0.2),
          transparent 36%
        );
        opacity: 0;
        transition: opacity 0.3s;
        z-index: -1;
      }
      .cat-card:hover {
        border-color: rgba(58, 102, 71, 0.38);
        transform: translateY(-5px);
        box-shadow: 0 20px 38px rgba(28, 34, 25, 0.14);
      }
      .cat-card:hover::after {
        opacity: 1;
      }
      .cat-card--hero {
        grid-column: span 5;
        background: linear-gradient(140deg, #3a6647 0%, #507c5c 100%);
        border-color: transparent;
        color: #fff;
      }
      .cat-card--wide {
        grid-column: span 7;
      }
      .cat-card--full {
        grid-column: span 12;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 16px;
        min-height: 164px;
      }
      .cat-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 14px;
      }
      .cat-icon {
        width: 56px;
        height: 56px;
        background: linear-gradient(160deg, #eaf4ec 0%, #dcece0 100%);
        border-radius: 16px;
        border: 1px solid rgba(58, 102, 71, 0.16);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .cat-icon svg {
        width: 28px;
        height: 28px;
        stroke: var(--green);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      .cat-card--hero .cat-icon {
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.35);
      }
      .cat-card--hero .cat-icon svg {
        stroke: #fff;
      }
      .cat-copy {
        display: grid;
        gap: 6px;
      }
      .cat-card h3 {
        font-size: 1.02rem;
        font-weight: 900;
        color: var(--dark);
        margin: 0;
      }
      .cat-card p {
        font-size: 0.88rem;
        color: var(--gray);
        line-height: 1.62;
        margin: 0;
      }
      .cat-card--hero h3,
      .cat-card--hero p {
        color: rgba(255, 255, 255, 0.96);
      }
      .cat-age {
        display: inline-block;
        font-size: 0.72rem;
        font-weight: 800;
        background: var(--green-bg);
        color: var(--green);
        padding: 4px 10px;
        border-radius: 50px;
      }
      .cat-card--hero .cat-age {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
      }
      .cat-pulse {
        margin-top: auto;
        align-self: flex-start;
        display: inline-flex;
        align-items: center;
        border-radius: 999px;
        padding: 5px 11px;
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--green);
        background: rgba(58, 102, 71, 0.1);
      }
      .cat-card--hero .cat-pulse {
        background: rgba(255, 255, 255, 0.18);
        color: #fff;
      }
      .cat-card--full .cat-top,
      .cat-card--full .cat-pulse {
        margin: 0;
      }
      .cat-card--full .cat-copy {
        gap: 4px;
      }

      /* ── HAKKIMIZDA ── */
      #hakkimizda {
        background: var(--green);
        color: #fff;
        position: relative;
        overflow: hidden;
      }
      #hakkimizda::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -80px;
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 50%;
      }
      #hakkimizda::after {
        content: "";
        position: absolute;
        bottom: -100px;
        left: -60px;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 50%;
      }
      .about-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        position: relative;
        z-index: 1;
      }
      .about-image-wrap {
        position: relative;
      }
      .about-image-wrap img {
        width: 100%;
        border-radius: 24px;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
      }
      .about-badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: var(--gold);
        color: #fff;
        font-weight: 800;
        font-size: 0.85rem;
        padding: 16px 22px;
        border-radius: 16px;
        text-align: center;
        line-height: 1.3;
        box-shadow: 0 8px 24px rgba(201, 164, 42, 0.4);
      }
      .about-badge strong {
        display: block;
        font-size: 1.4rem;
      }
      #hakkimizda .section-label {
        color: var(--gold-light);
      }
      #hakkimizda .section-title {
        color: #fff;
      }
      .about-text p {
        font-size: 1.02rem;
        line-height: 1.85;
        color: rgba(255, 255, 255, 0.88);
        margin-bottom: 18px;
      }
      .about-text p strong {
        color: #fff;
        font-weight: 800;
      }
      .about-text blockquote {
        border-left: 3px solid var(--gold);
        padding-left: 20px;
        font-style: italic;
        font-size: 1.08rem;
        color: rgba(255, 255, 255, 0.95);
        margin: 24px 0;
      }

      /* ── GALERİ ── */
      #galeri {
        background: var(--green-bg);
      }
      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 260px 260px 260px;
        gap: 14px;
      }
      .g-item {
        overflow: hidden;
        border-radius: 16px;
        position: relative;
        border: 0;
        padding: 0;
        background: transparent;
        cursor: zoom-in;
        display: block;
        width: 100%;
        height: 100%;
      }
      .g-item:focus-visible {
        outline: 3px solid var(--gold);
        outline-offset: 4px;
      }
      .g-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1;
      }
      .g-item:nth-child(2) {
        grid-column: 3;
        grid-row: 1;
      }
      .g-item:nth-child(3) {
        grid-column: 4;
        grid-row: 1;
      }
      .g-item:nth-child(4) {
        grid-column: 1;
        grid-row: 2;
      }
      .g-item:nth-child(5) {
        grid-column: 2;
        grid-row: 2;
      }
      .g-item:nth-child(6) {
        grid-column: 3 / 5;
        grid-row: 2;
      }
      .g-item:nth-child(7) {
        grid-column: 1 / 5;
        grid-row: 3;
      }
      .g-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }
      .g-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      .g-video {
        cursor: default;
        background: #000;
      }
      .g-item:hover img {
        transform: scale(1.06);
      }

      /* ── ÜRÜN GALERİSİ ── */
      #urun-galeri {
        background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
      }
      .product-gallery-shell {
        max-width: 1180px;
        margin: 0 auto;
      }
      .product-gallery-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 160px;
        gap: 14px;
      }
      .product-card {
        position: relative;
        overflow: hidden;
        border-radius: 14px;
        background: var(--green-bg);
        box-shadow: 0 12px 34px rgba(28, 34, 25, 0.1);
        isolation: isolate;
        border: 0;
        padding: 0;
        cursor: zoom-in;
        display: block;
        width: 100%;
      }
      .product-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition:
          transform 0.55s ease,
          filter 0.55s ease;
      }
      .product-card:hover img {
        transform: scale(1.05);
        filter: saturate(1.05);
      }
      .product-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(28, 34, 25, 0);
        z-index: 0;
        pointer-events: none;
        transition: background 0.25s ease;
      }
      .product-card:hover::after,
      .product-card:focus-visible::after {
        background: rgba(28, 34, 25, 0.12);
      }
      .product-card:focus-visible {
        outline: 3px solid var(--gold);
        outline-offset: 4px;
      }
      .product-card.featured {
        grid-column: span 3;
        grid-row: span 3;
      }
      .product-card.wide {
        grid-column: span 2;
        grid-row: span 2;
      }
      .product-card.tall {
        grid-column: span 2;
        grid-row: span 3;
      }
      .product-card.small {
        grid-column: span 1;
        grid-row: span 2;
      }
      .product-card video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      .product-card.product-video {
        cursor: default;
        background: #0d120f;
      }
      .product-card.product-video::after {
        display: none;
      }
      .gallery-note {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        margin-top: 18px;
        padding: 18px 22px;
        border-radius: 14px;
        background: #fff;
        border: 1px solid rgba(58, 102, 71, 0.1);
        box-shadow: 0 8px 24px rgba(28, 34, 25, 0.06);
        color: var(--gray);
        font-weight: 700;
      }
      .gallery-note strong {
        color: var(--dark);
        font-weight: 900;
      }
      .gallery-note a {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 11px 18px;
        border-radius: 50px;
        background: var(--green);
        color: #fff;
        font-weight: 900;
        text-decoration: none;
        transition:
          background 0.2s,
          transform 0.2s;
      }
      .gallery-note a:hover {
        background: var(--green-light);
        transform: translateY(-2px);
      }

      .image-modal {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 24px;
        background: rgba(10, 14, 10, 0.86);
        backdrop-filter: blur(8px);
      }
      .image-modal.is-open {
        display: flex;
      }
      .image-modal-frame {
        position: relative;
        width: min(92vw, 980px);
        height: min(86vh, 780px);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .image-modal-img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 16px;
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
        background: #fff;
      }
      .image-modal-btn {
        position: absolute;
        width: 44px;
        height: 44px;
        border: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.92);
        color: var(--dark);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
        transition:
          transform 0.2s,
          background 0.2s;
      }
      .image-modal-btn:hover {
        transform: scale(1.06);
        background: #fff;
      }
      .image-modal-close {
        top: -12px;
        right: -12px;
      }
      .image-modal-prev {
        left: -18px;
        top: 50%;
        transform: translateY(-50%);
      }
      .image-modal-next {
        right: -18px;
        top: 50%;
        transform: translateY(-50%);
      }
      .image-modal-prev:hover,
      .image-modal-next:hover {
        transform: translateY(-50%) scale(1.06);
      }
      .image-modal-btn svg {
        width: 22px;
        height: 22px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.4;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      /* ── YORUMLAR ── */
      #yorumlar {
        background: var(--cream);
      }
      .reviews-layout {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 28px;
        align-items: stretch;
      }
      .google-review-panel,
      .review-topic {
        background: #fff;
        border: 1.5px solid rgba(58, 102, 71, 0.08);
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(28, 34, 25, 0.07);
      }
      .google-review-panel {
        padding: 30px;
      }
      .google-mark {
        width: 54px;
        height: 54px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: var(--green-bg);
        color: var(--green);
        font-size: 1.6rem;
        font-weight: 900;
        margin-bottom: 18px;
      }
      .google-review-panel h3 {
        font-size: 1.3rem;
        font-weight: 900;
        margin-bottom: 10px;
      }
      .google-review-panel p,
      .review-topic p {
        color: var(--gray);
        line-height: 1.7;
      }
      .google-stars {
        color: var(--gold);
        font-size: 1.15rem;
        letter-spacing: 0.08em;
        margin: 16px 0 22px;
      }
      .review-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }
      .review-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 12px 18px;
        border-radius: 50px;
        background: var(--green);
        color: #fff;
        font-weight: 900;
        text-decoration: none;
        transition:
          transform 0.2s,
          background 0.2s;
      }
      .review-action.secondary {
        background: var(--green-bg);
        color: var(--green);
      }
      .review-action:hover {
        transform: translateY(-2px);
        background: var(--green-light);
      }
      .review-topic-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
      }
      .review-topic {
        padding: 22px;
      }
      .review-topic-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 6px;
      }
      .review-topic h3 {
        font-size: 1rem;
        font-weight: 900;
        margin: 0;
      }
      .review-topic-time {
        font-size: 0.8rem;
        color: rgba(58, 102, 71, 0.7);
        font-weight: 800;
        white-space: nowrap;
      }
      .review-topic-meta {
        margin: 0 0 12px;
        color: rgba(83, 89, 81, 0.85);
        font-size: 0.82rem;
        font-weight: 700;
      }
      .review-topic-stars {
        color: var(--gold);
        font-size: 0.95rem;
        letter-spacing: 0.08em;
        margin-top: 14px;
      }
      .review-topic-engagement {
        margin-top: 8px;
        color: rgba(58, 102, 71, 0.72);
        font-size: 0.8rem;
        font-weight: 800;
      }

      /* ── BEDEN DANISMANI ── */
      #beden-danismani {
        background: linear-gradient(180deg, #f7fbf8 0%, var(--cream) 100%);
      }
      .consult-grid {
        display: grid;
        grid-template-columns: 0.95fr 1.05fr;
        gap: 24px;
        align-items: stretch;
      }
      .consult-card,
      .size-form {
        background: #fff;
        border: 1.5px solid rgba(58, 102, 71, 0.1);
        border-radius: 20px;
        box-shadow: 0 12px 34px rgba(28, 34, 25, 0.08);
      }
      .consult-card {
        padding: 28px;
      }
      .consult-card h3 {
        font-size: 1.25rem;
        font-weight: 900;
        color: var(--dark);
        margin-bottom: 10px;
      }
      .consult-card p {
        color: var(--gray);
        line-height: 1.72;
      }
      .consult-points {
        list-style: none;
        display: grid;
        gap: 10px;
        margin: 18px 0 24px;
      }
      .consult-points li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: var(--gray);
        line-height: 1.62;
        font-weight: 700;
      }
      .consult-points li::before {
        content: "\2713";
        color: var(--green);
        font-weight: 900;
        margin-top: 1px;
      }
      .consult-direct {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 12px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 900;
        background: var(--green);
        color: #fff;
        transition:
          transform 0.2s,
          background 0.2s;
      }
      .consult-direct:hover {
        transform: translateY(-2px);
        background: var(--green-light);
      }
      .size-form {
        padding: 28px;
      }
      .size-form-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
      }
      .size-field {
        display: flex;
        flex-direction: column;
        gap: 6px;
      }
      .size-field label {
        font-size: 0.82rem;
        font-weight: 800;
        color: var(--dark);
      }
      .size-field input,
      .size-field select,
      .size-field textarea {
        border: 1.5px solid rgba(58, 102, 71, 0.2);
        border-radius: 12px;
        padding: 11px 12px;
        font: inherit;
        color: var(--dark);
        background: #fff;
      }
      .size-field input:focus,
      .size-field select:focus,
      .size-field textarea:focus {
        outline: none;
        border-color: var(--green-light);
        box-shadow: 0 0 0 3px rgba(78, 132, 96, 0.15);
      }
      .size-field textarea {
        min-height: 92px;
        resize: vertical;
      }
      .size-submit {
        margin-top: 14px;
        border: 0;
        border-radius: 14px;
        background: var(--gold);
        color: #fff;
        font: inherit;
        font-weight: 900;
        cursor: pointer;
        padding: 13px 18px;
        transition:
          transform 0.2s,
          box-shadow 0.2s;
        box-shadow: 0 10px 28px rgba(201, 164, 42, 0.32);
      }
      .size-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 34px rgba(201, 164, 42, 0.4);
      }
      .size-result {
        display: none;
        margin-top: 14px;
        padding: 14px 16px;
        border-radius: 14px;
        border: 1px solid rgba(58, 102, 71, 0.18);
        background: var(--green-bg);
      }
      .size-result.is-visible {
        display: block;
      }
      .size-result strong {
        display: block;
        color: var(--dark);
        font-size: 1rem;
        margin-bottom: 6px;
      }
      .size-result p {
        color: var(--gray);
        line-height: 1.64;
        margin-bottom: 10px;
      }
      .size-result a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 900;
        color: var(--green);
        text-decoration: none;
      }

      /* ── BEDEN TABLOSU TOGGLE ── */
      .size-chart-toggle {
        margin-top: 14px;
        border-top: 1px solid rgba(58, 102, 71, 0.12);
        padding-top: 12px;
      }
      .size-chart-toggle summary {
        cursor: pointer;
        font-weight: 800;
        font-size: 0.9rem;
        color: var(--green);
        padding: 6px 0;
        list-style: none;
        user-select: none;
        transition: color 0.2s;
      }
      .size-chart-toggle summary::-webkit-details-marker {
        display: none;
      }
      .size-chart-toggle summary:hover {
        color: var(--green-light);
      }
      .size-chart-toggle[open] summary {
        margin-bottom: 10px;
      }
      .size-chart-img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(28, 34, 25, 0.1);
      }

      /* ── SSS ── */
      #sss {
        background: #fff;
      }
      .faq-grid {
        max-width: 980px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
      }
      .faq-item {
        background: var(--cream);
        border: 1.5px solid rgba(58, 102, 71, 0.1);
        border-radius: 14px;
        overflow: hidden;
      }
      .faq-item summary {
        list-style: none;
        cursor: pointer;
        padding: 18px 52px 18px 18px;
        position: relative;
        color: var(--dark);
        font-weight: 900;
        font-size: 1rem;
      }
      .faq-item summary::-webkit-details-marker {
        display: none;
      }
      .faq-item summary::after {
        content: "+";
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1px solid rgba(58, 102, 71, 0.2);
        background: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--green);
        font-size: 1.08rem;
      }
      .faq-item[open] summary::after {
        content: "-";
      }
      .faq-item p {
        color: var(--gray);
        line-height: 1.7;
        padding: 0 18px 18px;
      }

      /* ── İLETİŞİM ── */
      #iletisim {
        background: var(--cream);
      }
      .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
      }
      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 24px;
      }
      .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 18px;
        background: #fff;
        padding: 22px 24px;
        border-radius: 16px;
        border: 1.5px solid rgba(58, 102, 71, 0.08);
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
      }
      .contact-item:hover {
        border-color: var(--green-light);
        box-shadow: 0 4px 20px rgba(58, 102, 71, 0.08);
      }
      .contact-icon {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        background: var(--green-bg);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .contact-icon svg {
        width: 22px;
        height: 22px;
        stroke: var(--green);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      .contact-item h4 {
        font-size: 0.78rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--gray);
        margin-bottom: 4px;
      }
      .contact-item p,
      .contact-item a {
        font-size: 0.98rem;
        color: var(--dark);
        font-weight: 600;
        line-height: 1.5;
        text-decoration: none;
      }
      .contact-item a:hover {
        color: var(--green);
      }
      .map-wrap {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        height: 100%;
        min-height: 380px;
      }
      .map-wrap iframe {
        width: 100%;
        height: 100%;
        min-height: 380px;
        border: none;
        display: block;
      }
      .insta-cta {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(
          135deg,
          #405de6,
          #5851db,
          #833ab4,
          #c13584,
          #e1306c,
          #fd1d1d
        );
        color: #fff;
        font-weight: 800;
        font-size: 1rem;
        padding: 16px 32px;
        border-radius: 50px;
        text-decoration: none;
        margin-top: 8px;
        transition:
          opacity 0.2s,
          transform 0.2s;
      }
      .insta-cta:hover {
        opacity: 0.9;
        transform: translateY(-2px);
      }
      .insta-cta svg {
        width: 20px;
        height: 20px;
        fill: #fff;
      }

      /* ── FOOTER ── */
      footer {
        background: var(--dark);
        color: rgba(255, 255, 255, 0.5);
        text-align: center;
        padding: 32px 20px;
        font-size: 0.85rem;
      }
      footer img {
        height: 75px;
        filter: invert(1) brightness(1.5);
        margin-bottom: 12px;
        opacity: 0.8;
        display: block;
        margin-left: auto;
        margin-right: auto;
      }
      footer a {
        color: var(--gold);
        text-decoration: none;
      }

      .wa-consult-fixed {
        position: fixed;
        right: 24px;
        bottom: 28px;
        z-index: 1000;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 58px;
        padding: 0 18px 0 14px;
        border-radius: 999px;
        background: #25d366;
        color: #fff;
        text-decoration: none;
        font-weight: 900;
        box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
        transition:
          transform 0.2s,
          box-shadow 0.2s,
          filter 0.2s;
      }
      .wa-consult-fixed:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 34px rgba(37, 211, 102, 0.5);
        filter: saturate(1.05);
      }
      .wa-consult-fixed svg {
        width: 30px;
        height: 30px;
        fill: currentColor;
        flex-shrink: 0;
      }
      .wa-consult-fixed span {
        white-space: nowrap;
        font-size: 0.9rem;
        letter-spacing: 0.01em;
      }

      .music-widget {
        position: fixed;
        right: 24px;
        bottom: 96px;
        z-index: 999;
        display: flex;
        align-items: center;
        gap: 10px;
        height: 58px;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(58, 102, 71, 0.12);
        border-radius: 999px;
        box-shadow: 0 8px 28px rgba(28, 34, 25, 0.14);
        backdrop-filter: blur(12px);
      }
      .music-toggle {
        width: 38px;
        height: 38px;
        border: none;
        border-radius: 50%;
        background: var(--green);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition:
          background 0.2s,
          transform 0.2s;
      }
      .music-toggle:hover {
        background: var(--green-light);
        transform: scale(1.05);
      }
      .music-toggle svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
      }
      .music-volume {
        width: 88px;
        accent-color: var(--green);
        cursor: pointer;
      }
      .music-widget.is-blocked .music-toggle {
        background: var(--gold);
        animation: musicPulse 1.8s ease-in-out infinite;
      }
      @keyframes musicPulse {
        0%,
        100% {
          box-shadow: 0 0 0 0 rgba(201, 164, 42, 0.35);
        }
        50% {
          box-shadow: 0 0 0 8px rgba(201, 164, 42, 0);
        }
      }

      /* ── COOKIE / KVKK BANNER ── */
      .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1100;
        background: rgba(28, 34, 25, 0.92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 18px 5%;
        transform: translateY(0);
        transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.35s ease;
        animation: cookieSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
      }
      .cookie-banner.is-hidden {
        animation: none;
        transform: translateY(100%);
        opacity: 0;
        pointer-events: none;
      }
      @keyframes cookieSlideUp {
        from {
          transform: translateY(100%);
          opacity: 0;
        }
        to {
          transform: translateY(0);
          opacity: 1;
        }
      }
      .cookie-banner-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
      }
      .cookie-banner p {
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.88rem;
        line-height: 1.6;
        margin: 0;
      }
      .cookie-banner p strong {
        color: #fff;
      }
      .cookie-banner p a {
        color: var(--gold-light);
        text-decoration: underline;
        text-underline-offset: 2px;
        font-weight: 700;
      }
      .cookie-banner p a:hover {
        color: var(--gold);
      }
      .cookie-accept {
        flex-shrink: 0;
        border: none;
        border-radius: 50px;
        background: var(--green-light);
        color: #fff;
        font-family: inherit;
        font-weight: 900;
        font-size: 0.9rem;
        padding: 12px 28px;
        cursor: pointer;
        transition: background 0.2s, transform 0.2s;
      }
      .cookie-accept:hover {
        background: var(--green);
        transform: translateY(-1px);
      }

      /* ── RESPONSIVE ── */
      @media (max-width: 900px) {
        .about-inner {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .categories-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .cat-card,
        .cat-card--hero,
        .cat-card--wide {
          grid-column: span 1;
        }
        .cat-card--full {
          grid-column: 1 / -1;
          grid-template-columns: auto 1fr;
        }
        .cat-card--full .cat-pulse {
          grid-column: 1 / -1;
        }
        .about-badge {
          bottom: 12px;
          right: 12px;
        }
        .contact-grid {
          grid-template-columns: 1fr;
        }
        .gallery-grid {
          grid-template-columns: 1fr 1fr;
          grid-template-rows: repeat(4, 200px);
        }
        .reviews-layout,
        .review-topic-grid {
          grid-template-columns: 1fr;
        }
        .consult-grid {
          grid-template-columns: 1fr;
        }
        .size-form-grid {
          grid-template-columns: 1fr;
        }
        .g-item {
          grid-column: auto !important;
          grid-row: auto !important;
        }
        /* ── HAMBURGER VISIBLE ── */
        .hamburger-toggle {
          display: flex;
        }
        /* Hide lang-switcher from nav bar on mobile — it goes inside drawer */
        #langSwitcher {
          display: none;
        }
        /* Show lang-switcher inside drawer on mobile */
        .nav-lang-mobile {
          display: flex !important;
          justify-content: center;
          padding: 14px 8px 4px;
          border-bottom: none !important;
        }
        .nav-links.is-open li:nth-child(8) { transition-delay: 0.34s; }

        /* ── MOBILE DRAWER ── */
        .nav-links {
          position: fixed;
          top: 72px;
          left: 0;
          right: 0;
          z-index: 99;
          flex-direction: column;
          background: rgba(250, 248, 243, 0.97);
          backdrop-filter: blur(16px);
          -webkit-backdrop-filter: blur(16px);
          border-bottom: 1.5px solid rgba(58, 102, 71, 0.12);
          box-shadow: 0 16px 48px rgba(28, 34, 25, 0.12);
          padding: 12px 5% 20px;
          gap: 0;
          max-height: 0;
          overflow: hidden;
          opacity: 0;
          pointer-events: none;
          transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                      opacity 0.35s ease,
                      padding 0.35s ease;
        }
        .nav-links.is-open {
          display: flex;
          max-height: 520px;
          opacity: 1;
          pointer-events: auto;
          padding: 16px 5% 24px;
        }
        .nav-links li {
          border-bottom: 1px solid rgba(58, 102, 71, 0.06);
          opacity: 0;
          transform: translateY(-10px);
          transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .nav-links.is-open li {
          opacity: 1;
          transform: translateY(0);
        }
        .nav-links.is-open li:nth-child(1) { transition-delay: 0.06s; }
        .nav-links.is-open li:nth-child(2) { transition-delay: 0.10s; }
        .nav-links.is-open li:nth-child(3) { transition-delay: 0.14s; }
        .nav-links.is-open li:nth-child(4) { transition-delay: 0.18s; }
        .nav-links.is-open li:nth-child(5) { transition-delay: 0.22s; }
        .nav-links.is-open li:nth-child(6) { transition-delay: 0.26s; }
        .nav-links.is-open li:nth-child(7) { transition-delay: 0.30s; }
        .nav-links li:last-child {
          border-bottom: none;
        }
        .nav-links a {
          display: block;
          padding: 14px 8px;
          font-size: 1rem;
          letter-spacing: 0.06em;
        }
        .nav-links a::after {
          display: none;
        }
        .nav-links a:active {
          background: rgba(58, 102, 71, 0.06);
          border-radius: 10px;
        }
      }
      @media (max-width: 600px) {
        section {
          padding: 70px 5%;
        }
        .categories-grid {
          grid-template-columns: 1fr;
        }
        .cat-card,
        .cat-card--hero,
        .cat-card--wide,
        .cat-card--full {
          grid-column: 1 / -1;
        }
        .cat-card {
          min-height: 196px;
          padding: 20px 18px;
        }
        .cat-card--full {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          min-height: 196px;
        }
        .gallery-grid {
          grid-template-columns: 1fr;
          grid-template-rows: none;
        }
        .g-item {
          height: 220px;
        }
        .product-gallery-grid {
          grid-template-columns: repeat(2, 1fr);
          grid-auto-rows: 185px;
          gap: 12px;
        }
        .product-card.featured,
        .product-card.wide,
        .product-card.tall,
        .product-card.small {
          grid-column: span 1;
          grid-row: span 1;
        }
        .product-card.featured {
          grid-column: 1 / -1;
          grid-row: span 2;
        }
        .gallery-note {
          align-items: stretch;
          flex-direction: column;
          padding: 16px;
        }
        .image-modal {
          padding: 16px;
        }
        .image-modal-frame {
          width: 100%;
          height: 82vh;
        }
        .image-modal-close {
          top: 0;
          right: 0;
        }
        .image-modal-prev {
          left: 0;
        }
        .image-modal-next {
          right: 0;
        }
        .review-actions {
          flex-direction: column;
        }
        .wa-consult-fixed {
          right: 16px;
          bottom: 20px;
          width: 58px;
          height: 58px;
          padding: 0;
          border-radius: 50%;
        }
        .wa-consult-fixed span {
          display: none;
        }
        .music-widget {
          right: 16px;
          bottom: 92px;
          padding: 10px 12px;
        }
        .music-volume {
          width: 64px;
        }
        .cookie-banner-inner {
          flex-direction: column;
          text-align: center;
          gap: 14px;
        }
        .cookie-accept {
          width: 100%;
        }
      }

      /* ── ANIMATIONS ── */
      .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: none;
      }
