/* ================================================
   LEDGER TURKEY - River Teknoloji Landing Page
   Temiz, bakımı kolay, responsive CSS
   Referans: shop.ledger.com/pages/hardware-wallet
================================================ */

/* ---- RESET & BASE ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    background-color: #f5f5f7;
    color: #1d1d1f;
    -webkit-font-smoothing: antialiased;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: opacity 0.2s; }
a:hover { opacity: 0.85; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ---- TYPOGRAPHY ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---- CONTAINER ---- */
.ldg-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================================
   HEADER
================================================ */
.ldg-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ldg-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
}
.ldg-logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ldg-logo-area img {
    height: 22px;
    width: auto;
}
.ldg-logo-divider {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.25);
}
.ldg-logo-text {
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.ldg-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.ldg-header-link {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}
.ldg-header-link:hover {
    color: #fff;
    opacity: 1;
}
/* Cart Icon & Dropdown */
.ldg-cart-wrapper {
    position: relative;
}
.ldg-cart-toggle {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
    cursor: pointer;
}
.ldg-cart-toggle:hover {
    background: rgba(255,255,255,0.1);
    opacity: 1;
}
.ldg-cart-count {
    position: absolute;
    top: 0;
    right: -2px;
    background: #ff5000;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
/* Dropdown */
.ldg-cart-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 340px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    z-index: 2000;
    overflow: hidden;
}
.ldg-cart-dropdown.ldg-cart-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ldg-cart-dd-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #1a1a1a;
}
.ldg-cart-dd-close {
    font-size: 16px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}
.ldg-cart-dd-close:hover { color: #333; opacity: 1; }
.ldg-cart-dd-body {
    max-height: 280px;
    overflow-y: auto;
    padding: 12px 20px;
}
.ldg-cart-dd-empty {
    text-align: center;
    color: #999;
    font-size: 13px;
    padding: 24px 0;
}
/* Cart Item */
.ldg-cart-dd-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}
.ldg-cart-dd-item:last-child { border-bottom: none; }
.ldg-cart-dd-item img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 8px;
    background: #f9f9fb;
    flex-shrink: 0;
}
.ldg-cart-dd-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ldg-cart-dd-item-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ldg-cart-dd-item-qty {
    font-size: 11px;
    color: #6e6e73;
}
.ldg-cart-dd-item-price {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    flex-shrink: 0;
}
/* Footer */
.ldg-cart-dd-footer {
    padding: 14px 20px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}
.ldg-cart-dd-total {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.ldg-cart-dd-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #ff5000;
    color: #fff;
    padding: 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}
.ldg-cart-dd-btn:hover { background: #e04500; color: #fff; opacity: 1; }

/* Mobile burger */
.ldg-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}
.ldg-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ================================================
   HERO SECTION
================================================ */
.ldg-hero {
    position: relative;
    background: #000000;
    color: #ffffff;
    overflow: hidden;
    padding: 80px 0 0 0;
}
.ldg-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.ldg-hero-content {
    flex: 1;
    max-width: 580px;
    padding-bottom: 80px;
}
.ldg-hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ce9cf4; /* Ledger Purple */
    letter-spacing: -0.02em;
}
.ldg-hero-sub {
    font-size: 17px;
    color: #d1d1d1;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}
.ldg-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #ff5000; /* Ledger Orange */
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}
.ldg-hero-cta:hover {
    background: #e04600;
    color: #fff;
}
.ldg-hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-self: flex-end;
    margin-bottom: -5px; /* Slight bleed to sit exactly on bottom */
}
.ldg-hero-image img {
    width: 100%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ================================================
   WHAT IS A HARDWARE WALLET
================================================ */
.ldg-what-is {
    background: #fff;
    padding: 100px 0;
}
.ldg-what-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.ldg-what-left {
    flex: 1;
}
.ldg-what-right {
    flex: 1;
    display: flex;
    justify-content: center;
}
.ldg-what-right img {
    max-width: 100%;
    height: auto;
}
.ldg-accordion {
    margin-top: 40px;
}
.ldg-acc-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 24px 0;
}
.ldg-acc-header {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}
.ldg-acc-content {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* ================================================
   COMPARE OUR DEVICES  – Ledger-style
================================================ */
.ldg-compare {
    background: #fff;
    padding: 80px 0 100px;
    border-top: 1px solid #e8e8e8;
}
.ldg-cmp-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.ldg-cmp-header {
    text-align: center;
    margin-bottom: 56px;
}
.ldg-cmp-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}
.ldg-cmp-subtitle {
    font-size: 15px;
    color: #6e6e73;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}
/* Scroll wrapper for mobile */
.ldg-cmp-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
/* Main table */
.ldg-cmp-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    table-layout: fixed;
}
/* Label column (leftmost) */
.ldg-cmp-label-col {
    width: 160px;
    min-width: 120px;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    padding: 14px 12px 14px 0;
    vertical-align: middle;
}
/* Product header cells */
.ldg-cmp-product-row td {
    vertical-align: top;
    padding: 0 12px 32px;
    border-bottom: 2px solid #e8e8e8;
}
.ldg-cmp-product-cell {
    text-align: center;
    vertical-align: top !important;
}
.ldg-cmp-img-wrap {
    display: block;
    height: 180px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 16px;
}
.ldg-cmp-img-wrap img {
    max-height: 170px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.ldg-cmp-img-wrap:hover img {
    transform: scale(1.04);
}
.ldg-cmp-prod-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
}
.ldg-cmp-prod-desc {
    font-size: 12px;
    color: #6e6e73;
    line-height: 1.5;
    margin-bottom: 10px;
    min-height: 54px;
}
.ldg-cmp-prod-price {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}
/* Sepete Ekle button */
.ldg-cmp-btn {
    display: block;
    width: 100%;
    background: #ff5000;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    padding: 11px 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 8px;
    transition: background 0.2s;
}
.ldg-cmp-btn:hover { background: #e04500; }
.ldg-cmp-btn-out {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}
.ldg-cmp-learn {
    display: block;
    font-size: 12px;
    color: #1a1a1a;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
}
.ldg-cmp-learn:hover { text-decoration: underline; }

/* Group heading row */
.ldg-cmp-group-row td {
    padding: 20px 0 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    border-top: 1px solid #e8e8e8;
}
/* Feature rows */
.ldg-cmp-feat-row td {
    border-bottom: 1px solid #f0f0f0;
    padding: 14px 12px;
    vertical-align: middle;
}
.ldg-cmp-val-cell {
    text-align: center;
}
/* Checkmark */
.ldg-cmp-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    background: #ff5000;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}
.ldg-cmp-no {
    color: #ccc;
    font-size: 18px;
    font-weight: 300;
}
/* Icon + text value */
.ldg-cmp-icon-val {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #444;
}
.ldg-cmp-icon-val svg { opacity: 0.6; }
/* Text value */
.ldg-cmp-text-val {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ldg-cmp-text-val strong {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}
.ldg-cmp-text-val small {
    font-size: 11px;
    color: #6e6e73;
}


.ldg-compare-wrap {
    display: flex;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    background: #fff;
}
/* Özellik etiket sütunu */
.ldg-cmp-labels {
    min-width: 160px;
    flex-shrink: 0;
    background: #f9f9fb;
    border-right: 1px solid #ebebeb;
}
/* Ürün sütunları */
.ldg-cmp-product {
    flex: 1;
    border-right: 1px solid #ebebeb;
}
.ldg-cmp-product:last-child {
    border-right: none;
}
/* Başlık hücresi (ürün foto + isim + fiyat + buton) */
.ldg-cmp-header-cell {
    padding: 30px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    min-height: 280px;
    border-bottom: 2px solid #ebebeb;
    background: #fff;
}
.ldg-cmp-labels .ldg-cmp-header-cell {
    background: #f9f9fb;
    min-height: 280px;
}
.ldg-cmp-header-cell img {
    max-height: 150px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}
.ldg-cmp-header-cell img:hover {
    transform: scale(1.05);
}
.ldg-cmp-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.4;
}
.ldg-cmp-price {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}
/* Özellik satırı hücreleri */
.ldg-cmp-feat-cell {
    padding: 16px 20px;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 54px;
}
.ldg-cmp-labels .ldg-cmp-feat-cell {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 13px;
    background: #f9f9fb;
}
.ldg-cmp-product .ldg-cmp-feat-cell {
    justify-content: center;
    text-align: center;
}
.ldg-cmp-feat-icon {
    font-size: 16px;
    flex-shrink: 0;
}
.ldg-cmp-check {
    color: #ff5000;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}
.ldg-cmp-cross {
    color: #bbb;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}
/* buton boyutu */
.ldg-btn-sm {
    padding: 10px 18px !important;
    font-size: 13px !important;
    border-radius: 10px !important;
    width: 100%;
}
@media (max-width: 768px) {
    .ldg-compare-wrap {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    .ldg-cmp-labels { min-width: 120px; }
    .ldg-cmp-header-cell { min-height: 220px; padding: 20px 12px; }
    .ldg-cmp-feat-cell { padding: 12px; font-size: 12px; min-height: 46px; }
    .ldg-cmp-name { font-size: 11px; }
}


/* ================================================
   WALLET COMPARISON
================================================ */
.ldg-wallet-compare {
    background: #fff;
    padding: 100px 0;
}
.ldg-compare-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}
.ldg-diff-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}
.ldg-diff-table th {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    padding-bottom: 30px;
}
.ldg-diff-table td {
    text-align: left;
    font-size: 15px;
    line-height: 1.5;
    vertical-align: top;
    width: 25%;
}
.ldg-diff-table td:not(.ldg-feature-name) {
    color: #555;
}
.ldg-diff-table .ldg-feature-name {
    width: 25%;
}

@media (max-width: 991px) {
    .ldg-hero {
        padding: 60px 0;
    }
    .ldg-hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .ldg-hero-content {
        padding-bottom: 0;
    }
    .ldg-hero-image {
        justify-content: center;
        margin-top: 20px;
    }
    .ldg-what-inner {
        flex-direction: column;
    }
    .ldg-what-right {
        margin-top: 40px;
    }
    .ldg-compare-table-wrapper {
        padding: 20px;
    }
}

/* ================================================
   SECTION TITLES
================================================ */
.ldg-section {
    padding: 80px 0;
}
.ldg-section-title {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}
.ldg-section-subtitle {
    font-size: 16px;
    color: #6e6e73;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ================================================
   PRODUCT CARDS
================================================ */
.ldg-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.ldg-product-card {
    background: #f5f5f7;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.ldg-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.ldg-product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #fff;
}
.ldg-product-img img {
    max-height: 220px;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.ldg-product-card:hover .ldg-product-img img {
    transform: scale(1.05);
}
.ldg-product-info {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.ldg-product-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.ldg-product-desc {
    font-size: 14px;
    color: #6e6e73;
    margin-bottom: 16px;
    line-height: 1.5;
    flex: 1;
}

/* Pricing & Stock */
.ldg-product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}
.ldg-current-price {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}
.ldg-old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}
.ldg-discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff6b00;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    z-index: 2;
}
.ldg-stock-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin-bottom: 16px;
    font-weight: 500;
}
.ldg-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.ldg-in-stock { color: #30d158; }
.ldg-in-stock .ldg-stock-dot { background: #30d158; box-shadow: 0 0 0 2px rgba(48,209,88,0.2); }
.ldg-no-stock { color: #ff3b30; }
.ldg-no-stock .ldg-stock-dot { background: #ff3b30; }
.ldg-out-of-stock .ldg-product-img { opacity: 0.6; filter: grayscale(100%); }
.ldg-product-card { position: relative; } /* For absolute positioned badge */
.ldg-btn-disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}


/* Product buttons */
.ldg-product-actions {
    display: flex;
    gap: 8px;
}
.ldg-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.ldg-btn-primary {
    background: #000;
    color: #fff;
}
.ldg-btn-primary:hover {
    background: #333;
    opacity: 1;
}
.ldg-btn-secondary {
    background: rgba(0,0,0,0.06);
    color: #1a1a1a;
}
.ldg-btn-secondary:hover {
    background: rgba(0,0,0,0.12);
    opacity: 1;
}

/* ================================================
   FEATURES SECTION
================================================ */
.ldg-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.ldg-feature-card {
    background: #f5f5f7;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}
.ldg-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.ldg-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ldg-feature-icon svg {
    width: 36px;
    height: 36px;
    color: #fff;
}
.ldg-feature-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.ldg-feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}
.ldg-feature-desc {
    font-size: 14px;
    color: #6e6e73;
    line-height: 1.6;
}

/* ================================================
   COMPARISON TABLE
================================================ */
.ldg-comparison {
    background: #f5f5f7;
    padding: 80px 0;
}
.ldg-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.ldg-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.ldg-table th {
    padding: 20px 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 2px solid #f0f0f0;
    background: #fafafa;
}
.ldg-table th:first-child {
    text-align: left;
    padding-left: 24px;
}
.ldg-table td {
    padding: 16px;
    text-align: center;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}
.ldg-table td:first-child {
    text-align: left;
    padding-left: 24px;
    font-weight: 500;
    color: #1a1a1a;
}
.ldg-table tr:last-child td {
    border-bottom: none;
}
.ldg-table .ldg-check {
    color: #30d158;
    font-size: 18px;
}
.ldg-table .ldg-cross {
    color: #ccc;
    font-size: 18px;
}
.ldg-price-note {
    text-align: center;
    margin-top: 24px;
    font-size: 15px;
    color: #6e6e73;
}
.ldg-price-note a {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.ldg-price-note a:hover {
    color: #bf5af2;
    opacity: 1;
}

/* ================================================
   FOOTER
================================================ */
.ldg-footer {
    background: #000;
    color: rgba(255,255,255,0.6);
    padding: 32px 0;
}
.ldg-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.ldg-footer-copy {
    font-size: 13px;
}
.ldg-footer-link {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}
.ldg-footer-link:hover {
    color: #fff;
    opacity: 1;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 768px) {
    .ldg-header-inner { height: 56px; }
    .ldg-logo-area img { height: 18px; }
    .ldg-logo-text { font-size: 10px; }
    .ldg-header-link { display: none; }
    .ldg-burger { display: flex; }
    
    .ldg-cart-dropdown {
        width: 300px;
        right: -45px;
    }

    .ldg-hero { min-height: 380px; }
    .ldg-hero-content { padding: 40px 20px; }
    .ldg-hero-sub {
        font-size: 14px;
        margin-bottom: 24px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .ldg-section { padding: 48px 0; }
    .ldg-section-title { margin-bottom: 8px; }
    .ldg-section-subtitle { margin-bottom: 32px; }

    .ldg-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .ldg-product-img { padding: 16px; }
    .ldg-product-img img { max-height: 140px; }
    .ldg-product-info { padding: 12px 16px 16px; }
    .ldg-product-name { font-size: 14px; }
    .ldg-product-desc { display: none; }
    .ldg-product-actions { flex-direction: column; }
    .ldg-btn { padding: 10px 12px; font-size: 13px; }
    .ldg-swatch { width: 20px; height: 20px; }

    .ldg-features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .ldg-feature-card { padding: 20px; }
    .ldg-feature-icon { width: 56px; height: 56px; border-radius: 14px; }

    .ldg-footer-inner { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    .ldg-products-grid { grid-template-columns: 1fr; }
    .ldg-features-grid { grid-template-columns: 1fr; }
    
    .ldg-cart-dropdown {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0 0 16px 16px;
    }
}

/* ================================================
   ANIMATIONS
================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.ldg-animate {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}
.ldg-animate-delay-1 { animation-delay: 0.1s; }
.ldg-animate-delay-2 { animation-delay: 0.2s; }
.ldg-animate-delay-3 { animation-delay: 0.3s; }
.ldg-animate-delay-4 { animation-delay: 0.4s; }


.ldg-reseller-logo {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    height: 14px;
    width: auto;
    max-width: 80%;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}
.ldg-product-main-img {
    max-height: 220px;
    object-fit: contain;
    transition: transform 0.4s ease;
}
