/* EmoMuzik Frontend Styles */

/* ===== Honeypot (Bot Tuzağı) ===== */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #0d0d0d;
}

.hero-section .swiper {
    width: 100%;
}

.hero-section .swiper-slide {
    position: relative;
}

.hero-section .slide-link {
    display: block;
    line-height: 0;
}

.hero-section .slide-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .hero-section .swiper-slide {
        overflow: hidden;
    }
    .hero-section .slide-img {
        width: 130%;
        margin-left: -15%;
    }
}

.hero-section .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.hero-section .swiper-pagination-bullet-active {
    background: #f37121;
    opacity: 1;
}

.hero-section .swiper-button-prev,
.hero-section .swiper-button-next {
    color: #fff;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.hero-section .swiper-button-prev:hover,
.hero-section .swiper-button-next:hover {
    opacity: 1;
}

.hero-section .swiper-button-prev::after,
.hero-section .swiper-button-next::after {
    font-size: 1.5rem;
}

/* ===== Features Bar ===== */
.features-bar {
    background: #0d0d0d;
    padding: 1.25rem 0;
}

.features-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.features-bar-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-bar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
}

.feature-bar-item i {
    font-size: 1.5rem;
    color: #f37121;
}

.feature-bar-item span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== About Section ===== */
.about-section {
    padding: 4rem 0;
    background: #fff;
}

.about-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-content {
    text-align: center;
}

.about-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1rem;
}

/* ===== Products Section ===== */
.products-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.products-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    position: relative;
    text-decoration: none;
    display: block;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image {
    position: relative;
    background: #fafafa;
    padding: 1.5rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: #f37121;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 20px;
}

.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ddd;
}

.no-image i {
    font-size: 4rem;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #999;
}

.empty-state i {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.empty-state p {
    margin: 0;
    font-size: 1rem;
}

.price-badge {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
    z-index: 10;
}

.price-badge .eur-price {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.1;
}

.price-badge .tl-price {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 2px;
}

.product-info {
    padding: 1rem 0.5rem;
    text-align: center;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.view-all-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ===== Features Section ===== */
.features-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0d0d0d 100%);
}

.cta-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-content {
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #f37121 0%, #e85d04 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(243, 113, 33, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(243, 113, 33, 0.5);
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* ===== News Section ===== */
.news-section {
    padding: 4rem 0;
    background: #fff;
}

.news-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.news-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f5f5f5;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 1.25rem;
}

.news-card-date {
    font-size: 0.75rem;
    color: #f37121;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.news-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-excerpt {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== Blog Detail Page ===== */
.blog-detail-section {
    padding: 2rem 0 4rem;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    color: #666;
}

.blog-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-breadcrumb a:hover {
    color: var(--primary);
}

.blog-breadcrumb i {
    font-size: 0.7rem;
    color: #999;
}

.blog-breadcrumb span {
    color: #333;
    font-weight: 500;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

.blog-article {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.blog-hero-image {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.blog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article-header {
    padding: 2rem 2rem 1rem;
}

.blog-article-header h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 1rem;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.blog-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #666;
}

.blog-meta .meta-item i {
    color: var(--primary);
}

.blog-article-content {
    padding: 0 2rem 2rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

.blog-article-content p {
    margin-bottom: 1rem;
}

.blog-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.blog-article-content h2,
.blog-article-content h3 {
    margin: 1.5rem 0 1rem;
    color: #1a1a2e;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid #eee;
}

.blog-share span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.share-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #000; }
.share-btn.whatsapp { background: #25d366; }

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.sidebar-widget h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.related-post:hover {
    background: #f8f9fa;
}

.related-post-img {
    width: 70px;
    height: 55px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-info h4 {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    margin: 0 0 0.3rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-date {
    font-size: 0.75rem;
    color: #999;
}

@media (max-width: 992px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-article-header h1 {
        font-size: 1.4rem;
    }

    .blog-article-header,
    .blog-article-content,
    .blog-share {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* ===== Products Page ===== */
.products-page {
    background: #fff;
    min-height: calc(100vh - 70px);
    padding: 2rem 0 4rem;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.page-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #999;
}

.no-products i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

/* ===== Product Detail Page ===== */
.product-detail-page {
    background: #fff;
    padding: 2rem 0 4rem;
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcrumb-nav {
    margin-bottom: 2rem;
}

.breadcrumb-nav ol {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
}

.breadcrumb-nav li {
    color: #666;
}

.breadcrumb-nav li a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-nav li a:hover {
    color: var(--primary);
}

.breadcrumb-nav li:not(:last-child)::after {
    content: "/";
    margin-left: 0.5rem;
    color: #ccc;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-image-container {
    position: relative;
    background: #ffffff;
    border: 1px dashed #ddd;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
}

.detail-price-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
    z-index: 10;
}

.detail-price-badge .eur-price {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.detail-price-badge .tl-price {
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 3px;
}

.product-info-section h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-summary {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.price-display {
    margin-bottom: 1.5rem;
}

.price-display .old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.price-display .current-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.price-display .tl-equivalent {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

.product-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.product-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 6px;
}

.badge-success {
    background: #ecfdf5;
    color: #065f46;
}

.badge-info {
    background: #eff6ff;
    color: #1d4ed8;
}

.badge-download {
    background: #22c55e;
    color: #fff;
}

.badge-warning {
    background: #fef9c3;
    color: #854d0e;
}

.badge-primary {
    background: #f3e8ff;
    color: #7c3aed;
}



.buy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, #e55b00 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 113, 33, 0.35);
    color: #fff;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: left;
    margin-bottom: 1.5rem;
}

.action-buttons .buy-button,
.action-buttons .whatsapp-button {
    flex: none;
    min-width: 180px;
    margin-bottom: 0;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 300px;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    background: #25D366;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.whatsapp-button:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    color: #fff;
}

.whatsapp-button i {
    font-size: 1.2rem;
}

.payment-methods {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    margin-top: 1.5rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.payment-method i {
    font-size: 1.25rem;
    color: var(--primary);
}

.product-details-section {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.product-details-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.product-content {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.8;
}

.product-content p {
    margin-bottom: 1rem;
}

.product-content ul, .product-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

/* Related Products */
.related-section {
    margin-top: 4rem;
}

.related-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.related-card {
    text-decoration: none;
    display: block;
}

.related-card:hover .related-image img {
    transform: scale(1.03);
}

.related-image {
    position: relative;
    background: #fff;
    border: 1px dashed #ddd;
    border-radius: 8px;
    padding: 0.75rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

    .related-image .mini-badge {
        position: absolute;
        top: -8px;
        left: -8px;
        width: 55px;
        height: 55px;
        background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 10px rgba(229, 57, 53, 0.4);
        z-index: 1;
    }

.mini-badge .eur {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
}

.mini-badge .tl {
    color: rgba(255,255,255,0.85);
    font-size: 0.55rem;
    margin-top: 2px;
}

.related-info {
    padding: 0.75rem 0.25rem;
    text-align: center;
}

.related-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

/* ===== Product Tabs ===== */
.product-tabs-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-top: 2rem;
    overflow: hidden;
}

.tabs-header {
    display: flex;
    flex-wrap: wrap;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
    gap: 0;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--primary);
    background: rgba(243, 113, 33, 0.05);
}

.tab-btn.active {
    color: var(--primary);
    background: #fff;
    border-bottom-color: var(--primary);
}

.tabs-content {
    padding: 1.5rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Audio Player */
.audio-player-container {
    max-width: 600px;
}

.playlist {
    margin-bottom: 1rem;
}

.playlist-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.playlist-item:hover {
    background: #f0f0f0;
}

.playlist-item.playing {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 1px solid var(--primary);
}

.playlist-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.playlist-info i {
    color: var(--primary);
    font-size: 1.2rem;
}

.track-title {
    font-weight: 500;
    color: #1a1a2e;
}

.play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.play-btn:hover {
    transform: scale(1.1);
}

.audio-controls {
    background: #1a1a2e;
    border-radius: 8px;
    padding: 1rem;
}

.audio-controls audio {
    width: 100%;
}

/* Video Gallery */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.video-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    cursor: pointer;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.video-thumb:hover img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.play-overlay i {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.video-thumb:hover .play-overlay {
    background: rgba(0,0,0,0.5);
}

.video-item h5 {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a2e;
    margin: 0;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-modal img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    transition: color 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary);
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== Order Page ===== */
.order-page {
    background: #f8f9fa;
    min-height: calc(100vh - 70px);
    padding: 2rem 0 4rem;
}

.order-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.order-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.order-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.order-form-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.35rem;
}

.form-group label span {
    color: #e53935;
}

.form-control {
    width: 100%;
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fafafa;
    color: #1a1a2e;
    transition: all 0.2s;
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(243, 113, 33, 0.1);
}

textarea.form-control {
    min-height: 80px;
    resize: vertical;
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.payment-option {
    flex: 1;
    min-width: 120px;
}

.payment-option input {
    display: none;
}

.payment-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
}

.payment-option input:checked + label {
    border-color: var(--primary);
    background: #fff5f0;
    color: var(--primary);
}

.payment-option label:hover {
    border-color: #ccc;
}

.bank-select {
    margin-top: 1rem;
    display: none;
}

.bank-select.show {
    display: block;
}

.bank-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bank-card {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}

.bank-card:hover {
    border-color: #a5b4fc;
    background: #f5f3ff;
}

.bank-card.active {
    border-color: #6366f1;
    background: #eef2ff;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.bank-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 10px;
}

.bank-card-header i {
    color: #6366f1;
    font-size: 18px;
}

.bank-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bank-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
}

.bank-info-label {
    color: #9ca3af;
    min-width: 90px;
    font-size: 12px;
}

.iban-row {
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
}

.iban-value {
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #6366f1;
    font-size: 13px;
}

.iban-copy-btn {
    background: none;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 3px 8px;
    cursor: pointer;
    color: #6b7280;
    font-size: 14px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
}

.iban-copy-btn:hover {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
}

.iban-copy-btn.copied {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
}

.security-code-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.security-code-display {
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    color: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-family: monospace;
}

.terms-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
}

.terms-check input {
    margin-top: 3px;
}

.terms-check a {
    color: var(--primary);
    text-decoration: none;
}

.terms-check a:hover {
    text-decoration: underline;
}

/* Product Summary Card */
.product-summary-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 90px;
}

.product-summary-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.product-preview {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.product-preview-img {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-preview-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-preview-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.product-preview-info p {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}

.price-summary {
    margin-bottom: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: #666;
}

.price-row.total {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.price-row .amount {
    font-weight: 600;
    color: #1a1a2e;
}

.price-row.total .amount {
    color: var(--primary);
    font-size: 1.25rem;
}

.currency-note {
    font-size: 0.75rem;
    color: #999;
    text-align: center;
    margin-bottom: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, #e55b00 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 113, 33, 0.35);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.validation-error {
    color: #e53935;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.alert-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* File Upload */
.file-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 0.5rem;
    padding: 0.2rem 0.5rem;
    background: #f37121;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-help-btn:hover {
    background: #e85d04;
}

.file-help-btn i {
    font-size: 0.75rem;
}

.file-upload-box {
    position: relative;
}

.file-upload-box input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    color: #666;
}

.file-upload-label:hover {
    border-color: var(--primary);
    background: #fff5f0;
}

.file-upload-label i {
    font-size: 1.5rem;
    color: var(--primary);
}

.file-upload-label.has-file {
    border-color: #22c55e;
    background: #f0fdf4;
    color: #166534;
}

.file-hint {
    display: block;
    margin-top: 0.5rem;
    color: #999;
    font-size: 0.8rem;
}

/* ===== Order Confirmation Page ===== */
.confirmation-page {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    min-height: calc(100vh - 70px);
    padding: 3rem 0;
}

.confirmation-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

.confirmation-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon i {
    font-size: 3rem;
    color: #fff;
}

.confirmation-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.confirmation-card .subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.order-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: left;
}

.order-summary-item label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.order-summary-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.order-summary-item span.primary {
    color: var(--primary);
}

.siparis-info-text {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #92400e;
}

.siparis-info-text a {
    color: #d97706;
    font-weight: 600;
    text-decoration: underline;
}

.siparis-info-text a:hover {
    color: #b45309;
}

.bank-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.bank-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1d4ed8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bank-details {
    border-radius: 8px;
    padding: 1rem;
}

.bank-details table {
    width: 100%;
    font-size: 0.85rem;
}

.bank-details td {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.bank-details tr:last-child td {
    border-bottom: none;
}

.bank-details td:first-child {
    color: #666;
    width: 120px;
}

.bank-details td:last-child {
    font-weight: 600;
    color: #1a1a2e;
}

.bank-warning {
    background: #fef3c7;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #92400e;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.bank-warning i {
    flex-shrink: 0;
    margin-top: 2px;
}

.email-notice {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.action-btn.primary {
    background: var(--primary);
    color: #fff;
}

.action-btn.primary:hover {
    background: #e55b00;
    transform: translateY(-2px);
}

.action-btn.secondary {
    background: #f8f9fa;
    color: #1a1a2e;
    border: 1px solid #e5e7eb;
}

.action-btn.secondary:hover {
    background: #eee;
}

/* ===== Contact Page ===== */
.contact-page {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    min-height: calc(100vh - 70px);
}

.contact-hero {
    padding: 3rem 0 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.contact-hero p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

/* Form + Görsel Bölümü */
.contact-form-section {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

@media (max-width: 900px) {
    .contact-form-section {
        grid-template-columns: 1fr;
    }
    .contact-image {
        display: none;
    }
}

/* İletişim Bilgileri Bölümü */
.contact-info-section {
    background: #0d0d0d;
    border-radius: 16px;
    padding: 2rem;
    color: #fff;
}

.contact-info-section > h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-blocks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.contact-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.2s ease;
}

.contact-block:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(243, 113, 33, 0.3);
}

@media (max-width: 600px) {
    .contact-blocks-grid {
        grid-template-columns: 1fr;
    }
}

.contact-block-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.contact-block-subtitle {
    font-size: 0.85rem;
    color: #f37121;
    margin-bottom: 1rem;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    padding: 0.3rem 0.6rem;
    background: linear-gradient(135deg, #f37121 0%, #e85d04 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(243, 113, 33, 0.25);
}

.map-btn:hover {
    background: linear-gradient(135deg, #e85d04 0%, #d35400 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 113, 33, 0.4);
    color: #fff;
}

.map-btn i {
    font-size: 0.75rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.contact-block .info-item:first-of-type {
    margin-top: 0.5rem;
}

.info-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 0.85rem;
    color: #f37121;
}

.info-content {
    flex: 1;
    min-width: 0;
}

.info-content span,
.info-content a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    word-break: break-word;
}

.info-content a:hover {
    color: #f37121;
}

.info-content label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.25rem;
}

.info-content span {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 400;
}

.info-content a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.info-content a:hover {
    color: #f37121;
}

.info-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 1.5rem 0;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: all 0.2s;
}

.social-links a:hover {
    background: #f37121;
    color: #fff;
}

.form-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.form-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fafafa;
    color: #1a1a2e;
    transition: all 0.2s;
    outline: none;
}

.form-input:focus {
    border-color: #f37121;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.1);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.alert-box {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-box.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-box.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.captcha-group {
    margin-top: 0.5rem;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.captcha-question {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    min-width: auto;
    text-align: center;
}

.captcha-input {
    max-width: 100px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.map-section {
    margin-top: 1.5rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    background: #e5e7eb;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Payment Page ===== */
.payment-page {
    background: #f8f9fa;
    min-height: calc(100vh - 70px);
    padding: 2rem 0;
}

.payment-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.payment-header {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.payment-header p {
    color: #666;
    font-size: 0.9rem;
}

.payment-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.payment-error {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.payment-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-info i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.payment-info span {
    color: #1e40af;
    font-size: 0.9rem;
}

#iyzipay-checkout-form {
    min-height: 400px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.back-link:hover {
    color: var(--primary);
}

/* ===== Error Page ===== */
.error-page {
    background: linear-gradient(180deg, #fef2f2 0%, #fff 100%);
    min-height: calc(100vh - 70px);
    padding: 3rem 0;
}

.error-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.error-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.error-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.error-icon i {
    font-size: 3rem;
    color: #fff;
}

.error-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.error-card .subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.error-message {
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #dc2626;
    font-size: 0.9rem;
}

.order-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.order-info span {
    color: #666;
    font-size: 0.9rem;
}

.order-info strong {
    color: var(--primary);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .order-grid {
        grid-template-columns: 1fr;
    }

    .product-summary-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 350px;
    }

    .hero-slider .slide-content h2 {
        font-size: 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .price-badge {
        width: 65px;
        height: 65px;
    }

    .price-badge .eur-price {
        font-size: 1rem;
    }

    .price-badge .tl-price {
        font-size: 0.6rem;
    }

    .contact-hero h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .price-badge {
        width: 60px;
        height: 60px;
        top: -8px;
        left: -8px;
    }

    .price-badge .eur-price {
        font-size: 0.9rem;
    }

    .related-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .detail-price-badge {
        width: 80px;
        height: 80px;
    }

    .detail-price-badge .eur-price {
        font-size: 1.2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .buy-button,
    .action-buttons .whatsapp-button {
        width: 100%;
        min-width: unset;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .payment-options {
        flex-direction: column;
    }

    .payment-option {
        min-width: 100%;
    }

    .order-summary {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Payment Request Page (OdemeAl) ===== */
.payment-request-page {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    min-height: calc(100vh - 70px);
    padding: 3rem 0;
}

.payment-request-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.payment-request-header {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-request-header .header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #e55b00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.payment-request-header .header-icon i {
    font-size: 2rem;
    color: #fff;
}

.payment-request-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.payment-request-header p {
    color: #666;
    font-size: 0.9rem;
}

.payment-request-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.payment-request-card .alert-error {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.payment-request-card .form-group {
    margin-bottom: 1.25rem;
}

.payment-request-card .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.payment-request-card .form-group label .required {
    color: #ef4444;
}

.payment-request-card .input-icon {
    position: relative;
}

.payment-request-card .input-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
}

.payment-request-card .input-icon.textarea-icon i {
    top: 1rem;
    transform: none;
}

.payment-request-card .form-input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    font-size: 0.95rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa;
    color: #1a1a2e;
    transition: all 0.2s;
    outline: none;
}

.payment-request-card .form-input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(243, 113, 33, 0.1);
}

.payment-request-card textarea.form-input {
    min-height: 80px;
    resize: vertical;
}

.payment-request-card .tutar-group .form-input {
    width: 220px;
}

.payment-request-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-request-card .submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, #e55b00 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.payment-request-card .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 113, 33, 0.35);
}

.payment-info-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.payment-info-section .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.85rem;
}

.payment-info-section .info-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* ===== Payment Link Page (OdemeLink) ===== */
.payment-link-page {
    background: #f8f9fa;
    min-height: calc(100vh - 70px);
    padding: 2rem 0;
}

.payment-link-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.payment-link-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.payment-link-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.payment-link-header p {
    color: #666;
    font-size: 0.9rem;
}

.payment-summary-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.payment-summary-card .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.payment-summary-card .summary-row .label {
    color: #666;
}

.payment-summary-card .summary-row .value {
    font-weight: 500;
    color: #1a1a2e;
}

.payment-summary-card .summary-row.total {
    border-top: 1px solid #eee;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

.payment-summary-card .summary-row.total .value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.payment-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.payment-form-card .payment-error {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.payment-form-card .payment-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-form-card .payment-info i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.payment-form-card .payment-info span {
    color: #1e40af;
    font-size: 0.9rem;
}

.payment-form-card #iyzipay-checkout-form {
    min-height: 400px;
}

.payment-link-container .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.payment-link-container .back-link:hover {
    color: var(--primary);
}

/* ===== Payment Success Page ===== */
.payment-success-page {
    background: linear-gradient(180deg, #ecfdf5 0%, #fff 100%);
    min-height: calc(100vh - 70px);
    padding: 3rem 0;
}

.payment-success-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1rem;
}

.payment-success-page .success-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.payment-success-page .success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.payment-success-page .success-icon i {
    font-size: 3rem;
    color: #fff;
}

.payment-success-page .success-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.payment-success-page .success-card .subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.payment-success-page .payment-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.payment-success-page .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.payment-success-page .detail-row .label {
    color: #666;
}

.payment-success-page .detail-row .value {
    font-weight: 500;
    color: #1a1a2e;
}

.payment-success-page .detail-row .value.highlight {
    color: var(--primary);
}

.payment-success-page .detail-row.total {
    border-top: 1px solid #e5e7eb;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

.payment-success-page .detail-row.total .value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #22c55e;
}

.payment-success-page .email-notice {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-success-page .home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    background: var(--primary);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.payment-success-page .home-btn:hover {
    background: #e55b00;
    transform: translateY(-2px);
}

/* ===== Payment Error Page ===== */
.payment-error-page {
    background: linear-gradient(180deg, #fef2f2 0%, #fff 100%);
    min-height: calc(100vh - 70px);
    padding: 3rem 0;
}

.payment-error-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1rem;
}

.payment-error-page .error-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.payment-error-page .error-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.payment-error-page .error-icon i {
    font-size: 3rem;
    color: #fff;
}

.payment-error-page .error-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.payment-error-page .error-card .subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.payment-error-page .error-message {
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #dc2626;
    font-size: 0.9rem;
}

.payment-error-page .order-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.payment-error-page .order-info span {
    color: #666;
    font-size: 0.9rem;
}

.payment-error-page .order-info strong {
    color: var(--primary);
}

.payment-error-page .action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-error-page .retry-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    background: var(--primary);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.payment-error-page .retry-btn:hover {
    background: #e55b00;
    transform: translateY(-2px);
}

.payment-error-page .home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a2e;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.payment-error-page .home-btn:hover {
    background: #eee;
}

@media (max-width: 576px) {
    .payment-request-card .form-row {
        grid-template-columns: 1fr;
    }

    .payment-request-card .tutar-group .form-input {
        width: 100%;
    }

    .payment-info-section {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .payment-error-page .action-buttons {
        flex-direction: column;
    }

    .payment-error-page .retry-btn,
    .payment-error-page .home-btn {
        width: 100%;
        justify-content: center;
    }
}
