/* ╔══════════════════════════════════════════╗
   ║  VPSROBOT — Sayfa Spesifik Stiller       ║
   ║  Temizlenmiş & Birleştirilmiş            ║
   ╚══════════════════════════════════════════╝ */


/* ════════════════════════════════════════
   SHARED: CHECKOUT VARIABLES
   (cart, checkout, configure, domain-select,
    order-success pages)
   ════════════════════════════════════════ */
:root {
    --brand-yellow: #ffd400;
    --brand-dark: #282828;
    --text-muted: #555;
    --border-light: #e2e8f0;
    --bg-light: #f8f9fa;
    --success-green: #22c55e;
    --vn-check: #f2b50b;
}


/* ════════════════════════════════════════
   SHARED: CORPORATE HERO
   (bayilik, bilgi-bankasi, blog, referanslar)
   ════════════════════════════════════════ */
.corp-hero {
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}
.corp-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    pointer-events: none;
    border-radius: 50%;
}
.corp-hero-badge {
    display: inline-block;
    background: var(--primary-color, #ffd400);
    color: #282828;
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.corp-hero-title {
    font-family: "Audiowide", cursive;
    font-size: 2.8rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    line-height: 1.2;
}
.corp-hero-desc {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 520px;
}
.corp-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 280px;
}
.corp-hero-visual svg {
    opacity: 0.18;
}
@media (max-width: 991.98px) {
    .corp-hero {
        padding: 60px 0 0;
    }
    .corp-hero-title {
        font-size: 2rem;
    }
    .corp-hero-visual {
        min-height: 200px;
    }
}
@media (max-width: 767.98px) {
    .corp-hero {
        padding: 48px 0 0;
    }
    .corp-hero-title {
        font-size: 1.5rem;
    }
    .corp-hero-desc {
        font-size: 0.9rem;
    }
    .corp-hero-visual {
        min-height: 160px;
        display: none;
    }
}


/* ════════════════════════════════════════
   SHARED: VN PRICING CARDS
   (cloud-vps, linux-vps, windows-vps,
    fiziksel-sunucu)
   ════════════════════════════════════════ */
.vn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 991px) {
    .vn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .vn-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
}
.vn-card {
    background: #fff;
    border: 1.5px solid rgba(40, 40, 40, 0.1);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}
.vn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.vn-card--featured {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 212, 0, 0.15);
}
.vn-card--featured:hover {
    box-shadow: 0 12px 40px rgba(255, 212, 0, 0.22);
}
.vn-ribbon {
    position: absolute;
    top: 22px;
    right: -34px;
    background: var(--primary-color);
    color: #282828;
    font-family: "Poppins", sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    padding: 5px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 212, 0, 0.3);
    z-index: 2;
}
.vn-main {
    padding: 36px 28px 24px;
    text-align: center;
}
.vn-title {
    font-family: "Audiowide", cursive;
    font-size: 1.1rem;
    color: #282828;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.vn-desc {
    font-size: 0.82rem;
    color: #555;
    margin-bottom: 20px;
}
.vn-price-box {
    margin-bottom: 8px;
}
.vn-price-old-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 1.4em;
    margin-bottom: 4px;
}
.vn-price-old {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
    opacity: 0.7;
}
.vn-discount {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    color: #e74c3c;
    border: 1.5px solid #e74c3c;
    border-radius: 4px;
    padding: 2px 8px;
    white-space: nowrap;
}
.vn-price-current {
    font-family: "Poppins", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #282828;
    line-height: 1;
}
.vn-price-current sup {
    font-size: 0.35em;
    vertical-align: super;
    font-weight: 600;
}
.vn-price-current sub {
    font-size: 0.3em;
    color: #555;
    vertical-align: baseline;
    margin-left: 2px;
    font-weight: 400;
}
.vn-price-note {
    font-size: 0.72rem;
    color: #555;
    margin-top: 6px;
}
.vn-features {
    padding: 0 28px 20px;
    flex: 1;
}
.vn-feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.vn-feat-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid rgba(40, 40, 40, 0.1);
    font-size: 0.85rem;
    color: #282828;
}
.vn-feat-list li:first-child {
    border-top: none;
}
.vn-feat-list li svg {
    flex-shrink: 0;
    color: var(--vn-check);
}
.vn-feat-list li.disabled {
    text-decoration: line-through;
    opacity: 0.45;
    color: #999;
}
.vn-feat-list li.disabled svg {
    color: #ccc;
}
.vn-order {
    padding: 0 28px 28px;
    margin-top: auto;
}
.vn-btn {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: #282828;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}
.vn-btn:hover {
    background: #f2b50b;
    color: #282828;
}
.vn-btn--outline {
    background: transparent;
    border: 1.5px solid rgba(40, 40, 40, 0.1);
    color: #282828;
}
.vn-btn--outline:hover {
    background: #282828;
    border-color: #282828;
    color: #fff;
}


/* ════════════════════════════════════════
   SHARED: SUMMARY PANEL
   (cart, checkout, configure, domain-select)
   ════════════════════════════════════════ */
.summary-panel {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    position: sticky;
    top: 24px;
}
.summary-header {
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--border-light);
}
.summary-header h3 {
    font-family: 'Audiowide', sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}
.summary-body {
    padding: 20px;
}


/* ════════════════════════════════════════
   SHARED: PRICE LINES
   (cart, checkout)
   ════════════════════════════════════════ */
.price-line {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
}
.price-line .lbl {
    color: var(--text-muted);
}
.price-line .val {
    font-weight: 600;
}
.price-line .discount-val {
    color: #ef4444;
    font-weight: 600;
}
.price-divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 14px 0;
}
.price-total {
    display: flex;
    justify-content: space-between;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 4px;
}
.price-total-sub {
    font-size: 11px;
    color: var(--text-muted);
    text-align: right;
    margin-bottom: 20px;
}


/* ════════════════════════════════════════
   SHARED: AUTH PAGES (login, register)
   ════════════════════════════════════════ */
:root {
    --brand-blue: #ffd400;
    --text-main: #282828;
    --bg-surface: #ffffff;
    --input-bg: #f8f9fa;
    --border-focus: #ffd400;
}
.full-height-row {
    min-height: 100vh;
}
.brand-section {
    background-color: var(--brand-dark);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    color: #fff;
    min-height: 100vh;
}
.brand-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.92), rgba(255, 212, 0, 0.25));
    z-index: 1;
}
.wave-divider {
    position: absolute;
    top: 0;
    right: -1px;
    width: 150px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}
.wave-divider svg {
    width: 100%;
    height: 100%;
    fill: #ffffff;
}
.brand-content {
    position: relative;
    z-index: 10;
    padding-right: 40px;
}
.brand-content h1 {
    font-family: "Audiowide", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.slider-container {
    background-color: #fff;
    color: var(--text-main);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    margin-top: auto;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}
.testimonial-slide.active {
    display: block;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}
.avatar-circle {
    width: 36px;
    height: 36px;
    background-color: var(--brand-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}
.slider-nav {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 24px;
    right: 24px;
}
.nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.nav-btn:hover {
    background-color: var(--brand-blue);
    color: #282828;
    border-color: var(--brand-blue);
}
.form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 40px;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}
.form-wrapper {
    width: 100%;
    max-width: 420px;
}
.mobile-logo {
    display: none;
    height: 36px;
    margin-bottom: 30px;
}
.form-header h2 {
    font-family: "Audiowide", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text-main);
}
.form-header p {
    color: var(--text-muted);
    font-size: 15px;
}
.form-floating > .form-control {
    background-color: var(--input-bg);
    border: 1px solid transparent;
    border-radius: 10px;
    height: 54px;
    color: var(--text-main);
    font-weight: 500;
    transition: all 0.2s;
}
.form-floating > .form-control:focus {
    background-color: #fff;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.15);
    outline: none;
}
.form-floating > label {
    color: #94a3b8;
    font-size: 14px;
}
.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.15);
    border-color: var(--border-focus);
}
.form-check-input:checked {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23282828' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.btn-submit {
    background-color: var(--brand-blue);
    color: #282828;
    font-weight: 700;
    font-size: 16px;
    padding: 16px;
    width: 100%;
    border-radius: 10px;
    border: none;
    transition: all 0.2s;
    margin-top: 10px;
}
.btn-submit:hover {
    background-color: #f2b50b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(255, 212, 0, 0.4);
    color: #282828 !important;
}
.btn-submit:active,
.btn-submit:focus {
    background-color: #e6a800 !important;
    color: #282828 !important;
    box-shadow: none;
    transform: translateY(0);
}
a.fw-bold:hover {
    color: var(--brand-blue) !important;
}
@media (max-width: 991px) {
    .brand-section {
        display: none;
    }
    .mobile-logo {
        display: block;
    }
    .wave-divider {
        display: none;
    }
}


/* ════════════════════════════════════════
   BILGI-BANKASI
   ════════════════════════════════════════ */
.kb-article-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.kb-article-item {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background 0.2s;
}
.kb-article-item:last-child {
    border-bottom: none;
}
.kb-article-item:hover {
    background: #f8fafc;
}
.kb-article-link {
    color: #282828;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.kb-article-item:hover .kb-article-link {
    color: var(--primary-hover);
}
.kb-article-icon {
    color: #94a3b8;
    flex-shrink: 0;
}


/* ════════════════════════════════════════
   BLOG
   ════════════════════════════════════════ */
.blog-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.blog-card-img {
    width: 100%;
    height: 200px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}
.blog-card-body {
    padding: 1.5rem;
}
.blog-card-date {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}
.blog-card-title {
    font-family: "Audiowide", cursive;
    font-size: 1rem;
    color: #282828;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.blog-card-excerpt {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.blog-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-hover);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}
.blog-card-link:hover {
    color: #282828;
}


/* ════════════════════════════════════════
   CART  (redesigned)
   ════════════════════════════════════════ */

/* -- Header extras -- */
.checkout-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.secure-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--success-green);
    font-weight: 600;
}
.secure-badge i { font-size: 16px; }

/* -- Layout -- */
.cart-wrap {
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 24px 100px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: start;
}

/* -- Cart Card -- */
.cart-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
    overflow: hidden;
}
.cart-card-header {
    padding: 22px 28px 18px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #fefefe, #f8f9fa);
}
.cart-card-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-card-header-left i {
    font-size: 20px;
    color: var(--brand-yellow);
}
.cart-card-header h2 {
    font-family: 'Audiowide', sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cart-card-header .item-count {
    font-size: 11px;
    color: #fff;
    background: var(--brand-dark);
    padding: 3px 14px;
    border-radius: 20px;
    font-weight: 600;
}

/* -- Cart Item -- */
@keyframes cartItemSlideIn {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes cartItemSlideOut {
    from { opacity: 1; transform: translateX(0); max-height: 200px; }
    to   { opacity: 0; transform: translateX(-30px); max-height: 0; padding-top: 0; padding-bottom: 0; }
}
.cart-item {
    padding: 22px 28px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    transition: background 0.2s ease;
    animation: cartItemSlideIn 0.35s ease both;
}
.cart-item:hover { background: #fafbfc; }
.cart-item:last-child { border-bottom: none; }
.cart-item.removing {
    animation: cartItemSlideOut 0.3s ease forwards;
    overflow: hidden;
}

/* -- Type-colored Icons -- */
.cart-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fffbe6;
    border: 1px solid var(--brand-yellow);
}
.cart-item-icon i { font-size: 22px; }
.cart-item[data-type="vps"] .cart-item-icon {
    background: #fffbe6; border-color: var(--brand-yellow); color: var(--brand-dark);
}
.cart-item[data-type="hosting"] .cart-item-icon {
    background: #ecfdf5; border-color: #86efac; color: #16a34a;
}
.cart-item[data-type="domain"] .cart-item-icon {
    background: #eff6ff; border-color: #93c5fd; color: #2563eb;
}
.cart-item[data-type="email"] .cart-item-icon {
    background: #faf5ff; border-color: #c4b5fd; color: #7c3aed;
}

/* -- Item Info -- */
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--brand-dark);
}
.cart-item-desc {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}
.cart-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}
.tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
    letter-spacing: 0.2px;
}

/* -- Item Right (price + actions) -- */
.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
}
.cart-item-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark);
}
.cart-item-price-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: -2px;
}
.cart-item-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.btn-edit, .btn-edit-full {
    background: #fff;
    border: 1.5px solid var(--border-light);
    border-radius: 20px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 12px;
    padding: 5px 14px;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
    font-weight: 500;
}
.btn-edit:hover, .btn-edit-full:hover {
    border-color: var(--brand-yellow);
    color: var(--brand-dark);
    background: #fffef5;
}
.btn-remove {
    background: none;
    border: 1.5px solid transparent;
    border-radius: 20px;
    color: #94a3b8;
    cursor: pointer;
    font-size: 12px;
    padding: 5px 14px;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
    font-weight: 500;
}
.btn-remove:hover {
    color: #ef4444;
    border-color: #fecaca;
    background: #fef2f2;
}

/* -- Empty State -- */
.cart-empty {
    padding: 80px 24px 60px;
    text-align: center;
}
.cart-empty-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: emptyCartPulse 2s ease-in-out infinite;
}
.cart-empty-icon i {
    font-size: 44px;
    color: #94a3b8;
}
@keyframes emptyCartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.cart-empty h3 {
    font-family: 'Audiowide', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.cart-empty p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.cart-empty-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-browse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(255,212,0,0.3);
}
.btn-browse:hover {
    background: #f2b50b;
    color: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,212,0,0.4);
}
.btn-browse-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: transparent;
    color: var(--text-muted);
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}
.btn-browse-outline:hover {
    border-color: var(--brand-dark);
    color: var(--brand-dark);
}

/* -- Coupon -- */
.coupon-wrap {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.coupon-input-group {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}
.coupon-input-group i {
    position: absolute;
    left: 12px;
    font-size: 16px;
    color: #94a3b8;
    pointer-events: none;
}
.coupon-input-group input {
    width: 100%;
    padding: 11px 14px 11px 38px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s ease;
}
.coupon-input-group input:focus {
    border-color: var(--brand-yellow);
}
.btn-coupon {
    padding: 10px 20px;
    background: var(--brand-dark);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}
.btn-coupon:hover { background: #3a3a3a; }
.coupon-msg {
    font-size: 12px;
    margin-bottom: 16px;
    margin-top: -12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
}
.coupon-msg.success {
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}
.coupon-msg.error {
    color: #ef4444;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

/* -- Summary Panel (cart-specific overrides) -- */
.cart-wrap .summary-panel {
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
    border: 1px solid var(--border-light);
    overflow: hidden;
}
.cart-wrap .summary-header {
    background: linear-gradient(135deg, var(--brand-dark), #3a3a3a);
    padding: 20px 24px 16px;
    border-bottom: none;
}
.cart-wrap .summary-header h3 { color: #fff; font-size: 14px; }
.cart-wrap .summary-body { padding: 24px; }

/* -- Buttons -- */
.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(255,212,0,0.3);
}
.btn-checkout:hover {
    background: #f2b50b;
    color: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,212,0,0.4);
}
.btn-continue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.btn-continue:hover { color: var(--brand-dark); }

/* -- Trust Badges -- */
.trust-badges {
    border-top: 1px solid var(--border-light);
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8f9fa;
    border-radius: 0 0 14px 14px;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}
.trust-badge i {
    font-size: 16px;
    color: var(--success-green);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* -- Period Panel -- */
.inline-period-panel {
    margin-top: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0 16px;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
}
.inline-period-panel.open {
    max-height: 120px;
    opacity: 1;
    padding: 14px 16px;
}
.period-mini-btn {
    padding: 6px 14px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    background: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
    margin-right: 6px;
    margin-bottom: 6px;
}
.period-mini-btn:hover {
    border-color: var(--brand-yellow);
    background: #fffef5;
}
.period-mini-btn.active {
    border-color: var(--brand-yellow);
    background: var(--brand-yellow);
    color: var(--brand-dark);
}
.period-mini-disc {
    font-size: 10px;
    color: #22c55e;
    font-weight: 700;
}
.period-mini-btn.active .period-mini-disc {
    color: var(--brand-dark);
}

/* -- Add More Link -- */
.cart-add-more {
    margin-top: 16px;
    text-align: center;
}
.cart-add-more a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.cart-add-more a:hover {
    background: #f1f5f9;
    color: var(--brand-dark);
}

/* -- Mobile Bottom Bar -- */
.cart-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border-light);
    padding: 14px 20px;
    z-index: 100;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.mobile-bar-total {
    display: flex;
    flex-direction: column;
}
.mobile-bar-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}
.mobile-bar-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-dark);
}
.mobile-bar-btn {
    flex-shrink: 0;
    padding: 12px 24px;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(255,212,0,0.3);
    transition: all 0.2s ease;
}
.mobile-bar-btn:hover {
    background: #f2b50b;
    color: var(--brand-dark);
}

/* -- Responsive -- */
@media (max-width: 900px) {
    .cart-wrap {
        grid-template-columns: 1fr;
        padding-bottom: 120px;
    }
    .summary-panel { position: static; }
    .cart-mobile-bar { display: flex; }
    .checkout-header .secure-badge { display: none; }
}
@media (max-width: 600px) {
    .cart-item {
        flex-wrap: wrap;
        gap: 12px;
        padding: 18px 16px;
    }
    .cart-item-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
    .cart-item-icon i { font-size: 20px; }
    .cart-item-right {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .cart-card-header {
        padding: 16px;
    }
    .cart-card-header h2 { font-size: 13px; }
    .cart-card-header .item-count { font-size: 10px; padding: 2px 10px; }
    .cart-wrap { padding: 0 12px 120px; margin-top: 16px; }
    .cart-wrap .summary-body { padding: 16px; }
    .cart-wrap .summary-header { padding: 16px; }
    .coupon-wrap { flex-direction: column; }
    .btn-coupon { width: 100%; text-align: center; }
    .btn-checkout { font-size: 14px; padding: 13px; }
}


/* ════════════════════════════════════════
   CHECKOUT
   ════════════════════════════════════════ */
/* Layout */
.checkout-wrap {
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}
/* Card */
.co-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    margin-bottom: 20px;
}
.co-card:last-child {
    margin-bottom: 0;
}
.co-card-header {
    padding: 18px 24px 14px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
}
.co-card-header .step-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--brand-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-dark);
    flex-shrink: 0;
}
.co-card-header h2 {
    font-family: 'Audiowide', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.co-card-body {
    padding: 24px;
}
/* Billing Type Toggle */
.billing-toggle {
    display: flex;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}
.billing-toggle button {
    flex: 1;
    padding: 10px;
    border: none;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background .15s;
}
.billing-toggle button.active {
    background: var(--brand-yellow);
    color: var(--brand-dark);
    font-weight: 700;
}
.billing-toggle button i {
    font-size: 16px;
}
/* Form Grid */
.form-row {
    display: grid;
    gap: 14px;
    margin-bottom: 14px;
}
.form-row.col-2 {
    grid-template-columns: 1fr 1fr;
}
.form-row.col-3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}
.form-group input,
.form-group select {
    padding: 10px 14px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    outline: none;
    background: #fff;
    transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus {
    border-color: var(--brand-yellow);
}
.form-group input.error {
    border-color: #ef4444;
}
/* Corporate Fields */
#corporate-fields {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows .25s ease;
}
#corporate-fields > .corp-inner {
    min-height: 0;
    overflow: hidden;
}
#corporate-fields.open {
    grid-template-rows: 1fr;
}
/* Payment Tabs */
.payment-tabs {
    display: flex;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
}
.payment-tab {
    flex: 1;
    padding: 12px 8px;
    border: none;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border-right: 1px solid var(--border-light);
    transition: background .15s;
}
.payment-tab:last-child {
    border-right: none;
}
.payment-tab i {
    font-size: 20px;
    color: #aaa;
    transition: color .15s;
}
.payment-tab.active {
    background: #fffbe6;
}
.payment-tab.active i {
    color: var(--brand-dark);
}
.payment-tab.active span {
    font-weight: 700;
    color: var(--brand-dark);
}
/* Payment Pane */
.payment-pane {
    display: none;
}
.payment-pane.active {
    display: block;
}
/* Card Visual */
.card-visual {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #3a3a3a 100%);
    border-radius: 14px;
    padding: 24px;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    min-height: 160px;
}
.card-visual::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,212,0,0.15);
}
.card-visual::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -20px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,212,0,0.08);
}
.card-chip {
    width: 36px;
    height: 28px;
    background: var(--brand-yellow);
    border-radius: 4px;
    margin-bottom: 20px;
}
.card-number-display {
    font-size: 17px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-family: monospace;
}
.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.card-label {
    font-size: 9px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.card-value {
    font-size: 13px;
    font-weight: 600;
}
.card-network {
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-yellow);
}
/* Bank List */
.bank-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}
.bank-item {
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    transition: all .15s;
}
.bank-item:hover {
    border-color: var(--brand-yellow);
}
.bank-item.selected {
    border-color: var(--brand-yellow);
    background: #fffbe6;
}
.bank-item i {
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
    color: var(--text-muted);
}
.bank-details {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 16px;
    font-size: 13px;
    line-height: 2;
    display: none;
    margin-bottom: 20px;
}
.bank-details.show {
    display: block;
}
.bank-details .detail-row {
    display: flex;
    justify-content: space-between;
}
.bank-details .detail-label {
    color: var(--text-muted);
}
.bank-details .detail-value {
    font-weight: 600;
}
.btn-copy {
    background: none;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 11px;
    cursor: pointer;
    color: var(--text-muted);
}
.btn-copy:hover {
    border-color: var(--brand-yellow);
}
/* Papara */
.papara-box {
    text-align: center;
    padding: 20px;
}
.papara-qr {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 12px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.papara-qr i {
    font-size: 60px;
    color: #ccc;
}
.papara-number {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 6px;
}
.papara-name {
    font-size: 13px;
    color: var(--text-muted);
}
/* Balance */
.balance-box {
    background: linear-gradient(135deg, #fffbe6, #fff8cc);
    border: 2px solid var(--brand-yellow);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}
.balance-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-dark);
}
.balance-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.balance-insufficient {
    background: #fef2f2;
    border-color: #fca5a5;
}
.balance-insufficient .balance-amount {
    color: #ef4444;
}
.balance-insufficient .btn-topup {
    background: #ef4444;
}
.btn-topup {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--brand-dark);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
/* Agreement */
.agreement-wrap {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 20px;
}
.agreement-wrap.highlight {
    border: 2px solid #ef4444 !important;
    border-radius: 8px;
    background: #fef2f2;
}
.agreement-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}
.agreement-item:last-child {
    margin-bottom: 0;
}
.agreement-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--brand-yellow);
    margin-top: 2px;
    flex-shrink: 0;
}
.agreement-item label {
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
}
.agreement-item label a {
    color: var(--brand-dark);
    text-decoration: underline;
}
/* Order Items */
.order-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 13px;
}
.order-item .item-name {
    font-weight: 600;
    flex: 1;
    margin-right: 8px;
}
.order-item .item-price {
    font-weight: 700;
    white-space: nowrap;
}
.order-item .item-sub {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}
/* Checkout Submit */
.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 12px;
}
.secure-note i {
    color: var(--success-green);
}
/* Field Errors */
.field-error {
    font-size: 11px;
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .15s ease, transform .15s ease;
    pointer-events: none;
}
.field-error.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Card Flip */
#card-visual-wrap {
    perspective: 1000px;
    background: none;
    padding: 0;
    min-height: 170px;
    margin-bottom: 24px;
    position: relative;
}
.card-face {
    background: linear-gradient(135deg, #282828 0%, #3a3a3a 100%);
    border-radius: 14px;
    padding: 24px;
    color: #fff;
    min-height: 170px;
    backface-visibility: hidden;
    transition: transform .5s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}
.card-face::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,212,0,0.15);
}
.card-back {
    transform: rotateY(180deg);
}
#card-visual-wrap.flipped .card-front {
    transform: rotateY(-180deg);
}
#card-visual-wrap.flipped .card-back {
    transform: rotateY(0deg);
}
.card-back-stripe {
    background: #1a1a1a;
    height: 40px;
    margin: 12px -24px;
}
.card-cvv-strip {
    background: #f1f1f1;
    border-radius: 4px;
    padding: 6px 12px;
    margin-top: 20px;
    text-align: right;
}
.card-cvv-label {
    font-size: 9px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.card-cvv-value {
    font-size: 16px;
    font-weight: 700;
    color: #282828;
    letter-spacing: 3px;
}
@media (max-width: 900px) {
    .checkout-wrap {
        grid-template-columns: 1fr;
    }
    .form-row.col-2 {
        grid-template-columns: 1fr;
    }
    .form-row.col-3 {
        grid-template-columns: 1fr 1fr;
    }
    .bank-grid {
        grid-template-columns: repeat(2,1fr);
    }
}


/* ════════════════════════════════════════
   CONFIGURE
   ════════════════════════════════════════ */
/* Layout */
.configure-wrap {
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}
/* Card */
.cfg-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    overflow: hidden;
}
.cfg-card-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--border-light);
}
.cfg-card-header h2 {
    font-family: 'Audiowide', sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cfg-card-body {
    padding: 24px;
}
/* Warnings / Errors */
.cfg-warning {
    background: #fef9c3;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12px;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    animation: co-fadeIn .2s ease;
}
.cfg-warning i {
    font-size: 16px;
    flex-shrink: 0;
}
.cfg-input--error {
    border-color: #ef4444 !important;
}
.cfg-field-error {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #ef4444;
    margin-top: -18px;
    margin-bottom: 16px;
}
.cfg-field-error i {
    font-size: 13px;
}
/* Plan chip in summary */
.summary-plan-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fffbe6;
    border: 1px solid var(--brand-yellow);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 14px;
}
.summary-plan-chip i {
    color: var(--brand-yellow);
    font-size: 13px;
}
/* Section label spacing */
.cfg-input + .section-label,
.cfg-select + .section-label,
.addon-list + .section-label,
.period-grid + .section-label,
.option-grid + .section-label,
.cfg-warning + .section-label {
    margin-top: 8px;
}
/* Tab fade */
.tab-content-pane {
    opacity: 0;
    transition: opacity .18s ease;
}
.tab-content-pane.active {
    opacity: 0;
}
.tab-content-pane.visible {
    opacity: 1;
}
/* Section Label */
.section-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
/* Option Grid (OS, Panel) */
.option-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}
.option-grid.col-3 {
    grid-template-columns: repeat(3, 1fr);
}
.option-grid.col-2 {
    grid-template-columns: repeat(2, 1fr);
}
.option-item {
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all .15s;
}
.option-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-bottom: 6px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.option-item i {
    font-size: 22px;
    display: block;
    margin-bottom: 4px;
    color: #aaa;
}
.option-item:hover {
    border-color: var(--brand-yellow);
}
.option-item.selected {
    border-color: var(--brand-yellow);
    background: #fffbe6;
}
.option-item.selected i {
    color: var(--brand-dark);
}
.option-item .extra-cost {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 2px;
}
/* Period Selector */
.period-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}
.period-item {
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all .15s;
    position: relative;
}
.period-item:hover {
    border-color: var(--brand-yellow);
}
.period-item.selected {
    border-color: var(--brand-yellow);
    background: #fffbe6;
}
.period-item .period-name {
    font-size: 13px;
    font-weight: 600;
}
.period-item .period-discount {
    font-size: 11px;
    color: #22c55e;
    font-weight: 600;
    margin-top: 2px;
}
.period-item .period-save {
    font-size: 10px;
    color: var(--text-muted);
}
.period-item .period-total-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-top: 6px;
}
.period-badge {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    margin-top: 5px;
    letter-spacing: 0.3px;
}
.period-item.selected .period-badge {
    background: #16a34a;
}
/* Addon Card Grid */
.addon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}
.addon-card {
    border: 2px solid var(--border-light);
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all .15s;
    position: relative;
}
.addon-card:hover {
    border-color: #c7d2e8;
    background: #f8fafd;
}
.addon-card.selected {
    border-color: var(--brand-yellow);
    background: #fffbe6;
}
.addon-card-icon {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.addon-card.selected .addon-card-icon {
    color: var(--brand-dark);
}
.addon-card-name {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 3px;
}
.addon-card-desc {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 10px;
}
.addon-card-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-dark);
}
.addon-card.selected .addon-card-price {
    color: #16a34a;
}
.addon-card-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: transparent;
    transition: all .15s;
}
.addon-card.selected .addon-card-check {
    background: var(--brand-yellow);
    border-color: var(--brand-yellow);
    color: var(--brand-dark);
}
/* Text Input */
.cfg-input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color .15s;
    margin-bottom: 24px;
}
.cfg-input:focus {
    border-color: var(--brand-yellow);
}
.cfg-select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    outline: none;
    background: #fff;
    cursor: pointer;
    transition: border-color .15s;
    margin-bottom: 24px;
}
.cfg-select:focus {
    border-color: var(--brand-yellow);
}
/* Selected Info Box (Domain / Email) */
.selected-info-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #f0fdf4;
    border: 2px solid #22c55e;
    border-radius: 10px;
    margin-bottom: 24px;
}
.selected-info-box i {
    font-size: 22px;
    color: #16a34a;
    flex-shrink: 0;
}
.sib-content {
    flex: 1;
}
.sib-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: var(--text-muted);
}
.sib-main {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-dark);
}
.sib-sub {
    font-size: 12px;
    color: var(--text-muted);
}
.sib-meta {
    text-align: right;
    flex-shrink: 0;
}
.sib-price {
    font-size: 13px;
    font-weight: 600;
    color: #16a34a;
}
.sib-change {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: underline;
}
/* Email Quota Grid */
.quota-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}
.quota-item {
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 14px 8px;
    text-align: center;
    cursor: pointer;
    transition: all .15s;
}
.quota-item:hover {
    border-color: var(--brand-yellow);
}
.quota-item.selected {
    border-color: var(--brand-yellow);
    background: #fffbe6;
}
.quota-item .quota-num {
    font-size: 18px;
    font-weight: 700;
}
.quota-item .quota-label {
    font-size: 10px;
    color: var(--text-muted);
}
.quota-item .quota-price {
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}
/* Summary extras */
.summary-product-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}
.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 8px;
}
.summary-line .label {
    color: var(--text-muted);
}
.summary-line .value {
    font-weight: 600;
}
.summary-line .discount {
    color: #ef4444;
}
.summary-divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 14px 0;
}
.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.summary-total-sub {
    font-size: 11px;
    color: var(--text-muted);
    text-align: right;
    margin-bottom: 20px;
}
.btn-add-cart {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background .15s;
}
.btn-add-cart:hover {
    background: #f2b50b;
    color: var(--brand-dark);
}
.summary-addons {
    margin-bottom: 12px;
    min-height: 20px;
}
.summary-addon-item {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.summary-addon-item .addon-val {
    color: var(--brand-dark);
}
/* Content Tabs */
.tab-content-pane {
    display: none;
}
.tab-content-pane.active {
    display: block;
}
/* Divider */
.cfg-divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 4px 0 24px;
}
/* Toggle Switch (Domain WHOIS) */
.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 16px;
}
.toggle-row.active {
    border-color: var(--brand-yellow);
    background: #fffbe6;
}
.toggle-row-text .title {
    font-size: 13px;
    font-weight: 600;
}
.toggle-row-text .desc {
    font-size: 11px;
    color: var(--text-muted);
}
.toggle-switch {
    position: relative;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
}
.toggle-switch input {
    display: none;
}
.toggle-switch .slider {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 22px;
    cursor: pointer;
    transition: background .2s;
}
.toggle-switch .slider::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    left: 3px;
    top: 3px;
    transition: transform .2s;
}
.toggle-switch input:checked + .slider {
    background: var(--brand-yellow);
}
.toggle-switch input:checked + .slider::before {
    transform: translateX(18px);
}
/* Domain Input Row (Hosting) */
.domain-input-row {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}
.domain-input-row input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color .15s;
}
.domain-input-row input:focus {
    border-color: var(--brand-yellow);
}
.domain-input-row select {
    padding: 10px 14px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    background: #fff;
    cursor: pointer;
    outline: none;
}
.domain-input-row select:focus {
    border-color: var(--brand-yellow);
}
/* Hosting Domain Toggle */
.hosting-domain-toggle {
    display: flex;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}
.hosting-domain-toggle button {
    flex: 1;
    padding: 10px;
    border: none;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s;
}
.hosting-domain-toggle button.active {
    background: var(--brand-yellow);
    color: var(--brand-dark);
    font-weight: 700;
}
@media (max-width: 900px) {
    .configure-wrap {
        grid-template-columns: 1fr;
    }
    .option-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .period-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quota-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ════════════════════════════════════════
   DOMAIN-SELECT
   ════════════════════════════════════════ */
/* Layout */
.domain-wrap {
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}
@media (max-width: 900px) {
    .domain-wrap {
        grid-template-columns: 1fr;
    }
}
/* Card */
.ds-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    overflow: hidden;
}
.ds-card-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--border-light);
}
.ds-card-header h2 {
    font-family: 'Audiowide', sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ds-card-header p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 6px 0 0;
}
.ds-card-body {
    padding: 24px;
}
/* Search Row */
.domain-search-row {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}
.domain-name-input {
    flex: 1;
    padding: 11px 14px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .15s;
}
.domain-name-input:focus {
    border-color: var(--brand-yellow);
}
.domain-name-input.error {
    border-color: #ef4444;
}
.domain-tld-select {
    padding: 11px 12px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    background: #fff;
    cursor: pointer;
    transition: border-color .15s;
    min-width: 90px;
}
.domain-tld-select:focus {
    border-color: var(--brand-yellow);
}
.btn-search {
    padding: 11px 20px;
    background: var(--brand-yellow);
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-dark);
    cursor: pointer;
    transition: opacity .15s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.btn-search:hover {
    opacity: .88;
}
.btn-search:disabled {
    opacity: .6;
    cursor: default;
}
/* Searching State */
.search-placeholder {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
    font-size: 13px;
}
.search-placeholder i {
    font-size: 40px;
    color: #d1d5db;
    display: block;
    margin-bottom: 10px;
}
.search-loading {
    text-align: center;
    padding: 40px 0;
}
.search-loading .spinner-border {
    color: var(--brand-yellow);
    width: 32px;
    height: 32px;
}
.search-loading p {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 13px;
}
/* Results */
.results-section {
    display: none;
}
.results-section.visible {
    display: block;
}
.section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border-light);
}
/* Domain Option Card */
.domain-option {
    border: 2px solid var(--border-light);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all .15s;
    display: flex;
    align-items: center;
    gap: 14px;
}
.domain-option:hover {
    border-color: #c7d2e8;
    background: #f8fafd;
}
.domain-option.selected {
    border-color: var(--brand-yellow);
    background: #fffbe6;
}
.domain-option-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--text-muted);
}
.domain-option.selected .domain-option-icon {
    background: #fffbe6;
    color: var(--brand-dark);
}
.domain-option-body {
    flex: 1;
    min-width: 0;
}
.domain-option-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}
.domain-option-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}
.domain-option-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-dark);
    white-space: nowrap;
}
.domain-option.selected .domain-option-price {
    color: #16a34a;
}
.domain-option-badge {
    font-size: 10px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 20px;
    padding: 2px 8px;
    font-weight: 600;
    white-space: nowrap;
}
.domain-option-select-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: transparent;
    transition: all .15s;
}
.domain-option.selected .domain-option-select-indicator {
    background: var(--brand-yellow);
    border-color: var(--brand-yellow);
    color: var(--brand-dark);
}
/* Existing Domain Section */
.existing-domain-section {
    margin-top: 16px;
}
.existing-domain-input-row {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 0;
}
.existing-domain-input-row input {
    flex: 1;
    padding: 9px 12px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color .15s;
}
.existing-domain-input-row input:focus {
    border-color: var(--brand-yellow);
}
.existing-domain-input-row input.hidden-when-ns {
    display: none;
}
/* Skip Option */
.skip-option {
    margin-top: 20px;
    border-top: 1px dashed var(--border-light);
    padding-top: 16px;
}
/* Domain-Select CTA
   Note: This redefines .btn-continue as a yellow button
   (CART section defines it as a simple text link).
   Each page loads its own variant via cascade. */
.btn-continue {
    width: 100%;
    padding: 14px;
    background: var(--brand-yellow);
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-dark);
    cursor: pointer;
    transition: opacity .15s;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-continue:hover {
    opacity: .88;
}
.btn-continue:disabled {
    opacity: .55;
    cursor: default;
}
/* Summary Domain Row */
.summary-domain-row {
    margin-top: 12px;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.summary-domain-row i {
    color: var(--text-muted);
}
/* Info Note */
.info-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fffbe6;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 12px;
    color: #92400e;
    margin-bottom: 20px;
}
.info-note i {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}


/* ════════════════════════════════════════
   ILETISIM
   ════════════════════════════════════════ */
.contact-form {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 2rem;
}
.contact-form .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #282828;
    margin-bottom: 0.5rem;
}
.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #282828;
    transition: border-color 0.2s;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.15);
    outline: none;
}
.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}
.contact-submit-btn {
    background: var(--primary-color);
    color: #282828;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}
.contact-submit-btn:hover {
    background: var(--primary-hover);
}
.contact-info-card {
    background: #282828;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #333;
}
.contact-info-item:last-child {
    border-bottom: none;
}
.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 212, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon svg {
    stroke: #ffd400;
}
.contact-info-label {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}
.contact-info-value {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
}
.contact-info-value a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-info-value a:hover {
    color: var(--primary-color);
}


/* ════════════════════════════════════════
   REGISTER (page-specific)
   ════════════════════════════════════════ */
.form-wrapper--register {
    max-width: 500px;
}
/* Toggle */
.modern-toggle {
    background-color: #f1f5f9;
    padding: 5px;
    border-radius: 10px;
    display: flex;
    position: relative;
    margin-bottom: 30px;
    border: 1px solid var(--border-light);
}
.toggle-slide {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(50% - 5px);
    height: calc(100% - 10px);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}
.toggle-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    z-index: 2;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.toggle-btn.active {
    color: #c7a600;
}
.modern-toggle[data-active="corporate"] .toggle-slide {
    transform: translateX(100%);
}
/* Corporate Animation */
.corp-area {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-out;
    opacity: 0;
}
.corp-area.open {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-bottom: 1rem;
}
.corp-content {
    overflow: hidden;
}


/* ════════════════════════════════════════
   ORDER-SUCCESS
   ════════════════════════════════════════ */
/* Main */
.success-wrap {
    max-width: 720px;
    margin: 48px auto;
    padding: 0 24px;
}
/* Success Card */
.success-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    margin-bottom: 24px;
}
/* Hero */
.success-hero {
    padding: 48px 24px 36px;
    text-align: center;
    background: linear-gradient(135deg, #f9fff4 0%, #fffbe6 100%);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}
.checkmark-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}
.checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--success-green);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn .4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.checkmark-circle i {
    font-size: 40px;
    color: #fff;
}
.checkmark-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 3px solid var(--success-green);
    opacity: 0;
    animation: ringExpand .6s ease .3s forwards;
}
@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes ringExpand {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}
.success-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.success-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}
/* Order Details */
.order-details {
    padding: 28px;
}
.order-ref {
    text-align: center;
    margin-bottom: 24px;
}
.order-ref-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.order-ref-number {
    font-size: 24px;
    font-weight: 700;
    font-family: monospace;
    background: #f8f9fa;
    border: 2px dashed var(--border-light);
    border-radius: 8px;
    padding: 10px 20px;
    display: inline-block;
    letter-spacing: 2px;
}
/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.info-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 16px;
}
.info-item .info-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}
.info-item .info-value {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}
.info-item .info-value i {
    font-size: 16px;
    color: var(--text-muted);
}
.badge-paid {
    background: #dcfce7;
    color: #16a34a;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 700;
}
.badge-pending {
    background: #fef9c3;
    color: #ca8a04;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 700;
}
/* Ordered Products */
.products-section {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    margin-bottom: 24px;
}
.products-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}
.product-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}
.product-row:last-child {
    border-bottom: none;
}
.product-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fffbe6;
    border: 1px solid var(--brand-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.product-icon i {
    font-size: 16px;
    color: var(--brand-dark);
}
.product-name {
    font-size: 13px;
    font-weight: 600;
    flex: 1;
}
.product-price {
    font-size: 14px;
    font-weight: 700;
}
/* Total Row */
.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fffbe6;
    border: 2px solid var(--brand-yellow);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 24px;
}
.total-row .total-label {
    font-size: 14px;
    font-weight: 700;
}
.total-row .total-value {
    font-size: 20px;
    font-weight: 700;
}
/* Timeline */
.timeline {
    margin-bottom: 24px;
}
.timeline-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}
.timeline-item {
    display: flex;
    gap: 14px;
    padding-bottom: 18px;
    position: relative;
}
.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 30px;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
}
.timeline-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}
.timeline-dot.done {
    background: var(--success-green);
    color: #fff;
}
.timeline-dot.active {
    background: var(--brand-yellow);
    color: var(--brand-dark);
    animation: pulse 1.5s infinite;
}
.timeline-dot.pending {
    background: var(--border-light);
    color: #aaa;
}
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255,212,0,0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255,212,0,0);
    }
}
.timeline-content .tl-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}
.timeline-content .tl-desc {
    font-size: 12px;
    color: var(--text-muted);
}
/* Email Note */
.email-note {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.email-note i {
    font-size: 20px;
    color: #0284c7;
    flex-shrink: 0;
}
.email-note p {
    font-size: 12px;
    color: #0369a1;
    margin: 0;
}
.email-note strong {
    color: #0369a1;
}
/* Action Buttons */
.btn-copy-order {
    background: #f1f5f9;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 7px 12px;
    font-size: 14px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all .15s;
    display: flex;
    align-items: center;
}
.btn-copy-order:hover {
    border-color: var(--brand-yellow);
    color: var(--brand-dark);
    background: #fffbe6;
}
.btn-copy-order.copied {
    border-color: var(--success-green);
    color: var(--success-green);
    background: #f0fdf4;
}
.btn-resend {
    background: none;
    border: 1px solid #bae6fd;
    border-radius: 6px;
    padding: 5px 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #0284c7;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    transition: all .15s;
}
.btn-resend:hover {
    background: #e0f2fe;
}
.btn-resend:disabled {
    opacity: .5;
    cursor: not-allowed;
}
.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.btn-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}
.btn-panel:hover {
    background: #f2b50b;
    color: var(--brand-dark);
}
.btn-orders {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--brand-dark);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}
.btn-orders:hover {
    background: #3a3a3a;
    color: #fff;
}
/* Confetti */
.confetti-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 999;
}
.confetti-piece {
    position: absolute;
    top: -10px;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    animation: confettiFall linear forwards;
}
@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}
@media (max-width: 600px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    .action-buttons {
        grid-template-columns: 1fr;
    }
    .success-title {
        font-size: 17px;
    }
}


/* ════════════════════════════════════════
   VDS-SUNUCU
   ════════════════════════════════════════ */
:root {
    --vn-primary: #ffd400;
    --vn-primary-hover: #f2b50b;
    --vn-dark: #282828;
    --vn-gray: #555555;
    --vn-border: rgba(40, 40, 40, 0.1);
    --vn-radius: 12px;
    --vn-transition: 0.25s ease;
    --vn-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --vn-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.vr-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}
.vr-card {
    background: #fff;
    border: 1.5px solid var(--vn-border);
    border-radius: var(--vn-radius);
    box-shadow: var(--vn-shadow);
    position: relative;
    transition: all var(--vn-transition);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto auto;
    align-items: center;
    padding: 22px 0;
}
.vr-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--vn-shadow-hover);
}
/* Spec Column */
.vr-spec {
    padding: 0 20px;
    border-right: 1px solid var(--vn-border);
    text-align: center;
}
.vr-spec:first-child {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding-left: 28px;
}
.vr-spec:first-child .vr-spec-icon {
    width: 44px;
    height: 44px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vr-spec:first-child .vr-spec-icon svg {
    color: var(--vn-dark);
}
.vr-spec-val {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--vn-dark);
    line-height: 1.2;
}
.vr-spec-label {
    font-size: 0.72rem;
    color: var(--vn-gray);
    margin-top: 1px;
}
/* Price Column */
.vr-price {
    padding: 0 24px;
    text-align: center;
    border-right: 1px solid var(--vn-border);
}
.vr-price-old {
    font-size: 0.7rem;
    color: #999;
    text-decoration: line-through;
    opacity: 0.6;
}
.vr-price-val {
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--vn-dark);
    line-height: 1;
    white-space: nowrap;
}
.vr-price-val small {
    font-size: 0.55em;
    font-weight: 400;
    color: var(--vn-gray);
}
.vr-price-note {
    font-size: 0.6rem;
    color: var(--vn-gray);
    margin-top: 2px;
}
/* Action Column */
.vr-action {
    padding: 0 28px 0 20px;
}
.vr-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    background: var(--vn-primary);
    color: var(--vn-dark);
    padding: 10px 22px;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--vn-transition);
}
.vr-btn:hover {
    background: var(--vn-primary-hover);
    color: var(--vn-dark);
}
.vr-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.vr-btn--outline {
    background: transparent;
    border: 1.5px solid var(--vn-border);
    color: var(--vn-dark);
}
.vr-btn--outline:hover {
    background: var(--vn-dark);
    border-color: var(--vn-dark);
    color: #fff;
}
.vr-btn--outline:hover svg {
    color: #fff;
}
/* Responsive - row cards */
@media (max-width: 1199px) {
    .vr-card {
        grid-template-columns: 1fr 1fr 1fr 1fr auto auto;
        font-size: 0.9em;
    }
    .vr-card .vr-spec:nth-child(5) {
        display: none;
    }
}
@media (max-width: 991px) {
    .vr-card {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px 0;
        padding: 20px 0;
    }
    .vr-spec {
        border-right: none;
        padding: 4px 16px;
    }
    .vr-spec:first-child {
        padding-left: 20px;
    }
    .vr-price {
        border-right: none;
        padding: 4px 16px;
    }
    .vr-action {
        padding: 4px 20px;
    }
}
@media (max-width: 575px) {
    .vr-card {
        grid-template-columns: 1fr 1fr;
        gap: 10px 0;
        padding: 18px 0;
    }
    .vr-price {
        grid-column: 1;
    }
    .vr-action {
        grid-column: 2;
    }
}
