/**
 * Landing Page Styles
 * Meta Uyumlu - Kompakt & Modern Tasarım
 * Clean, Professional, High-Converting
 */

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

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a2e;
    background: #fafbfc;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header - Sabit */
.header {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: #fff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    font-size: 18px;
    font-weight: bold;
}

.header .phone {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    transition: background 0.3s;
}

.header .phone:hover {
    background: rgba(255,255,255,0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.hero .title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .subtitle {
    font-size: 18px;
    opacity: 0.95;
}

/* Product Media */
.product-media {
    padding: 20px 0;
    background: #f5f5f5;
}

/* Video Section (Ayrı bölüm) */
.video-section {
    padding: 30px 0;
    background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
}

.video-title {
    text-align: center;
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.video-section .video-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    background: #000;
}

/* YouTube Lazy Load */
.youtube-lazy {
    position: relative;
    padding-bottom: 56.25%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    cursor: pointer;
}

.youtube-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s;
}

.youtube-lazy:hover .youtube-poster {
    background: rgba(0,0,0,0.3);
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 15px;
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.5);
    transition: transform 0.3s;
}

.youtube-lazy:hover .play-button {
    transform: scale(1.1);
}

.youtube-poster span {
    font-size: 18px;
    font-weight: bold;
}

/* YouTube iframe yüklendiğinde */
.youtube-lazy iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Native Video Player */
.promo-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-controls {
    text-align: center;
    padding: 15px;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.95) 100%);
}

.mute-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #388e3c 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.mute-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.mute-btn.unmuted {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

/* Eski video wrapper (uyumluluk) */
.product-media .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.product-media .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-media .product-image {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.product-media .product-placeholder {
    background: #e0e0e0;
    padding: 100px 20px;
    text-align: center;
    font-size: 24px;
    border-radius: 10px;
    color: #666;
}

/* Benefits */
.benefits {
    padding: 25px 0;
    background: #fff;
}

.benefit-item {
    font-size: 20px;
    padding: 12px 20px;
    margin: 10px 0;
    background: #e8f5e9;
    border-radius: 10px;
    border-left: 5px solid #4caf50;
    color: #2e7d32;
}

/* Price Box */
.price-box {
    padding: 25px 0;
    background: #fff;
}

.price-card {
    background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
    border: 3px solid #ffc107;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255,193,7,0.3);
}

.price-row {
    margin-bottom: 20px;
}

.old-price {
    font-size: 20px;
    color: #9e9e9e;
    text-decoration: line-through;
    margin-right: 10px;
    display: inline-block;
    opacity: 0.8;
}

.new-price {
    font-size: 36px;
    font-weight: 800;
    color: #2e7d32;
    display: block;
    margin-top: 5px;
}

.features {
    margin: 20px 0;
}

.feature {
    font-size: 18px;
    padding: 10px;
    margin: 8px 0;
    background: #fff;
    border-radius: 8px;
    color: #1565c0;
}

.scarcity {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px dashed #ffc107;
}

.stock {
    font-size: 18px;
    color: #c62828;
    font-weight: bold;
    margin-bottom: 8px;
    padding: 8px 15px;
    background: rgba(198, 40, 40, 0.1);
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s;
}

.stock #stok-sayisi {
    font-size: 22px;
    color: #b71c1c;
}

.stock-flash {
    animation: stockPulse 1s ease;
}

@keyframes stockPulse {
    0% { transform: scale(1); background: rgba(198, 40, 40, 0.1); }
    50% { transform: scale(1.05); background: rgba(198, 40, 40, 0.3); }
    100% { transform: scale(1); background: rgba(198, 40, 40, 0.1); }
}

.stock-critical {
    background: rgba(198, 40, 40, 0.25) !important;
    animation: criticalBlink 1s infinite;
}

@keyframes criticalBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.viewers {
    font-size: 16px;
    color: #f57c00;
    margin-top: 10px;
}

/* Order Form */
.order-form {
    padding: 30px 0;
    background: linear-gradient(180deg, #e3f2fd 0%, #bbdefb 100%);
}

.form-title {
    text-align: center;
    font-size: 24px;
    color: #1565c0;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: 2px solid #90caf9;
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Phone Input with Prefix */
.phone-input-wrapper {
    display: flex;
    align-items: stretch;
    border: 2px solid #90caf9;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.phone-input-wrapper:focus-within {
    border-color: #1565c0;
    box-shadow: 0 0 10px rgba(21,101,192,0.2);
}

.phone-prefix {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 15px;
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
    user-select: none;
}

.phone-input-wrapper input {
    flex: 1;
    border: none;
    border-radius: 0;
    padding: 15px;
    font-size: 18px;
    letter-spacing: 1px;
}

.phone-input-wrapper input:focus {
    outline: none;
    box-shadow: none;
}

.phone-input-wrapper.error {
    border-color: #e53935;
    animation: shake 0.5s ease-in-out;
}

.phone-input-wrapper.error .phone-prefix {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
}

.phone-input-wrapper.success {
    border-color: #4caf50;
}

.phone-input-wrapper.success .phone-prefix {
    background: linear-gradient(135deg, #43a047 0%, #388e3c 100%);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1565c0;
    box-shadow: 0 0 10px rgba(21,101,192,0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* CTA Button */
.cta-button {
    width: 100%;
    padding: 20px 30px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(229,57,53,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229,57,53,0.5);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button .cta-sub {
    font-size: 16px;
    font-weight: normal;
    margin-top: 5px;
    opacity: 0.9;
}

.cta-button:disabled {
    background: #9e9e9e;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.security-note {
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    color: #2e7d32;
}

/* Description */
.description {
    padding: 25px 0;
    background: #fff;
    font-size: 18px;
    line-height: 1.8;
}

/* Reviews Section */
.reviews {
    padding: 25px 0;
    background: #fafafa;
}

.reviews-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    color: #f57c00;
}

.review-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
}

.review-name {
    font-weight: bold;
    font-size: 18px;
}

.review-meta {
    font-size: 14px;
    color: #666;
}

.review-stars {
    color: #ffc107;
    font-size: 18px;
    margin: 10px 0;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* FAQ Section */
.faq {
    padding: 25px 0;
    background: #fff;
}

.faq-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    color: #1565c0;
}

.faq-item {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    background: #f5f5f5;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #eeeeee;
}

.faq-answer {
    padding: 15px 20px;
    font-size: 16px;
    line-height: 1.6;
    display: none;
    border-top: 1px solid #e0e0e0;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.footer {
    background: #263238;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    margin: 8px 0;
    font-size: 16px;
}

.footer a {
    color: #4fc3f7;
    text-decoration: none;
}

/* Modal - Modern & Clean */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal-content {
    background: #fff;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    max-width: 360px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.modal-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.modal-content h2 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #059669;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.modal-content p {
    font-size: 15px;
    margin-bottom: 8px;
    color: #6b7280;
    line-height: 1.5;
}

.order-no {
    background: #f0fdf4;
    padding: 12px 16px;
    border-radius: 12px;
    margin: 16px 0;
    border: 1px solid #bbf7d0;
}

.order-no strong {
    color: #059669;
    font-size: 18px;
    font-weight: 700;
}

.modal-btn {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    background: #059669;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.2s ease;
}

.modal-btn:hover {
    background: #047857;
    transform: translateY(-1px);
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 480px) {
    body {
        font-size: 16px;
        line-height: 1.6;
    }

    .header .logo {
        font-size: 14px;
    }

    .header .phone {
        font-size: 14px;
        padding: 8px 14px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .hero .title {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero .subtitle {
        font-size: 16px;
    }

    .benefit-item {
        font-size: 17px;
        padding: 12px 15px;
        min-height: 48px;
    }

    .new-price {
        font-size: 32px;
    }

    /* CTA Buton - Mobilde min 52px yükseklik */
    .cta-button {
        font-size: 18px;
        padding: 16px 20px;
        min-height: 52px;
        border-radius: 12px;
    }

    .cta-sub {
        font-size: 13px;
    }

    /* Form Alanları - Parmakla kolay tıklama için min 48px */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 14px;
        min-height: 48px;
        border-radius: 8px;
    }

    .form-group label {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    /* Telefon input wrapper */
    .phone-input-wrapper {
        min-height: 48px;
    }

    .phone-prefix {
        font-size: 16px;
        padding: 12px;
    }

    .phone-input-wrapper input {
        font-size: 16px;
        min-height: 48px;
    }

    /* Select dropdown - iOS için özel */
    .form-group select {
        -webkit-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        padding-right: 35px;
    }
}

/* Pulse Animation - Disabled for Meta compliance */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(229, 57, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}

/* CTA button animation disabled for cleaner look */
.cta-button {
    animation: none;
}

/* Floating CTA (for long pages) */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 560px;
    z-index: 999;
    display: none;
}

.floating-cta.show {
    display: block;
}

.floating-cta .cta-button {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.trust-badge img {
    height: 30px;
}

/* Form Error States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e53935;
    background-color: #ffebee;
    animation: shake 0.5s ease-in-out;
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    border-color: #c62828;
    box-shadow: 0 0 10px rgba(229, 57, 53, 0.3);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

/* Disabled Select */
select:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

/* Trust Bar (Header altı) */
.trust-bar {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.trust-bar-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
}

.trust-bar-items span {
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 480px) {
    .trust-bar-items {
        gap: 10px;
        font-size: 12px;
    }
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 22px;
    color: #333;
    margin-bottom: 25px;
}

/* Reviews Section */
.reviews {
    padding: 30px 0;
    background: #fafafa;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    position: relative;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
}

.review-name {
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

.review-meta {
    font-size: 14px;
    color: #666;
}

.review-stars {
    font-size: 16px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.review-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.reviews-summary {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    border: 2px solid #ffc107;
}

.reviews-summary span {
    font-size: 16px;
    color: #333;
}

/* FAQ Section */
.faq {
    padding: 30px 0;
    background: #fff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 600;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e3f2fd;
}

.faq-icon {
    transition: transform 0.3s;
    font-size: 14px;
    color: #666;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    background: #fff;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Feature Guarantee */
.feature-guarantee {
    background: #e8f5e9 !important;
    color: #2e7d32 !important;
    font-weight: bold;
}

/* Form Security */
.form-security {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 480px) {
    .form-security {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
}

/* Updated Footer */
.footer {
    background: linear-gradient(180deg, #1a237e 0%, #0d1442 100%);
    color: #fff;
    padding: 40px 0 20px;
}

.footer-brand {
    text-align: center;
    margin-bottom: 25px;
}

.footer-brand h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 14px;
}

.footer-contact {
    text-align: center;
    margin-bottom: 25px;
}

.footer-contact p {
    margin: 8px 0;
    font-size: 16px;
}

.footer-legal {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-bottom: 20px;
}

.footer-legal p {
    font-size: 13px;
    opacity: 0.9;
    margin: 5px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.7;
}

/* Trust Section (eski, uyumluluk için) */
.trust-section {
    padding: 20px 0;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.trust-section .trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-section .trust-badge {
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
}

/* Copyright */
.copyright {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 15px;
}

/* ========================================
   META UYUMLU - FLOATING ELEMENTLER GİZLİ
======================================== */

/* Floating CTA - Gizli (Meta için agresif görünüm) */
.floating-cta {
    display: none !important;
}

/* Social Proof Popup - Gizli (Meta için spam görünümü) */
.social-proof-popup {
    display: none !important;
}

/* ========================================
   WHATSAPP FLOAT
======================================== */
.whatsapp-float {
    display: none; /* WhatsApp butonu gizlendi */
}

/* ========================================
   META UYUMLU - KOMPAKT LANDING PAGE
   Modern, Clean, High-Converting Design
======================================== */

/* Main Container */
.main {
    background: #fff;
    min-height: 100vh;
}

/* Product Hero - Kompakt Görsel */
.product-hero {
    padding: 12px 0 8px;
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
}

.product-image-main {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image-main:hover {
    transform: scale(1.02);
}

.product-placeholder-main {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

/* Clickable Sections */
.clickable {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.clickable:active {
    transform: translateY(0);
}

/* Price Section - Kompakt & Modern */
.price-section {
    padding: 16px 12px;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    margin: 8px 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.price-display {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.price-old-wrapper {
    margin: 0;
}

.price-old {
    font-size: 18px;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}

.price-new-wrapper {
    margin: 0;
}

.price-current {
    font-size: 36px;
    font-weight: 800;
    color: #059669;
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-discount {
    display: none;
}

@media (max-width: 480px) {
    .price-current {
        font-size: 32px;
    }
    .price-old {
        font-size: 16px;
    }
    .price-section {
        margin: 8px;
        padding: 14px 10px;
    }
}

/* Trust Badges - Kompakt Horizontal */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    background: #f8faf8;
    border-radius: 12px;
    margin: 8px 12px;
    flex-wrap: nowrap;
    border: 1px solid #e5e7eb;
}

.badge-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    background: transparent;
    padding: 6px 10px;
    border-radius: 8px;
    flex: 1;
    justify-content: center;
}

.badge-icon {
    font-size: 16px;
}

.badge-text {
    font-size: 10px;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .trust-badges {
        gap: 4px;
        padding: 10px 6px;
        margin: 8px;
    }

    .badge-icon {
        font-size: 14px;
    }

    .badge-text {
        font-size: 8px;
    }
    
    .badge-item {
        padding: 4px 6px;
    }
}

/* Order Section - Belirgin & Dikkat Çekici */
.order-section {
    padding: 24px 0 40px;
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 50%, #fff 100%);
    border-top: 3px solid #059669;
    margin-top: 8px;
}

.form-header {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    color: #047857;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #bbf7d0;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

/* Form Fields - Belirgin & Okunabilir */
.form-field {
    margin-bottom: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 16px 18px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid #d1d5db;
    border-radius: 14px;
    background: #fff;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
    color: #1f2937;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #059669;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.12);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #9ca3af;
}

.form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Phone Field - Belirgin Design */
.phone-field {
    display: flex;
    align-items: stretch;
    border: 2px solid #d1d5db;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: all 0.2s ease;
}

.phone-field:focus-within {
    border-color: #059669;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.12);
}

.phone-code {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    background: #059669;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.phone-field input {
    border: none;
    border-radius: 0;
    flex: 1;
    background: transparent;
}

.phone-field input:focus {
    box-shadow: none;
    background: transparent;
}

/* Form Row */
.form-field-row {
    display: flex;
    gap: 8px;
}

.form-field-row .form-field {
    flex: 1;
}

@media (max-width: 400px) {
    .form-field-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Submit Button - BÜYÜK & Dikkat Çekici */
.submit-btn {
    width: 100%;
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 800;
    font-family: inherit;
    color: #fff;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    min-height: 60px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(5, 150, 105, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.submit-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 480px) {
    .form-field input,
    .form-field select,
    .form-field textarea {
        font-size: 16px;
        padding: 15px 16px;
    }

    .submit-btn {
        font-size: 17px;
        padding: 18px 20px;
        min-height: 56px;
    }

    .form-header {
        font-size: 18px;
    }
    
    .order-section {
        padding: 20px 0 36px;
    }
}

/* ========================================
   META UYUMLU - GEREKSİZ ELEMENTLER GİZLİ
======================================== */

/* Urgency Box - Gizli (Meta için gereksiz baskı) */
.urgency-box {
    display: none;
}

/* Form Altı Garanti - Gizli (yeni trust-section-form kullanılıyor) */
.form-guarantee {
    display: none;
}

/* ========================================
   ÖDEME TİPİ SEÇENEKLERİ (35+ yaş için optimize)
======================================== */
.payment-section {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.payment-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    text-align: center;
}

.payment-options {
    display: flex;
    gap: 12px;
}

.payment-option {
    flex: 1;
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    background: #fff;
    border: 3px solid #d1d5db;
    border-radius: 12px;
    transition: all 0.2s ease;
    gap: 8px;
    position: relative;
}

.payment-check {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: #d1d5db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.payment-option input[type="radio"]:checked + .payment-box {
    border-color: #059669;
    background: #ecfdf5;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
    transform: scale(1.02);
}

.payment-option input[type="radio"]:checked + .payment-box .payment-check {
    background: #059669;
    opacity: 1;
    transform: scale(1);
}

.payment-icon {
    font-size: 32px;
}

.payment-text {
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    text-align: center;
}

.payment-option input[type="radio"]:checked + .payment-box .payment-text {
    color: #059669;
}

/* Hover efekti - seçili olmayanlara */
.payment-option:hover .payment-box {
    border-color: #9ca3af;
    background: #f9fafb;
}

.payment-option input[type="radio"]:checked + .payment-box:hover {
    border-color: #059669;
    background: #ecfdf5;
}

@media (max-width: 400px) {
    .payment-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .payment-box {
        flex-direction: row;
        padding: 14px 18px;
        gap: 12px;
    }
    
    .payment-icon {
        font-size: 28px;
    }
    
    .payment-text {
        font-size: 15px;
    }
    
    .payment-check {
        top: 50%;
        right: 12px;
        transform: translateY(-50%) scale(0);
    }
    
    .payment-option input[type="radio"]:checked + .payment-box .payment-check {
        transform: translateY(-50%) scale(1);
    }
}

/* ========================================
   GÜVEN ELEMENTLERİ (Form Altı)
======================================== */
.trust-section-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
    padding: 16px;
    background: #f8faf8;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.trust-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.trust-text {
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    line-height: 1.3;
}

@media (max-width: 480px) {
    .trust-section-form {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px;
        margin-top: 14px;
    }
    
    .trust-item {
        padding: 10px 12px;
    }
    
    .trust-icon {
        font-size: 16px;
    }
    
    .trust-text {
        font-size: 12px;
    }
}

/* Fake Notification - Gizli (Meta için spam görünümü) */
.fake-notification {
    display: none !important;
}

/* Marquee Banner - Gizli (Meta için dikkat dağıtıcı) */
.marquee-banner {
    display: none !important;
}

/* Body padding reset - marquee gizli olduğu için */
body {
    padding-bottom: 0 !important;
}

/* Body padding for marquee */
body {
    padding-bottom: 45px;
}

@media (max-width: 480px) {
    .marquee-content {
        font-size: 12px;
        gap: 20px;
        animation-duration: 15s;
    }

    .marquee-banner {
        padding: 8px 0;
    }

    body {
        padding-bottom: 38px;
    }
}

/* ========================================
   KOMPAKT FİYAT KARTI
======================================== */
.price-card-compact {
    padding: 20px;
    padding-top: 35px;
}

.price-card-compact .price-row {
    margin-bottom: 12px;
}

.price-card-compact .new-price {
    font-size: 30px;
}

.price-card-compact .old-price {
    font-size: 16px;
}

.features-compact {
    margin: 12px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.features-compact .feature {
    font-size: 14px;
    padding: 8px 10px;
    margin: 0;
}

.price-card-compact .scarcity {
    margin-top: 12px;
    padding-top: 12px;
}

.price-card-compact .stock {
    font-size: 15px;
    padding: 6px 12px;
}

.price-card-compact .stock #stok-sayisi {
    font-size: 18px;
}

.price-card-compact .viewers {
    font-size: 14px;
    margin-top: 6px;
}

@media (max-width: 480px) {
    .features-compact {
        grid-template-columns: 1fr;
    }

    .price-card-compact .new-price {
        font-size: 26px;
    }
}

/* Product Image Link Wrapper */
.product-image-link {
    display: block;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.product-image-link:hover {
    transform: scale(1.02);
}

.product-image-link:hover .image-cta {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-image-link:hover .product-image,
.product-image-link:hover .product-placeholder {
    box-shadow: 0 12px 40px rgba(229, 57, 53, 0.3);
}

/* Image CTA Overlay */
.image-cta {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Mobile: Always show CTA */
@media (max-width: 768px) {
    .image-cta {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Product Image Improvements */
.product-media .product-image {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    background: #fff;
    padding: 10px;
    transition: box-shadow 0.3s;
}

/* Fallback placeholder improvement */
.product-media .product-placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    padding: 80px 20px;
    text-align: center;
    font-size: 48px;
    border-radius: 15px;
    color: #999;
    border: 2px dashed #ccc;
    transition: box-shadow 0.3s;
}

/* Improved Price Card */
.price-card {
    background: linear-gradient(135deg, #fffde7 0%, #fff9c4 100%);
    border: 3px solid #ffc107;
    border-radius: 20px;
    padding: 30px;
    padding-top: 45px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(255,193,7,0.25);
    position: relative;
}

.price-card::before {
    content: '🔥 ÖZEL TEKLİF';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    color: #fff;
    padding: 8px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.35);
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
    }
    
    .trust-section .trust-badge {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .price-card::before {
        font-size: 11px;
        padding: 6px 18px;
    }
    
    /* Floating CTA Mobile */
    .floating-cta {
        padding: 10px;
    }
    
    .floating-cta-inner {
        gap: 10px;
    }
    
    .floating-price {
        font-size: 18px;
    }
    
    .floating-stock {
        font-size: 11px;
    }
    
    .floating-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Social Proof Mobile */
    .social-proof-popup {
        bottom: 80px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    /* WhatsApp yukarı kalksın */
    body.floating-visible .whatsapp-float {
        bottom: 80px;
        right: 10px;
    }
    
    /* Video Mobile */
    .video-section .video-wrapper,
    .product-media .video-wrapper {
        border-radius: 10px;
    }
    
    .promo-video {
        border-radius: 10px;
    }
    
    .mute-btn {
        padding: 14px 28px;
        font-size: 15px;
        min-height: 48px;
    }
    
    .video-controls {
        padding: 12px;
    }
    
    /* Review Cards Mobile */
    .review-card {
        padding: 15px;
    }
    
    .review-text {
        font-size: 14px;
    }
    
    /* FAQ Mobile */
    .faq-question {
        font-size: 15px;
        padding: 15px;
        min-height: 48px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    /* Footer Mobile */
    .footer-contact a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* ========================================
   YORUM SAYISI (Fiyat Altı)
   ======================================== */
.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    margin: 0 16px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-summary:hover {
    background: #fef3c7;
    transform: translateY(-1px);
}

.reviews-summary .stars-display {
    display: flex;
    align-items: center;
    gap: 4px;
}

.reviews-summary .stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 1px;
}

.reviews-summary .rating-text {
    font-weight: 700;
    color: #92400e;
    font-size: 14px;
}

.reviews-summary .reviews-count {
    color: #78716c;
    font-size: 13px;
}

.reviews-summary .reviews-arrow {
    color: #f59e0b;
    font-size: 18px;
    font-weight: 700;
}

/* ========================================
   YORUMLAR BÖLÜMÜ (Modal/Overlay)
   ======================================== */
.reviews-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
}

.reviews-container {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.reviews-header {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
    padding: 20px;
    position: relative;
}

.reviews-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.reviews-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.reviews-stats .stars {
    color: #fcd34d;
}

.reviews-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.reviews-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.reviews-list {
    padding: 16px;
    max-height: 60vh;
    overflow-y: auto;
}

.review-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid #e5e7eb;
}

.review-card:last-child {
    margin-bottom: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.reviewer-name {
    display: block;
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
}

.reviewer-location {
    display: block;
    color: #6b7280;
    font-size: 12px;
}

.review-meta {
    text-align: right;
}

.review-stars {
    display: block;
    color: #f59e0b;
    font-size: 12px;
    letter-spacing: 1px;
}

.review-date {
    display: block;
    color: #9ca3af;
    font-size: 11px;
    margin-top: 2px;
}

.review-text {
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-verified {
    color: #059669;
    font-size: 12px;
    font-weight: 500;
}

.order-footer {
    padding: 18px 0 28px;
}

.order-footer-panel {
    position: relative;
    overflow: hidden;
    margin: 14px 0 8px;
    padding: 20px 16px 16px;
    background:
        radial-gradient(circle at top right, rgba(5, 150, 105, 0.14), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
    border: 1px solid #d8efe2;
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.order-footer-panel::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #059669 0%, #10b981 55%, #34d399 100%);
}

.order-footer-head {
    text-align: center;
    margin-bottom: 16px;
}

.order-footer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #047857;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.order-footer-head h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.2;
    color: #0f172a;
}

.order-footer-head p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

.order-footer-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 16px;
}

.order-footer-stat {
    padding: 14px 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #dcfce7;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.order-footer-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(5, 150, 105, 0.1);
}

.order-footer-stat strong {
    display: block;
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 800;
    color: #059669;
    line-height: 1;
}

.order-footer-stat span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    line-height: 1.4;
}

.order-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

.order-footer-card {
    padding: 16px 14px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

.order-footer-card h4 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 800;
    color: #111827;
}

.order-footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.order-footer-list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.55;
    color: #475569;
}

.order-footer-list li:last-child {
    margin-bottom: 0;
}

.order-footer-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.order-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid #e5e7eb;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

@media (max-width: 480px) {
    .order-footer {
        padding: 16px 0 24px;
    }

    .order-footer-panel {
        padding: 18px 14px 14px;
        border-radius: 18px;
    }

    .order-footer-head h3 {
        font-size: 20px;
    }

    .order-footer-stats,
    .order-footer-grid {
        grid-template-columns: 1fr;
    }

    .order-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
