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

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    padding-top: 70px; /* Header için alan bırak */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d3a7fa;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(139, 75, 140, 0.2);
}
.logo:hover .logo-image {
    border-color: #c19ae6;
    box-shadow: 0 4px 15px rgba(139, 75, 140, 0.4);
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d3a7fa;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    height: auto;
    overflow: visible;
}

.logo-text h1 span {
    display: inline-block;
    vertical-align: baseline;
    position: relative;
}

.logo-text h1 span[style*="top"] {
    display: inline-block !important;
    position: relative !important;
}

.logo-text p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d3a7fa;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Instagram Button in Header */
.instagram-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(131, 58, 180, 0.3);
    position: relative;
    overflow: hidden;
}

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

.instagram-nav-btn:hover::before {
    left: 100%;
}

.instagram-nav-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.4);
}

.instagram-nav-btn:active {
    transform: translateY(0) scale(1);
}

.instagram-nav-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.instagram-nav-btn:hover i {
    transform: scale(1.1);
}

/* Facebook Button in Header */
.facebook-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(24, 119, 242, 0.3);
    position: relative;
    overflow: hidden;
}

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

.facebook-nav-btn:hover::before {
    left: 100%;
}

.facebook-nav-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.facebook-nav-btn:active {
    transform: translateY(0) scale(1);
}

.facebook-nav-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.facebook-nav-btn:hover i {
    transform: scale(1.1);
}

.cart-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #d3a7fa, #c19ae6);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(211, 167, 250, 0.3);
}

.cart-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 167, 250, 0.4);
    background: linear-gradient(135deg, #c19ae6, #b088d9);
}

.cart-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.cart-text {
    font-weight: 500;
    font-size: 0.9rem;
}

.cart-count {
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
}

.cart-count:empty {
    display: none;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    min-height: 50vh;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #d3a7fa;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 75, 140, 0.3);
}

.cta-button:hover {
    background: #c19ae6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 75, 140, 0.4);
    color: white;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 300px;
    height: 350px;
    background: linear-gradient(135deg, #d3a7fa 0%, #b794f6 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
}


/* Section Title */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #d3a7fa;
    border-radius: 2px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #d3a7fa;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 355px);
    gap: 2rem;
    justify-content: center;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 355px;
    height: 586px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
    height: 450px;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-gallery {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Smooth slide geçişleri için */
    will-change: contents;
}

.product-image-vertical {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 15px;
    background: transparent;
    /* Performance optimizations */
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.main-image {
    /* Performance optimizations for smooth auto-rotation */
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

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

.thumbnail-container {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.thumbnail {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.1);
}

.thumbnail.active {
    border-color: #d3a7fa;
    opacity: 1;
    box-shadow: 0 0 15px rgba(139, 75, 140, 0.8), 0 2px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #d3a7fa;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.product-info {
    padding: 1rem 1.5rem;
    background: #fff;
    min-height: 140px;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: #333;
    line-height: 1.3;
    max-height: 3.12em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d3a7fa;
    margin-bottom: 0.5rem;
}

.description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.order-btn {
    width: 100%;
    background: #d3a7fa;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Opportunity Products Section */
.opportunity-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Banner Discount Badge */
.discount-badge-banner {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 12px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    animation: pulse-banner 2s infinite;
    z-index: 10;
}

/* Desktop: badge at top right */
.discount-badge-desktop {
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Mobile: badge next to button - hidden by default */
.discount-badge-mobile {
    display: none;
}

.discount-badge-banner .discount-percent {
    font-size: 1.2rem;
    line-height: 1;
}

.discount-badge-banner small {
    font-size: 0.7rem;
    margin-top: 2px;
    opacity: 0.9;
}

/* CTA Wrapper for button and mobile badge */
.opportunity-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

@keyframes pulse-banner {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.opportunity-products-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.opportunity-product-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Sabit arka plan görseli - sadece masaüstünde */
.opportunity-product-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/firsat-sabit-gorsel.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.opportunity-product-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.opportunity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: 100%;
    min-height: 400px;
    position: relative;
    z-index: 2;
}

.opportunity-text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.opportunity-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.opportunity-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.opportunity-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: fit-content;
}

.opportunity-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.opportunity-btn i {
    transition: transform 0.3s ease;
}

.opportunity-btn:hover i {
    transform: translateX(5px);
}

.opportunity-visual {
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.opportunity-image-frame {
    position: relative;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.opportunity-product-banner:hover .opportunity-image-frame {
    transform: rotate(0deg) scale(1.05);
}

.opportunity-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Alternatif düzen için */
.opportunity-product-banner:nth-child(even) .opportunity-content {
    grid-template-columns: 1fr 1fr;
}

.opportunity-product-banner:nth-child(even) .opportunity-text {
    order: 2;
}

.opportunity-product-banner:nth-child(even) .opportunity-visual {
    order: 1;
}

.opportunity-product-banner:nth-child(even) .opportunity-image-frame {
    transform: rotate(5deg);
}

.opportunity-product-banner:nth-child(even):hover .opportunity-image-frame {
    transform: rotate(0deg) scale(1.05);
}

/* Varsayılan fırsat ürün */
.default-opportunity {
    background: linear-gradient(135deg, #d3a7fa, #b794f6) !important;
    color: white;
}

.default-opportunity .opportunity-btn {
    background: white !important;
    color: #d3a7fa !important;
}

/* Color Swatches Mobile Responsive */
@media (max-width: 768px) {
    .color-info {
        margin-top: 4px;
    }
    
    .product-info {
        padding: 0.8rem 1rem;
        min-height: 120px;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .color-swatches {
        gap: 5px;
    }
    
    .color-swatch {
        width: 18px;
        height: 18px;
        border-width: 1.5px;
    }
}

@media (max-width: 480px) {
    .color-swatches {
        gap: 4px;
    }
    
    .color-swatch {
        width: 16px;
        height: 16px;
        border-width: 1.5px;
    }
}

/* Modern Product Page Styles */
.product-detail {
    padding: 2rem 0;
    background: #fff;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f9fa;
    /* Performance optimizations for smooth transitions */
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

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

.thumbnail-list {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumb-item {
    flex-shrink: 0;
    width: 80px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.thumb-item.active {
    border-color: #333;
}

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

/* Product Details */
.product-details {
    padding: 1rem 0;
}

.product-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.product-name {
    font-size: 1.75rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-meta {
    margin-bottom: 1rem;
}

.product-code {
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

/* Product Options */
.product-options {
    margin-bottom: 2rem;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Color Swatches */
.color-swatches {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.color-swatch:hover {
    transform: scale(1.1);
    border-color: #333;
}

.color-swatch.selected {
    border-color: #333;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #333;
}

.selected-color {
    font-size: 0.875rem;
    color: #666;
}

/* Size Options */
.size-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.size-btn {
    min-width: 48px;
    height: 48px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-btn:hover {
    border-color: #333;
}

.size-btn.selected {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* Compact Section Styles */
.section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product Description - Compact */
.product-description-compact {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.product-description-compact p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Product Features - Compact */
.product-features-compact {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
}

.feature-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.feature-value {
    font-size: 0.85rem;
    color: #333;
    font-weight: 400;
}

/* Care Instructions - Compact */
.care-info-compact {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.care-info-compact p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .features-list {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}

/* Care Info */
.care-info {
    margin-bottom: 1.5rem;
}

.care-info details {
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 0;
}

.care-info summary {
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 0.9rem;
}

.care-info details[open] summary {
    border-bottom: 1px solid #eee;
    border-radius: 4px 4px 0 0;
}

.care-info p {
    padding: 1rem;
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* Purchase Section */
.purchase-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.25rem 0;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #333;
    color: #fff;
}

.btn-primary:hover {
    background: #000;
}

.btn-secondary {
    background: #fff;
    color: #333;
    border: 1px solid #333;
}

.btn-secondary:hover {
    background: #333;
    color: #fff;
}

/* Brand Message - Compact */
.brand-message-compact {
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 6px;
    border-left: 3px solid #d3a7fa;
}

.brand-message-compact .brand-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-message-compact .brand-icon {
    font-size: 1.2rem;
    opacity: 0.8;
}

.brand-message-compact .brand-text {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
}

.breadcrumb a:hover {
    color: #333;
}

.breadcrumb span {
    color: #333;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 60px; /* Mobilde daha az padding */
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.25rem;
    }
    
    .thumbnail-list {
        justify-content: center;
    }
    
    .purchase-section {
        position: sticky;
        bottom: 0;
        background: #fff;
        padding: 1rem;
        margin: 0 -1rem;
        border-top: 1px solid #eee;
        z-index: 100;
    }
    
    .brand-message {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .brand-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .opportunity-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .opportunity-products-container {
        gap: 30px;
    }
    
    .opportunity-product-banner {
        min-height: auto;
        border-radius: 15px;
        margin: 0 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    /* Mobilde sabit arka plan görselini daha belirgin yap */
    .opportunity-product-banner::before {
        opacity: 0.2;
        background-size: contain;
        background-position: center;
    }
    
    .opportunity-content {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding: 0;
    }
    
    .opportunity-text {
        padding: 30px 25px;
        order: 1;
    }
    
    .opportunity-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
        line-height: 1.3;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
    }
    
    .opportunity-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.6;
        opacity: 0.95;
    }
    
    .opportunity-btn {
        padding: 15px 30px;
        font-size: 1rem;
        border-radius: 25px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        display: inline-flex;
    }
    
    /* Mobilde desktop rozetini gizle */
    .discount-badge-desktop {
        display: none !important;
    }
    
    /* Mobilde rozeti butonun yanında göster */
    .discount-badge-mobile {
        display: inline-flex !important;
        position: static;
        width: 60px;
        height: 60px;
        margin-left: 0;
    }
    
    .discount-badge-mobile .discount-percent {
        font-size: 1rem;
    }
    
    .discount-badge-mobile small {
        font-size: 0.6rem;
    }
    
    /* CTA wrapper'ı mobilde ortala */
    .opportunity-cta-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    
    /* Buton ve rozet için wrapper container */
    .opportunity-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .opportunity-visual {
        padding: 20px 25px 30px;
        order: 2;
    }
    
    .opportunity-image-frame {
        max-width: 280px;
        width: 100%;
        transform: rotate(0deg);
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
    
    .opportunity-product-banner:nth-child(even) .opportunity-text {
        order: 1;
    }
    
    .opportunity-product-banner:nth-child(even) .opportunity-visual {
        order: 2;
    }
    
    .opportunity-product-banner:nth-child(even) .opportunity-image-frame {
        transform: rotate(0deg);
    }
    
    /* Enhanced hover effects for mobile */
    .opportunity-product-banner:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }
    
    .opportunity-product-banner:hover .opportunity-image-frame {
        transform: rotate(0deg) scale(1.02);
    }
}

/* Extra Small Mobile Optimization (480px and below) */
@media (max-width: 480px) {
    .opportunity-section {
        padding: 30px 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .opportunity-products-container {
        gap: 20px;
    }
    
    .opportunity-product-banner {
        margin: 0 5px;
        border-radius: 12px;
    }
    
    .opportunity-text {
        padding: 25px 20px;
    }
    
    .opportunity-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .opportunity-description {
        font-size: 0.9rem;
        margin-bottom: 18px;
        line-height: 1.5;
    }
    
    .opportunity-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .discount-badge-mobile {
        width: 55px !important;
        height: 55px !important;
    }
    
    .discount-badge-mobile .discount-percent {
        font-size: 0.95rem !important;
    }
    
    .opportunity-visual {
        padding: 15px 20px 25px;
    }
    
    .opportunity-image-frame {
        max-width: 240px;
    }
    
    /* Arka plan görseli mobilde daha belirgin */
    .opportunity-product-banner::before {
        opacity: 0.25;
    }
}

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

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

.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

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

.faq-question h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: #d3a7fa;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 300px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.faq-answer a {
    color: #d3a7fa;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: #d3a7fa;
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: #333;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image .image-placeholder {
    width: 350px;
    height: 300px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image .image-placeholder i {
    font-size: 3rem;
    color: #d3a7fa;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: #d3a7fa;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d3a7fa;
}

.submit-btn {
    background: #d3a7fa;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #333;
}

.order-product-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.order-product-image {
    flex: 0 0 80px;
}

.order-product-img {
    width: 80px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid #d3a7fa;
    background: #fff;
    padding: 5px;
}

.order-product-details {
    flex: 1;
}

.order-product-details h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.order-product-details p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d3a7fa;
    margin: 0;
}

/* Zoom Modal */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.zoom-modal-content {
    position: relative;
    margin: 2% auto;
    width: 90%;
    max-width: 800px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.zoom-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3001;
    transition: color 0.3s ease;
}

.zoom-close:hover {
    color: #d3a7fa;
}

.zoom-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { 
        transform: scale(0.5);
        opacity: 0;
    }
    to { 
        transform: scale(1);
        opacity: 1;
    }
}

.zoom-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.zoom-nav-btn {
    background: rgba(139, 75, 140, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.zoom-nav-btn:hover {
    background: rgba(139, 75, 140, 1);
    transform: scale(1.1);
}

.zoom-thumbnails {
    position: absolute;
    bottom: 20px;
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.zoom-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.zoom-thumb:hover,
.zoom-thumb.active {
    border-color: #d3a7fa;
    opacity: 1;
    transform: scale(1.1);
}

.main-image {
    cursor: pointer;
}

/* Product Details Sidebar */
.product-details-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.product-details-sidebar.active {
    right: 0;
}

.sidebar-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.sidebar-header h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin: 0;
    font-size: 1.3rem;
}

.sidebar-close {
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
}

.sidebar-close:hover {
    color: #d3a7fa;
}

.product-details-content {
    flex: 1;
    padding: 1.5rem;
}

.product-image-section {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-product-image {
    width: 200px;
    height: 250px;
    object-fit: contain;
    border-radius: 10px;
    border: 2px solid #d3a7fa;
    background: #fff;
    padding: 10px;
    margin-bottom: 1rem;
}

.sidebar-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d3a7fa;
    margin: 0;
}

.detail-section {
    margin-bottom: 1.5rem;
}

.detail-section h4 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #d3a7fa;
    padding-bottom: 0.3rem;
    display: inline-block;
}

.detail-section p {
    color: #666;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.details-list li {
    color: #666;
    line-height: 1.8;
    padding: 0.2rem 0;
}

.care-instruction {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    color: #856404;
    font-weight: 500;
}

.brand-message {
    text-align: center;
    background: linear-gradient(135deg, #d3a7fa, #c19ae6);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.brand-message p {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.sidebar-order-btn {
    width: 100%;
    background: #d3a7fa;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.sidebar-order-btn:hover {
    background: #c19ae6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 75, 140, 0.3);
}

/* Form Messages */
.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    display: none;
    animation: slideDown 0.3s ease;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    display: none;
    animation: slideDown 0.3s ease;
}

.loading-spinner {
    display: none;
    text-align: center;
    padding: 1rem;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #d3a7fa;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Modern Timed Opportunity Products Section */
.timed-opportunity-section {
    padding: 40px 0 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 0;
}

.modern-opportunity-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.modern-opportunity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 340px 1fr;
    min-height: 300px;
    position: relative;
}

.modern-opportunity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* Sol Taraf - Görsel Bölümü */
.opportunity-image-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    min-height: 500px;
}

.image-wrapper {
    position: relative;
    max-width: 320px;
    height: 450px;
}

.product-image-vertical {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

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

.discount-badge-modern {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 8px 12px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
    z-index: 2;
}

.discount-percent {
    display: block;
    font-size: 1.1em;
    font-weight: 800;
    line-height: 1;
}

.discount-text {
    display: block;
    font-size: 0.6em;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 2px;
    opacity: 0.9;
}

/* Sağ Taraf - Detaylar Bölümü */
.opportunity-details-section {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-header {
    margin-bottom: 20px;
}

.product-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-subtitle {
    color: #7f8c8d;
    font-size: 0.95em;
    font-weight: 500;
}

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

.price-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
}

.old-price {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 1.1em;
    font-weight: 500;
}

.new-price {
    color: #27ae60;
    font-size: 1.6em;
    font-weight: 700;
}

.savings {
    color: #27ae60;
    font-size: 0.95em;
    font-weight: 600;
    background: rgba(39, 174, 96, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
}

.product-description {
    margin-bottom: 30px;
}

.product-description p {
    color: #5a6c7d;
    font-size: 1.05em;
    line-height: 1.6;
}

.countdown-display {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    font-size: 0.95em;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
}

.countdown-header i {
    font-size: 1.2em;
}

.countdown-timer-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 10px 15px;
    backdrop-filter: blur(10px);
}

.time-number {
    color: white;
    font-size: 1.6em;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.time-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.75em;
    margin-top: 5px;
    font-weight: 600;
    letter-spacing: 1px;
}

.time-separator {
    color: white;
    font-size: 2em;
    font-weight: 300;
    opacity: 0.6;
}

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

.btn-grab-deal {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #d3a7fa, #c19ae6);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(211, 167, 250, 0.3);
}

.btn-grab-deal:hover {
    background: linear-gradient(135deg, #c19ae6, #a584d1);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(211, 167, 250, 0.4);
    color: white;
}

.btn-view-details {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    color: #667eea;
    padding: 12px 18px;
    border: 2px solid #667eea;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .modern-opportunity-card {
        grid-template-columns: 240px 1fr;
    }
    
    .product-image-vertical {
        height: 200px;
    }
}

@media (max-width: 968px) {
    .modern-opportunity-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .opportunity-image-section {
        padding: 25px;
        min-height: 400px;
    }
    
    .product-image-vertical {
        height: 350px;
        width: 100%;
        max-width: 300px;
    }
    
    .opportunity-details-section {
        padding: 30px;
    }
    
    .product-title {
        font-size: 1.8em;
    }
    
    .new-price {
        font-size: 2em;
    }
    
    .time-number {
        font-size: 1.8em;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-view-details {
        flex: none;
    }
}

@media (max-width: 480px) {
    .modern-opportunity-container {
        gap: 25px;
    }
    
    .opportunity-details-section {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1.5em;
    }
    
    .countdown-timer-modern {
        gap: 8px;
    }
    
    .time-unit {
        padding: 10px 15px;
    }
    
    .time-number {
        font-size: 1.5em;
    }
}

.timed-opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.timed-opportunity-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.timed-opportunity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.opportunity-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.opportunity-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.timed-opportunity-card:hover .opportunity-product-image {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.opportunity-card-content {
    padding: 25px;
}

.opportunity-product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
}

.opportunity-product-name {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 15px;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.original-price {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 16px;
}

.discounted-price {
    color: #e74c3c;
    font-size: 1.4rem;
    font-weight: bold;
}

.countdown-container {
    margin-bottom: 25px;
}

.countdown-label {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 10px;
    font-weight: 500;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 15px;
    border-radius: 12px;
    color: white;
}

.countdown-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    line-height: 1;
}

.countdown-label-small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
    opacity: 0.8;
}

.countdown-separator {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 5px;
    opacity: 0.7;
}

.opportunity-cta-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #d3a7fa, #c19ae6);
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 167, 250, 0.3);
}

.opportunity-cta-btn:hover {
    background: linear-gradient(135deg, #c19ae6, #b088d9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 167, 250, 0.4);
    color: white;
}

.opportunity-cta-btn i {
    margin-right: 8px;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #d3a7fa;
}

.footer-section p,
.footer-section li {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: #d3a7fa;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #d3a7fa;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c19ae6;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Success Message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
    display: none;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
    display: none;
}

/* Loading Spinner */
.loading {
    display: none;
    text-align: center;
    padding: 1rem;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #d3a7fa;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero .container {
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-placeholder {
        width: 280px;
        height: 320px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .opportunity-text {
        padding: 40px;
    }
    
    .opportunity-title {
        font-size: 2.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    body {
        padding-top: 65px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Enhanced Header */
    .header {
        padding: 0.5rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #d3a7fa 0%, #c19ae6 100%);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 0 50px rgba(0,0,0,0.3);
        padding: 100px 0 50px;
        justify-content: flex-start;
        gap: 2rem;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateX(-50px);
        animation: slideInLeft 0.6s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
    
    .nav-menu a {
        color: white;
        font-size: 1.3rem;
        font-weight: 600;
        padding: 15px 30px;
        border-radius: 25px;
        transition: all 0.3s ease;
        display: block;
        margin: 0 30px;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Enhanced Hero Section */
    .hero {
        padding: 40px 0 30px;
        min-height: 50vh;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    
    .hero-content {
        padding-right: 0;
        animation: fadeInUp 0.8s ease;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #2c3e50, #d3a7fa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
        line-height: 1.7;
    }
    
    .cta-button {
        padding: 18px 35px;
        font-size: 1rem;
        box-shadow: 0 8px 25px rgba(139, 75, 140, 0.4);
    }
    
    .hero-placeholder {
        width: 250px;
        height: 280px;
        animation: float 3s ease-in-out infinite;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }
    
    /* Enhanced About & Contact Sections */
    .about, .contact {
        padding: 60px 0;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-text h2,
    .section-header h2 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .about-features {
        gap: 1rem;
    }
    
    .about-features .feature {
        padding: 1.2rem;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }
    
    .about-features .feature i {
        font-size: 1.8rem;
    }
    
    .about-features .feature h4 {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 15px;
        border-radius: 12px;
        font-size: 1rem;
        border: 2px solid #e8ecef;
    }
    
    .submit-btn {
        padding: 18px 30px;
        border-radius: 12px;
        font-size: 1.1rem;
        box-shadow: 0 8px 25px rgba(139, 75, 140, 0.3);
    }
    
    /* Enhanced Products Section */
    .products {
        padding: 40px 0;
        background: #fff;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 5px;
    }
    
    .product-card {
        margin: 0;
        width: 100%;
        height: auto;
        min-height: 320px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: #fff;
    }
    
    .product-card:active {
        transform: scale(0.98);
    }
    
    .product-card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .product-image {
        height: 240px;
        position: relative;
        overflow: hidden;
        background: linear-gradient(to bottom, #fafafa, #f5f5f5);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        transition: none;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-info h3 {
        font-size: 0.9rem;
        margin-bottom: 5px;
        line-height: 1.3;
        height: 2.6em;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        box-orient: vertical;
    }
    
    .price {
        font-size: 1.1rem;
        margin-bottom: 6px;
        font-weight: 700;
    }
    
    .description {
        display: none;
    }
    
    .collection-grid {
        animation: slideCollection 20s linear infinite;
        gap: 2rem;
    }
    
    .collection-item {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .collection-image {
        height: 350px;
        padding: 8px;
    }
    
    .collection-overlay {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .collection-overlay h3 {
        font-size: 1.3rem;
    }
    
    .thumbnail-container {
        display: none;
    }
    
    /* Color Swatches Mobile */
    .color-swatches {
        gap: 4px;
        margin-top: 6px;
    }
    
    .color-swatch {
        width: 14px;
        height: 14px;
        border-width: 1px;
    }
    
    /* Cart Button Mobile */
    .cart-button {
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        gap: 0.3rem;
    }
    
    .cart-icon {
        width: 20px;
        height: 20px;
    }
    
    .cart-text {
        font-size: 0.85rem;
    }
    
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
        top: -4px;
        right: -4px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Enhanced Modals */
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-width: 400px;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: modalSlideIn 0.4s ease;
    }
    
    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: translateY(-50px) scale(0.9);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    .close {
        font-size: 24px;
        top: 10px;
        right: 15px;
        background: rgba(0, 0, 0, 0.1);
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .close:hover {
        background: rgba(0, 0, 0, 0.2);
        transform: rotate(90deg);
    }
    
    .order-product-info {
        flex-direction: column;
        text-align: center;
    }
    
    .order-product-image {
        flex: none;
    }
    
    .zoom-modal-content {
        width: 95%;
        height: 95vh;
        margin: 1% auto;
    }
    
    .zoom-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    .zoom-navigation {
        padding: 0 10px;
    }
    
    .zoom-nav-btn {
        padding: 10px 15px;
        font-size: 18px;
    }
    
    .zoom-thumbnails {
        bottom: 10px;
        padding: 10px;
        gap: 8px;
    }
    
    .zoom-thumb {
        width: 40px;
        height: 40px;
    }
    
    /* Enhanced Sidebar */
    .product-details-sidebar {
        width: 100%;
        right: -100%;
        border-radius: 20px 0 0 20px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    }
    
    .sidebar-header {
        background: linear-gradient(135deg, #d3a7fa, #c19ae6);
        color: white;
        border-radius: 20px 0 0 0;
    }
    
    .sidebar-close {
        color: white;
        font-size: 28px;
    }
    
    .sidebar-close:hover {
        color: rgba(255, 255, 255, 0.8);
        transform: rotate(90deg);
    }
    
    .sidebar-product-image {
        width: 150px;
        height: 180px;
    }
    
    .sidebar-price {
        font-size: 1.5rem;
    }
    
    .detail-section h4 {
        font-size: 1rem;
    }
    
    /* Enhanced Logo */
    .logo {
        gap: 0.5rem;
        transition: transform 0.3s ease;
    }
    
    .logo:hover {
        transform: scale(1.05);
    }
    
    .logo-image {
        width: 45px;
        height: 45px;
        box-shadow: 0 4px 15px rgba(139, 75, 140, 0.3);
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
        background: linear-gradient(135deg, #d3a7fa, #c19ae6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .logo-text span {
        font-size: 0.75rem;
        color: #888;
        font-weight: 500;
    }
    
    /* Enhanced Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        box-shadow: 0 5px 15px rgba(139, 75, 140, 0.3);
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Ultra-compact Hero */
    .hero {
        padding: 25px 0 20px;
        min-height: auto;
        display: none;
    }
    
    .hero .container {
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-placeholder {
        width: 180px;
        height: 220px;
    }
    
    /* Compact Product Cards - 2 Columns */
    .products {
        padding: 30px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0;
    }
    
    .product-card {
        width: 100%;
        height: auto;
        min-height: 300px;
        border-radius: 10px;
    }
    
    .product-image {
        height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        transition: none;
    }
    
    .main-image:hover,
    .product-card:hover .main-image {
        transform: none;
    }
    
    .product-info {
        padding: 8px;
    }
    
    .product-info h3 {
        font-size: 0.85rem;
        margin-bottom: 4px;
        line-height: 1.2;
        height: 2.4em;
    }
    
    .price {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .color-swatches {
        gap: 3px;
        margin-top: 4px;
    }
    
    .color-swatch {
        width: 12px;
        height: 12px;
    }
    
    /* Compact Forms */
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    /* Compact Modal */
    .modal-content {
        margin: 10% auto;
        width: 90%;
        padding: 1.5rem;
    }
    
    /* Compact Navigation */
    .nav-menu {
        padding: 80px 0 40px;
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 12px 25px;
        margin: 0 20px;
    }
    
    /* Compact About Section */
    .about-image .image-placeholder {
        width: 260px;
        height: 220px;
        border-radius: 15px;
    }
    
    .about-features .feature {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .about-features .feature i {
        font-size: 1.5rem;
    }
    
    .about-features .feature h4 {
        font-size: 1rem;
    }
    
    /* Compact Opportunity Section */
    .opportunity-section {
        padding: 50px 0;
    }
    
    .opportunity-text {
        padding: 30px 20px;
    }
    
    .opportunity-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .opportunity-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .opportunity-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .opportunity-visual {
        padding: 20px;
    }
    
    .opportunity-image-frame {
        max-width: 200px;
        border-radius: 15px;
    }
}

/* Enhanced Animations and Interactions */
@media (max-width: 768px) {
    /* Smooth scroll behavior */
    html {
        scroll-behavior: smooth;
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
    }
    
    /* Enhanced touch targets */
    .cta-button,
    .submit-btn,
    .opportunity-btn,
    .product-card,
    a,
    button {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
        -webkit-touch-callout: none;
    }
    
    /* Improved tap highlights */
    * {
        -webkit-tap-highlight-color: rgba(211, 167, 250, 0.2);
    }
    
    a, button, .product-card {
        -webkit-tap-highlight-color: rgba(211, 167, 250, 0.3);
    }
    
    /* Loading states */
    .product-card {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    /* Optimize images for mobile */
    img {
        max-width: 100%;
        height: auto;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    /* Prevent zoom on double tap */
    .product-card,
    .product-info,
    .price {
        touch-action: pan-y;
    }
    
    /* Reduced motion for accessibility */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    
    /* Dark mode support */
    @media (prefers-color-scheme: dark) {
        .nav-menu {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        }
        
        .modal-content {
            background: #2c3e50;
            color: white;
        }
        
        .contact-form {
            background: #34495e;
        }
    }
}

/* New Product Card Styles for Dynamic Content */
.product-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.color-info {
    margin-top: 6px;
    padding: 0;
    background: transparent;
    border: none;
    flex-grow: 0;
    min-height: 24px;
}

.color-count {
    display: none; /* Renk adını gizle, sadece renkler gözüksün */
}

.color-swatches {
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    visibility: visible !important;
    opacity: 1 !important;
}

.color-swatch {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ddd;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.color-swatch:hover {
    transform: scale(1.15);
    border-color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.color-swatch.active {
    transform: scale(1.2);
    border-color: #d3a7fa !important;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #d3a7fa;
    z-index: 10;
    position: relative;
}

/* Beyaz renk için özel border */
.color-swatch[style*="#F8F8FF"],
.color-swatch[style*="#f8f8ff"] {
    border-color: #ccc !important;
}

.colors {
    display: none; /* Hide the old text-based color display */
}

.view-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px;
    background: rgba(211, 167, 250, 0.1);
    border-radius: 8px;
    color: #d3a7fa;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-details i {
    transition: transform 0.3s ease;
}

.product-card:hover .view-details {
    background: rgba(211, 167, 250, 0.2);
}

.product-card:hover .view-details i {
    transform: translateX(5px);
}

/* About Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-features .feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.about-features .feature i {
    color: #d3a7fa;
    font-size: 2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.about-features .feature h4 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.about-features .feature p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.colors {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
}

.view-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #d3a7fa 0%, #c19ae6 100%);
    color: white;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-details:hover {
    background: linear-gradient(135deg, #c19ae6 0%, #b088d9 100%);
    transform: translateX(2px);
}

.view-details i {
    transition: transform 0.3s ease;
}

.product-card:hover .view-details i {
    transform: translateX(3px);
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
    font-size: 1.1rem;
}

/* Override existing product card styles for better compatibility */
.product-card .product-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #2c3e50;
}

.product-card .product-info .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d3a7fa;
    margin-bottom: 10px;
}

.product-card .product-info .description {
    line-height: 1.5;
    margin-bottom: 15px;
}

/* WhatsApp Button Responsive */
@media (max-width: 768px) {
    /* Logo Mobile Fix */
    .logo {
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        flex: 1 !important;
        max-width: none !important;
    }
    
    .logo-text {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        height: auto !important;
        max-width: none !important;
        overflow: visible !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .logo-text h1 {
        line-height: 1.4 !important;
        height: auto !important;
        overflow: visible !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 1.3rem !important;
        margin: 0 !important;
        padding: 0 !important;
        width: auto !important;
        max-width: none !important;
        color: #d3a7fa !important;
        font-weight: 700 !important;
        font-family: 'Playfair Display', serif !important;
    }
    
    .logo-text span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #666 !important;
    }
    
    .logo-text h1 span {
        display: inline-block !important;
        vertical-align: baseline;
        position: relative;
    }
    
    .logo-text h1 span[style*="top"] {
        top: -3px !important;
        display: inline-block !important;
    }
    
    /* Hero Responsive */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 0 40px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-placeholder {
        width: 300px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    /* Header Mobile Optimization */
    .header {
        box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    }
    
    .navbar {
        padding: 0.4rem 0;
    }
    
    .nav-container {
        padding: 0 10px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .logo-image {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    
    .logo {
        display: flex !important;
        align-items: center !important;
        gap: 0.6rem !important;
        flex: 1 !important;
        max-width: none !important;
        width: auto !important;
    }
    
    .logo-text {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        height: auto !important;
        max-width: none !important;
        overflow: visible !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .logo-text h1 {
        font-size: 1rem !important;
        line-height: 1.2 !important;
        height: auto !important;
        overflow: visible !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        width: auto !important;
        max-width: none !important;
        color: #d3a7fa !important;
        font-weight: 700 !important;
        font-family: 'Playfair Display', serif !important;
    }
    
    .logo-text > span {
        font-size: 0.6rem !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #666 !important;
        line-height: 1 !important;
    }
    
    .logo-text h1 span {
        font-size: 1rem !important;
        display: inline-block !important;
        vertical-align: baseline;
        position: relative;
    }
    
    .logo-text h1 span[style*="top"] {
        top: -2px !important;
        font-size: 1rem !important;
        display: inline-block !important;
    }
    
    .nav-menu {
        top: 55px;
        padding: 80px 0 40px;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .instagram-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .facebook-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .cart-button {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
        border-radius: 15px;
        gap: 0.4rem;
    }
    
    .cart-icon {
        width: 18px;
        height: 18px;
    }
    
    .cart-text {
        display: inline;
        font-size: 0.75rem;
    }
    
    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 0.65rem;
        line-height: 16px;
        top: -3px;
        right: -3px;
    }
    
    /* Hero Section Mobile */
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin: 1rem 0;
    }
    
    .hero-placeholder {
        width: 250px;
        height: 350px;
    }
    
    /* Opportunity Section Mobile */
    .timed-opportunity-section,
    .opportunity-section {
        padding: 30px 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* About Section Mobile */
    .about {
        padding: 40px 0;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-features {
        gap: 1rem;
    }
    
    .about-features .feature {
        padding: 1rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .product-card .description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Color Swatches Mobile */
    .color-swatch {
        width: 12px;
        height: 12px;
    }
    
    /* View Details Button Mobile */
    .view-details {
        padding: 8px;
        font-size: 0.8rem;
        margin-top: 10px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    /* Page Headers Mobile */
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
}

/* Page Content Styles */
.page-content {
    margin-top: 80px;
    padding: 60px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 160px);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #d3a7fa;
    border-radius: 2px;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-sections {
    max-width: 1000px;
    margin: 0 auto;
}

.info-section {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-section:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.info-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-section h2 i {
    color: #d3a7fa;
    font-size: 1.8rem;
}

.info-content {
    color: #666;
    line-height: 1.7;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 30px;
}

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

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 15px;
    color: #d3a7fa;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    background: #d3a7fa;
    color: white;
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #d3a7fa;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    background: white;
    color: #d3a7fa;
}

.step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.step:hover h3 {
    color: white;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.step:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Shipping Table */
.shipping-table {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    margin: 20px 0;
}

.shipping-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
}

.shipping-row:last-child {
    border-bottom: none;
}

.shipping-row.header {
    background: #d3a7fa;
    color: white;
    font-weight: 600;
}

.shipping-cell {
    padding: 20px;
    text-align: center;
    border-right: 1px solid #e9ecef;
}

.shipping-cell:last-child {
    border-right: none;
}

.shipping-note {
    background: #e8f5e8;
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.shipping-note p {
    margin: 0;
    color: #155724;
    font-weight: 600;
}

/* Cargo Companies */
.cargo-companies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.cargo-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cargo-item:hover {
    background: #d3a7fa;
    color: white;
    transform: translateY(-5px);
}

.cargo-item i {
    font-size: 3rem;
    color: #d3a7fa;
    margin-bottom: 20px;
}

.cargo-item:hover i {
    color: white;
}

.cargo-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.cargo-item:hover h3 {
    color: white;
}

.cargo-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.cargo-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Tracking Steps */
.tracking-info {
    margin-top: 20px;
}

.tracking-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.tracking-step:last-child {
    border-bottom: none;
}

.tracking-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    width: 2px;
    height: 40px;
    background: #e9ecef;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #d3a7fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    color: white;
    font-size: 1.5rem;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Payment Options */
.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.payment-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.payment-item:hover {
    background: #d3a7fa;
    color: white;
    transform: translateY(-5px);
}

.payment-item i {
    font-size: 3rem;
    color: #d3a7fa;
    margin-bottom: 20px;
}

.payment-item:hover i {
    color: white;
}

.payment-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.payment-item:hover h3 {
    color: white;
}

.payment-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.payment-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section in Pages */
.contact-section .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-section .contact-item:hover {
    background: #d3a7fa;
    color: white;
    transform: translateY(-3px);
}

.contact-section .contact-item i {
    font-size: 2rem;
    color: #d3a7fa;
    flex-shrink: 0;
}

.contact-section .contact-item:hover i {
    color: white;
}

.contact-section .contact-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.contact-section .contact-item:hover h4 {
    color: white;
}

.contact-section .contact-item p {
    color: #666;
    margin: 0;
    font-weight: 500;
}

.contact-section .contact-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Responsive for Pages */
@media (max-width: 768px) {
    .page-content {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .info-section {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .info-section h2 {
        font-size: 1.6rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shipping-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .shipping-cell {
        padding: 15px 20px;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .shipping-cell:last-child {
        border-bottom: none;
    }
    
    .cargo-companies,
    .payment-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tracking-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .tracking-step::after {
        display: none;
    }
    
    .contact-section .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-section .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    /* Cart Button Mobile */
    .nav-actions {
        order: -1;
        margin-right: 1rem;
    }
    
    .cart-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .cart-text {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .instagram-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .facebook-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .cart-button {
        padding: 0.35rem 0.7rem;
        gap: 0.35rem;
    }
    
    .cart-text {
        font-size: 0.75rem;
    }
    
    .cart-icon {
        width: 18px;
        height: 18px;
    }
    
    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 0.65rem;
        top: -3px;
        right: -3px;
    }
}

/* Ultra Small Mobile - 375px and below */
@media (max-width: 375px) {
    body {
        padding-top: 58px;
    }
    
    .navbar {
        padding: 0.35rem 0;
    }
    
    .logo-image {
        width: 30px;
        height: 30px;
    }
    
    .logo-text h1 {
        font-size: 0.95rem !important;
    }
    
    .logo-text > span {
        font-size: 0.55rem !important;
    }
    
    .products-grid {
        gap: 8px;
    }
    
    .product-card {
        min-height: 280px;
        border-radius: 8px;
    }
    
    .product-image {
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-info {
        padding: 6px;
    }
    
    .product-info h3 {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }
    
    .price {
        font-size: 0.95rem;
        margin-bottom: 3px;
    }
    
    .color-swatch {
        width: 10px;
        height: 10px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
}

/* Error Page Styles */
.error-page {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.error-header {
    margin-bottom: 3rem;
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    color: #d3a7fa;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(211, 167, 250, 0.3);
    animation: pulse 2s infinite;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.error-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.help-section, .contact-section {
    margin-bottom: 3rem;
}

.help-section h3, .contact-section h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.help-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.help-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(211, 167, 250, 0.2);
    border-color: #d3a7fa;
}

.help-item i {
    font-size: 2.5rem;
    color: #d3a7fa;
    margin-bottom: 1rem;
}

.help-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.help-item p {
    color: #666;
    font-size: 0.95rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 167, 250, 0.2);
    border-color: #d3a7fa;
    color: #d3a7fa;
}

.contact-item i {
    font-size: 1.2rem;
    color: #d3a7fa;
}

/* Error Page Mobile Responsive */
@media (max-width: 768px) {
    .error-code {
        font-size: 5rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Enhanced Mobile Responsive for Small Screens */
@media (max-width: 480px) {
    /* Page Content Mobile */
    .page-content {
        padding: 30px 0;
        margin-top: 60px;
    }
    
    .page-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .page-header p {
        font-size: 1rem;
        margin: 0 auto;
    }
    
    .content-sections {
        padding: 0 15px;
    }
    
    .info-section {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 15px;
    }
    
    .info-section h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        flex-direction: row;
        text-align: left;
        gap: 10px;
    }
    
    .info-section h2 i {
        font-size: 1.4rem;
        margin-right: 8px;
    }
    
    .info-content {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .info-list li {
        padding: 12px 0;
        padding-left: 25px;
        font-size: 0.9rem;
    }
    
    .info-list li::before {
        font-size: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }
    
    .step {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .step h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .step p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Shipping Table Mobile */
    .shipping-table {
        font-size: 0.85rem;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
        border-radius: 8px;
    }
    
    .shipping-table th,
    .shipping-table td {
        padding: 6px;
        min-width: 80px;
    }
    
    .shipping-table th {
        font-size: 0.8rem;
    }
    
    .shipping-row {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #e9ecef;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    
    .shipping-cell {
        padding: 8px 15px;
        border: none;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .shipping-cell:last-child {
        border-bottom: none;
    }
    
    .shipping-cell strong {
        font-size: 0.9rem;
    }
    
    /* Company Info Mobile */
    .company-info {
        padding: 15px;
        margin: 1rem 0;
        border-radius: 8px;
        font-size: 0.9rem;
    }
    
    /* Contract Content Mobile */
    .contract-content {
        padding: 1rem;
    }
    
    .contract-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contract-content h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .contract-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }
    
    .contract-content ul {
        padding-left: 1.5rem;
    }
    
    .contract-content li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    /* Error Page Mobile */
    .error-code {
        font-size: 4rem;
        margin-bottom: 1rem;
    }
    
    .error-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .error-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .error-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .help-item {
        padding: 1.5rem 1rem;
    }
    
    .help-item i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .help-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .help-item p {
        font-size: 0.9rem;
    }
    
    .contact-item {
        padding: 15px;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-item i {
        font-size: 1.5rem;
    }
    
    .contact-item h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
}

/* ============================================
   İNDİRİM SİSTEMİ STİLLERİ
   ============================================ */

/* Fiyat Wrapper - Esneklik için */
.price-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Normal Fiyat (İndirim olmadığında) */
.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d3a7fa;
}

/* Eski Fiyat (Üstü Çizili) */
.original-price {
    font-size: 1.2rem;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    opacity: 0.8;
}

/* İndirimli Fiyat (Vurgulu - YEŞİL) */
.discounted-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #28a745;
}

/* İndirim Badge (YEŞİL) */
.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    animation: pulse 2s infinite;
}

/* KOMPAKT İNDİRİM GÖSTERİMİ - Ürün Kartları İçin */
.price-container {
    margin-bottom: 8px;
}

.discount-badge-small {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.original-price-small {
    font-size: 0.95rem;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    line-height: 1;
}

.discounted-price-large {
    font-size: 1.4rem;
    font-weight: 700;
    color: #28a745;
    line-height: 1.2;
    margin: 0;
}

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

/* Ürün Kartı İçindeki Fiyat Gösterimi */
.product-card .price-wrapper {
    margin: 10px 0;
}

.product-card .original-price {
    font-size: 1rem;
}

.product-card .discounted-price {
    font-size: 1.4rem;
}

.product-card .discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    font-size: 0.8rem;
    padding: 5px 12px;
}

/* Sepet Sayfası Fiyat Gösterimi */
.cart-item .price-wrapper {
    justify-content: flex-start;
}

.cart-item .original-price {
    font-size: 0.95rem;
}

.cart-item .discounted-price {
    font-size: 1.2rem;
}

/* Checkout Sayfası Fiyat Gösterimi */
.order-item .price-wrapper {
    justify-content: flex-end;
}

.order-item .original-price {
    font-size: 0.9rem;
}

.order-item .discounted-price {
    font-size: 1.1rem;
}

/* Ürün Detay Sayfası Fiyat Gösterimi */
.product-detail .price-wrapper {
    margin: 20px 0;
}

.product-detail .original-price {
    font-size: 1.4rem;
}

.product-detail .discounted-price {
    font-size: 2rem;
}

.product-detail .discount-badge {
    font-size: 1rem;
    padding: 6px 14px;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .price-wrapper {
        gap: 8px;
    }
    
    .current-price {
        font-size: 1.2rem;
    }
    
    .original-price {
        font-size: 1rem;
    }
    
    .discounted-price {
        font-size: 1.3rem;
    }
    
    .discount-badge {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .product-card .discount-badge {
        top: 8px;
        right: 8px;
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    /* Kompakt İndirim Stilleri - Mobil */
    .discount-badge-small {
        font-size: 0.7rem;
        padding: 2px 6px;
    }
    
    .original-price-small {
        font-size: 0.85rem;
    }
    
    .discounted-price-large {
        font-size: 1.2rem;
    }
    
    .product-detail .original-price {
        font-size: 1.1rem;
    }
    
    .product-detail .discounted-price {
        font-size: 1.6rem;
    }
}

/* Admin Paneli - İndirim Bilgisi */
.admin-discount-info {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 5px;
    font-size: 0.9rem;
}

.admin-discount-active {
    background: #d4edda;
    border-left-color: #28a745;
    color: #155724;
}

/* Hover Efekti - Ürün Kartları */
.product-card:hover .discount-badge {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* İndirim Yüzdesi Hesaplama Göstergesi (YEŞİL) */
.discount-percentage {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 5px;
}
