@charset "UTF-8";
:root {
      --kum: #F5F0E8;
      --zeytin: #7C8C6B;
      --kiremit: #C67D5F;
      --lacivert: #2C3E50;
      --altin: #D4AF37;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Manrope', sans-serif;
      background: var(--kum);
      color: var(--lacivert);
      overflow-x: hidden;
    }

    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--kum);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--zeytin);
      border-radius: 4px;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(124, 140, 107, .4);
      }

      50% {
        box-shadow: 0 0 0 12px rgba(124, 140, 107, 0);
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    .animate-fadeInUp {
      opacity: 0;
      animation: fadeInUp .8s ease-out forwards;
    }

    .animate-fadeIn {
      opacity: 0;
      animation: fadeIn 1s ease-out forwards;
    }

    .animate-pulse-green {
      animation: pulse 2s infinite;
    }

    .animate-float {
      animation: float 3s ease-in-out infinite;
    }

    .nav-glass {
      background: rgba(245, 240, 232, .85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(124, 140, 107, .1);
    }

    .nav-glass.scrolled {
      background: rgba(245, 240, 232, .95);
      box-shadow: 0 4px 30px rgba(0, 0, 0, .05);
    }

    .page {
      display: none;
      opacity: 0;
      transition: opacity .4s ease, transform .4s ease;
    }

    .page.active {
      display: block;
      opacity: 1;
    }

    .hero-overlay {
      background: linear-gradient(to bottom, rgba(44, 62, 80, .4) 0%, rgba(44, 62, 80, .2) 40%, rgba(245, 240, 232, .95) 100%);
    }

    .kalkora-card {
      transition: all .5s cubic-bezier(.4, 0, .2, 1);
      border-radius: 16px;
      overflow: hidden;
    }

    .kalkora-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(44, 62, 80, .12);
    }

    .kalkora-card .card-img {
      transition: transform .7s ease;
    }

    .kalkora-card:hover .card-img {
      transform: scale(1.08);
    }

    .btn-primary {
      background: var(--kiremit);
      color: white;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      transition: all .3s ease;
      display: inline-block;
      text-decoration: none;
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      background: var(--kiremitKoyu);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(198, 125, 95, .3);
    }

    .btn-secondary {
      border: 2px solid var(--lacivert);
      color: var(--lacivert);
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: all .3s ease;
      display: inline-block;
      text-decoration: none;
      background: transparent;
    }

    .btn-secondary:hover {
      background: var(--lacivert);
      color: var(--kum);
    }

    .btn-whatsapp {
      background: #25D366;
      color: white;
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 600;
      transition: all .3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .btn-whatsapp:hover {
      background: #128C7E;
      transform: translateY(-2px);
    }

    .section-label {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      color: var(--kiremit);
      font-size: 1.1rem;
      letter-spacing: .05em;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      color: var(--lacivert);
      line-height: 1.2;
    }

    .form-input {
      width: 100%;
      padding: 14px 18px;
      border: 1.5px solid rgba(44, 62, 80, .15);
      border-radius: 12px;
      background: white;
      font-family: 'Manrope', sans-serif;
      font-size: .95rem;
      transition: all .3s ease;
      color: var(--lacivert);
    }

    .form-input:focus {
      outline: none;
      border-color: var(--zeytin);
      box-shadow: 0 0 0 3px rgba(124, 140, 107, .15);
    }

    .form-label {
      display: block;
      margin-bottom: 6px;
      font-weight: 500;
      font-size: .9rem;
      color: var(--lacivert);
    }

    .mobile-menu {
      transform: translateX(100%);
      transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    }

    .mobile-menu.open {
      transform: translateX(0);
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all .8s cubic-bezier(.4, 0, .2, 1);
    }

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

    .badge-acik {
      background: rgba(124, 140, 107, .15);
      color: var(--zeytinKoyu);
    }

    .badge-kontenjan {
      background: rgba(212, 175, 55, .15);
      color: #9A7B1A;
    }

    .badge-dolu {
      background: rgba(198, 125, 95, .15);
      color: var(--kiremitKoyu);
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: rgba(245, 240, 232, .98);
      backdrop-filter: blur(20px);
      border-radius: 12px;
      padding: 8px 0;
      min-width: 220px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all .3s ease;
      z-index: 100;
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu a {
      display: block;
      padding: 10px 20px;
      font-size: .9rem;
      color: var(--lacivert);
      transition: all .2s;
    }

    .dropdown-menu a:hover {
      background: rgba(124, 140, 107, .08);
      color: var(--kiremit);
    }

    .product-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      transition: all .4s ease;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 32px rgba(44, 62, 80, .1);
    }

    .product-card .product-img {
      transition: transform .5s ease;
    }

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

    .price-tag {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: var(--kiremit);
      font-size: 1.4rem;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .85rem;
      color: rgba(44, 62, 80, .6);
    }

    .breadcrumb a:hover {
      color: var(--kiremit);
    }

    .qty-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1.5px solid rgba(44, 62, 80, .2);
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s;
    }

    .qty-btn:hover {
      border-color: var(--zeytin);
      background: var(--zeytin);
      color: white;
    }

    .qty-input {
      width: 50px;
      text-align: center;
      border: none;
      font-weight: 600;
      font-size: 1.1rem;
      background: transparent;
    }

    .feature-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 0;
      border-bottom: 1px solid rgba(44, 62, 80, .06);
    }

    .feature-list li:last-child {
      border-bottom: none;
    }

    /* Video embed responsive */
    .video-container {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 16px;
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Photo gallery grid */
    .photo-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 12px;
    }

    .photo-gallery img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 12px;
      transition: transform .3s;
    }

    .photo-gallery img:hover {
      transform: scale(1.03);
    }

    /* Event card like product */
    .event-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      transition: all .4s ease;
    }

    .event-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 32px rgba(44, 62, 80, .1);
    }

    .event-card .event-img {
      transition: transform .5s ease;
    }

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

    /* Progress bar */
    #readProgress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--zeytin), var(--kiremit));
      z-index: 200;
      transition: width .1s linear;
      width: 0%;
    }

    /* Scroll to top */
    #scrollTop {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--lacivert);
      color: white;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(44, 62, 80, .25);
      opacity: 0;
      transform: translateY(10px);
      transition: all .3s ease;
      z-index: 100;
    }

    #scrollTop.visible {
      opacity: 1;
      transform: translateY(0);
    }

    #scrollTop:hover {
      background: var(--kiremit);
      transform: translateY(-2px);
    }

    /* Stat counter */
    .stat-card {
      text-align: center;
      padding: 2rem;
    }

    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--kiremit);
      line-height: 1;
    }

    .stat-label {
      font-size: .9rem;
      color: rgba(255, 255, 255, .65);
      margin-top: .5rem;
      font-weight: 500;
    }

    /* Tag badges on cards */
    .tag-badge {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 50px;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .03em;
    }

    /* Better focus styles for accessibility */
    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--kiremit);
      outline-offset: 3px;
      border-radius: 4px;
    }

    /* Image shimmer placeholder */
    .img-placeholder {
      background: linear-gradient(90deg, #f0ece4 25%, #e8e2d8 50%, #f0ece4 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }

    @keyframes shimmer {
      0% {
        background-position: 200% 0
      }

      100% {
        background-position: -200% 0
      }
    }

    /* Improved nav active state */
    .nav-link-active {
      color: var(--kiremit) !important;
    }

    /* Card tags row */
    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: auto;
      padding-top: 12px;
    }

    .card-tag {
      padding: 3px 10px;
      background: rgba(124, 140, 107, .12);
      color: var(--zeytinKoyu);
      border-radius: 50px;
      font-size: .72rem;
      font-weight: 600;
    }

    /* Better hero gradient */
    .hero-overlay-v2 {
      background: linear-gradient(160deg, rgba(44, 62, 80, .55) 0%, rgba(44, 62, 80, .25) 50%, rgba(245, 240, 232, .98) 100%);
    }

    /* Sticky CTA bar - mobile */
    .sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: white;
      border-top: 1px solid rgba(44, 62, 80, .08);
      padding: 12px 16px;
      display: none;
      gap: 10px;
      z-index: 90;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
    }

    @media(max-width:768px) {
      .sticky-cta {
        display: flex;
      }
    }

    /* Divider ornament */
    .ornament-divider {
      display: flex;
      align-items: center;
      gap: 16px;
      margin: 0 auto;
      width: fit-content;
      color: var(--altin);
      opacity: .6;
    }

    .ornament-divider::before,
    .ornament-divider::after {
      content: '';
      display: block;
      width: 60px;
      height: 1px;
      background: var(--altin);
      opacity: .5;
    }

    /* Highlight box */
    .highlight-box {
      background: linear-gradient(135deg, rgba(124, 140, 107, .08), rgba(212, 175, 55, .06));
      border: 1px solid rgba(124, 140, 107, .2);
      border-radius: 16px;
      padding: 1.5rem 2rem;
    }

    /* Smooth page transitions */
    .page.active {
      transform: translateY(0);
    }

    /* ===== CART SYSTEM ===== */
    .cart-icon-btn {
      position: relative;
      padding: 8px;
      border: none;
      background: transparent;
      cursor: pointer;
      color: var(--lacivert);
      transition: color .2s;
    }

    .cart-icon-btn:hover {
      color: var(--kiremit);
    }

    .cart-count-badge {
      position: absolute;
      top: 2px;
      right: 2px;
      min-width: 18px;
      height: 18px;
      background: var(--kiremit);
      color: white;
      border-radius: 50px;
      font-size: .65rem;
      font-weight: 700;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 0 4px;
    }

    .cart-count-badge.show {
      display: flex;
    }

    .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(44, 62, 80, .45);
      backdrop-filter: blur(4px);
      z-index: 150;
      opacity: 0;
      visibility: hidden;
      transition: all .3s;
    }

    .cart-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .cart-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(440px, 100vw);
      background: var(--kum);
      z-index: 160;
      transform: translateX(100%);
      transition: transform .4s cubic-bezier(.4, 0, .2, 1);
      display: flex;
      flex-direction: column;
      box-shadow: -8px 0 40px rgba(44, 62, 80, .18);
    }

    .cart-drawer.open {
      transform: translateX(0);
    }

    .cart-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      border-bottom: 1px solid rgba(44, 62, 80, .1);
      background: white;
      flex-shrink: 0;
    }

    .cart-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--lacivert);
      margin: 0;
    }

    .cart-close-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1.5px solid rgba(44, 62, 80, .15);
      background: transparent;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      transition: all .2s;
      color: var(--lacivert);
    }

    .cart-close-btn:hover {
      background: var(--kiremit);
      color: white;
      border-color: var(--kiremit);
    }

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

    .cart-empty-state {
      text-align: center;
      padding: 60px 20px;
    }

    .cart-empty-state .empty-icon {
      font-size: 3.5rem;
      margin-bottom: 16px;
      opacity: .5;
    }

    .cart-empty-state p {
      color: rgba(44, 62, 80, .6);
      font-size: .95rem;
    }

    .cart-empty-state strong {
      color: var(--lacivert);
      display: block;
      font-size: 1.1rem;
      margin-bottom: 8px;
    }

    .cart-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(44, 62, 80, .07);
    }

    .cart-item-info {
      flex: 1;
      min-width: 0;
    }

    .cart-item-name {
      font-weight: 600;
      font-size: .9rem;
      color: var(--lacivert);
      margin-bottom: 3px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .cart-item-unit {
      font-size: .8rem;
      color: rgba(44, 62, 80, .55);
    }

    .cart-item-subtotal {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: var(--kiremit);
      font-size: 1rem;
      white-space: nowrap;
    }

    .cart-item-controls {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }

    .cart-qty-btn {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1.5px solid rgba(44, 62, 80, .2);
      background: white;
      cursor: pointer;
      font-size: 1rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
      color: var(--lacivert);
    }

    .cart-qty-btn:hover {
      border-color: var(--zeytin);
      background: var(--zeytin);
      color: white;
    }

    .cart-qty-num {
      min-width: 22px;
      text-align: center;
      font-weight: 700;
      font-size: .9rem;
    }

    .cart-remove-btn {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: none;
      background: rgba(198, 125, 95, .12);
      color: var(--kiremit);
      cursor: pointer;
      font-size: .75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: 4px;
      transition: all .2s;
    }

    .cart-remove-btn:hover {
      background: var(--kiremit);
      color: white;
    }

    .cart-footer {
      padding: 20px 24px;
      border-top: 1px solid rgba(44, 62, 80, .1);
      background: white;
      flex-shrink: 0;
    }

    .cart-total-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
    }

    .cart-total-label {
      font-size: .9rem;
      color: rgba(44, 62, 80, .65);
    }

    .cart-total-amount {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--lacivert);
    }

    .cart-delivery-note {
      font-size: .8rem;
      color: rgba(44, 62, 80, .55);
      margin-bottom: 16px;
      padding: 8px 12px;
      background: rgba(124, 140, 107, .08);
      border-radius: 8px;
      text-align: center;
    }

    .cart-send-wa {
      background: #25D366;
      color: white;
      width: 100%;
      padding: 14px;
      border-radius: 50px;
      border: none;
      font-weight: 600;
      font-size: .95rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all .3s;
      margin-bottom: 10px;
    }

    .cart-send-wa:hover {
      background: #128C7E;
      transform: translateY(-1px);
    }

    .cart-send-email {
      width: 100%;
      padding: 12px;
      border-radius: 50px;
      border: 2px solid var(--lacivert);
      background: transparent;
      color: var(--lacivert);
      font-weight: 600;
      font-size: .9rem;
      cursor: pointer;
      transition: all .3s;
      margin-bottom: 10px;
    }

    .cart-send-email:hover {
      background: var(--lacivert);
      color: white;
    }

    .cart-clear-link {
      display: block;
      text-align: center;
      font-size: .8rem;
      color: rgba(44, 62, 80, .45);
      cursor: pointer;
      text-decoration: underline;
    }

    .cart-clear-link:hover {
      color: var(--kiremit);
    }

    /* Add to cart button on product cards */
    .add-to-cart-btn {
      background: var(--zeytin);
      color: white;
      border: none;
      padding: 7px 14px;
      border-radius: 50px;
      font-size: .78rem;
      font-weight: 700;
      cursor: pointer;
      transition: all .25s;
      white-space: nowrap;
      letter-spacing: .02em;
    }

    .add-to-cart-btn:hover {
      background: var(--zeytinKoyu);
      transform: translateY(-1px);
      box-shadow: 0 4px 10px rgba(124, 140, 107, .3);
    }

    .add-to-cart-btn.added {
      background: var(--kiremit);
    }

    /* Toast */
    .cart-toast {
      position: fixed;
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      background: var(--lacivert);
      color: white;
      padding: 10px 20px;
      border-radius: 50px;
      font-size: .85rem;
      font-weight: 600;
      z-index: 300;
      opacity: 0;
      transition: all .3s;
      pointer-events: none;
      white-space: nowrap;
    }

    .cart-toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    /* ===== ORDER FORM MODAL ===== */
    .order-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(44, 62, 80, .55);
      backdrop-filter: blur(6px);
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: all .3s;
    }

    .order-modal-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .order-modal {
      background: white;
      border-radius: 24px;
      width: 100%;
      max-width: 520px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 24px 80px rgba(44, 62, 80, .25);
      transform: scale(.95) translateY(10px);
      transition: transform .3s ease;
    }

    .order-modal-overlay.open .order-modal {
      transform: scale(1) translateY(0);
    }

    .order-modal-header {
      padding: 24px 28px 0;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .order-modal-header h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--lacivert);
    }

    .order-modal-header p {
      font-size: .85rem;
      color: rgba(44, 62, 80, .55);
      margin-top: 4px;
    }

    .order-modal-close {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1.5px solid rgba(44, 62, 80, .15);
      background: transparent;
      cursor: pointer;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all .2s;
      color: var(--lacivert);
    }

    .order-modal-close:hover {
      background: var(--kiremit);
      color: white;
      border-color: var(--kiremit);
    }

    .order-modal-summary {
      margin: 16px 28px;
      padding: 14px 16px;
      background: var(--kum);
      border-radius: 12px;
      font-size: .85rem;
    }

    .order-modal-summary-row {
      display: flex;
      justify-content: space-between;
      color: rgba(44, 62, 80, .7);
      margin-bottom: 4px;
    }

    .order-modal-summary-row:last-child {
      margin-bottom: 0;
      font-weight: 700;
      color: var(--lacivert);
      border-top: 1px solid rgba(44, 62, 80, .1);
      padding-top: 8px;
      margin-top: 8px;
    }

    .order-modal-summary-total {
      font-family: 'Playfair Display', serif;
      color: var(--kiremit);
      font-size: 1rem;
    }

    .order-modal-body {
      padding: 8px 28px 28px;
    }

    .order-field {
      margin-bottom: 16px;
    }

    .order-field label {
      display: block;
      font-size: .85rem;
      font-weight: 600;
      color: var(--lacivert);
      margin-bottom: 6px;
    }

    .order-field label span {
      color: var(--kiremit);
    }

    .order-field input,
    .order-field textarea,
    .order-field select {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid rgba(44, 62, 80, .15);
      border-radius: 10px;
      font-family: 'Manrope', sans-serif;
      font-size: .9rem;
      color: var(--lacivert);
      background: white;
      transition: border-color .2s;
      outline: none;
    }

    .order-field input:focus,
    .order-field textarea:focus,
    .order-field select:focus {
      border-color: var(--zeytin);
      box-shadow: 0 0 0 3px rgba(124, 140, 107, .12);
    }

    .order-field input.error,
    .order-field textarea.error,
    .order-field select.error {
      border-color: var(--kiremit);
      box-shadow: 0 0 0 3px rgba(198, 125, 95, .12);
    }

    .order-field textarea {
      resize: vertical;
      min-height: 72px;
    }

    .order-field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .order-delivery-opts {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .order-delivery-opt {
      position: relative;
    }

    .order-delivery-opt input[type=radio] {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    .order-delivery-opt label {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 10px 8px;
      border: 1.5px solid rgba(44, 62, 80, .15);
      border-radius: 10px;
      cursor: pointer;
      text-align: center;
      transition: all .2s;
      font-size: .82rem;
      font-weight: 600;
      color: rgba(44, 62, 80, .7);
      gap: 3px;
    }

    .order-delivery-opt input:checked+label {
      border-color: var(--zeytin);
      background: rgba(124, 140, 107, .08);
      color: var(--zeytinKoyu);
    }

    .order-delivery-opt label:hover {
      border-color: var(--zeytin);
    }

    .order-send-btn {
      width: 100%;
      padding: 15px;
      background: #25D366;
      color: white;
      border: none;
      border-radius: 50px;
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all .3s;
      margin-top: 20px;
    }

    .order-send-btn:hover {
      background: #128C7E;
      transform: translateY(-1px);
    }

    .order-send-btn:disabled {
      opacity: .6;
      cursor: not-allowed;
      transform: none;
    }

    .order-divider {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 14px 0 4px;
      color: rgba(44, 62, 80, .35);
      font-size: .8rem;
    }

    .order-divider::before,
    .order-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(44, 62, 80, .1);
    }

    .order-num-badge {
      display: inline-block;
      background: rgba(212, 175, 55, .15);
      color: #9A7B1A;
      padding: 3px 10px;
      border-radius: 50px;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .02em;
    }

    .order-error-msg {
      font-size: .78rem;
      color: var(--kiremit);
      margin-top: 4px;
      display: none;
    }

    .order-field.has-error .order-error-msg {
      display: block;
    }

    /* ===== MEMBERSHIP CARDS ===== */
    .membership-card {
      position: relative;
      border-radius: 20px;
      padding: 28px 30px;
      width: 100%;
      aspect-ratio: 1.586/1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .2), 0 4px 12px rgba(0, 0, 0, .1);
      overflow: hidden;
      cursor: pointer;
      transition: transform .4s ease, box-shadow .4s ease;
      font-family: 'Manrope', sans-serif;
    }

    .membership-card:hover {
      transform: translateY(-8px) rotate(1deg);
      box-shadow: 0 32px 80px rgba(0, 0, 0, .28);
    }

    .membership-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0%, transparent 50%, rgba(0, 0, 0, .1) 100%);
      border-radius: 20px;
      pointer-events: none;
    }

    .membership-card::after {
      content: '';
      position: absolute;
      top: -60%;
      right: -20%;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .07);
      pointer-events: none;
    }

    /* Tohum — Toprak */
    .card-tohum {
      background: linear-gradient(135deg, #8B7355 0%, #C4956A 40%, #A0785A 100%);
      color: white;
    }

    /* Filiz — Zeytin Yeşili */
    .card-filiz {
      background: linear-gradient(135deg, #4A5E42 0%, #7C8C6B 45%, #5E6B50 100%);
      color: white;
    }

    /* Ağaç — Lacivert & Altın */
    .card-agac {
      background: linear-gradient(135deg, #1a2a3a 0%, #2C3E50 50%, #1a2533 100%);
      color: white;
    }

    .card-agac .card-chip {
      background: linear-gradient(135deg, #D4AF37, #f0d060, #D4AF37);
    }

    .card-agac .card-tier {
      color: #D4AF37;
    }

    .card-agac .card-discount-badge {
      background: rgba(212, 175, 55, .2);
      border: 1px solid rgba(212, 175, 55, .4);
      color: #D4AF37;
    }

    /* Orman — Koyu Yeşil premium */
    .card-orman {
      background: linear-gradient(135deg, #1a2e1a 0%, #2d4a2d 50%, #1a2e1a 100%);
      color: white;
    }

    .card-orman .card-chip {
      background: linear-gradient(135deg, #c8e6c9, #81c784, #c8e6c9);
    }

    .card-orman .card-tier {
      color: #81c784;
    }

    .card-orman .card-discount-badge {
      background: rgba(129, 199, 132, .15);
      border: 1px solid rgba(129, 199, 132, .3);
      color: #81c784;
    }

    .card-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .card-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      opacity: .9;
      letter-spacing: .02em;
    }

    .card-logo span {
      opacity: .6;
      font-weight: 400;
      font-style: italic;
      font-size: .8rem;
      display: block;
      margin-top: 2px;
    }

    .card-chip {
      width: 42px;
      height: 32px;
      border-radius: 6px;
      background: linear-gradient(135deg, #d4a843, #f5d76e, #d4a843);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .card-chip-lines {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .card-chip-lines span {
      display: block;
      width: 28px;
      height: 2px;
      background: rgba(0, 0, 0, .25);
      border-radius: 1px;
    }

    .card-chip-lines span:nth-child(2) {
      width: 20px;
    }

    .card-tier {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      line-height: 1;
      color: rgba(255, 255, 255, .9);
    }

    .card-tier-sub {
      font-size: .72rem;
      opacity: .55;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-top: 3px;
    }

    .card-footer {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }

    .card-price-block .card-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
    }

    .card-price-block .card-price-sub {
      font-size: .7rem;
      opacity: .55;
      margin-top: 1px;
    }

    .card-discount-badge {
      background: rgba(255, 255, 255, .15);
      border: 1px solid rgba(255, 255, 255, .25);
      color: rgba(255, 255, 255, .9);
      padding: 5px 12px;
      border-radius: 50px;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .02em;
    }

    .card-nfc {
      width: 28px;
      height: 28px;
      opacity: .4;
    }

    /* Kalko Sepeti Cards */
    .sepet-card {
      border-radius: 20px;
      padding: 28px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .sepet-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 64px rgba(0, 0, 0, .18);
    }

    .sepet-card-s {
      background: linear-gradient(135deg, #f8f4ed, #ede6d8);
      border: 2px solid rgba(124, 140, 107, .3);
    }

    .sepet-card-l {
      background: linear-gradient(135deg, #2C3E50, #3d5166);
      color: white;
    }

    .sepet-card-xl {
      background: linear-gradient(135deg, #1a1a0e, #2d2d1a);
      color: white;
    }

    .sepet-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: 50px;
      font-size: .78rem;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .sepet-card-s .sepet-badge {
      background: rgba(124, 140, 107, .12);
      color: var(--zeytinKoyu);
    }

    .sepet-card-l .sepet-badge {
      background: rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .9);
    }

    .sepet-card-xl .sepet-badge {
      background: rgba(212, 175, 55, .2);
      color: #D4AF37;
    }

    .sepet-amount-pay {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 700;
      line-height: 1;
    }

    .sepet-card-xl .sepet-amount-pay {
      color: #D4AF37;
    }

    .sepet-amount-get {
      font-size: .85rem;
      opacity: .6;
      margin-top: 4px;
    }

    .sepet-divider {
      height: 1px;
      background: rgba(255, 255, 255, .1);
      margin: 16px 0;
    }

    .sepet-card-s .sepet-divider {
      background: rgba(44, 62, 80, .1);
    }

    .sepet-saving {
      font-size: .85rem;
      font-weight: 700;
    }

    .sepet-card-s .sepet-saving {
      color: var(--zeytinKoyu);
    }

    .sepet-card-l .sepet-saving {
      color: #81c784;
    }

    .sepet-card-xl .sepet-saving {
      color: #D4AF37;
    }

    .sepet-features {
      list-style: none;
      margin-top: 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .sepet-features li {
      font-size: .82rem;
      opacity: .75;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .sepet-features li::before {
      content: '✓';
      font-weight: 700;
      opacity: 1;
      flex-shrink: 0;
    }

    .sepet-card-s .sepet-features li::before {
      color: var(--zeytin);
    }

    /* Comparison table */
    .compare-table {
      width: 100%;
      border-collapse: collapse;
    }

    .compare-table th {
      padding: 12px 16px;
      text-align: center;
      font-size: .82rem;
      font-weight: 700;
    }

    .compare-table td {
      padding: 11px 16px;
      font-size: .82rem;
      border-bottom: 1px solid rgba(44, 62, 80, .06);
    }

    .compare-table tr:last-child td {
      border-bottom: none;
    }

    .compare-table td:first-child {
      font-weight: 500;
      color: rgba(44, 62, 80, .7);
    }

    .compare-table td:not(:first-child) {
      text-align: center;
    }

    .compare-table tr:hover td {
      background: rgba(124, 140, 107, .04);
    }

    .compare-check {
      color: var(--zeytin);
      font-weight: 700;
    }

    .compare-dash {
      color: rgba(44, 62, 80, .25);
    }

    .compare-head-tohum {
      background: linear-gradient(135deg, #8B7355, #C4956A);
      color: white;
      border-radius: 8px 8px 0 0;
    }

    .compare-head-filiz {
      background: linear-gradient(135deg, #4A5E42, #7C8C6B);
      color: white;
      border-radius: 8px 8px 0 0;
    }

    .compare-head-agac {
      background: linear-gradient(135deg, #1a2a3a, #2C3E50);
      color: #D4AF37;
      border-radius: 8px 8px 0 0;
    }

    .compare-head-orman {
      background: linear-gradient(135deg, #1a2e1a, #2d4a2d);
      color: #81c784;
      border-radius: 8px 8px 0 0;
    }

    .compare-section-header td {
      background: rgba(44, 62, 80, .04);
      font-weight: 700;
      font-size: .78rem;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: rgba(44, 62, 80, .5);
      padding: 10px 16px;
    }

    /* Sütun arka plan renkleri — başlıktan en alta kadar */
    .compare-table td:nth-child(2) {
      background: rgba(139, 115, 85, .07);
    }

    .compare-table td:nth-child(3) {
      background: rgba(74, 94, 66, .07);
    }

    .compare-table td:nth-child(4) {
      background: rgba(26, 42, 58, .07);
    }

    .compare-table td:nth-child(5) {
      background: rgba(26, 46, 26, .08);
    }

    .compare-table tr:hover td:nth-child(2) {
      background: rgba(139, 115, 85, .13);
    }

    .compare-table tr:hover td:nth-child(3) {
      background: rgba(74, 94, 66, .13);
    }

    .compare-table tr:hover td:nth-child(4) {
      background: rgba(26, 42, 58, .13);
    }

    .compare-table tr:hover td:nth-child(5) {
      background: rgba(26, 46, 26, .14);
    }

    .compare-table .compare-section-header td:nth-child(n) {
      background: rgba(44, 62, 80, .04);
    }

    /* Product detail page cart button */
    .product-detail-cart {
      background: var(--zeytin);
      color: white;
      width: 100%;
      padding: 14px;
      border-radius: 50px;
      border: none;
      font-weight: 600;
      font-size: .95rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all .3s;
      margin-bottom: 10px;
    }

    .product-detail-cart:hover {
      background: var(--zeytinKoyu);
      transform: translateY(-1px);
    }

    /* ════════════════════════════════════════════════════════════
   ✦ 2026 DESIGN UPGRADE LAYER ✦
   Bold tipografi · Hero slider · Glassmorphism · Organik palet
   ════════════════════════════════════════════════════════════ */
    :root {
      --grad-warm: linear-gradient(135deg, #C67D5F 0%, #D4AF37 100%);
      --grad-nature: linear-gradient(135deg, #7C8C6B 0%, #5E6B50 100%);
      --grad-mesh: radial-gradient(at 0% 0%, rgba(124, 140, 107, .18) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(198, 125, 95, .15) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(212, 175, 55, .12) 0px, transparent 50%);
      --glass-bg: rgba(255, 255, 255, .55);
      --glass-border: rgba(255, 255, 255, .6);
      --shadow-soft: 0 8px 32px rgba(44, 62, 80, .10);
      --shadow-lift: 0 24px 60px -12px rgba(44, 62, 80, .22);
    }

    /* ── Mesh-grain body background ── */
    body {
      background: var(--kum);
      background-image: var(--grad-mesh);
      background-attachment: fixed;
    }

    /* ── BOLD 2026 TYPOGRAPHY ── */
    .section-title {
      font-family: 'Fraunces', 'Playfair Display', serif;
      font-weight: 700;
      letter-spacing: -.02em;
      font-optical-sizing: auto;
    }

    h1.font-serif,
    .hero-title {
      font-family: 'Fraunces', 'Playfair Display', serif !important;
      font-weight: 900 !important;
      letter-spacing: 0 !important;
      line-height: .95 !important;
    }

    .section-label {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-style: normal;
      text-transform: uppercase;
      letter-spacing: .22em;
      font-size: .78rem;
      font-weight: 700;
      color: var(--kiremit);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .section-label::before {
      content: '';
      width: 28px;
      height: 2px;
      background: var(--grad-warm);
      border-radius: 2px;
    }

    .kalkora-card h3,
    .product-card h3,
    .event-card h3 {
      letter-spacing: -.01em;
    }

    /* ── GLASSMORPHISM NAV ── */
    .nav-glass {
      background: rgba(245, 240, 232, .62) !important;
      backdrop-filter: blur(24px) saturate(160%) !important;
      -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
      border-bottom: 1px solid rgba(255, 255, 255, .4) !important;
    }

    .nav-glass.scrolled {
      background: rgba(245, 240, 232, .82) !important;
      box-shadow: 0 8px 32px rgba(44, 62, 80, .08) !important;
    }

    /* ── GLASS CARDS ── */
    .kalkora-card {
      border-radius: 24px !important;
      border: 1px solid rgba(255, 255, 255, .35);
      box-shadow: var(--shadow-soft);
      position: relative;
      isolation: isolate;
    }

    .kalkora-card:hover {
      transform: translateY(-10px) scale(1.01) !important;
      box-shadow: var(--shadow-lift) !important;
    }

    .product-card,
    .event-card {
      border-radius: 22px !important;
      border: 1px solid rgba(44, 62, 80, .05);
      background: rgba(255, 255, 255, .7) !important;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: var(--shadow-soft) !important;
    }

    .product-card:hover,
    .event-card:hover {
      transform: translateY(-8px) !important;
      box-shadow: var(--shadow-lift) !important;
    }

    /* ── PILL BUTTONS w/ shine ── */
    .btn-primary {
      background: var(--grad-warm) !important;
      background-size: 160% 160% !important;
      box-shadow: 0 8px 24px -6px rgba(198, 125, 95, .5);
      position: relative;
      overflow: hidden;
      transition: all .4s cubic-bezier(.4, 0, .2, 1) !important;
    }

    .btn-primary::after {
      content: '';
      position: absolute;
      top: 0;
      left: -120%;
      width: 80%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .5), transparent);
      transform: skewX(-20deg);
      transition: left .6s ease;
    }

    .btn-primary:hover::after {
      left: 140%;
    }

    .btn-primary:hover {
      transform: translateY(-3px) !important;
      box-shadow: 0 14px 32px -6px rgba(198, 125, 95, .55) !important;
    }

    .btn-secondary {
      backdrop-filter: blur(8px);
      border-width: 1.5px !important;
      transition: all .35s ease !important;
    }

    /* ── HERO SLIDER ── */
    .hero-slider {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: scale(1.08);
      will-change: opacity, transform;
      transition: opacity 1.4s ease, transform 7s ease;
    }

    .hero-slide.active {
      opacity: 1;
      transform: scale(1);
    }

    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-slider-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(circle at 50% 36%, rgba(20, 29, 39, .46) 0%, rgba(20, 29, 39, .18) 42%, rgba(20, 29, 39, 0) 68%),
        linear-gradient(180deg, rgba(44, 62, 80, .68) 0%, rgba(44, 62, 80, .52) 45%, rgba(245, 240, 232, .94) 100%);
    }

    .hero-dots {
      position: absolute;
      bottom: 90px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 12;
      display: flex;
      gap: 10px;
    }

    .hero-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .45);
      border: none;
      cursor: pointer;
      transition: all .35s ease;
      padding: 0;
    }

    .hero-dot.active {
      width: 34px;
      border-radius: 6px;
      background: #fff;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      border-radius: 50px;
      background: rgba(255, 255, 255, .16);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, .3);
      color: #fff;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .04em;
    }

    .hero-badge .pulse-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--altin);
      box-shadow: 0 0 0 0 rgba(212, 175, 55, .6);
      animation: pulse 2s infinite;
    }

    .hero-anim {
      animation: heroContentIn .7s cubic-bezier(.4, 0, .2, 1);
    }

    #heroContent {
      position: relative;
      z-index: 11;
    }

    .hero-eyebrow,
    .hero-title,
    .hero-desc,
    #heroCta {
      position: relative;
      z-index: 2;
      opacity: 1 !important;
      visibility: visible !important;
      transform: none;
    }

    .hero-title {
      display: block !important;
      color: #fff !important;
      -webkit-text-fill-color: #fff !important;
      font-size: clamp(3.5rem, 9vw, 7rem) !important;
      line-height: .9 !important;
      text-shadow: 0 16px 40px rgba(0, 0, 0, .22);
    }

    .hero-desc {
      color: rgba(255, 255, 255, .92) !important;
      -webkit-text-fill-color: rgba(255, 255, 255, .92) !important;
    }

    @keyframes heroContentIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-slide {
      cursor: pointer;
    }

    /* ── ORNAMENT / STATS glow ── */
    .stat-number {
      background: var(--grad-warm);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* ── Section label centered fix (when in centered headers keep before line) ── */
    .text-center .section-label {
      justify-content: center;
    }

    /* ── Smooth reveal upgrade ── */
    .reveal {
      transform: translateY(40px);
    }

    /* ── Icon bubbles get gradient ring ── */
    .kalkora-card .w-14.h-14 {
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
    }

    /* ── Floating scroll cue glass ── */
    .animate-float svg {
      filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .15));
    }

    /* ── Footer / dark sections richer ── */
    .bg-lacivert {
      background: linear-gradient(135deg, #2C3E50 0%, #1f2d3a 100%) !important;
    }

    /* ── Mobile hero tweaks ── */
    @media(max-width:768px) {
      .hero-dots {
        bottom: 70px;
      }

      h1.font-serif {
        line-height: 1 !important;
      }
    }

    /* ---- Market kategori kartları ---- */
    .market-cat {
      position: relative;
      display: block;
      height: 360px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(44, 62, 80, .10);
      transition: transform .5s cubic-bezier(.4, 0, .2, 1), box-shadow .5s;
    }

    .market-cat:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 50px rgba(44, 62, 80, .22);
    }

    .market-cat img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s cubic-bezier(.4, 0, .2, 1);
    }

    .market-cat:hover img {
      transform: scale(1.1);
    }

    .market-cat-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26, 42, 58, .92) 0%, rgba(26, 42, 58, .45) 45%, rgba(26, 42, 58, .08) 100%);
      transition: background .5s;
    }

    .market-cat:hover .market-cat-overlay {
      background: linear-gradient(to top, rgba(26, 42, 58, .95) 0%, rgba(26, 42, 58, .55) 55%, rgba(26, 42, 58, .15) 100%);
    }

    .market-cat-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
      transition: transform .5s;
    }

    .market-cat:hover .market-cat-badge {
      transform: scale(1.1) rotate(-6deg);
    }

    .market-cat-count {
      position: absolute;
      top: 24px;
      right: 16px;
      font-size: 12px;
      font-weight: 600;
      color: #fff;
      background: rgba(255, 255, 255, .18);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255, 255, 255, .25);
      padding: 5px 12px;
      border-radius: 999px;
    }

    .market-cat-body {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 24px;
      text-align: left;
    }

    .market-cat-desc {
      color: rgba(255, 255, 255, .78);
      font-size: 14px;
      line-height: 1.5;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: all .5s ease;
    }

    .market-cat:hover .market-cat-desc {
      max-height: 80px;
      opacity: 1;
      margin-bottom: 14px;
    }

    .market-cat-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #fff;
      font-weight: 600;
      font-size: 14px;
      margin-top: 10px;
      transition: gap .3s;
    }

    .market-cat:hover .market-cat-cta {
      gap: 14px;
    }

    @media (max-width:640px) {
      .market-cat {
        height: 300px;
      }

      .market-cat-desc {
        max-height: 80px;
        opacity: 1;
        margin-bottom: 14px;
      }
    }

    /* ---- Kalkoralılar video reels ---- */
    .reels-row {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      padding: 8px 4px 26px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .reels-row::-webkit-scrollbar {
      height: 6px;
    }

    .reels-row::-webkit-scrollbar-thumb {
      background: rgba(44, 62, 80, .2);
      border-radius: 3px;
    }

    .reel-card {
      position: relative;
      flex: 0 0 auto;
      width: 240px;
      aspect-ratio: 9/16;
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      scroll-snap-align: start;
      box-shadow: 0 8px 24px rgba(44, 62, 80, .12);
      transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s;
    }

    .reel-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 44px rgba(44, 62, 80, .22);
    }

    .reel-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s;
    }

    .reel-card:hover img {
      transform: scale(1.07);
    }

    .reel-card-grad {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26, 42, 58, .92) 0%, rgba(26, 42, 58, .10) 48%, rgba(26, 42, 58, .28) 100%);
    }

    .reel-play {
      position: absolute;
      top: 46%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .92);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
      transition: transform .3s;
    }

    .reel-card:hover .reel-play {
      transform: translate(-50%, -50%) scale(1.12);
    }

    .reel-play svg {
      width: 22px;
      height: 22px;
      color: var(--kiremit);
      margin-left: 3px;
    }

    .reel-tag {
      position: absolute;
      top: 14px;
      left: 14px;
      font-size: 11px;
      font-weight: 600;
      color: #fff;
      background: rgba(129, 199, 132, .9);
      padding: 4px 10px;
      border-radius: 999px;
      backdrop-filter: blur(4px);
    }

    .reel-body {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 18px;
      text-align: left;
    }

    .reel-name {
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      line-height: 1.2;
    }

    .reel-role {
      color: rgba(255, 255, 255, .7);
      font-size: 12px;
      margin-bottom: 7px;
    }

    .reel-quote {
      color: rgba(255, 255, 255, .92);
      font-size: 13px;
      line-height: 1.45;
      font-style: italic;
    }

    .reel-modal {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(10, 15, 20, .85);
      backdrop-filter: blur(6px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .reel-modal.open {
      display: flex;
    }

    .reel-modal-inner {
      position: relative;
      width: min(380px, 92vw);
      aspect-ratio: 9/16;
      background: #000;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
    }

    .reel-modal-inner video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .reel-modal-poster {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .reel-modal-fallback {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px;
      background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .15) 70%);
    }

    .reel-modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 5;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .16);
      backdrop-filter: blur(4px);
      color: #fff;
      border: none;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .reel-modal-close:hover {
      background: rgba(255, 255, 255, .3);
    }

    .reel-soon {
      display: inline-block;
      background: rgba(212, 175, 55, .92);
      color: #1a2a3a;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 999px;
      margin-bottom: 12px;
      width: fit-content;
    }

    /* ---- Dil seçici ---- */
    .lang-switch {
      position: relative;
    }

    .lang-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 12px;
      border-radius: 50px;
      border: 1px solid rgba(44, 62, 80, .15);
      background: rgba(255, 255, 255, .6);
      font-size: .85rem;
      font-weight: 600;
      color: var(--lacivert);
      cursor: pointer;
      transition: all .2s;
    }

    .lang-btn:hover {
      border-color: var(--kiremit);
      color: var(--kiremit);
    }

    .lang-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 12px 30px rgba(44, 62, 80, .18);
      padding: 6px;
      min-width: 170px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: all .2s;
      z-index: 60;
    }

    .lang-menu.open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .lang-menu button {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
      padding: 10px 12px;
      border: none;
      background: none;
      border-radius: 10px;
      font-size: .9rem;
      color: var(--lacivert);
      cursor: pointer;
      text-align: left;
      font-family: inherit;
    }

    .lang-menu button:hover {
      background: rgba(44, 62, 80, .05);
    }

    .lang-menu button .lang-soon {
      margin-left: auto;
      font-size: .62rem;
      background: var(--altin);
      color: #fff;
      padding: 2px 7px;
      border-radius: 999px;
      font-weight: 700;
      letter-spacing: .02em;
    }

    .lang-toast {
      position: fixed;
      bottom: 90px;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: var(--lacivert);
      color: #fff;
      padding: 13px 24px;
      border-radius: 50px;
      font-size: .9rem;
      font-weight: 500;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
      opacity: 0;
      visibility: hidden;
      transition: all .3s;
      z-index: 300;
      white-space: nowrap;
    }

    .lang-toast.show {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    /* ---- KVKK / Çerez ---- */
    .kvkk-banner {
      position: fixed;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%) translateY(140%);
      width: min(940px, calc(100% - 32px));
      background: #fff;
      border: 1px solid rgba(44, 62, 80, .1);
      border-radius: 18px;
      box-shadow: 0 16px 50px rgba(44, 62, 80, .22);
      padding: 18px 22px;
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      z-index: 250;
      transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    }

    .kvkk-banner.show {
      transform: translateX(-50%) translateY(0);
    }

    .kvkk-banner p {
      flex: 1;
      min-width: 240px;
      font-size: .88rem;
      color: var(--lacivert);
      line-height: 1.55;
      margin: 0;
    }

    .kvkk-banner a {
      color: var(--kiremit);
      font-weight: 600;
      text-decoration: underline;
      cursor: pointer;
    }

    .kvkk-actions {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
    }

    .kvkk-accept {
      background: var(--zeytin);
      color: #fff;
      border: none;
      padding: 11px 24px;
      border-radius: 50px;
      font-weight: 600;
      font-size: .85rem;
      cursor: pointer;
      transition: all .2s;
      font-family: inherit;
    }

    .kvkk-accept:hover {
      background: var(--zeytinKoyu);
      transform: translateY(-1px);
    }

    .kvkk-detail {
      background: transparent;
      color: var(--lacivert);
      border: 1px solid rgba(44, 62, 80, .2);
      padding: 11px 20px;
      border-radius: 50px;
      font-weight: 600;
      font-size: .85rem;
      cursor: pointer;
      transition: all .2s;
      font-family: inherit;
    }

    .kvkk-detail:hover {
      border-color: var(--lacivert);
    }

    .kvkk-modal {
      position: fixed;
      inset: 0;
      z-index: 300;
      background: rgba(10, 15, 20, .7);
      backdrop-filter: blur(5px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .kvkk-modal.open {
      display: flex;
    }

    .kvkk-modal-box {
      position: relative;
      background: #fff;
      border-radius: 22px;
      max-width: 680px;
      width: 100%;
      max-height: 84vh;
      overflow-y: auto;
      padding: 40px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
    }

    .kvkk-modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(44, 62, 80, .07);
      border: none;
      font-size: 18px;
      cursor: pointer;
      color: var(--lacivert);
    }

    .kvkk-modal-close:hover {
      background: rgba(44, 62, 80, .14);
    }

    .kvkk-modal-box h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--lacivert);
      margin-bottom: 8px;
    }

    .kvkk-modal-box h4 {
      font-weight: 700;
      color: var(--lacivert);
      margin: 20px 0 6px;
      font-size: 1rem;
    }

    .kvkk-text {
      color: rgba(44, 62, 80, .78);
      font-size: .92rem;
      line-height: 1.7;
    }

    .kvkk-text p {
      margin-bottom: 12px;
    }

    .kvkk-text ul {
      list-style: disc;
      padding-left: 20px;
      margin-bottom: 12px;
    }

    .kvkk-text li {
      margin-bottom: 5px;
    }
  
