:root {
        --primary: #1e293b;
        --primary-light: #334155;
        --accent: #dc2626;
        --accent-light: #fef2f2;
        --bg: #f8fafc;
        --card: #ffffff;
        --text: #1e293b;
        --text-light: #64748b;
        --border: #e2e8f0;
        --success: #16a34a;
        --radius: 12px;
        --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        background-color: var(--bg);
        color: var(--text);
        line-height: 1.6;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Kayan Banner */
    .scrolling-banner {
        background: linear-gradient(135deg, #4a90e2, #357abd);
        overflow: hidden;
        white-space: nowrap;
        padding: 10px 0;
        margin-bottom: 15px;
        position: relative;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .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;
        }
    }

    .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(--primary);
        letter-spacing: -0.5px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    @media (max-width: 600px) {
        .logo {
            font-size: 16px;
        }
    }

    .logo i {
        color: var(--accent);
    }

    .btn-cta {
        background: linear-gradient(to right, var(--accent), #b91c1c);
        color: white;
        padding: 14px 28px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .btn-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    }

    /* Daha sakin bilgi butonu (Bu takılarda hangi dualar var?) */
    .btn-info-outline {
        background: rgba(248, 250, 252, 0.8);
        color: var(--primary);
        border: 1px solid var(--border);
        border-radius: 999px;
        padding: 10px 18px;
        font-size: 14px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        box-shadow: none;
    }

    .btn-info-outline i {
        font-size: 14px;
    }

    .btn-info-outline:hover {
        background: white;
        border-color: var(--accent);
        color: var(--accent);
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
        transform: translateY(-1px);
    }

    .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);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

    .hero-image img {
        width: 100%;
        display: block;
        transition: transform 0.5s ease;
    }


    .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(--primary);
    }

    .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(--accent);
    }

    .old-price {
        font-size: 16px;
        color: var(--text-light);
        text-decoration: line-through;
    }

    .discount-badge {
        background: var(--accent);
        color: white;
        padding: 4px 10px;
        border-radius: 4px;
        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(--accent-light);
        color: var(--accent);
        padding: 8px 14px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 500;
        flex: 0 1 auto;
        min-width: fit-content;
    }

    @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(--accent);
    }

    .campaign-note {
        background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
        border-left: 4px solid #dc2626;
        padding: 18px 22px;
        border-radius: 8px;
        margin-top: 12px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 17px;
        line-height: 1.5;
    }

    .campaign-note i {
        color: #dc2626;
        font-size: 26px;
        flex-shrink: 0;
    }

    .campaign-note strong {
        color: #dc2626;
        font-weight: 700;
    }

    .campaign-note .gift-highlight {
        color: #dc2626;
        font-weight: 800;
        font-size: 18px;
        text-shadow: 0 1px 2px rgba(220, 38, 38, 0.2);
    }

    @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(--card);
        border-radius: var(--radius);
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: var(--shadow);
        transition: transform 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        background: var(--accent-light);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 18px;
        flex-shrink: 0;
    }

    .feature-text h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .feature-text p {
        font-size: 13px;
        color: var(--text-light);
    }

    .order-section {
        background: var(--card);
        border-radius: var(--radius);
        padding: 30px;
        margin: 40px 0;
        box-shadow: var(--shadow);
        position: relative;
        overflow: hidden;
    }

    .order-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(to right, var(--accent), #b91c1c);
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
        color: var(--primary);
        text-align: center;
    }

    /* Teslim Alan Müşterilerimiz */
    .teslim-section {
        background: var(--card);
        border-radius: var(--radius);
        padding: 30px 20px;
        margin: 30px 0;
        box-shadow: var(--shadow);
    }

    .teslim-header {
        text-align: center;
        margin-bottom: 20px;
    }

    .teslim-header h2 {
        font-size: 20px;
        color: var(--primary);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 6px;
    }

    .teslim-header p {
        font-size: 13px;
        color: var(--text-light);
        margin: 0;
    }

    .teslim-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 10px;
        margin-top: 16px;
    }

    .teslim-thumb {
        border: none;
        padding: 0;
        background: none;
        cursor: pointer;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(15,23,42,0.12);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .teslim-thumb img {
        width: 100%;
        height: 100%;
        aspect-ratio: 9 / 16;
        object-fit: cover;
        display: block;
    }

    .teslim-thumb:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(15,23,42,0.18);
    }

    .teslim-actions {
        text-align: center;
        margin-top: 18px;
    }

    .btn-teslim-show {
        background: linear-gradient(135deg, #0ea5e9, #6366f1);
        color: #fff;
        border: none;
        border-radius: 999px;
        padding: 8px 20px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 15px rgba(37,99,235,0.35);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn-teslim-show:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(37,99,235,0.4);
    }

    /* Teslim Modal */
    .teslim-modal {
        position: fixed;
        inset: 0;
        background: rgba(15,23,42,0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
        z-index: 1100;
        padding: 20px;
    }

    .teslim-modal.open {
        opacity: 1;
        visibility: visible;
    }

    .teslim-modal-content {
        background: #0f172a;
        border-radius: 16px;
        max-width: 480px;
        width: 100%;
        max-height: 90vh;
        padding: 20px 20px 16px;
        position: relative;
        box-shadow: 0 20px 40px rgba(15,23,42,0.8);
        display: flex;
        flex-direction: column;
    }

    .teslim-modal-image-wrapper {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 12px;
        background: #020617;
    }

    #teslim-modal-image {
        max-width: 100%;
        max-height: 75vh;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
    }

    .teslim-modal-close {
        position: absolute;
        top: 10px;
        right: 12px;
        background: transparent;
        border: none;
        color: #e5e7eb;
        font-size: 20px;
        cursor: pointer;
    }

    .teslim-modal-footer {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-top: 12px;
        color: #e5e7eb;
        font-size: 12px;
    }

    .teslim-modal-nav {
        background: #1f2937;
        border: none;
        color: #e5e7eb;
        width: 32px;
        height: 32px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .teslim-modal-nav:hover {
        background: #374151;
        transform: translateY(-1px);
    }

    .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(--accent);
        color: white;
        border-color: var(--accent);
    }

    .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(--accent);
        font-weight: 600;
    }

    .live-stats {
        display: flex;
        justify-content: space-around;
        background: var(--accent-light);
        border: 1px solid var(--accent);
        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(--accent);
        font-size: 18px;
    }

    @media (max-width: 600px) {
        .stat i {
            font-size: 14px;
        }
    }

    .stat .count {
        font-weight: 700;
        color: var(--accent);
        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: 10px;
        margin-bottom: 25px;
    }

    .package {
        border: 2px solid var(--border);
        border-radius: var(--radius);
        padding: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .package.has-label {
        padding-top: 40px;
    }

    .package:hover {
        border-color: var(--accent);
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }

    .package.selected {
        border-color: var(--accent);
        background: var(--accent-light);
    }

    .package.popular::before {
        content: 'EN POPÜLER';
        position: absolute;
        top: 12px;
        left: -40px;
        transform: rotate(-45deg);
        background: linear-gradient(135deg, #f97316, #ea580c);
        color: #fff;
        padding: 6px 60px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
        box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
    }

    .package-label-stack {
        position: absolute;
        top: 8px;
        right: 8px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: flex-end;
        z-index: 2;
    }

    .package-ribbon,
    .package-discount {
        font-size: 11px;
        font-weight: 700;
        padding: 3px 8px;
        border-radius: 999px;
        color: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .package-ribbon {
        background: linear-gradient(135deg, #ec4899, #db2777);
    }

    .package-discount {
        background: linear-gradient(135deg, #22c55e, #16a34a);
    }

    .package-content {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .package-radio {
        width: 18px;
        height: 18px;
        border: 2px solid var(--border);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 12px;
    }

    .package.selected .package-radio {
        background: var(--accent);
        border-color: var(--accent);
        color: white;
    }

    .package-details {
        flex-grow: 1;
    }

    .package-title {
        font-weight: 700;
        font-size: 15px;
        margin-bottom: 4px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .package-badge {
        font-size: 11px;
        font-weight: 600;
        padding: 2px 8px;
        border-radius: 999px;
        background: var(--accent-light);
        color: var(--accent);
    }

    .package-desc {
        font-size: 13px;
        color: var(--text-light);
        line-height: 1.4;
    }

    .package-meta {
        font-size: 12px;
        color: var(--text-light);
        margin-top: 4px;
    }

    .package-meta strong {
        color: var(--primary);
    }

    /* Çoklu Ürün Sistemi CSS */
    .coklu-urun-section {
        margin-bottom: 30px;
    }


    .discount-banner {
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
        color: white;
        padding: 12px;
        border-radius: 10px;
        margin-bottom: 20px;
        text-align: center;
        font-weight: bold;
        font-size: 14px;
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        position: relative;
        overflow: hidden;
    }

    .discount-shimmer {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        animation: shimmer 2s infinite;
    }

    @keyframes shimmer {
        0% { left: -100%; }
        100% { left: 100%; }
    }

    .discount-text {
        position: relative;
        z-index: 1;
    }

    .product-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
        width: 100%;
    }
    

    .product {
        border: 2px solid #e9ecef;
        border-radius: 15px;
        padding: 0;
        transition: all 0.3s ease;
        background: white;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: row;
        height: 160px;
        width: 100%;
        max-width: 100%;
        align-items: stretch;
        box-sizing: border-box;
    }

    .product::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(135deg, #28a745, #20c997);
    }

    .product:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        border-color: #28a745;
    }

    .product.selected {
        border-color: #28a745;
        background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
    }

    .product-image-container {
        position: relative;
        width: 160px;
        min-width: 160px;
        max-width: 160px;
        height: 160px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px 0 0 15px;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        overflow: hidden;
    }

    .product-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
        display: block;
    }

    .product-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 12px 16px;
        min-width: 0;
    }

    .product-title {
        font-size: 15px;
        margin: 0 0 8px 0;
        color: #333;
        font-weight: 600;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: left;
        word-break: break-word;
    }

    .product-bottom-row {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 8px;
    }

    .product-controls-row {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        width: 100%;
    }

    .product-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .product:hover .product-overlay {
        opacity: 1;
    }

    .urun-gor-buton {
        background: rgba(255,255,255,0.9);
        color: #333;
        border: 2px solid #fff;
        border-radius: 20px;
        padding: 8px 16px;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .urun-gor-buton:hover {
        background: #28a745;
        color: white;
        border-color: #28a745;
        transform: scale(1.05);
    }

    .urun-gor-buton-visible {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 8px;
        width: 100%;
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    }

    .urun-gor-buton-visible:hover {
        background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }

    .product-price {
        font-size: 17px;
        font-weight: bold;
        color: #28a745;
        border: 2px solid #28a745;
        padding: 6px 12px;
        border-radius: 8px;
        background: linear-gradient(135deg, #f8fff9, #e8f5e8);
        white-space: nowrap;
        flex-shrink: 0;
        display: inline-block;
    }

    /* Ürünü Gör - fiyatın yanında, kartı şişirmeden */
    .product-bottom-row .btn-urunu-gor {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 6px 10px;
        font-size: 12px;
        font-weight: 600;
        color: #333;
        background: #f0f0f0;
        border: 1px solid #ddd;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
    }
    .product-bottom-row .btn-urunu-gor:hover {
        background: #28a745;
        color: #fff;
        border-color: #28a745;
    }

    .product-controls {
        flex-shrink: 0;
        width: 100%;
    }

    .product-controls-row .quantity-section {
        justify-content: flex-start;
        width: auto;
    }

    .quantity-section {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        flex-shrink: 0;
    }

    .qty-display {
        min-width: 30px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: bold;
        color: #28a745;
        background: #f8fff9;
        border: 2px solid #28a745;
        border-radius: 6px;
        padding: 0 8px;
    }

    .quantity-btn {
        min-width: 65px;
        height: 32px;
        font-size: 11px;
        padding: 0 8px;
        border: 2px solid #28a745;
        background: white;
        color: #28a745;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        white-space: nowrap;
    }

    .quantity-btn.plus-btn {
        background: #28a745;
        color: white;
        font-size: 11px;
        font-weight: 600;
        border: 2px solid #28a745;
        box-shadow: 0 3px 8px rgba(40, 167, 69, 0.3);
    }

    .quantity-btn.minus-btn {
        background: white;
        color: #dc3545;
        border: 2px solid #dc3545;
    }

    .quantity-btn.minus-btn:hover {
        background: #dc3545;
        color: white;
        border-color: #dc3545;
    }

    .quantity-btn:hover {
        background: #28a745;
        color: white;
        transform: scale(1.1);
        box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
    }

    .qty-display {
        min-width: 30px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8fff9;
        color: #28a745;
        border: 2px solid #28a745;
        border-radius: 6px;
        font-weight: bold;
        font-size: 16px;
        padding: 0 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .qty-text {
        font-size: 12px;
        color: #666;
        text-align: center;
        font-weight: 500;
    }

    .sepet-container {
        background: white;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        margin: 30px 0;
        display: none; /* Başlangıçta gizli */
        position: relative;
        z-index: 10;
        border: 2px solid #e9ecef;
    }

    .sepet-promo {
        margin: 10px 0 18px;
        padding: 12px 14px;
        border-radius: 10px;
        background: linear-gradient(135deg, #ecfdf5 0%, #e0f2fe 100%);
        border: 1px dashed #93c5fd;
        font-size: 13px;
        color: #0f172a;
    }

    .sepet-promo-title {
        font-weight: 700;
        margin-bottom: 4px;
        color: #0f766e;
    }

    .sepet-promo-current {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .sepet-promo-next {
        font-size: 12px;
        color: #1e293b;
        opacity: 0.9;
    }

    .sepet-container[style*="display: block"] {
        display: block !important;
        animation: slideIn 0.3s ease-out;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .sepet-container {
            position: relative;
            margin: 20px 0;
        }
        
        .product {
            height: 130px;
        }
        
        .product-image-container {
            width: 90px;
            min-width: 90px;
            max-width: 90px;
            height: 130px;
        }
        
        .product-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-title {
            font-size: 12px;
            margin-bottom: 4px;
            line-height: 1.2;
        }

        .product-price {
            font-size: 14px;
            padding: 5px 8px;
        }

        .product-bottom-row .btn-urunu-gor {
            padding: 5px 8px;
            font-size: 11px;
        }
        
        .product-content {
            padding: 8px 10px;
        }
        
        .product-grid {
            gap: 12px;
        }
        
        .product-bottom-row {
            gap: 8px;
            margin-bottom: 6px;
        }
        
        .product-controls-row {
            width: 100%;
        }
        
        .product-title {
            margin-bottom: 6px;
        }
        
        .product-controls {
            width: 100%;
        }
        
        .product-controls-row .quantity-section {
            width: 100%;
            justify-content: flex-start;
        }
        
        .quantity-btn {
            min-width: 55px;
            height: 28px;
            font-size: 9px;
            padding: 0 6px;
        }
        
        .quantity-section {
            gap: 6px;
        }
    }

    /* Sepet Git Butonu - Responsive */
    .sepet-git-btn {
        position: fixed !important;
        top: 80px !important;
        right: 20px !important;
        z-index: 999 !important;
    }

    @media (max-width: 768px) {
        .sepet-git-btn {
            top: 70px !important;
            right: 10px !important;
            bottom: auto !important;
            transform: none !important;
            max-width: 220px !important;
        }
    }

    .sepet-mini-card {
        width: 100%;
        text-align: left;
    }

    .sepet-mini-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 6px;
        font-size: 12px;
    }

    .sepet-mini-icon {
        margin-right: 4px;
    }

    .sepet-mini-title {
        font-weight: 700;
    }

    .sepet-mini-count {
        font-size: 11px;
        opacity: 0.9;
    }

    .sepet-mini-body {
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
        padding: 6px 8px;
        font-size: 11px;
    }

    .sepet-mini-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 2px;
    }

    .sepet-mini-row-discount span:last-child {
        color: #16a34a;
        font-weight: 700;
    }

    .sepet-mini-note {
        margin-top: 4px;
        font-size: 10px;
        line-height: 1.3;
        opacity: 0.95;
    }

    /* Sepet Ürün İtemleri */
    .sepet-urun-item {
        background: white;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        padding: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 12px;
        transition: all 0.3s ease;
    }

    .sepet-urun-item:hover {
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        transform: translateY(-2px);
    }

    .sepet-urun-resim {
        width: 60px;
        height: 60px;
        object-fit: contain;
        border-radius: 8px;
        flex-shrink: 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .sepet-urun-bilgi {
        flex: 1;
        text-align: left;
    }

    .sepet-urun-isim {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-bottom: 6px;
        line-height: 1.4;
    }

    .sepet-urun-fiyat {
        font-size: 15px;
        color: #dc2626;
        font-weight: bold;
    }

    .sepet-fiyat-satiri {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .sepet-normal-fiyat {
        font-size: 13px;
        color: #999;
        text-decoration: line-through;
        font-weight: 500;
    }

    .sepet-indirimli-fiyat {
        font-size: 15px;
        color: #dc2626;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .indirim-badges {
        font-size: 10px;
        background: #28a745;
        color: white;
        padding: 2px 6px;
        border-radius: 4px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .sepet-urun-adet-fiyat {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .sepet-urun-adet {
        font-size: 14px;
        font-weight: 600;
        color: #28a745;
    }

    .sepet-header {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 2px solid #e9ecef;
    }

    .sepet-icon {
        font-size: 20px;
        margin-right: 12px;
        color: #28a745;
    }

    .sepet-title {
        margin: 0;
        font-size: 18px;
        color: #333;
        font-weight: 700;
    }

    .sepet-subtitle {
        font-size: 13px;
        color: #666;
        margin-top: 3px;
        font-weight: 500;
    }

    .secilen-urunler-list {
        min-height: 30px;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .toplamlar {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 20px;
        border-radius: 12px;
        border: 2px solid #e9ecef;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    .toplam-satir {
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
        font-size: 15px;
        color: #666;
    }

    .toplam-satir.indirim-satir {
        color: #28a745;
    }

    .toplam-satir.odenecek-satir {
        font-size: 18px;
        font-weight: 800;
        color: #333;
        padding: 20px;
        border-top: 2px solid #dee2e6;
        background: white;
        margin: 15px -20px -20px -20px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .toplam-label {
        font-weight: 600;
    }

    .toplam-deger {
        font-weight: 700;
        color: #333;
    }

    .indirim-deger {
        color: #28a745;
    }

    .odenecek-deger {
        color: #28a745;
        font-size: 20px;
        font-weight: 900;
    }

    /* Modal CSS */
    .modal {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.8);
        backdrop-filter: blur(5px);
    }

    .modal-content {
        position: relative;
        background-color: white;
        margin: 5% auto;
        padding: 20px;
        border-radius: 15px;
        width: 90%;
        max-width: 600px;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    /* ÜRÜNÜ GÖR – Ürün Kartı Modalı */
    .urun-kart-modal .urun-kart-modal-content {
        max-width: 820px;
        width: 96%;
        max-height: 90vh;
        padding: 22px 24px 24px;
        box-shadow: 0 18px 45px rgba(15,23,42,0.35);
    }

    .urun-kart-layout {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        gap: 24px;
        align-items: flex-start;
    }

    .urun-kart-left {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .urun-kart-main-image {
        border-radius: 16px;
        overflow: hidden;
        background: radial-gradient(circle at top, #e5e7eb, #cbd5f5);
        min-height: 260px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .urun-kart-main-image .slider-image {
        width: 100%;
        height: auto;
        max-height: 420px;
        object-fit: contain;
    }

    .urun-kart-thumbs {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 6px;
    }

    .urun-kart-thumb-btn {
        border: 2px solid transparent;
        border-radius: 12px;
        padding: 0;
        background: #f8fafc;
        cursor: pointer;
        overflow: hidden;
        width: 64px;
        height: 64px;
        box-shadow: 0 4px 12px rgba(15,23,42,0.12);
        transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .urun-kart-thumb-btn img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .urun-kart-thumb-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(15,23,42,0.18);
    }

    .urun-kart-thumb-btn.active {
        border-color: var(--accent);
        box-shadow: 0 0 0 1px rgba(220,38,38,0.65), 0 8px 20px rgba(15,23,42,0.25);
    }

    .urun-kart-right {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .urun-kart-title {
        font-size: 19px;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 6px;
    }

    .urun-kart-meta {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-top: 2px;
        padding: 10px 12px;
        border-radius: 12px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
    }

    .urun-kart-row {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        font-size: 14px;
    }

    .urun-kart-label {
        font-weight: 600;
        color: var(--text-light);
    }

    .urun-kart-value {
        font-weight: 600;
        color: var(--primary);
        text-align: right;
    }

    .urun-kart-section {
        margin-top: 10px;
    }

    .urun-kart-section-title {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 6px;
        color: var(--primary);
    }

    .urun-kart-list {
        margin: 0;
        padding-left: 18px;
        font-size: 13px;
        color: var(--text-light);
        max-height: 220px;
        overflow-y: auto;
    }

    .urun-kart-list li {
        margin-bottom: 3px;
    }

    .urun-kart-note p {
        font-size: 13px;
        color: var(--text-light);
        margin: 0;
    }

    @media (min-width: 640px) {
        .urun-kart-list {
            column-count: 2;
            column-gap: 32px;
        }
    }

    @media (max-width: 768px) {
        .urun-kart-modal .urun-kart-modal-content {
            margin: 10% auto;
            max-height: 82vh;
            padding: 18px 16px 20px;
        }

        .urun-kart-layout {
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .urun-kart-main-image {
            min-height: 220px;
        }

        .urun-kart-title {
            font-size: 17px;
            text-align: left;
        }

        .urun-kart-meta {
            padding: 8px 10px;
        }

        .urun-kart-list {
            max-height: 180px;
        }
    }

    .close {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 35px;
        font-weight: bold;
        color: #aaa;
        cursor: pointer;
        z-index: 10001;
        background: white;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .close:hover {
        color: #28a745;
        background: #f8f9fa;
    }

    .slider-container {
        position: relative;
        text-align: center;
    }

    .image-wrapper {
        position: relative;
        margin: 20px 0;
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-image {
        max-width: 100%;
        max-height: 80vh;
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #28a745;
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 18px;
        z-index: 10002;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        transition: all 0.3s ease;
    }

    .slider-btn:hover {
        background: #20c997;
        transform: translateY(-50%) scale(1.1);
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .loader {
        display: none;
        width: 40px;
        height: 40px;
        border: 4px solid #f3f3f3;
        border-top: 4px solid #28a745;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 0 auto;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    @media (max-width: 768px) {
        /* product-grid max-height zaten yukarıda tanımlandı */

        .quantity-btn {
            min-width: 55px;
            height: 28px;
            font-size: 9px;
            padding: 0 6px;
        }

        .qty-display {
            min-width: 25px;
            height: 28px;
            font-size: 14px;
            padding: 0 6px;
        }
        
        .quantity-section {
            gap: 5px;
        }

    }

    .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;
    }

    .price-main {
        font-size: 16px;
        font-weight: 800;
        color: var(--primary);
    }

    .price-old {
        font-size: 12px;
        color: var(--text-light);
        text-decoration: line-through;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 25px;
    }

    @media (max-width: 768px) {
        .form-grid {
            grid-template-columns: 1fr;
        }
    }

    .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(--accent) !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(--accent);
        box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    }

    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(--accent);
        margin-top: 5px;
        display: none;
    }

    .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;
    }

    @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(--accent);
    }

    .payment-option.selected {
        border-color: var(--accent);
        background: var(--accent-light);
    }

    .payment-icon {
        font-size: 24px;
        margin-bottom: 10px;
        color: var(--text-light);
    }

    .payment-option.selected .payment-icon {
        color: var(--accent);
    }

    .payment-name {
        font-weight: 600;
    }

    .submit-btn {
        width: 100%;
        padding: 18px;
        background: linear-gradient(to right, var(--accent), #b91c1c);
        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: var(--shadow);
        transition: all 0.5s ease, background 0.6s ease;
    }


    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    }

    .submit-btn.ready-to-submit {
        background: linear-gradient(to right, #10b981, #059669);
        animation: pulse-glow-green 1.5s infinite;
        box-shadow: 0 0 25px rgba(16, 185, 129, 0.6), 0 8px 30px rgba(5, 150, 105, 0.5);
        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.4);
    }

    @keyframes pulse-glow-green {
        0%, 100% {
            box-shadow: 0 0 25px rgba(16, 185, 129, 0.6), 0 8px 30px rgba(5, 150, 105, 0.5);
            transform: scale(1.03);
        }
        50% {
            box-shadow: 0 0 40px rgba(16, 185, 129, 0.8), 0 12px 40px rgba(5, 150, 105, 0.7);
            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(--card);
        border-radius: var(--radius);
        padding: 25px;
        box-shadow: var(--shadow);
    }

    .info-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: var(--primary);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .info-card ul {
        list-style: none;
    }

    .info-card li {
        margin-bottom: 12px;
        padding-left: 25px;
        position: relative;
    }

    .info-card li::before {
        content: '•';
        color: var(--accent);
        font-weight: bold;
        position: absolute;
        left: 0;
    }

    .info-card strong {
        color: var(--primary);
    }

    .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(--accent);
    }

    .sticky-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--card);
        padding: 15px 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        transition: transform 0.4s ease;
        z-index: 100;
    }

    .sticky-bar.visible {
        transform: translateY(0);
    }

    .sticky-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        gap: 20px;
    }

    @media (max-width: 600px) {
        .sticky-container {
            flex-direction: column;
            text-align: center;
        }
    }

    .sticky-text {
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .sticky-text i {
        color: var(--accent);
    }

    .sticky-btn {
        padding: 12px 25px;
        background: linear-gradient(to right, var(--accent), #b91c1c);
        color: white;
        border: none;
        border-radius: 50px;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
    }

    .sticky-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    }

    .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(--accent);
        color: white;
    }

    /* Satın alma popup bildirimleri kaldırıldı */

    .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ü */

    @media (max-width: 768px) {
        .review-image:hover {
            transform: none;
        }
    }