@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    /* Kuruyemiş paleti */
    --blue-main: #A16207;
    --blue-light: #D97706;
    --blue-ice: #FFF7ED;
    --blue-soft: #FEF3C7;
    --cyan: #65A30D;
    --navy: #78350F;
    --navy-dark: #451A03;
    --white: #FFFFFF;
    --green-accent: #65A30D;
    --star-gold: #F59E0B;

    /* Semantik tokenlar */
    --primary: #78350F;
    --primary-light: #A16207;
    --primary-dark: #451A03;
    --accent: #D97706;
    --accent-dark: #78350F;
    --accent-cyan: #65A30D;
    --accent-light: #FFF7ED;
    --bg: #FFF7ED;
    --bg-soft: #FFFBEB;
    --card: #FFFFFF;
    --text: #333333;
    --text-dark: #111827;
    --text-light: #666666;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    --border-blue: rgba(161, 98, 7, 0.2);
    --success: #65A30D;
    --error: #dc2626;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow: 0 4px 16px rgba(120, 53, 15, 0.08);
    --shadow-lg: 0 8px 28px rgba(161, 98, 7, 0.16);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    margin-bottom: 10px;
}

.logo {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 600px) {
    .logo {
        font-size: 16px;
    }
}

.logo i {
    color: var(--blue-main);
}

.btn-cta {
    background: linear-gradient(135deg, var(--blue-main), var(--navy));
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 102, 255, 0.32);
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }
}

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border: 1px solid var(--border);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--navy);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 29px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.hero-content h1 span,
.hero-content h1 strong {
    color: var(--blue-main);
}

.hero-highlight {
    background: var(--blue-soft);
    border-left: 4px solid var(--blue-main);
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 18px;
    border: 1px solid var(--border-blue);
    border-left: 4px solid var(--blue-main);
}

.hero-highlight p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.hero-highlight i {
    color: var(--cyan);
    font-size: 22px;
    flex-shrink: 0;
}

.hero-highlight span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}

.hero-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 25px;
    font-weight: 800;
    color: var(--blue-main);
}

.old-price {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--navy);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-soft);
    color: var(--text-dark);
    border: 1px solid var(--border);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    flex: 0 1 auto;
    min-width: fit-content;
}

.benefit i {
    color: var(--cyan);
}

@media (max-width: 600px) {
    .benefits {
        gap: 8px;
    }
    .benefit {
        font-size: 11px;
        padding: 6px 12px;
        gap: 6px;
    }
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    color: var(--text-light);
    font-size: 13px;
}

.hero-note i {
    color: var(--blue-main);
}

.hero-sales-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--blue-main), var(--navy));
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 700;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
}

.hero-sales-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-soft);
    color: var(--text-dark);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border);
}

.campaign-note {
    background: var(--bg-soft);
    border-left: 4px solid var(--blue-main);
    padding: 18px 22px;
    border-radius: var(--radius);
    margin-top: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    line-height: 1.5;
    border: 1px solid var(--border);
    border-left: 4px solid var(--blue-main);
}

.campaign-note i {
    color: var(--cyan);
    font-size: 26px;
    flex-shrink: 0;
}

.campaign-note strong {
    color: var(--text-dark);
    font-weight: 700;
}

.campaign-note .gift-highlight {
    color: var(--blue-main);
    font-weight: 800;
    font-size: 18px;
}

.hero-gif-preview {
    margin: 0 auto 20px;
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border: 1px solid var(--border);
}

.hero-gif-preview img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 600px) {
    .campaign-note {
        padding: 16px 18px;
        font-size: 15px;
        gap: 12px;
        margin-bottom: 18px;
    }
    .campaign-note i {
        font-size: 22px;
    }
    .campaign-note .gift-highlight {
        font-size: 16px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: none;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-blue);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--blue-soft);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-main);
    font-size: 18px;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 13px;
    color: var(--text-light);
}

.order-section {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 40px 0;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.order-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--blue-main), var(--cyan));
}

.section-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
    transform: translateY(-50%);
    z-index: 1;
}

.step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.step.active {
    background: var(--blue-main);
    color: white;
    border-color: var(--blue-main);
}

.step-label {
    position: absolute;
    top: 100%;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-light);
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
}

.step.active .step-label {
    color: var(--blue-main);
    font-weight: 600;
}

.live-stats {
    display: flex;
    justify-content: space-around;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 15px;
    margin-bottom: 25px;
}

@media (max-width: 600px) {
    .live-stats {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 8px;
        margin-bottom: 20px;
        gap: 4px;
    }
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

@media (max-width: 600px) {
    .stat {
        gap: 3px;
        flex: 1;
    }
}

.stat i {
    color: var(--blue-main);
    font-size: 18px;
}

@media (max-width: 600px) {
    .stat i {
        font-size: 14px;
    }
}

.stat .count {
    font-weight: 700;
    color: var(--blue-main);
    font-size: 18px;
}

@media (max-width: 600px) {
    .stat .count {
        font-size: 16px;
    }
}

.stat .label {
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 600px) {
    .stat .label {
        font-size: 11px;
        line-height: 1.2;
    }
}

.packages {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.variation-section {
    margin-bottom: 24px;
}

.variation-group {
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

.variation-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.variation-counter {
    font-size: 13px;
    color: var(--text-light);
}

.variation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.variation-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    padding: 8px;
    text-align: center;
}

.variation-card.selected {
    border-color: var(--blue-main);
    box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.15);
}

.variation-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    background: var(--blue-ice);
}

.variation-image {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
}

.variation-image-placeholder {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-main);
    font-weight: 800;
    font-size: 28px;
}

.variation-name {
    margin-top: 8px;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
}

.variation-actions {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.variation-btn {
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 6px;
    background: var(--blue-soft);
    color: var(--blue-main);
    font-weight: 700;
    cursor: pointer;
}

.variation-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.variation-qty {
    min-width: 18px;
    font-weight: 700;
}

.variation-error {
    margin-top: 8px;
}

.box-builder {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    padding: 24px 18px 18px;
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.08);
    margin: 22px 0 26px;
}

.box-builder-header {
    text-align: center;
    margin-bottom: 16px;
}

.box-builder-header h3 {
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.2px;
    margin-bottom: 10px;
}

.box-builder-header p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
}

.box-set-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
}

.box-set-badges span {
    background: #FEF3C7;
    border: 1px solid #F59E0B;
    border-radius: 8px;
    color: #78350F;
    font-weight: 900;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    padding: 12px 10px;
}

.box-selected-note {
    background: #DCFCE7;
    border: 1px solid #86EFAC;
    color: #166534;
    border-radius: 10px;
    font-weight: 900;
    text-align: center;
    padding: 13px 12px;
    margin-bottom: 10px;
    font-size: 13px;
}

.box-slot-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.box-slot {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: center;
    border: 1px solid #F3E8C4;
    border-radius: 9px;
    background: #FFFBEB;
    padding: 9px 8px;
    min-height: 80px;
}

.box-slot-number {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #0F172A;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
}

.box-slot-field label {
    display: block;
    color: var(--text-dark);
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: none;
}

.box-slot-field select {
    width: 100%;
    background: var(--white);
    height: 42px;
    border-radius: 9px;
    border: 1px solid #E5E7EB;
    color: #374151;
    font-size: 14px;
    padding: 0 36px;
    box-shadow: none;
}

@media (max-width: 600px) {
    .box-builder {
        padding: 18px 14px;
        border-radius: 14px;
    }

    .box-set-badges {
        grid-template-columns: 1fr;
    }

    .box-builder-header h3 {
        font-size: 17px;
    }

    .box-builder-header p,
    .box-selected-note,
    .box-set-badges span {
        font-size: 12px;
    }

    .box-slot {
        grid-template-columns: 32px 1fr;
        min-height: 76px;
        padding: 9px 8px;
    }

    .box-slot-field label {
        font-size: 13px;
    }

    .box-slot-field select {
        height: 44px;
        font-size: 13px;
    }
}

.package {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.package.has-label {
    padding-top: 48px;
}

.package:hover {
    border-color: var(--blue-main);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.package.selected {
    border-color: var(--blue-main);
    background: var(--blue-soft);
}

.package.popular::before {
    content: 'EN POPÜLER';
    position: absolute;
    top: 12px;
    left: -40px;
    transform: rotate(-45deg);
    background: var(--navy);
    color: var(--white);
    padding: 6px 60px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow);
}

.package-label-stack {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    z-index: 2;
}

@media (max-width: 600px) {
    .package-label-stack {
        top: 8px;
        right: 10px;
        max-width: calc(100% - 96px);
    }

    .package-ribbon,
    .package-discount {
        font-size: 10px;
        padding: 3px 8px;
    }
}

.package-ribbon,
.package-discount {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    color: #fff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.package-ribbon {
    background: linear-gradient(135deg, var(--blue-main), var(--cyan));
}

.package-discount {
    background: var(--navy);
    color: var(--white);
}

.package-content {
    display: grid;
    grid-template-columns: 24px 104px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.package-thumb {
    width: 104px;
    height: 84px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .package {
        padding: 14px;
        overflow: visible;
    }

    .package.has-label {
        padding-top: 54px;
    }

    .package-content {
        grid-template-columns: 24px 74px minmax(0, 1fr);
        grid-template-areas:
            "radio thumb details"
            "radio thumb price";
        align-items: center;
        column-gap: 9px;
        row-gap: 4px;
    }

    .package-thumb {
        width: 74px;
        height: 58px;
        grid-area: thumb;
    }

    .package-radio {
        width: 22px;
        height: 22px;
        grid-area: radio;
    }

    .package-title {
        font-size: 13px;
        line-height: 1.25;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .package-desc,
    .package-meta {
        font-size: 10px;
        line-height: 1.35;
    }

    .package-price {
        grid-area: price;
        min-width: 0;
        width: auto;
        text-align: left;
        display: flex;
        align-items: baseline;
        gap: 6px;
        flex-wrap: wrap;
    }

    .price-main {
        font-size: 17px;
        line-height: 1.1;
    }

    .price-old {
        font-size: 12px;
    }
}

.package-radio {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.package.selected .package-radio {
    background: var(--blue-main);
    border-color: var(--blue-main);
    color: white;
}

.package-details {
    flex-grow: 1;
    min-width: 0;
    overflow: visible;
}

@media (max-width: 600px) {
    .package-details {
        grid-area: details;
    }
}

.package-title {
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    white-space: normal;
    overflow-wrap: anywhere;
}

.package-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 6px;
    background: var(--blue-soft);
    color: var(--blue-main);
}

.package-desc {
    font-size: 14px;
    color: var(--text-light);
}

.package-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 6px;
}

.package-meta strong {
    color: var(--text-dark);
}

.package-list {
    list-style: disc;
    margin: 6px 0 0 18px;
    padding: 0;
    color: var(--text-light);
}

.package-list li {
    margin-bottom: 2px;
}

.package-price {
    text-align: right;
    flex-shrink: 0;
    min-width: 96px;
}

.price-main {
    font-size: 18px;
    font-weight: 800;
    color: var(--blue-main);
}

.price-old {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
}

@media (max-width: 900px) {
    .order-section {
        max-width: 920px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .package-content {
        grid-template-columns: 24px 82px minmax(0, 1fr);
        grid-template-areas:
            "radio thumb details"
            "radio thumb price";
        align-items: center;
        column-gap: 10px;
        row-gap: 4px;
    }

    .package-radio {
        grid-area: radio;
    }

    .package-thumb {
        grid-area: thumb;
        width: 82px;
        height: 64px;
    }

    .package-details {
        grid-area: details;
    }

    .package-price {
        grid-area: price;
        min-width: 0;
        text-align: left;
        display: flex;
        align-items: baseline;
        gap: 7px;
        flex-wrap: wrap;
    }

    .package-title {
        font-size: 14px;
        line-height: 1.25;
    }

    .package-desc,
    .package-meta {
        font-size: 11px;
        line-height: 1.35;
    }

    .price-main {
        font-size: 18px;
        line-height: 1.1;
    }

    .price-old {
        font-size: 12px;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .variation-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .variation-image,
    .variation-image-placeholder {
        height: 82px;
    }

    .variation-name {
        font-size: 13px;
    }
}

.form-group {
    margin-bottom: 15px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper.select-wrapper::after,
.input-wrapper.datalist-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    font-size: 14px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.form-input,
.form-select,
textarea.form-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-select {
    appearance: none;
    background: #fff;
    cursor: pointer;
    padding-right: 45px;
}

.form-select:disabled {
    background: #f8fafc;
    color: var(--text-light);
    cursor: not-allowed;
}

.datalist-wrapper input[disabled] {
    background: #f8fafc;
    color: var(--text-light);
    cursor: not-allowed;
}

.input-error {
    border-color: var(--error) !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.form-input:focus,
.form-select:focus,
textarea.form-input:focus {
    outline: none;
    border-color: var(--blue-main);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
}

textarea.form-input {
    min-height: 100px;
    resize: vertical;
}

.help-text {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 5px;
}

.error-text {
    font-size: 13px;
    color: var(--error);
    margin-top: 5px;
    display: none;
}

.cargo-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    margin: -8px 0 14px;
    line-height: 1.5;
}

.cargo-note i {
    color: var(--blue-main);
    margin-top: 2px;
    flex-shrink: 0;
}

.cargo-note strong {
    color: var(--text-dark);
}

.cargo-option-desc {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
    line-height: 1.35;
}

.address-format-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 10px;
    line-height: 1.55;
    padding: 10px 12px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    border-left: 3px solid var(--blue-main);
}

.address-format-note i {
    color: var(--blue-main);
    margin-top: 2px;
    flex-shrink: 0;
}

.address-format-note strong {
    color: var(--text-dark);
}

.address-format-note em {
    font-style: normal;
    font-weight: 600;
    color: var(--blue-main);
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

@media (max-width: 480px) {
    .payment-options {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

.payment-option {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-icon {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.payment-name {
    font-weight: 600;
}

@media (max-width: 480px) {
    .payment-option {
        padding: 10px;
    }

    .payment-icon {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .payment-name {
        font-size: 13px;
    }
}

.payment-option:hover {
    border-color: var(--blue-main);
}

.payment-option.selected {
    border-color: var(--blue-main);
    background: var(--blue-soft);
}

.payment-option.selected .payment-icon {
    color: var(--blue-main);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--blue-main), var(--navy));
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.22);
    transition: all 0.5s ease, background 0.6s ease;
}


.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 102, 255, 0.3);
}

.submit-btn.ready-to-submit {
    background: linear-gradient(to right, var(--green-accent), #059669);
    animation: pulse-glow-green 1.5s infinite;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.35), 0 8px 24px rgba(5, 150, 105, 0.25);
    transform: scale(1.03);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.submit-btn.ready-to-submit i {
    transform: rotate(0deg);
    opacity: 1;
}

.submit-btn.ready-to-submit:hover {
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.35);
}

@keyframes pulse-glow-green {
    0%, 100% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.35), 0 8px 24px rgba(5, 150, 105, 0.25);
        transform: scale(1.03);
    }
    50% {
        box-shadow: 0 0 32px rgba(16, 185, 129, 0.5), 0 12px 32px rgba(5, 150, 105, 0.35);
        transform: scale(1.05);
    }
}

.info-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

@media (max-width: 900px) {
    .info-sections {
        grid-template-columns: 1fr;
    }
}

.info-card {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: none;
    border: 1px solid var(--border);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: var(--blue-main);
}

.info-card ul {
    list-style: none;
}

.info-card li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.info-card li::before {
    content: '•';
    color: var(--blue-main);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.info-card strong {
    color: var(--text-dark);
}

.footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-link:hover {
    color: var(--blue-main);
}

.footer-business-info {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-business-info a {
    color: var(--primary-light);
    text-decoration: none;
}

.footer-business-info a:hover {
    text-decoration: underline;
}

.policy-page {
    background: var(--bg);
}

.policy-header {
    margin-bottom: 20px;
}

.policy-logo {
    text-decoration: none;
    color: var(--primary);
}

.policy-back-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.policy-page-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    margin-bottom: 40px;
}

.policy-page-title {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.policy-page-content {
    max-width: 100%;
}

.policy-footer {
    margin-top: 0;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 28px;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.5;
    animation: pulse-ring 2s infinite;
    z-index: -1;
}

.whatsapp-float i {
    position: relative;
    z-index: 1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 15px;
        right: 15px;
        font-size: 24px;
    }
}

.modal,
.policy-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 20px;
}

.modal.visible,
.policy-modal.visible {
    opacity: 1;
    visibility: visible;
}

.modal-content,
.policy-content {
    background: var(--card);
    border-radius: var(--radius);
    padding: 30px;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.policy-content {
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal.visible .modal-content,
.policy-modal.visible .policy-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-light);
    cursor: pointer;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
}

.modal-btn {
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.modal-btn.cancel {
    background: var(--border);
    color: var(--text);
}

.modal-btn.confirm {
    background: var(--blue-main);
    color: white;
}

.sales-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--card);
    border-radius: var(--radius);
    padding: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(-120%);
    transition: transform 0.4s ease;
    z-index: 90;
    max-width: 350px;
    border-left: 4px solid var(--blue-main);
    pointer-events: none;
}

.sales-popup.visible {
    transform: translateX(0);
}

.sales-popup.hidden {
    transform: translateX(-150%);
}

.popup-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.sozlesmeModal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1100;
}

.sozlesmeModal.open {
    display: flex;
}

.sozlesmeModal .modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
}

.sozlesmeModal .modal-container {
    position: relative;
    width: min(900px, 95vw);
    max-height: 95vh;
    background: var(--card);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.sozlesmeModal .modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.sozlesmeModal .modal-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.sozlesmeModal .modal-header .btnSozlesmeKapat {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    margin: 0;
}

.sozlesmeModal .modal-header .btnSozlesmeKapat:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.sozlesmeModal .modal-footer {
    padding: 16px 32px;
    border-top: 1px solid var(--border);
    background: var(--bg);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.sozlesmeModal .modal-footer .modal-close-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease;
}

.sozlesmeModal .modal-footer .modal-close-btn i {
    font-size: 14px;
}

.sozlesmeModal .modal-footer .modal-close-btn:hover {
    opacity: 0.85;
}

.sozlesmeModal .modal-body {
    padding: 32px;
    overflow-y: auto;
    color: var(--text);
    line-height: 1.8;
    flex: 1;
}

.sozlesme-content {
    max-width: 100%;
}

.sozlesme-intro {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    padding: 16px;
    background: var(--bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.sozlesme-section {
    margin-bottom: 32px;
}

.sozlesme-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
}

.sozlesme-subsection {
    margin-bottom: 24px;
}

.sozlesme-subsection h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.sozlesme-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.sozlesme-list li {
    padding: 10px 0 10px 24px;
    position: relative;
    color: var(--text);
    line-height: 1.7;
}

.sozlesme-list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

.sozlesme-list li strong {
    color: var(--text);
    font-weight: 600;
}

.sozlesme-list ol {
    list-style: decimal;
    padding-left: 24px;
    margin: 16px 0;
}

.sozlesme-list ol li {
    padding-left: 8px;
}

.sozlesme-list ol li:before {
    display: none;
}

.sozlesme-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-secondary);
}

.sozlesme-footer p {
    margin: 8px 0;
}

@media (max-width: 768px) {
    .sozlesmeModal .modal-container {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .sozlesmeModal .modal-header {
        padding: 20px;
    }

    .sozlesmeModal .modal-title {
        font-size: 18px;
    }

    .sozlesmeModal .modal-body {
        padding: 20px;
    }
}

.hidden {
    display: none!important;
}

/* Güvenlik Nedenleri Bölümü */
.security-reasons {
    background: linear-gradient(135deg, #fee2e2 0%, #fef2f2 100%);
    border-radius: var(--radius);
    padding: 25px 20px;
    margin: 25px 0;
    box-shadow: var(--shadow);
    border: 2px solid #dc2626;
}

.security-reasons-header {
    text-align: center;
    margin-bottom: 20px;
}

.security-reasons-header h2 {
    font-size: 22px;
    color: #dc2626;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.security-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.security-reason-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 15px;
    box-shadow: var(--shadow);
    border-left: 3px solid #dc2626;
    transition: transform 0.3s ease;
}

.security-reason-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.security-reason-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fee2e2 0%, #fef2f2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 18px;
    margin-bottom: 10px;
}

.security-reason-card h3 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.security-reason-card p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .security-reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .security-reasons {
        padding: 20px 15px;
        margin: 20px 0;
    }
    .security-reasons-header h2 {
        font-size: 20px;
    }
    .security-reasons-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .security-reason-card {
        padding: 12px;
    }
    .security-reason-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    .security-reason-card h3 {
        font-size: 14px;
    }
    .security-reason-card p {
        font-size: 11px;
    }
}

/* Yorumlar Bölümü */
.reviews-section {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    margin: 40px 0;
    box-shadow: none;
    border: 1px solid var(--border);
}

.reviews-header {
    text-align: center;
    margin-bottom: 30px;
}

.reviews-header h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.reviews-header h2 i {
    color: var(--blue-main);
}

.reviews-header .stars-overview {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 8px;
}

.reviews-header .stars-overview .rating {
    color: var(--star-gold);
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.reviews-show-more {
    text-align: center;
    margin-top: 20px;
}

.btn-show-all-reviews {
    background: linear-gradient(to right, var(--blue-main), var(--navy));
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-show-all-reviews:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.28);
}

.reviews-modal {
    position: fixed;
    inset: 0;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
    padding: 20px;
}

.reviews-modal.visible {
    opacity: 1;
    visibility: visible;
}

.reviews-modal-content {
    background: var(--card);
    border-radius: var(--radius);
    max-width: 1200px;
    width: 100%;
    max-height: calc(100vh - 40px);
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.reviews-modal.visible .reviews-modal-content {
    transform: translateY(0);
}

.reviews-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 2px solid var(--border);
    background: var(--card);
    flex-shrink: 0;
    border-radius: var(--radius) var(--radius) 0 0;
}

.reviews-modal-header h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 0;
}

.reviews-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.reviews-modal-close:hover {
    color: var(--blue-main);
}

.reviews-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.reviews-modal-footer {
    background: var(--card);
    padding: 20px 30px;
    border-top: 2px solid var(--border);
    text-align: center;
    border-radius: 0 0 var(--radius) var(--radius);
    flex-shrink: 0;
}

.btn-close-modal {
    background: linear-gradient(to right, var(--blue-main), var(--navy));
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-close-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.28);
}

@media (max-width: 768px) {
    .reviews-modal-content {
        max-height: 95vh;
    }

    .reviews-modal-header {
        padding: 15px 20px;
    }

    .reviews-modal-header h3 {
        font-size: 20px;
    }

    .reviews-modal-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }

    .reviews-modal-footer {
        padding: 15px 20px;
    }

    .reviews-modal-content {
        max-width: 100%;
        max-height: calc(100vh - 24px);
        border-radius: 18px;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .reviews-section {
        padding: 20px 15px;
    }

    .reviews-header {
        margin-bottom: 20px;
    }

    .reviews-header h2 {
        font-size: 20px;
    }

    .reviews-header .stars-overview {
        font-size: 14px;
    }

    .reviews-carousel .review-card {
        min-width: 260px;
    }
}



.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .review-card {
        padding: 12px;
        border-radius: 10px;
    }
}

.review-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .review-card:hover {
        transform: none;
    }
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .review-header {
        margin-bottom: 8px;
    }
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 3px;
}

@media (max-width: 768px) {
    .reviewer-name {
        font-size: 13px;
        margin-bottom: 2px;
    }
}

.review-date {
    font-size: 11px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .review-date {
        font-size: 10px;
    }
}

.review-stars {
    display: flex;
    gap: 2px;
    color: var(--star-gold);
    font-size: 14px;
}

@media (max-width: 768px) {
    .review-stars {
        font-size: 12px;
        gap: 1px;
    }
}

.review-stars .star-empty {
    color: var(--border);
}

.review-text {
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 12px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .review-text {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 10px;
    }
}

.review-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .review-images {
        gap: 5px;
        margin-top: 8px;
    }
}

.review-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: var(--bg-soft);
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid var(--border);
}

@media (max-width: 768px) {
    .review-image {
        height: 140px;
        border-radius: 6px;
    }
}

.review-image:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .review-image:hover {
        transform: none;
    }
}


/* Kayan Banner */
.scrolling-banner {
    background: linear-gradient(135deg, var(--navy), var(--blue-main));
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 51, 102, 0.12);
}

.scrolling-content {
    display: inline-flex;
    animation: scroll-left 20s linear infinite;
    gap: 40px;
}

.scrolling-content span {
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 0 20px;
    display: inline-block;
    white-space: nowrap;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .scrolling-banner {
        padding: 8px 0;
        margin-bottom: 10px;
    }

    .scrolling-content {
        gap: 30px;
    }

    .scrolling-content span {
        font-size: 12px;
        padding: 0 15px;
    }
}

