/* =========================
   GENEL AYARLAR
========================= */
:root {
    --primary-color: #e67e22;      /* Fener turuncusu */
    --primary-hover: #d35400;
    --secondary-color: #2c3e50;    /* Koyu lacivert (trust banner için) */
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --bg-light: #fef9e7;           /* Açık krem */
    --feature-color: #e67e22;
    --gradient-primary: linear-gradient(135deg, #e67e22, #d35400);
    --gradient-secondary: linear-gradient(135deg, #f39c12, #e67e22);
}

* {
    box-sizing: border-box;
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    background-color: #f8fafc;
    color: #333;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* =========================
   ÜST BARI
========================= */
.trust-banner {
    background: var(--secondary-color);  /* Koyu lacivert */
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 10px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.2);
}

.trust-banner i {
    margin-right: 5px;
}

.top-bar {
    background: var(--gradient-secondary);
    color: #fff;
    text-align: center;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 15px rgba(230, 126, 34, 0.3);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.top-bar .flash-deal {
    background: rgba(255, 193, 7, 0.9);
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 5px;
    animation: pulse 2s infinite;
}

.top-bar .countdown {
    background: #e74c3c;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 5px;
    font-weight: bold;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.discount-banner {
    background: linear-gradient(90deg, #e67e22, #f39c12);
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: 800;
    position: relative;
    overflow: hidden;
}

.discount-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,.1) 10px,
        rgba(255,255,255,.1) 20px
    );
}

.discount-text {
    font-size: 22px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* =========================
   CONTAINER
========================= */
.container.main-content {
    padding: 10px 5px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .container.main-content {
        padding: 10px 5px;
    }
}

/* =========================
   ÜRÜN GÖRSELLERİ (ALT ALTA)
========================= */
.product-image-container {
    margin-bottom: 20px;
}

.product-image-container img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #e1e8f0;
    transition: transform 0.3s ease;
    object-fit: contain;
    height: auto;
    display: block;
}

.product-image-container img:hover {
    transform: scale(1.01);
}

/* =========================
   4'Ü 1 ARADA ÖZELLİK KUTULARI (RENKLİ)
========================= */
.features-grid-colored {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 20px 0;
}

@media (max-width: 992px) {
    .features-grid-colored {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid-colored {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid-colored {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-colored-item {
    background: white;
    border-radius: 10px;
    padding: 15px 8px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.feature-colored-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-colored-item i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
    transition: transform 0.3s ease;
}

.feature-colored-item:hover i {
    transform: scale(1.1);
}

.feature-colored-item span {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    display: block;
    line-height: 1.3;
}

.feature-colored-item span small {
    font-size: 10px;
    color: #666;
    display: block;
    margin-top: 3px;
    font-weight: normal;
}

/* RENK KODLARI (fener temalı) */
.feature-colored-item.color-1 {
    border-color: #e67e22;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(230, 126, 34, 0.05));
}
.feature-colored-item.color-1 i { color: #e67e22; }

.feature-colored-item.color-2 {
    border-color: #2ecc71;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(46, 204, 113, 0.05));
}
.feature-colored-item.color-2 i { color: #2ecc71; }

.feature-colored-item.color-3 {
    border-color: #3498db;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0.05));
}
.feature-colored-item.color-3 i { color: #3498db; }

.feature-colored-item.color-4 {
    border-color: #f39c12;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(243, 156, 18, 0.05));
}
.feature-colored-item.color-4 i { color: #f39c12; }

/* =========================
   FEATURES BOX
========================= */
.features-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.features-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.features-box-link:hover .features-box {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 126, 34, 0.2);
    border-color: var(--primary-color);
}

.features-box h3 {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.features-box h3 i {
    margin-right: 10px;
}

/* =========================
   ÖZELLİKLER LİSTESİ
========================= */
.features-box .list-unstyled li {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.features-box .list-unstyled li:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateX(5px);
}

.features-box .list-unstyled li i {
    color: var(--success-color);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.text-content strong {
    color: #2c3e50;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.text-content span {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================
   UYUMLULUK GRID (KULLANIM ALANLARI İÇİN)
========================= */
.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .compatibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .compatibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.compatibility-item {
    text-align: center;
    padding: 15px 10px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e1e8f0;
}

.compatibility-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}

.compatibility-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

/* Her bir kullanım alanına özel renkler HTML'de inline verildi */

.compatibility-text strong {
    display: block;
    font-size: 13px;
    color: #2c3e50;
    margin-bottom: 3px;
}

.compatibility-text small {
    font-size: 11px;
    color: #7f8c8d;
}

/* =========================
   TEKNİK ÖZELLİKLER
========================= */
.tech-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.tech-specs-table tr {
    border-bottom: 1px solid #e1e8f0;
}

.tech-specs-table tr:last-child {
    border-bottom: none;
}

.tech-specs-table td {
    padding: 12px 15px;
}

.tech-specs-table td:first-child {
    font-weight: 600;
    color: #2c3e50;
    width: 40%;
    background: var(--bg-light);
}

.tech-specs-table td:last-child {
    color: #555;
}

.spec-highlight {
    color: var(--primary-color) !important;
    font-weight: 800;
}

/* =========================
   KAMPANYA FİYAT ALERT
========================= */
.alert-warning {
    background: linear-gradient(135deg, #fff9e6, #ffeaa7);
    border: none;
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
}

.old-price-text {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 16px;
}

.new-price-text {
    color: #e74c3c;
    font-size: 28px;
    font-weight: 800;
    display: block;
    margin: 10px 0;
}

.discount-circle {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

/* =========================
   MÜŞTERİ YORUMLARI
========================= */
.review-item {
    padding: 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #e1e8f0;
    transition: all 0.3s ease;
}

.review-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

/* =========================
   SIK SORULAN SORULAR
========================= */
.accordion-item {
    border: 1px solid #e1e8f0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--bg-light);
    color: var(--primary-color);
    font-weight: 600;
    padding: 15px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-body {
    background: white;
    padding: 20px;
    color: #555;
    line-height: 1.6;
}

/* =========================
   STOK ALERT
========================= */
.stock-alert {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.stock-alert i {
    margin-right: 10px;
    font-size: 18px;
}

.stock-alert .progress {
    height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    margin-top: 10px;
    overflow: hidden;
}

.stock-alert .progress-bar {
    background: white;
    border-radius: 4px;
}

.pulse-stock {
    display: inline-block;
    animation: pulse 1.5s infinite;
}

/* =========================
   SİPARİŞ FORMU
========================= */
.order-form-container {
    background: white;
    border-radius: 20px;
    border: 2px solid #e1e8f0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

.order-form-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.form-header {
    background: var(--gradient-primary);
    padding: 25px 20px;
    text-align: center;
    color: white;
}

.form-header h4 {
    margin: 0;
    font-weight: 800;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.form-header p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.form-header h4 i {
    margin-right: 10px;
}

/* =========================
   PAKET KARTLARI
========================= */
.package-card {
    position: relative;
    margin-bottom: 15px;
}

.package-card.bestseller:before {
    content: 'EN POPÜLER';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f39c12;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    z-index: 2;
}

.package-card.value-pack:before {
    content: 'EN AVANTAJLI';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2ecc71;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    z-index: 2;
}

.radio-card {
    display: block;
    border: 3px solid #e1e1e1;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background: white;
}

.radio-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.15);
    transform: translateY(-3px);
}

.radio-group input:checked + .radio-card {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.05), rgba(243, 156, 18, 0.05));
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.2);
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-card .check-circle {
    display: none !important;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.package-header .pkg-name {
    font-weight: 800;
    font-size: 18px;
    color: #2c3e50;
    font-family: 'Montserrat', sans-serif;
    flex: 1;
    margin-right: 10px;
}

.package-header .badge-discount {
    background: var(--danger-color);
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    margin-top: 2px;
}

.card-content .pkg-desc {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 12px;
    line-height: 1.5;
}

.price-area {
    margin-top: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.old-price {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 16px;
    margin-right: 10px;
}

.new-price {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 28px;
}

.bestseller-badge {
    position: absolute;
    top: 53px;
    right: 15px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
}

.value-badge {
    position: absolute;
    top: 53px;
    right: 15px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
}

/* =========================
   FORM ELEMENTLERİ
========================= */
.step-title {
    font-weight: 800;
    margin: 25px 0 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    padding-left: 10px;
    border-left: 4px solid var(--primary-color);
}

.step-number {
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

.input-group {
    margin-bottom: 15px;
}

.input-group-text {
    background: var(--bg-light);
    border: 1px solid #d1d1d1;
    border-right: none;
    color: var(--primary-color);
}

.form-control,
.form-select {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #d1d1d1;
    padding-left: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.15);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}


/* =========================
   UYARI KUTUSU (FENER ÖZEL)
========================= */
.warning-box {
    background-color: #fff9e6;
    border: 2px dashed #e67e22;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

/* =========================
   GÜVENLİK NOTU
========================= */
.security-note {
    background: rgba(46, 204, 113, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    border-left: 4px solid #27ae60;
}

.security-note i {
    color: #27ae60;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.security-note span {
    font-size: 13px;
    color: #2c3e50;
    line-height: 1.5;
}

/* =========================
   SİPARİŞ BUTTON
========================= */
.btn-order {
    background: var(--gradient-primary);
    color: white;
    width: 100%;
    font-size: 18px;
    font-weight: 800;
    padding: 25px;
    border: none;
    border-radius: 12px;
    margin-top: 25px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.btn-order:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-order:hover:before {
    left: 100%;
}

.btn-order:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(230, 126, 34, 0.4);
    background: var(--gradient-secondary);
}

.order-button-content {
    text-align: left;
    flex: 1;
}

.button-subtext {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 600;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

/* =========================
   HIZLI TESLİMAT
========================= */
.fast-delivery {
    background: rgba(52, 152, 219, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #3498db;
}

.fast-delivery i {
    color: #3498db;
    font-size: 24px;
    margin-right: 15px;
}

.fast-delivery span {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 600;
}

.fast-delivery strong {
    color: #e74c3c;
}

/* =========================
   SOSYAL PROOF
========================= */
.social-proof {
    display: flex;
    justify-content: space-around;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #e1e8f0;
}

.proof-item {
    text-align: center;
    flex: 1;
}

.proof-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: block;
}

.proof-item span {
    font-size: 12px;
    color: #555;
}

.proof-item strong {
    color: var(--primary-color);
}

/* =========================
   MESAFELİ SATIŞ SÖZLEŞMESİ MODAL
========================= */
.sozlesme-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 99999;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.sozlesme-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
}

.sozlesme-modal-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sozlesme-modal-header {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    font-family: 'Montserrat', sans-serif;
}

.sozlesme-modal-header h3 {
    margin: 0;
    font-weight: 800;
    font-size: 20px;
}

.sozlesme-modal-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
    padding: 0;
    font-weight: 300;
}

.sozlesme-modal-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.sozlesme-modal-body {
    padding: 0;
    flex: 1;
}

.sozlesme-iframe {
    width: 100%;
    height: 70vh;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .sozlesme-modal {
        padding: 10px;
    }
    
    .sozlesme-modal-content {
        max-height: 95vh;
        border-radius: 8px;
    }
    
    .sozlesme-modal-header {
        padding: 15px;
    }
    
    .sozlesme-modal-header h3 {
        font-size: 18px;
    }
    
    .sozlesme-modal-close {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
    
    .sozlesme-iframe {
        height: 75vh;
    }
}

.sozlesme-link {
    color: #e67e22;
    text-decoration: underline;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s;
    display: inline;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    font-family: 'Montserrat', sans-serif;
}

.sozlesme-link:hover {
    color: #d35400;
    text-decoration: none;
}

/* =========================
   MOBİL RESPONSIVE
========================= */
@media (max-width: 768px) {
    .top-bar {
        font-size: 12px;
        padding: 10px;
    }
    
    .discount-banner {
        padding: 12px;
        font-size: 16px;
    }
    
    .discount-text {
        font-size: 18px;
    }
    
    .features-grid-colored {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .compatibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .order-form-container {
        box-shadow: none;
        border: none;
        border-radius: 0;
    }
    
    .btn-order {
        font-size: 16px;
        padding: 20px;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 15px;
    }
    
    .new-price {
        font-size: 24px;
    }
    
    .badge-discount {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .package-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .package-header .badge-discount {
        margin-top: 5px;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .features-grid-colored {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .compatibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-title {
        font-size: 14px;
    }
    
    .new-price {
        font-size: 22px;
    }
    
    .badge-discount {
        font-size: 10px;
    }
}

/* =========================
   ANİMASYONLAR
========================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-box, .order-form-container {
    animation: fadeInUp 0.6s ease-out;
}

/* =========================
   SCROLLBAR
========================= */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* =========================
   TÜM YAZILARIN ALTINDAKİ ÇİZGİLERİ KALDIR
========================= */
a, a:hover, a:focus, a:active {
    text-decoration: none !important;
    border-bottom: none !important;
}

.review-item strong, .review-item small {
    text-decoration: none !important;
    border-bottom: none !important;
}

.tech-specs-table td {
    border-bottom: 1px solid #e1e8f0;
}
.tech-specs-table td:last-child {
    border-bottom: none;
}