  :root {
        --bg: #f7f5f2;
        --text: #1a1a1a;
        --muted: #666;
        --accent: #8f937e;
        --accent-dark: #6b7a58;
        --border: #e7e2db;
        --font-serif: "Playfair Display", serif;
        --font-sans: "Plus Jakarta Sans", sans-serif;
      }

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

      html {
        scroll-behavior: smooth;
      }

      body {
        background: var(--bg);
        color: var(--text);
        font-family: var(--font-sans);
        overflow-x: hidden;
      }

      /* NAVBAR */
       /* NAVBAR */
      .beauty-navbar {
        width: 100%;
        position: sticky;
        top: 0;
        z-index: 999;
        background: rgba(247, 245, 242, 0.9);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border-color);
      }

    .beauty-nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 13px 24px;
    display: flex;
    align-items: center;
}

      .beauty-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: var(--text-main);
      }

      .beauty-brand img {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        object-fit: cover;
        border: 1px solid var(--border-color);
        background: white;
        padding: 3px;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
      }

      .brand-text {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
      }

      .brand-text span {
        font-size: 21px;
        font-weight: 500;
        letter-spacing: -0.4px;
        font-family: var(--font-serif);
        color: var(--text-main);
      }

      .brand-text small {
        margin-top: 4px;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 5px;
        text-transform: uppercase;
        color: var(--accent-sage);
      }

     .beauty-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0 20px 0 auto;
    padding: 0;
}

      .beauty-menu a {
        text-decoration: none;
        color: var(--text-muted);
        font-size: 14px;
        font-weight: 500;
        transition: 0.25s ease;
      }

      .beauty-menu a:hover {
        color: var(--accent-sage);
      }

      .beauty-btn {
        display: inline-block;
        padding: 10px 22px;
        border-radius: 999px;
        background: var(--accent-sage);
        color: white !important;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        transition: 0.25s ease;
        border: none;
        box-shadow: 0 8px 18px rgba(143, 147, 126, 0.25);
      }

      .beauty-btn:hover {
        background: var(--accent-dark);
        color: white;
        transform: translateY(-2px);
      }
      /* PAGE WRAPPER */
      .wrapper {
        max-width: 760px;
        margin: 0 auto;
        padding: 90px 20px 80px;
        text-align: center;
      }

      h1 {
        font-family: var(--font-serif);
        font-size: 46px;
        font-weight: 400;
        margin-bottom: 10px;
      }

      .wrapper > p {
        color: var(--muted);
        margin-bottom: 35px;
        line-height: 1.7;
      }

      form {
        width: 100%;
      }

      /* INFO CARD */
      .info-card {
        background: white;
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 24px;
        margin-bottom: 28px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
        text-align: left;
      }

      .info-card h3 {
        font-family: var(--font-serif);
        font-size: 22px;
        font-weight: 400;
        margin-bottom: 15px;
        text-align: center;
      }

      .info-card ul {
        list-style: none;
      }

      .info-card li {
        margin: 10px 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.6;
      }

      /* BOOKING TOP */
      .booking-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 30px;
      }

      .glass-card {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 22px;
        padding: 20px;
        border: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        text-align: left;
      }

      .glass-card h4 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 14px;
        color: #333;
      }

      /* CHIPS */
      .chip-group {
        display: flex;
        gap: 10px;
      }

      .chip {
        flex: 1;
        padding: 12px;
        border-radius: 999px;
        background: #f5f3ef;
        text-align: center;
        cursor: pointer;
        font-size: 14px;
        transition: 0.25s;
        user-select: none;
        color: var(--muted);
      }

      .chip:hover {
        transform: scale(1.03);
      }

      .chip.active {
        background: var(--accent);
        color: white;
        box-shadow: 0 10px 20px rgba(143, 147, 126, 0.3);
      }

      /* DATE */
      .date-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
      }

      .date-pill {
        padding: 10px 8px;
        border-radius: 16px;
        background: #f5f3ef;
        cursor: pointer;
        text-align: center;
        transition: 0.25s;
      }

      .date-pill span {
        display: block;
        font-weight: 600;
        font-size: 13px;
      }

      .date-pill small {
        font-size: 11px;
        color: #888;
      }

      .date-pill:hover {
        transform: translateY(-2px);
      }

      .date-pill.active {
        background: var(--accent);
        color: white;
      }

      .date-pill.active small {
        color: white;
      }

      /* TIME GRID */
      .time-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-bottom: 25px;
      }

      .time-btn {
        padding: 14px;
        border: 1px solid var(--border);
        background: white;
        border-radius: 14px;
        cursor: pointer;
        transition: 0.25s;
        font-family: var(--font-sans);
        font-size: 14px;
      }

      .time-btn:hover {
        background: #f5f3ef;
        transform: translateY(-2px);
      }

      .time-btn.selected {
        background: var(--accent);
        color: white;
        border-color: var(--accent);
      }

      .time-btn.disabled {
        background: #ddd;
        color: #999;
        cursor: not-allowed;
        pointer-events: none;
      }

      /* FORM */
      .form {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 20px;
      }

      input,
      select,
      textarea {
        width: 100%;
        padding: 13px 14px;
        border: 1px solid var(--border);
        border-radius: 12px;
        outline: none;
        font-family: var(--font-sans);
        background: white;
        transition: 0.25s;
      }

      input:focus,
      select:focus,
      textarea:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 4px rgba(143, 147, 126, 0.12);
      }

      textarea {
        resize: none;
        height: 115px;
      }

      /* SUMMARY */
      .summary {
        margin-top: 18px;
        font-size: 14px;
        color: var(--muted);
        background: white;
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 14px;
        display: none;
      }

      .summary.active {
        display: block;
      }

      /* BUTTON */
      .cta {
        width: 100%;
        padding: 14px;
        margin-top: 20px;
        border: none;
        border-radius: 14px;
        background: var(--accent);
        color: white;
        opacity: 0.55;
        cursor: not-allowed;
        transition: 0.3s;
        font-weight: 600;
        font-family: var(--font-sans);
      }

      .cta.active {
        opacity: 1;
        cursor: pointer;
      }

      .cta.active:hover {
        background: var(--accent-dark);
        transform: translateY(-2px);
      }

      /* SUCCESS MODAL */
      .success-page {
        position: fixed;
        inset: 0;
        background: rgba(247, 245, 242, 0.78);
        backdrop-filter: blur(10px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 2000;
        padding: 20px;
      }

      .success-page.active {
        display: flex;
      }

      .success-card {
        background: white;
        padding: 42px 32px;
        border-radius: 22px;
        text-align: center;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        max-width: 430px;
        width: 100%;
        border: 1px solid var(--border);
        animation: fadeUp 0.4s ease;
      }

      .success-card h2 {
        font-family: var(--font-serif);
        font-weight: 400;
        font-size: 30px;
        margin-bottom: 10px;
      }

      .success-card p {
        color: var(--muted);
        line-height: 1.6;
        font-size: 15px;
      }

      .success-actions {
        display: flex;
        gap: 10px;
        justify-content: center;
        margin-top: 24px;
      }

      .success-actions a,
      .success-actions button {
        flex: 1;
        text-decoration: none;
        border: none;
        padding: 12px 14px;
        border-radius: 12px;
        cursor: pointer;
        font-family: var(--font-sans);
        font-weight: 600;
      }

      .success-actions .primary {
        background: var(--accent);
        color: white;
      }

      .success-actions .secondary {
        background: #f1efe9;
        color: var(--text);
      }

      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(18px);
        }

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

      /* MOBILE */
      @media (max-width: 900px) {
        .beauty-menu {
          display: none;
        }

        .booking-top {
          grid-template-columns: 1fr;
        }

        .wrapper {
          padding-top: 70px;
        }

        h1 {
          font-size: 38px;
        }
      }

      @media (max-width: 576px) {
        .beauty-nav-container {
          padding: 12px 16px;
        }

        .beauty-brand img {
          width: 50px;
          height: 50px;
        }

        .brand-text span {
          font-size: 17px;
        }

        .brand-text small {
          font-size: 9px;
          letter-spacing: 4px;
        }

        .beauty-btn {
          padding: 10px 15px;
          font-size: 13px;
        }

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

        .date-row {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      .time-btn.disabled {
    background: #ddd !important;
    color: #999 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    opacity: 0.75;
}

/* SUCCESS PAGE FIX - NORMAL SAYFA */
.success-page {
    position: static !important;
    inset: auto !important;
    display: flex !important;
    min-height: calc(100vh - 260px);
    align-items: center;
    justify-content: center;
    background: #f7f5f2;
    padding: 80px 20px;
    backdrop-filter: none !important;
    z-index: auto !important;
}

.success-card {
    background: white;
    padding: 45px 35px;
    border-radius: 24px;
    text-align: center;
    max-width: 460px;
    width: 100%;
    border: 1px solid #e7e2db;
    box-shadow: 0 20px 45px rgba(0,0,0,.06);
}

.success-card h1 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.success-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 26px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.success-actions .cta {
    width: auto !important;
    min-width: 130px;
    margin-top: 0 !important;
    opacity: 1 !important;
    cursor: pointer !important;
    text-decoration: none;
    display: inline-block;
    padding: 12px 18px;
    border-radius: 14px;
}

.success-actions .primary {
    background: #8f937e;
    color: white;
}

.success-actions .secondary {
    background: #f1efe9;
    color: #1a1a1a;
}

.success-info {
    background: #f8f6f2;
    border: 1px solid #e7e2db;
    border-radius: 16px;
    padding: 16px;
    margin: 22px 0;
    text-align: left;
}

.success-info p {
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.success-info p:last-child {
    margin-bottom: 0;
}

.cancel-btn {
    width: 100%;
    margin-top: 18px;
    padding: 13px 18px;
    border: none;
    border-radius: 14px;
    background: #c96b6b;
    color: white;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: .25s;
}

.cancel-btn:hover {
    background: #a94f4f;
    transform: translateY(-2px);
}

/* =========================
   BOOKING RESPONSIVE + ANIMATION
========================= */

@keyframes bookingFadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

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

@keyframes bookingFadeLeft {
    from {
        opacity: 0;
        transform: translateX(-26px);
    }

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

@keyframes bookingFadeRight {
    from {
        opacity: 0;
        transform: translateX(26px);
    }

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

/* Sayfa animasyonları */
.wrapper h1,
.wrapper > p,
.info-card,
.booking-top,
.form,
.time-grid,
.summary,
.cta {
    animation: bookingFadeUp .7s ease both;
}

.info-card {
    animation-delay: .08s;
}

.booking-top {
    animation-delay: .15s;
}

.time-grid {
    animation-delay: .22s;
}

.form {
    animation-delay: .28s;
}

.cta {
    animation-delay: .34s;
}

/* Navbar fix */
.beauty-nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 13px 24px;
    display: flex;
    align-items: center;
}

.beauty-brand {
    flex-shrink: 0;
}

.beauty-menu {
    margin: 0 22px 0 auto;
}

.beauty-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Genel iyileştirme */
.wrapper {
    width: 100%;
}

.info-card,
.glass-card {
    transition: .3s ease;
}

.info-card:hover,
.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.07);
}

.time-btn.disabled {
    background: #ddd !important;
    color: #999 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    opacity: 0.75;
}

/* Tablet */
@media (max-width: 1024px) {
    .wrapper {
        max-width: 780px;
        padding: 75px 24px 70px;
    }

    .booking-top {
        gap: 18px;
    }

    h1 {
        font-size: 42px;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .beauty-nav-container {
        padding: 11px 16px;
        gap: 12px;
    }

    .beauty-brand {
        flex: 1;
        min-width: 0;
    }

    .beauty-brand img {
        width: 46px;
        height: 46px;
    }

    .brand-text span {
        font-size: 16px;
        white-space: nowrap;
    }

    .brand-text small {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .beauty-menu {
        display: none !important;
    }

    .beauty-btn {
        padding: 9px 13px;
        font-size: 12px;
    }

    .wrapper {
        max-width: 100%;
        padding: 52px 20px 55px;
    }

    h1 {
        font-size: 35px;
        line-height: 1.15;
    }

    .wrapper > p {
        font-size: 15px;
        margin-bottom: 26px;
    }

    .info-card {
        padding: 22px 20px;
        border-radius: 20px;
    }

    .info-card h3 {
        font-size: 23px;
    }

    .booking-top {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 24px;
    }

    .glass-card {
        padding: 20px;
        border-radius: 20px;
    }

    .chip-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .chip {
        padding: 12px 10px;
        font-size: 13px;
    }

    .date-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .date-pill {
        padding: 10px 6px;
        border-radius: 14px;
    }

    .date-pill span {
        font-size: 12px;
    }

    .date-pill small {
        font-size: 10px;
    }

    .time-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .time-btn {
        padding: 13px 10px;
        font-size: 14px;
    }

    input,
    select,
    textarea {
        padding: 13px;
        font-size: 14px;
    }

    textarea {
        height: 110px;
    }

    .summary {
        font-size: 13px;
        line-height: 1.6;
    }

    .cta {
        padding: 14px;
        font-size: 14px;
    }
}

/* Küçük telefon */
@media (max-width: 480px) {
    .beauty-nav-container {
        padding: 10px 13px;
    }

    .beauty-brand img {
        width: 42px;
        height: 42px;
    }

    .brand-text span {
        font-size: 14px;
    }

    .brand-text small {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .beauty-btn {
        padding: 8px 11px;
        font-size: 11px;
    }

    .wrapper {
        padding: 42px 16px 48px;
    }

    h1 {
        font-size: 30px;
    }

    .wrapper > p {
        font-size: 14px;
    }

    .info-card,
    .glass-card {
        padding: 20px 18px;
    }

    .chip-group {
        grid-template-columns: 1fr;
    }

    .date-row {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .success-page {
        padding: 55px 16px !important;
    }

    .success-card {
        padding: 34px 22px !important;
    }

    .success-card h1 {
        font-size: 27px;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .cta {
        width: 100% !important;
    }
}

/* Mobilde hover takılması olmasın */
@media (hover: none) {
    .beauty-btn:hover,
    .info-card:hover,
    .glass-card:hover,
    .time-btn:hover,
    .cta.active:hover,
    .cancel-btn:hover {
        transform: none;
    }
}

.form-label {
    display: block;
    text-align: left;
    margin-bottom: -4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}