:root {
    --primary: #1a514c;
    --primary-soft: #2b817a;
    --bg: #fcf8f6;
    --surface: #fffdfc;
    --accent: #d8b3bb;
    --text: #2f2a2b;
    --muted: #746a6c;
    --border: #eadfe2;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}
.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}
.site-header {
    background: var(--primary);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav {
    background-color: rgb(16 58 72);
}
.main-nav {
    display: none;
    gap: 18px;
}
.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}
.logo, .main-nav a, .site-footer a {
    text-decoration: none;
}
.logo {
    color: #fff;
    font-family: 'Blinker', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.main-nav a {
    color: #fff;
}
.hamburger {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 1.7rem;
}
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-secondary {
    background: #fff;
    color: var(--primary);
    border: 1px solid var(--border);
}
.hero, .section-block, .form-section {
    padding: 64px 0;
}
.hero-grid, .footer-grid {
    display: grid;
    gap: 24px;
}
.hero-card, .product-card, .form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.soft-bg {
    background:#f7f3e9 ;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
}
.full-btn { width: 100%; }
.site-footer {
    background: var(--primary);
    color: #fff;
    padding: 40px 0;
}
.site-footer a { color: #fff; }
.site-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    padding: 6px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-header .logo-wrap,
.site-header .logo-wrap:visited,
.site-header .logo-wrap:hover {
  color: #fff;
}

.site-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  background: transparent;
}

.logo-text {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}

.logo-sub {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  line-height: 1.2;
}
.alert-success{
    padding:12px 14px;
    background:#e8f7ef;
    color:#1f6b43;
    border-radius:12px;
    margin-bottom:16px;
}

.alert-error{
    padding:12px 14px;
    background:#fdecec;
    color:#8f2d2d;
    border-radius:12px;
    margin-bottom:16px;
}

.payment-card{
    margin-top:24px;
}

.payment-box{
    padding:16px;
    border:1px solid #e7e7e7;
    border-radius:16px;
    margin-bottom:16px;
    background:#fff;
}

.full-btn{
    width:100%;
}

.form-wrap{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:24px;
}

@media (max-width: 900px){
    .form-wrap{
        grid-template-columns:1fr;
    }
}

.form-card {
  background: #fffdfc;
  border: 1px solid #eadfe2;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2f2a2b;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #eadfe2;
  border-radius: 12px;
  background: #fff;
  color: #2f2a2b;
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.info-box {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  background: #f6edef;
  border: 1px solid #eadfe2;
}

.success-box {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #ecf8f2;
  border: 1px solid #bfe3cd;
  color: #1f5d3f;
}

.hidden {
  display: none;
}

.btn-outline-member {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid #0d6efd;
    border-radius: 999px;
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
}

.btn-outline-member:hover {
    background: #0d6efd;
    color: #ffffff;
}
.mobile-drawer {
    display: block;
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100%;
    background: #0f172a;
    color: #fff;
    z-index: 1200;
    padding: 24px 18px 90px;
    overflow-y: auto;
    transition: left 0.25s ease;
}

.mobile-drawer.open {
    left: 0;
}

.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 1100;
    display: none;
}

.mobile-backdrop.show {
    display: block;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-logo-frame {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d4af37;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow:
        0 0 0 2px rgba(212, 175, 55, 0.10),
        0 8px 20px rgba(212, 175, 55, 0.12);
    flex-shrink: 0;
}

.site-logo {
    width: 66px;
    height: 66px;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .site-logo-frame {
        width: 57px;
        height: 57px;
        border-radius: 16px;
    }

    .site-logo {
        width: 58px;
        height: 58px;
    }
}

.password-field {
    position: relative;
}

.password-input {
    padding-right: 54px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.18s ease;
}

.password-toggle:hover {
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.08);
}

.password-toggle:focus-visible {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}
.site-header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 252, 249, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #eadfd8;
}

.header-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    min-height:82px;
}

.logo-wrap{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
    color:inherit;
    min-width:0;
}

.site-logo-frame{
    width:56px;
    height:56px;
    border-radius:16px;
    background: linear-gradient(180deg, #fff7f3 0%, #f7efe9 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    border:1px solid #eee1d9;
}

.site-logo{
    width:44px;
    height:44px;
    object-fit:contain;
}

.logo-copy{
    min-width:0;
}

.logo-text{
    font-family:'Blinker', sans-serif;
    font-size:1.25rem;
    font-weight:700;
    line-height:1;
    color:#2e2623;
}

.logo-sub{
    display:block;
    margin-top:4px;
    font-size:0.82rem;
    color:#7e6f68;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:18px;
}

.main-nav a{
    text-decoration:none;
    color:#4b413d;
    font-weight:500;
    transition:0.2s ease;
}

.main-nav a:hover{
    color:#111;
}

.hamburger{
    display:none;
    width:46px;
    height:46px;
    border:none;
    background:#f6eee8;
    border-radius:14px;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    border:1px solid #e9ddd4;
}

.hamburger span{
    display:block;
    width:18px;
    height:2px;
    background:#5e4e47;
    border-radius:999px;
}

.btn-outline-member{
    padding:10px 16px;
    border:1px solid #d9c8bc;
    border-radius:999px;
}

@media (max-width: 991px){
    .hamburger{
        display:flex;
    }

    .main-nav{
        position:absolute;
        top:100%;
        left:16px;
        right:16px;
        background:#fffaf7;
        border:1px solid #eadfd8;
        border-radius:20px;
        padding:16px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:12px;
        box-shadow:0 12px 32px rgba(79, 59, 46, 0.12);
    }

    .main-nav.is-open{
        display:flex;
    }

    .main-nav a{
        padding:10px 4px;
    }

    .logo-text{
        font-size:1.05rem;
    }

    .logo-sub{
        font-size:0.76rem;
    }
}