/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6600;
    --primary-dark: #e55a00;
    --primary-light: #ff8533;
    --secondary-color: #333;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #ffffff;
    --bg-light: #f9f9f9;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

/* Free Shipping Banner */
.free-shipping-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 12px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(255, 102, 0, 0.3);
    z-index: 1001;
}

.free-shipping-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: slide 3s infinite;
}

@keyframes slide {
    0% { left: -100%; }
    100% { left: 100%; }
}

.free-shipping-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.free-shipping-content i {
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.free-shipping-content span {
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.banner-subtitle {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.95;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .free-shipping-banner {
        padding: 10px 0;
    }

    .free-shipping-content {
        font-size: 14px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .free-shipping-content i {
        font-size: 18px;
    }

    .banner-subtitle {
        font-size: 12px;
        width: 100%;
        margin-left: 0;
        margin-top: -5px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.header-left .btn-order-header {
    flex-shrink: 0;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.logo a {
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.8;
}

.logo a:hover h1 {
    color: var(--primary-color);
}

.btn-order-header {
    background: linear-gradient(135deg, #ff6600, #ff8533) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    font-weight: 700 !important;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4) !important;
    position: relative;
    overflow: hidden;
    font-size: 15px !important;
    letter-spacing: 0.5px;
    animation: pulse-glow 2s ease-in-out infinite;
    border: none !important;
    cursor: pointer;
    line-height: 1.5;
}

.btn-order-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-order-header:hover::before {
    left: 100%;
}

.btn-order-header:hover {
    background: linear-gradient(135deg, #e55a00, #ff6600) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6) !important;
    animation: none;
    color: white !important;
}

.btn-order-header:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-order-header i {
    font-size: 18px;
    animation: bounce-icon 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 102, 0, 0.7), 0 0 30px rgba(255, 102, 0, 0.3);
    }
}

@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-color);
}

.btn-order {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-order:hover {
    background: var(--primary-dark);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff 0%, #fff5f0 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-images {
    position: sticky;
    top: 100px;
    order: 1;
    visibility: visible !important;
    display: block !important;
    width: 100% !important;
    opacity: 1 !important;
}

.hero-info {
    order: 2;
}

.main-image {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
    text-align: center;
    visibility: visible !important;
    display: block !important;
    opacity: 1 !important;
}

.main-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
    width: 100%;
}

.thumbnail-images {
    display: grid !important;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin-top: 20px;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

.thumbnail {
    background: white;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    visibility: visible !important;
    display: block !important;
    opacity: 1 !important;
    min-height: 80px;
    overflow: hidden;
}

.thumbnail:hover {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100% !important;
    height: auto !important;
    border-radius: 3px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    object-fit: cover;
    min-height: 60px;
    max-height: 100px;
}

/* Product Gallery */
.product-gallery {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.gallery-title {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    background: var(--bg-light);
}

.gallery-item:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-number {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--primary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 5px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 16px;
    user-select: none;
    z-index: 10000;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

.lightbox-number {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
}

.stock-badge {
    display: inline-block;
    background: var(--bg-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.hero-info h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.product-subtitle-banner {
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.35);
}

.product-subtitle-banner span {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .product-subtitle-banner span {
        font-size: 17px;
    }
}

.subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.stars {
    display: flex;
    gap: 3px;
}

.stars i {
    color: #ddd;
    font-size: 18px;
}

.stars i.active {
    color: #ffc107;
}

.rating-text {
    color: var(--text-light);
    font-size: 14px;
}

.price-section {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.price-main {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.price-current {
    font-size: 42px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price-old {
    font-size: 24px;
    color: var(--text-light);
    text-decoration: line-through;
    display: inline-block;
    margin-right: 15px;
}

.discount-badge {
    display: inline-block;
    background: var(--error-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 16px;
}

.price-note {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 5px;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.price-option-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.price-option-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.15);
}

.price-option-label {
    display: block;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.price-option-label input[type="checkbox"] {
    display: none;
}

.price-option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.price-option-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.price-option-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

.price-option-desc {
    font-size: 13px;
    color: var(--text-light);
}

.price-option-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.price-option-label input[type="checkbox"]:checked + .price-option-content {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 133, 51, 0.1));
    border-left: 4px solid var(--primary-color);
}

.price-option-label input[type="checkbox"]:checked + .price-option-content .price-option-name {
    color: var(--primary-color);
}

.price-total-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.price-total-label {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.price-total-amount {
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Product Options Banner - Order Page */
.product-options-banner {
    background: linear-gradient(135deg, #fff 0%, #fff5f0 100%);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.product-options-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.banner-header {
    text-align: center;
    margin-bottom: 30px;
}

.banner-header h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.banner-header h3 i {
    color: var(--primary-color);
    font-size: 32px;
}

.banner-subtitle {
    color: var(--text-light);
    font-size: 16px;
    margin: 0;
    text-align: center;
}

.banner-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.banner-option-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.banner-option-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 5px;
    cursor: pointer;
    flex-shrink: 0;
}

.banner-option-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.2);
    transform: translateY(-3px);
}

.banner-option-icon {
    width: 70px;
    height: 70px;
    background: #4a4a4a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.banner-option-icon i {
    font-size: 32px;
    color: white;
}

.banner-option-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.banner-option-content h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

.banner-option-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.banner-option-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.banner-option-price::before {
    content: '+';
    font-size: 18px;
    font-weight: 700;
}

/* Responsive Product Options Banner */
@media (max-width: 768px) {
    .product-options-banner {
        padding: 20px;
        margin-bottom: 30px;
    }

    .banner-header h3 {
        font-size: 22px;
        flex-direction: column;
        gap: 8px;
    }

    .banner-header h3 i {
        font-size: 28px;
    }

    .banner-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .banner-option-item {
        padding: 20px;
        gap: 15px;
    }

    .banner-option-icon {
        width: 60px;
        height: 60px;
    }

    .banner-option-icon i {
        font-size: 28px;
    }

    .banner-option-content h4 {
        font-size: 18px;
    }

    .banner-option-price {
        font-size: 20px;
    }
}

.product-description {
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.product-description p {
    margin-bottom: 15px;
}

.mobile-app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    transition: all 0.3s;
}

.mobile-app-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.mobile-app-badge i {
    font-size: 20px;
}

.mobile-app-badge i.fa-apple {
    margin-right: 5px;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    flex: 1;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.btn-customer-service {
    background: #0077b6;
    color: white;
}

.btn-customer-service:hover {
    background: #005f8a;
    transform: translateY(-2px);
}

/* Mobile App Banner Section */
.mobile-app-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #ff6600 50%, #ff8533 75%, #f093fb 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.mobile-app-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
}

.mobile-app-banner .container {
    position: relative;
    z-index: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.mobile-app-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-app-header {
    text-align: center;
    margin-bottom: 50px;
}

.mobile-app-title-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.mobile-app-title-section h2 i {
    font-size: 38px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.mobile-app-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.mobile-app-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-app-logos-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin: 0 auto 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mobile-app-logos-banner:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.platform-logo-small {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.platform-logo-small:hover {
    transform: scale(1.1);
}

.platform-logo-small svg {
    width: 32px;
    height: 32px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s;
}

.platform-logo-small:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.platform-name-small {
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.platform-divider {
    width: 2px;
    height: 35px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.mobile-app-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.mobile-feature-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s;
}

.mobile-feature-card:hover .feature-icon-wrapper {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-wrapper i {
    font-size: 28px;
    color: white;
}

.mobile-feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.mobile-feature-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.mobile-app-description {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 30px;
    border-left: 4px solid rgba(255, 255, 255, 0.8);
    text-align: center;
}

.mobile-app-description p {
    font-size: 16px;
    color: white;
    line-height: 1.8;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mobile-app-description i {
    font-size: 20px;
    opacity: 0.9;
}

/* Responsive Mobile App Banner */
@media (max-width: 992px) {
    .mobile-app-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-app-banner {
        padding: 60px 0;
    }

    .mobile-app-title-section h2 {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-app-title-section h2 i {
        font-size: 32px;
    }

    .mobile-app-subtitle {
        font-size: 16px;
    }

    .mobile-app-content {
        padding: 30px 20px;
    }

    .mobile-app-logos-banner {
        flex-direction: column;
        gap: 15px;
        padding: 20px 25px;
    }

    .platform-divider {
        width: 60px;
        height: 2px;
    }

    .mobile-app-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mobile-app-description {
        padding: 20px;
    }

    .mobile-app-description p {
        flex-direction: column;
        text-align: center;
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Product Details Section */
.product-details-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.product-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.product-details-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.product-details-header .section-title {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.product-details-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: left;
}

.product-details-intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

.product-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.detail-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
}

.detail-card:hover::before {
    transform: scaleX(1);
}

.detail-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.detail-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.battery-icon {
    background: linear-gradient(135deg, #ff6600, #ff8533);
}

.audio-icon {
    background: linear-gradient(135deg, #ff6600, #ff8533);
}

.gps-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.mobile-icon {
    background: linear-gradient(135deg, #ff6600, #e55a00);
}

.detail-card-header h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 700;
    flex: 1;
}

.detail-card-content {
    color: var(--text-light);
    line-height: 1.8;
}

.detail-card-content p {
    margin-bottom: 15px;
    font-size: 16px;
}

.detail-card-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.detail-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-color);
    border-bottom: 1px solid var(--bg-light);
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.detail-note {
    background: var(--bg-light);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 20px;
    font-style: italic;
    color: var(--text-color);
}

.detail-warning {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 15px 20px;
    margin-top: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.detail-warning i {
    color: #ffc107;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-warning p {
    margin: 0;
    color: #856404;
    font-size: 14px;
    line-height: 1.6;
}

.detail-info {
    background: #fff5f0;
    border: 2px solid #ff6600;
    border-radius: 10px;
    padding: 15px 20px;
    margin-top: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.detail-info i {
    color: #ff6600;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-info p {
    margin: 0;
    color: #e55a00;
    font-size: 15px;
    line-height: 1.6;
}

.detail-info p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.advantages-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 25px;
    padding: 50px 40px;
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.3);
}

.advantages-title {
    font-size: 32px;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.advantage-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.4);
}

.advantage-item i {
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.advantage-item span {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

/* Responsive Product Details */
@media (max-width: 992px) {
    .product-details-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-details-section {
        padding: 60px 0;
    }

    .product-details-header .section-title {
        font-size: 28px;
    }

    .product-details-intro {
        font-size: 16px;
    }

    .detail-card {
        padding: 25px;
    }

    .detail-card-header h3 {
        font-size: 20px;
    }

    .advantages-section {
        padding: 35px 25px;
    }

    .advantages-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Specifications Section */
.specifications-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.spec-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    box-shadow: var(--shadow);
}

.spec-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.spec-value {
    color: var(--text-light);
}

.package-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.package-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.package-list {
    list-style: none;
    margin-bottom: 15px;
}

.package-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-list i {
    color: var(--success-color);
}

.package-note {
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.review-author strong {
    display: block;
    margin-bottom: 5px;
}

.verified-badge {
    font-size: 12px;
    color: var(--success-color);
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(40, 167, 69, 0.1);
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.verified-badge i {
    color: var(--success-color);
}

.review-date {
    font-size: 12px;
    color: var(--text-light);
}

.review-stars {
    margin-bottom: 15px;
}

.review-stars i {
    color: #ffc107;
    font-size: 14px;
}

.review-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

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

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary-color);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

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

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-section i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #ccc;
    font-size: 14px;
}

.legal-note {
    margin-top: 15px;
    font-size: 12px;
    color: #999;
}

/* Order Section */
.order-section {
    padding: 60px 0;
    min-height: 80vh;
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.order-summary {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.summary-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-product h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.summary-product p {
    color: var(--text-light);
    font-size: 14px;
}

.summary-price {
    margin-top: 15px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 2px solid var(--primary-color);
}

.total-label {
    font-size: 20px;
    font-weight: 600;
}

.total-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}

.summary-benefits {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.order-form-container h2 {
    margin-bottom: 30px;
    color: var(--secondary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.required {
    color: var(--error-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 18px;
    font-family: inherit;
    transition: border-color 0.3s;
    background-color: var(--bg-color);
    min-height: 55px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23333' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px 16px;
    padding-right: 50px;
    font-size: 18px;
    line-height: 1.5;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.form-group select option {
    padding: 12px;
    font-size: 18px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: start;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-large {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    margin-top: 20px;
}

.success-message,
.error-message {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.success-message {
    background: #f0f9f4;
    border: 2px solid var(--success-color);
}

.success-message i {
    font-size: 64px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.success-message h2 {
    color: var(--success-color);
    margin-bottom: 15px;
}

.success-message p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 16px;
}

/* Mobil için success message düzenlemesi */
@media (max-width: 768px) {
    .order-section {
        padding: 20px 0;
        min-height: auto;
    }
    
    .success-message {
        padding: 30px 20px;
        margin: 20px;
        max-width: calc(100% - 40px);
        min-height: calc(100vh - 200px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .success-message i {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .success-message h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .success-message p {
        font-size: 15px;
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    .success-message .btn {
        width: 100%;
        max-width: 300px;
        margin-top: 20px;
    }
}

.error-message {
    background: #fff5f5;
    border: 2px solid var(--error-color);
    margin-bottom: 30px;
}

.error-message i {
    color: var(--error-color);
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-images {
        position: static;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .order-content {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .header-content {
        gap: 12px;
    }
    
    .header-left {
        gap: 12px;
        flex: 1;
        min-width: 0;
        display: flex !important;
        align-items: center !important;
    }
    
    .header-left .btn-order-header {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 10px 18px !important;
        font-size: 13px !important;
        gap: 6px;
        flex-shrink: 0;
        border-radius: 25px !important;
        background: linear-gradient(135deg, #ff6600, #ff8533) !important;
        color: white !important;
        margin-left: auto;
    }
    
    .logo h1 {
        font-size: 18px;
    }
    
    .btn-order-header i {
        font-size: 14px;
    }
    
    .nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Header-left içindeki butonun görünür olmasını garanti et */
    .header-left > .btn-order-header {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .mobile-menu-toggle {
        display: block;
        flex-shrink: 0;
    }
    
    .features-grid,
    .reviews-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    /* Mobilde il ve ilçe dropdown'larını büyüt */
    .form-group select {
        font-size: 16px;
        padding: 14px 18px;
        min-height: 50px;
        padding-right: 45px;
    }
    
    .form-group select option {
        padding: 10px;
        font-size: 16px;
    }
    
    .thumbnail-images {
        grid-template-columns: repeat(4, 1fr) !important;
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 10px;
    }
    
    .lightbox-close {
        font-size: 30px;
        top: 10px;
        right: 20px;
    }
}

/* Product Options Banner - Order Page */
.product-options-banner {
    background: linear-gradient(135deg, #fff 0%, #fff5f0 50%, #ffe8d6 100%);
    border: 3px solid var(--primary-color);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.product-options-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
    animation: shimmer 3s infinite;
}

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

.banner-header {
    text-align: center;
    margin-bottom: 35px;
}

.banner-header h3 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
}

.banner-header h3 i {
    color: var(--primary-color);
    font-size: 36px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.banner-header p {
    color: var(--text-light);
    font-size: 17px;
    margin: 0;
    font-weight: 500;
}

.banner-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.banner-option-item {
    background: white;
    border: 3px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.banner-option-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-option-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.25);
    transform: translateY(-5px);
}

.banner-option-item:hover::before {
    transform: scaleY(1);
}

.banner-option-item input[type="checkbox"] {
    display: none;
}

.banner-option-checkbox {
    width: 28px;
    height: 28px;
    border: 3px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    background: white;
    position: relative;
}

.banner-option-checkbox i {
    color: white;
    font-size: 16px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.banner-option-item input[type="checkbox"]:checked + .banner-option-checkbox {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.2);
}

.banner-option-item input[type="checkbox"]:checked + .banner-option-checkbox i {
    opacity: 1;
    transform: scale(1);
}

.banner-option-item input[type="checkbox"]:checked ~ .banner-option-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    transform: scale(1.1);
}

.banner-option-item input[type="checkbox"]:checked ~ .banner-option-content h4 {
    color: var(--primary-color);
}

.banner-option-item input[type="checkbox"]:checked ~ .banner-option-content .banner-option-price {
    color: var(--primary-color);
    font-size: 26px;
}

.banner-option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-option-icon i {
    font-size: 36px;
    color: var(--text-light);
    transition: all 0.3s;
}

.banner-option-item input[type="checkbox"]:checked ~ .banner-option-icon i {
    color: white;
}

.banner-option-content {
    flex: 1;
}

.banner-option-content h4 {
    font-size: 22px;
    color: var(--secondary-color);
    margin: 0 0 10px 0;
    font-weight: 700;
    transition: all 0.3s;
}

.banner-option-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.banner-option-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.banner-option-price::before {
    content: '+';
    font-size: 20px;
    font-weight: 600;
}

/* Responsive Product Options Banner */
@media (max-width: 768px) {
    .product-options-banner {
        padding: 25px 20px;
        margin-bottom: 30px;
        border-radius: 20px;
    }

    .banner-header h3 {
        font-size: 24px;
        flex-direction: column;
        gap: 10px;
    }

    .banner-header h3 i {
        font-size: 30px;
    }

    .banner-header p {
        font-size: 15px;
    }

    .banner-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .banner-option-item {
        padding: 25px 20px;
        gap: 15px;
        border-radius: 15px;
    }

    .banner-option-icon {
        width: 70px;
        height: 70px;
    }

    .banner-option-icon i {
        font-size: 32px;
    }

    .banner-option-content h4 {
        font-size: 20px;
    }

    .banner-option-price {
        font-size: 22px;
    }
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-option {
    display: block;
    cursor: pointer;
}

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

.payment-option-content {
    background: #f5f5f5;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-option-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.payment-option:hover .payment-option-content {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.15);
    transform: translateX(5px);
}

.payment-option:hover .payment-option-content::before {
    transform: scaleY(1);
}

.payment-option input[type="radio"]:checked + .payment-option-content {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 133, 51, 0.1));
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.2);
}

.payment-option input[type="radio"]:checked + .payment-option-content::before {
    transform: scaleY(1);
}

.payment-option-content i {
    font-size: 24px;
    color: var(--text-light);
    width: 40px;
    text-align: center;
    transition: all 0.3s;
}

.payment-option input[type="radio"]:checked + .payment-option-content i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.payment-option-content span {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    flex: 1;
    transition: color 0.3s;
}

.payment-option input[type="radio"]:checked + .payment-option-content span {
    color: var(--primary-color);
}

/* Bank Info */
.bank-info {
    background: linear-gradient(135deg, #fff5f0, #ffe8d6);
    border: 2px solid #ff6600;
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bank-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 102, 0, 0.2);
}

.bank-info-header i {
    font-size: 24px;
    color: #ff6600;
}

.bank-info-header h4 {
    font-size: 20px;
    color: #e55a00;
    margin: 0;
    font-weight: 700;
}

.bank-info-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bank-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #ff6600;
}

.bank-label {
    font-weight: 700;
    color: #e55a00;
    min-width: 80px;
    font-size: 14px;
}

.bank-value {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 15px;
    flex: 1;
    word-break: break-word;
}

.bank-note {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 10px;
}

.bank-note i {
    color: #ffc107;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.bank-note p {
    margin: 0;
    color: #856404;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Payment Options */
@media (max-width: 768px) {
    .payment-option-content {
        padding: 15px;
        gap: 12px;
    }

    /* Contact Page Responsive */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .contact-card {
        padding: 30px 20px !important;
    }

    .working-hours {
        padding: 30px 20px !important;
    }

    .working-hours > div {
        grid-template-columns: 1fr !important;
    }
}

    .payment-option-content i {
        font-size: 20px;
        width: 35px;
    }

    .payment-option-content span {
        font-size: 15px;
    }

    .bank-info {
        padding: 20px 15px;
    }

    .bank-info-header h4 {
        font-size: 18px;
    }

    .bank-detail {
        flex-direction: column;
        gap: 8px;
    }

    .bank-label {
        min-width: auto;
    }
}

/* ======================================== */
/* Promotional Popup Styles */
/* ======================================== */
.promo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.promo-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.promo-popup-modal {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.8) translateY(50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.promo-popup-overlay.active .promo-popup-modal {
    transform: scale(1) translateY(0);
}

.promo-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s ease;
}

.promo-popup-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.promo-popup-image {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
}

.promo-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-popup-content {
    padding: 30px;
    text-align: center;
}

.promo-popup-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.promo-popup-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.promo-popup-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

.promo-popup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.5);
}

.promo-popup-btn i {
    font-size: 20px;
}

/* Responsive Popup */
@media (max-width: 768px) {
    .promo-popup-modal {
        max-width: 95%;
        border-radius: 15px;
    }

    .promo-popup-image {
        max-height: 200px;
    }

    .promo-popup-content {
        padding: 25px 20px;
    }

    .promo-popup-title {
        font-size: 22px;
    }

    .promo-popup-description {
        font-size: 14px;
    }

    .promo-popup-btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .promo-popup-close {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
        font-size: 16px;
    }
}
