/* Reset & Base Styles - Fonts loaded via header link for faster render */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8C5A;
    --secondary-color: #FFA07A;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #FFF8F5;
    --border-color: #FFE5D9;
    --shadow: 0 2px 8px 0 rgba(255, 107, 53, 0.1), 0 1px 3px 0 rgba(255, 107, 53, 0.08);
    --shadow-lg: 0 10px 25px -5px rgba(255, 107, 53, 0.15), 0 4px 10px -2px rgba(255, 107, 53, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
    font-weight: 400;
}


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

/* Announcement Banner */
.announcement-banner {
    background: #000;
    color: #fff;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    animation: blink 1.5s infinite;
    position: relative;
    z-index: 1000;
}

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

.announcement-text {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.banner-text i {
    animation: pulse 2s infinite;
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.banner-actions a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.banner-actions a:hover {
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.1);
}

.banner-actions .social-link {
    font-weight: 500;
}

.banner-actions .whatsapp-link i {
    color: #25D366;
}

.banner-actions .instagram-link i {
    color: #E4405F;
}

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

/* Header */
.main-header {
    background: var(--bg-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s;
    border-radius: 0.25rem;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.mobile-menu-toggle.active {
    color: var(--primary-color);
    background: var(--bg-light);
}

/* Logo alanı: sabit küçük yer kaplar (header bozulmasın) */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 56px;
    min-height: 56px;
    padding: 0.5rem 0;
    flex-shrink: 0;
    overflow: visible;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    height: 56px;
    overflow: visible;
}

/* Logo görseli: alan 56px kalır, görsel scale ile büyük görünür (layout etkilenmez) */
.logo-image {
    height: 56px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    display: block !important;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    transform: scale(3.5);
    transform-origin: left center;
    transition: transform 0.3s;
}

.logo-text {
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s;
    white-space: nowrap;
    word-break: keep-all;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    line-height: 1.2;
}

/* Logo görseli varsa metni gizle */
.logo .logo-image {
    display: block;
}

.logo .logo-text {
    display: none;
}

/* Logo görseli yoksa sadece metni göster */
.logo:not(:has(.logo-image)) .logo-text {
    display: block !important;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo:hover .logo-image {
    transform: scale(3.5) scale(1.05);
    transition: transform 0.3s;
}

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

/* Header Search */
.header-search {
    flex: 1;
    max-width: 600px;
    margin: 0 2rem;
}

.search-form {
    display: flex;
    position: relative;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 2rem 0 0 2rem;
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 2rem 2rem 0;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.social-icons-header {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Desktop'ta mobil iconları gizle */
.mobile-social-icons {
    display: none;
}

.social-icon {
    color: var(--text-color);
    transition: all 0.3s;
    font-size: 1.25rem;
}

.social-icon.whatsapp-icon {
    color: #25D366;
}

.social-icon.whatsapp-icon:hover {
    color: #128C7E;
    transform: scale(1.15);
}

.social-icon.instagram-icon {
    color: #E4405F;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-icon.instagram-icon:hover {
    transform: scale(1.15);
    opacity: 0.9;
}

.header-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    position: relative;
    min-width: 50px;
}

.header-icon i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.header-icon .icon-label {
    font-size: 0.75rem;
    font-weight: 500;
}

.header-icon:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Main Navigation - Elegant Premium Style */
.main-nav {
    display: flex;
    gap: 0;
    border-top: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
}

.main-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.2) 50%, transparent 100%);
}

.main-nav::-webkit-scrollbar {
    height: 3px;
}

.main-nav::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    padding: 1.5rem 2.25rem;
    text-decoration: none;
    color: #2d3748;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    background: transparent;
    border: none;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.08), transparent);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.nav-link > * {
    position: relative;
    z-index: 2;
}

.nav-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    color: #718096;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.7;
}

.nav-link span {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color);
    background: transparent;
}

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

.nav-link:hover::after {
    width: 70%;
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover i {
    color: var(--primary-color);
    opacity: 1;
    transform: translateY(-2px) scale(1.1);
}

.nav-link:hover span {
    transform: translateX(3px);
    font-weight: 600;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 70%;
    transform: translateX(-50%) scaleX(1);
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.nav-link.active i {
    color: var(--primary-color);
    opacity: 1;
    transform: scale(1.05);
}

.nav-link.active span {
    font-weight: 600;
}

/* Desktop specific elegant enhancements */
@media (min-width: 769px) {
    .main-nav {
        justify-content: center;
        padding: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    }
    
    .nav-link {
        min-width: 160px;
        padding: 1.75rem 2.75rem;
        position: relative;
        font-size: 0.875rem;
        letter-spacing: 0.8px;
    }
    
    .nav-link::after {
        height: 2.5px;
        border-radius: 2px 2px 0 0;
    }
    
    .nav-link i {
        font-size: 1.05rem;
        width: 22px;
        margin-right: 0.5rem;
    }
    
    .nav-link:hover {
        transform: translateY(-1px);
    }
    
    .nav-link:hover span {
        transform: translateX(4px);
        letter-spacing: 1px;
    }
    
    .nav-link.active {
        background: linear-gradient(180deg, rgba(255, 107, 53, 0.03) 0%, transparent 100%);
    }
    
    .nav-link.active::after {
        width: 75%;
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 997;
    opacity: 0;
    transition: opacity 0.2s ease, left 0.2s ease, width 0.2s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .mobile-menu-overlay.active {
        left: 300px;
        width: calc(100% - 300px);
    }
}

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

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    animation: bounce 0.5s ease;
}

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

/* Hero Banners (Sol / Sağ - tam genişlik, slider gibi) */
.hero-banners-wrapper {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: 2rem;
}

.hero-banners-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    align-items: stretch;
    min-height: 0;
}

.hero-banner-slot {
    min-width: 0;
    min-height: 0;
}

.hero-banner-slot--left {
    border-radius: 0;
    overflow: hidden;
}

.hero-banner-slot--right {
    border-radius: 0;
    overflow: hidden;
}

/* Ortadan ayırıcı çizgi / şerit */
.hero-banners-divider {
    width: 4px;
    min-width: 4px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.12) 15%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.12) 85%, transparent 100%);
    flex-shrink: 0;
}

.hero-banner-item {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 560px;
    aspect-ratio: 4 / 3;
    border-radius: inherit;
    overflow: hidden;
    background: var(--bg-light, #f5f5f5);
}

.hero-banner-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-banner-cta {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.hero-banner-link:hover .hero-banner-cta {
    background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .hero-banners-wrapper {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    .hero-banners-grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
    }
    .hero-banners-divider {
        width: 100%;
        min-width: 0;
        height: 4px;
        background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.12) 15%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.12) 85%, transparent 100%);
    }
    .hero-banner-slot--left,
    .hero-banner-slot--right {
        border-radius: 0;
    }
    .hero-banner-item {
        max-height: 260px;
    }
    .hero-banner-img {
        max-height: 260px;
    }
}

/* Hero Slider Wrapper */
.hero-slider-wrapper {
    width: 100%;
    margin-bottom: 3rem;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px !important;
    min-height: 600px !important;
    overflow: hidden;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100% !important;
    min-height: 600px !important;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100% !important;
    min-height: 600px !important;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: none; /* Filtre yok - direkt resim */
    align-items: center;
    justify-content: center;
    color: white;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    display: none; /* Mavi şerit kaldırıldı - direkt resim görünsün */
}

.slide-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    padding: 4rem;
    animation: slideInUp 0.8s ease-out;
    background: transparent; /* Arka plan şeffaf */
}

.slide-content h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.slide-content p {
    font-size: 2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

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

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

.btn-primary:disabled,
.add-to-cart:disabled,
button:disabled {
    background: #cbd5e1 !important;
    color: #64748b !important;
    cursor: not-allowed !important;
    opacity: 0.6;
    transform: none !important;
    box-shadow: none !important;
}

.btn-primary:disabled:hover,
.add-to-cart:disabled:hover,
button:disabled:hover {
    background: #cbd5e1 !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #475569;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Sections */
.section-header {
    text-align: center;
    margin: 4rem 0 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Featured Category Banners */
.featured-categories-banner {
    margin: 4rem 0;
    padding: 0;
}

.featured-categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 0;
}

.featured-category-banner {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 1.5rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 400px;
}

.featured-category-banner:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.featured-category-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.featured-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-category-banner:hover .featured-category-image img {
    transform: scale(1.15);
}

.featured-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-category-banner:hover .featured-category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}

.featured-category-overlay h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.featured-category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.featured-category-link i {
    transition: transform 0.3s ease;
}

.featured-category-banner:hover .featured-category-link {
    color: var(--primary-light);
}

.featured-category-banner:hover .featured-category-link i {
    transform: translateX(5px);
}

.featured-category-banner-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.featured-category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.featured-category-banner-placeholder h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: white;
    letter-spacing: 0.5px;
}

.featured-category-banner-placeholder .featured-category-link {
    margin-top: 1rem;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.category-card {
    background: white;
    border-radius: 1rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(255, 107, 53, 0.25);
    border-color: var(--primary-light);
}

.category-image {
    position: relative;
    width: 100%;
    flex: 1;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
    padding: 1rem;
    color: white;
    z-index: 2;
}

.category-overlay h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.3;
}

.category-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding: 2rem 2rem 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card h3 {
    font-size: 1.125rem;
    padding: 0 1rem 1rem;
    margin: 0;
    flex-shrink: 0;
}

/* Category Banner */
.category-banner {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.category-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(229, 90, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-banner-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.category-banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.category-banner-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .category-banner {
        height: 200px;
        border-radius: 0.5rem;
    }
    
    .category-banner-content h1 {
        font-size: 2rem;
    }
    
    .category-banner-content p {
        font-size: 1rem;
    }
    
    .featured-categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-category-banner {
        height: 300px;
    }
    
    .featured-category-overlay h2 {
        font-size: 1.5rem;
    }
    
    .featured-category-banner-placeholder h2 {
        font-size: 1.5rem;
    }
    
    .featured-category-icon {
        font-size: 3rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-overlay h3 {
        font-size: 1rem;
    }
    
    .category-icon {
        font-size: 2.5rem;
        padding: 1.5rem 1rem 0;
    }
    
    .category-card h3 {
        font-size: 1rem;
        padding: 0 0.75rem 0.75rem;
    }
}

@media (max-width: 968px) and (min-width: 769px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.products-grid .product-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 100% !important;
}

.product-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid var(--border-color);
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 100% !important;
}

.product-card.modern-card {
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, transparent, transparent) border-box;
    position: relative;
    overflow: hidden;
}

.product-card.modern-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 1.5rem;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s;
}

.product-card.modern-card:hover::before {
    opacity: 0.1;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px -12px rgba(255, 107, 53, 0.35);
    border-color: var(--primary-color);
}

.product-card.modern-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-light), var(--primary-color)) border-box;
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 65%;
    background: linear-gradient(135deg, #FFF8F5 0%, #FFFFFF 100%);
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.05) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0.5rem;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.product-card:hover .product-image img {
    transform: scale(1.15);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 3;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-quick-actions {
    display: flex;
    gap: 1rem;
    transform: translateY(20px);
    transition: transform 0.4s 0.1s;
}

.product-card:hover .product-quick-actions {
    transform: translateY(0);
}

.quick-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--primary-color);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quick-action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
}

.product-image-placeholder.large {
    font-size: 5rem;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    z-index: 2;
    animation: pulse-badge 2s infinite;
}

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

.product-info {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.65rem;
    min-height: 0;
    overflow: hidden;
}

.product-header-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

.product-info h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8rem;
    transition: color 0.3s;
    word-break: break-word;
    hyphens: auto;
    text-decoration: none !important;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

.product-card:hover .product-info h3 {
    color: var(--primary-color);
}

.product-info a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s;
}

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

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.product-cart-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 2rem;
    width: fit-content;
}

.product-cart-count i {
    font-size: 0.875rem;
    animation: pulse 2s infinite;
}

.product-short-desc-card {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0.5rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.4rem;
    text-decoration: none !important;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

.product-variations {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    border-top: none !important;
    border-bottom: none !important;
}

.variations-group {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

.variation-color {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.variation-color:hover {
    transform: scale(1.2);
    border-color: var(--primary-color);
    box-shadow: 0 3px 8px rgba(255, 107, 53, 0.3);
    z-index: 2;
}

.variation-color.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3), 0 3px 8px rgba(255, 107, 53, 0.3);
    z-index: 2;
}

.variation-size {
    padding: 0.25rem 0.5rem;
    border: 1.5px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    color: var(--text-color);
    white-space: nowrap;
    flex-shrink: 0;
}

.variation-size:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.2);
}

.variation-size.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.75rem;
    flex-wrap: wrap;
    min-height: 2.5rem;
    max-width: 100%;
    overflow: hidden;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.current-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 1.2;
}

/* Product card price - daha küçük */
.product-card .product-price {
    padding: 0.5rem 0;
    min-height: auto;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

.product-card .current-price {
    font-size: 1rem;
    font-weight: 700;
}

.product-card .old-price {
    font-size: 0.75rem;
}

.product-price-wrapper {
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: none !important;
    border-bottom: none !important;
}

.price-row-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.discount-badge-small {
    background: var(--danger-color);
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.variations-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.product-card .btn {
    margin: 0;
    margin-top: auto;
    border-radius: 0;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    padding: 0.875rem 1rem;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-top: none !important;
}

.product-card .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.product-card .btn:hover::before {
    width: 300px;
    height: 300px;
}

.product-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* Product Rating Stars */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.product-rating .stars {
    display: flex;
    gap: 0.15rem;
    color: #ffc107;
    font-size: 0.85rem;
}

.product-rating .stars i {
    animation: starPulse 2s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.1s);
}

.product-rating .stars i.fas.fa-star,
.product-rating .stars i.fas.fa-star-half-alt {
    color: #ffc107;
    text-shadow: 0 1px 2px rgba(255, 193, 7, 0.3);
}

.product-rating .stars i.far.fa-star {
    color: #e0e0e0;
}

.product-rating .rating-text {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: var(--text-color);
}

.product-rating .rating-text strong {
    color: var(--text-color);
    font-weight: 700;
}

.product-rating .review-count {
    color: var(--text-light);
    font-weight: 400;
}

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

/* Free Shipping Icon on Image */
.free-shipping-icon {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    animation: shippingPulse 3s ease-in-out infinite;
    transition: all 0.3s;
}

.product-card:hover .free-shipping-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

@keyframes shippingPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.7);
    }
}

/* Product Badges Row */
.product-badges-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0.75rem 0;
}

.free-shipping-badge,
.quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s;
    animation: badgeFloat 3s ease-in-out infinite;
}

.free-shipping-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    color: #059669;
    border: 1.5px solid rgba(16, 185, 129, 0.3);
}

.free-shipping-badge i {
    color: #10b981;
    animation: truckMove 2s ease-in-out infinite;
}

.quality-badge {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    color: #f57c00;
    border: 1.5px solid rgba(255, 193, 7, 0.3);
}

.quality-badge i {
    color: #ffc107;
    animation: awardSpin 3s ease-in-out infinite;
}

.product-card:hover .free-shipping-badge,
.product-card:hover .quality-badge {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

@keyframes truckMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

@keyframes awardSpin {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

/* Social Share Buttons */
.product-share-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    padding: 0.6rem 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 0.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.share-btn:hover::before {
    width: 100px;
    height: 100px;
}

.whatsapp-share {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-share:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.instagram-share {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.instagram-share:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5);
}

/* Enhanced Card Animations */
.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardEntrance 0.6s ease-out;
    animation-fill-mode: both;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px -15px rgba(255, 107, 53, 0.4);
    border-color: var(--primary-color);
}

/* Mobile Responsive Styles for Enhanced Product Cards */
@media (max-width: 768px) {
    .product-rating {
        gap: 0.4rem;
        margin-top: 0.4rem;
    }
    
    .product-rating .stars {
        font-size: 0.75rem;
        gap: 0.1rem;
    }
    
    .product-rating .rating-text {
        font-size: 0.75rem;
    }
    
    .free-shipping-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        top: 8px;
        left: 8px;
    }
    
    .product-badges-row {
        gap: 0.4rem;
        margin: 0.5rem 0;
    }
    
    .free-shipping-badge,
    .quality-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .free-shipping-badge span,
    .quality-badge span {
        display: none;
    }
    
    .free-shipping-badge i,
    .quality-badge i {
        margin: 0;
    }
    
    .product-share-buttons {
        padding: 0.5rem;
        gap: 0.4rem;
    }
    
    .share-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .product-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .product-card:hover .product-image img {
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .product-rating .review-count {
        display: none;
    }
    
    .free-shipping-badge,
    .quality-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .share-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

.product-card.modern-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-light), var(--primary-color)) border-box;
}

/* Enhanced Image Animation */
.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0.5rem;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s;
    background: white;
}

.product-card:hover .product-image img {
    transform: scale(1.2) rotate(2deg);
    filter: brightness(1.05);
}

/* Breadcrumb */
.breadcrumb-container {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.breadcrumb span {
    color: var(--text-light);
}

/* Product Detail - Modern Layout */
.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 2rem 0;
    padding: 0;
}

/* Product Gallery */
.product-gallery-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-main-image {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-lg);
}

.image-zoom-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    cursor: zoom-in;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.image-zoom-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.image-zoom-container:hover {
    cursor: zoom-out;
}

.image-zoom-container::after {
    content: '🔍 Click to zoom';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 5;
}

.image-zoom-container:hover::after {
    opacity: 1;
}

.zoom-lens {
    display: none;
}

.zoom-result {
    display: none;
}

.discount-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--danger-color), #dc2626);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1rem;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    animation: pulse-badge 2s infinite;
}

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

.product-thumbnails {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
}

.product-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.product-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.thumbnail-item {
    min-width: 80px;
    width: 80px;
    height: 80px;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.thumbnail-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-light);
}

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

/* Product Info Section */
.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-meta-info {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.product-sku, .product-views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-rating-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-value-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stars-large {
    display: flex;
    gap: 0.25rem;
}

.stars-large i {
    font-size: 1.25rem;
    color: #e5e7eb;
}

.stars-large i.active {
    color: #fbbf24;
}

.review-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.review-link:hover {
    color: var(--primary-color);
}

/* Price Section */
.product-price-section {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-light), white);
    border-radius: 0.75rem;
    border: 2px solid var(--border-color);
}

.price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.old-price-large {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-tag {
    background: var(--danger-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.current-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-info {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.tax-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    cursor: default;
}

.trust-item:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.trust-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-color);
}

/* Stock Status */
.product-stock-status {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stock-available-badge, .stock-unavailable-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.stock-available-badge {
    background: #d1fae5;
    color: #065f46;
}

.stock-available-badge i {
    color: var(--success-color);
    font-size: 1.25rem;
}

.stock-unavailable-badge {
    background: #fee2e2;
    color: #991b1b;
}

.stock-unavailable-badge i {
    color: var(--danger-color);
    font-size: 1.25rem;
}

.delivery-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-color);
}

.delivery-info i {
    color: var(--primary-color);
}

.delivery-info-section {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.delivery-info-section .delivery-info {
    margin: 0;
}

/* Short Description Above Price */
.product-short-desc-above-price {
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.product-short-desc-above-price p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 400;
}

/* Package Details Box */
.package-details-box {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.package-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.package-detail-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.package-detail-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    min-width: 120px;
    flex-shrink: 0;
}

.package-detail-value {
    font-size: 0.9375rem;
    color: var(--text-color);
    font-weight: 600;
    margin-left: auto;
}

/* Short Description (Old - kept for backward compatibility) */
.product-short-desc {
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-short-desc p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Variations - Kurumsal ve Profesyonel Görünüm */
.product-variation-group {
    margin-bottom: 2rem;
    padding: 1.75rem;
    background: #ffffff;
    border-radius: 1rem;
    border: 2px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.product-variation-group:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.product-variation-group.required::before {
    content: '*';
    color: #ef4444;
    font-weight: 700;
    margin-right: 0.25rem;
}

.variation-label-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
}

.variation-label {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #111827;
    min-width: 160px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.variation-label strong {
    color: #111827;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.selected-variation-text {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 0.625rem;
    border: 2px solid var(--primary-color);
    flex: 1;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
}

.clear-variation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    margin-left: auto;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.3s;
    opacity: 0.9;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
}

.clear-variation-btn:hover {
    opacity: 1;
    transform: scale(1.1);
    background: #dc2626;
    box-shadow: 0 4px 8px rgba(239, 68, 68, 0.3);
}

.clear-variation-btn i {
    font-size: 0.7rem;
}

.variation-selector {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    width: 100%;
}

.variation-option-text {
    position: relative;
    z-index: 1;
}

/* Color Selector */
.color-selector {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.color-selector .variation-option {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-selector .variation-option:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
    z-index: 1;
}

.color-selector .variation-option.active {
    transform: scale(1.15);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color) !important;
    border-width: 4px;
}

.color-selector .variation-option i {
    color: white;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    z-index: 1;
    font-weight: 700;
}

/* General Selector - Profesyonel Buton Stili */
.general-selector {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
}

.general-selector .variation-option,
.general-selector button.variation-option,
button.general-option,
button.btn-variation {
    min-width: 100px !important;
    padding: 1rem 1.75rem !important;
    border: 2px solid #d1d5db !important;
    background: #ffffff !important;
    border-radius: 0.75rem !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    color: #374151 !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
    position: relative !important;
    overflow: hidden !important;
    flex: 1 !important;
    max-width: 200px !important;
    min-height: 48px !important;
    font-family: inherit !important;
    text-transform: none !important;
    letter-spacing: 0.025em !important;
    margin: 0 !important;
    outline: none !important;
}

.general-selector .variation-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.general-selector .variation-option:hover::before {
    left: 100%;
}

.general-selector .variation-option:hover,
.general-selector button.variation-option:hover,
button.general-option:hover,
button.btn-variation:hover {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25) !important;
    background: #fff7ed !important;
    border-width: 2px !important;
}

.general-selector .variation-option.active,
.general-selector button.variation-option.active,
button.general-option.active,
button.btn-variation.active {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px) !important;
    font-weight: 700 !important;
    border-width: 2px !important;
}

.general-selector .variation-option.active::after,
.general-selector button.variation-option.active::after,
button.general-option.active::after,
button.btn-variation.active::after {
    content: '✓' !important;
    position: absolute !important;
    top: 6px !important;
    right: 8px !important;
    font-size: 0.875rem !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    background: rgba(255, 255, 255, 0.2) !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

/* Size Selector */
.size-selector {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.size-selector .variation-option {
    min-width: 60px;
    padding: 0.875rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 0.625rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #374151;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.size-selector .variation-option:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    background: #fff7ed;
}

.size-selector .variation-option.active {
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

/* Quantity & Actions */
.product-actions-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.quantity-selector-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-selector-modern label {
    font-weight: 600;
    color: var(--text-color);
    min-width: 60px;
}

.qty-controls {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    background: white;
}

.qty-btn {
    background: var(--bg-light);
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    color: var(--text-color);
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-controls input {
    border: none;
    width: 60px;
    text-align: center;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
    background: white;
    color: var(--text-color);
}

.action-buttons-modern {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-buttons-modern .btn {
    flex: 1;
    min-width: 150px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.btn-large {
    padding: 1.25rem 2rem !important;
    font-size: 1.125rem !important;
}

.action-buttons-modern .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.whatsapp-btn {
    background: #25D366 !important;
    color: white !important;
    border: none !important;
}

.whatsapp-btn:hover {
    background: #20BA5A !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:active {
    background: #1DA851 !important;
}

/* Cart */
.cart-page {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.cart-items {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table thead {
    background: var(--bg-light);
}

.cart-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.cart-table tbody tr {
    transition: background 0.3s;
}

.cart-table tbody tr:hover {
    background: var(--bg-light);
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.cart-item-info img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.cart-item-info:hover img {
    transform: scale(1.05);
}

.cart-item-info a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.cart-item-info a:hover {
    color: var(--primary-color);
}

/* Cart Page Header */
.page-header-cart {
    margin: 2rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.page-header-cart h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-header-cart h1 i {
    color: var(--primary-color);
}

.page-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Empty Cart State */
.empty-cart-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin: 2rem 0;
}

.empty-cart-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-cart-icon i {
    font-size: 4rem;
    color: var(--border-color);
}

.empty-cart-state h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.empty-cart-state p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Cart Items Header */
.cart-items-header {
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-items-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.item-count {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Cart Item Improvements */
.cart-item-row {
    transition: all 0.3s;
}

.cart-item-row:hover {
    background: var(--bg-light);
}

.cart-item-image-link {
    display: block;
    transition: transform 0.3s;
}

.cart-item-image-link:hover {
    transform: scale(1.05);
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.4;
}

.cart-item-name:hover {
    color: var(--primary-color);
}

.cart-item-sku {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
}

.cart-item-industrial-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.industrial-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    color: var(--text-color);
    font-weight: 500;
}

.industrial-info-badge i {
    font-size: 0.7rem;
    color: var(--primary-color);
}

.cart-item-price-cell {
    vertical-align: middle;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.old-price-small {
    font-size: 0.875rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.current-price-small {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.quantity-selector-cart {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    background: white;
    width: fit-content;
}

.quantity-selector-cart .qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-light);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.quantity-selector-cart .qty-btn:hover {
    background: var(--primary-color);
    color: white;
}

.quantity-selector-cart .qty-input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    background: white;
    color: var(--text-color);
}

.cart-item-total-cell {
    vertical-align: middle;
}

.item-total {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
}

.btn-remove-item {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--danger-color);
    cursor: pointer;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-remove-item:hover {
    background: #fee2e2;
    transform: scale(1.1);
}

.cart-summary {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-card {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.summary-header {
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-bottom: 2px solid var(--border-color);
}

.summary-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.summary-header h3 i {
    color: var(--primary-color);
}

.summary-content {
    padding: 1.5rem 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.summary-value {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
}

.free-shipping-badge {
    color: var(--success-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.free-shipping-info {
    margin: 1rem 0;
    padding: 1rem;
    background: #d1fae5;
    border-radius: 0.5rem;
    color: #065f46;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.free-shipping-info i {
    color: var(--success-color);
    font-size: 1.125rem;
}

.summary-row.total {
    border-bottom: none;
    border-top: 2px solid var(--border-color);
    margin-top: 1rem;
    padding-top: 1.5rem;
}

.summary-row.total .summary-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
}

.total-price {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: var(--primary-color) !important;
}

.summary-actions {
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-top: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.free-shipping {
    color: var(--success-color);
    font-weight: 600;
}

/* Checkout */
/* Checkout Page */
.checkout-page-wrapper {
    padding-top: 2rem;
    min-height: 80vh;
}

.checkout-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.checkout-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkout-header h1 i {
    color: var(--primary-color);
}

.checkout-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.checkout-page {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.checkout-form {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.checkout-form h2 {
    margin: 2.5rem 0 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-light);
}

.checkout-form h2:first-child {
    margin-top: 0;
}

.checkout-payment-notice {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: #1e40af;
    line-height: 1.5;
}

.checkout-payment-notice p {
    margin: 0;
}

.checkout-payment-warning {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: #92400e;
    line-height: 1.5;
}

.checkout-payment-warning p {
    margin: 0;
}

.checkout-legal-accept {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}
.checkout-legal-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}
.checkout-legal-label input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.checkout-legal-label a {
    color: var(--primary-color);
    text-decoration: underline;
}
.checkout-legal-label a:hover {
    color: var(--primary-dark);
}

/* Kredi Kartı Görseli */
.credit-card-preview {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-light), white);
    border-radius: 1rem;
    border: 2px solid var(--border-color);
}

.credit-card-3d {
    perspective: 1000px;
    margin-bottom: 2rem;
}

.card-front {
    width: 100%;
    max-width: 400px;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.card-front:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

.card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.card-chip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 2px;
    background: rgba(0, 0, 0, 0.3);
}

.card-number-display {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    margin-bottom: 2rem;
    font-family: 'Courier New', monospace;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.card-name-display {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    flex: 1;
}

.card-expiry-display {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
}

.card-form-fields {
    display: grid;
    gap: 1rem;
}

.card-form-fields .form-group {
    margin-bottom: 0;
}

.card-form-fields input {
    font-size: 1rem;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.card-form-fields input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Checkout Summary Modern */
.checkout-summary {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.summary-card-modern {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.summary-header-modern {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.summary-header-modern h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.summary-header-modern h3 i {
    font-size: 1.125rem;
}

.summary-items-list {
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
    border-bottom: 2px solid var(--border-color);
}

.summary-items-list::-webkit-scrollbar {
    width: 6px;
}

.summary-items-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.summary-item-modern {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.summary-item-modern:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.summary-item-modern:last-child {
    margin-bottom: 0;
}

.summary-item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 0.5rem;
    overflow: hidden;
    background: white;
    border: 1px solid var(--border-color);
}

.summary-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
}

.summary-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-light);
}

.summary-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.summary-item-details h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.summary-item-quantity {
    font-size: 0.8rem;
    color: var(--text-light);
}

.summary-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    align-self: flex-start;
}

.summary-totals-modern {
    padding: 1.5rem 2rem;
    background: var(--bg-light);
}

.summary-row-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-row-modern:last-of-type {
    border-bottom: none;
}

.summary-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.summary-value {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
}

.free-badge {
    color: var(--success-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.total-modern {
    border-top: 2px solid var(--border-color);
    margin-top: 0.75rem;
    padding-top: 1rem;
}

.total-modern .summary-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
}

.total-amount {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: var(--primary-color) !important;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Payment */
.payment-page {
    max-width: 600px;
    margin: 3rem auto;
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    text-align: center;
}

#card-element {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    margin: 1rem 0;
}

#card-errors {
    color: var(--danger-color);
    margin: 1rem 0;
    min-height: 1.5rem;
}

/* Success Page */
.success-page {
    text-align: center;
    padding: 4rem 0;
}

.success-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.success-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-actions {
    margin-top: 2rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state i {
    font-size: 5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.empty-state h2 {
    margin-bottom: 1rem;
}

/* Footer */
.main-footer {
    background: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-section {
    text-align: center;
}

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

.footer-section ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

/* Footer logo alanı: sabit küçük yer, görsel scale ile büyük görünür */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
    height: 48px;
    min-height: 48px;
    overflow: visible;
    text-align: center;
}

.footer-logo {
    width: auto;
    height: 48px !important;
    object-fit: contain;
    display: block;
    transform: scale(3.5);
    transform-origin: center center;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer-logo {
        transform: scale(4.2);
        transform-origin: center center;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.footer-developer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-developer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-developer a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem !important;
    }
    
    .top-banner {
        font-size: 0.75rem;
        padding: 0.4rem 0;
    }
    
    .banner-content {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .banner-text {
        text-align: center;
    }
    
    .banner-actions {
        display: flex !important;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        width: 100%;
    }
    
    .banner-actions a {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
        white-space: nowrap;
    }
    
    .banner-actions a i {
        font-size: 0.85rem;
    }
    
    /* Mobilde sadece ikon göster (opsiyonel - metni gizle) */
    @media (max-width: 480px) {
        .banner-actions a {
            font-size: 0.65rem;
            padding: 0.15rem 0.3rem;
        }
        
        .banner-actions a span {
            display: none;
        }
        
        .banner-actions a i {
            font-size: 1rem;
            margin: 0;
        }
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-top {
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: center;
    }
    
    
    .header-search {
        order: 3;
        width: 100%;
        margin: 0;
        max-width: 100%;
    }
    
    .header-left {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        min-width: 0; /* Taşmayı önle */
        flex-wrap: nowrap;
    }
    
    .logo {
        gap: 0.4rem;
        flex-shrink: 0;
    }
    
    .logo,
    .logo a {
        height: 48px;
        min-height: 48px;
    }
    .logo-image {
        height: 48px !important;
        width: auto !important;
        object-fit: contain !important;
        transform: scale(2.8);
        transform-origin: left center;
    }
    .logo:hover .logo-image {
        transform: scale(2.8) scale(1.05);
    }
    
    /* Mobilde WhatsApp ve iconları logonun yanına sırala */
    .header-left .mobile-social-icons {
        display: flex !important;
        align-items: center;
        gap: 0.4rem;
        margin-left: 0.3rem;
        flex-shrink: 0;
    }
    
    .header-left .mobile-social-icons .social-icon {
        font-size: 0.95rem !important;
        padding: 0.3rem !important;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobilde header-actions içindeki social iconları gizle */
    .header-actions .social-icons-header {
        display: none !important;
    }
    
    .header-actions {
        gap: 0.4rem;
        flex-shrink: 0;
    }
    
    /* Mobilde header-actions içindeki social iconları gizle */
    .header-actions .social-icons-header {
        display: none !important;
    }
    
    .header-icon {
        font-size: 1.1rem !important;
        padding: 0.4rem !important;
    }
    
    /* Mobilde kayıt ol butonunu gizle */
    .header-icon.register-icon {
        display: none !important;
    }
    
    .header-icon .icon-label {
        display: none;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 5rem 0 2rem;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
        border-top: none;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-link {
        display: flex !important;
        padding: 1.25rem 2rem;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        border-left: 4px solid transparent;
        position: relative;
        z-index: 1001 !important;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        user-select: none;
    }
    
    /* Overlay aktifken bile menü linkleri tıklanabilir olmalı */
    .main-nav.active .nav-link {
        pointer-events: auto !important;
        z-index: 1002 !important;
    }
    
    .nav-link i {
        pointer-events: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        border-left-color: var(--primary-color);
        background: var(--bg-light);
        border-bottom-color: var(--border-color);
    }
    
    .hero-slider-wrapper {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        margin-bottom: 2rem;
        position: relative;
        left: 0;
        right: 0;
    }
    
    .hero-slider {
        height: 200px !important;
        min-height: 200px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0;
    }
    
    .slider-container {
        min-height: 200px !important;
        width: 100% !important;
    }
    
    .slide {
        min-height: 200px !important;
        width: 100% !important;
    }
    
    .slide-content {
        padding: 1rem;
        max-width: 100%;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .slide-content p {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .slide-content .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .slider-controls {
        padding: 0 0.5rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .slider-dots {
        bottom: 0.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .search-info {
        margin: 1rem 0 2rem;
        color: var(--text-light);
    }
    
    .search-results h1 {
        margin: 2rem 0 1rem;
        font-size: 1.75rem;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .cart-page,
    .checkout-page {
        grid-template-columns: 1fr;
    }
    
    .checkout-summary {
        position: static;
        order: -1;
    }
    
    .checkout-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .checkout-header h1 {
        font-size: 1.5rem;
    }
    
    .checkout-form {
        padding: 1.5rem;
    }
    
    .credit-card-preview {
        padding: 1.5rem;
    }
    
    .card-front {
        max-width: 100%;
        height: 220px;
        padding: 1.5rem;
    }
    
    .card-number-display {
        font-size: 1.25rem;
        letter-spacing: 0.15rem;
    }
    
    .summary-items-list {
        max-height: 300px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
    
    .product-card .current-price {
        font-size: 0.9rem;
    }
    
    .product-card .old-price {
        font-size: 0.65rem;
        max-width: 40%;
    }
    
    .product-info h3 {
        font-size: 0.9rem;
    }
    
    .product-card .btn {
        font-size: 0.85rem;
        padding: 0.625rem 0.75rem;
    }
    
    .product-info {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .product-info h3 {
        font-size: 0.9rem;
        min-height: 2.5rem;
    }
    
    .product-variations {
        gap: 0.4rem;
        padding-top: 0.4rem;
    }
    
    .variations-group {
        gap: 0.3rem;
    }
    
    .variation-color {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
    }
    
    .variation-size {
        padding: 0.2rem 0.4rem;
        font-size: 0.65rem;
    }
    
    .product-price-wrapper {
        padding-top: 0.4rem;
    }
    
    .price-row-compact {
        gap: 0.3rem;
    }
    
    .discount-badge-small {
        font-size: 0.6rem;
        padding: 0.1em 0.3em;
    }
    
    .product-cart-count {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .product-price-wrapper {
        padding-top: 0.5rem;
    }
    
    .product-card .current-price {
        font-size: 0.9rem;
    }
    
    .product-card .old-price {
        font-size: 0.65rem;
    }
    
    .discount-badge-small {
        font-size: 0.65rem;
        padding: 0.1rem 0.4rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
        min-width: auto;
    }
}

/* Sidecart (Yan Sepet) */
.sidecart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s;
    backdrop-filter: blur(4px);
}

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

.sidecart {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 90vw;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    visibility: hidden;
}

.sidecart.active {
    visibility: visible;
    right: 0;
}


.sidecart-header {
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
}

.sidecart-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidecart-header h3 i {
    color: var(--primary-color);
}

.sidecart-close {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--text-color);
    font-size: 1.25rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.sidecart-close:hover {
    background: var(--border-color);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.sidecart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.sidecart-body::-webkit-scrollbar {
    width: 6px;
}

.sidecart-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.sidecart-loading,
.sidecart-error {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.sidecart-loading i,
.sidecart-error i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.sidecart-empty {
    text-align: center;
    padding: 3rem 1.5rem;
}

.sidecart-empty i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 1.5rem;
}

.sidecart-empty h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.sidecart-empty p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.sidecart-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sidecart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.sidecart-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.sidecart-item-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 0.5rem;
    overflow: hidden;
    background: white;
}

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

.sidecart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidecart-item-info h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.sidecart-item-info h4 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.sidecart-item-info h4 a:hover {
    color: var(--primary-color);
}

.sidecart-item-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidecart-item-price .price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.sidecart-item-price .subtotal {
    font-size: 0.875rem;
    color: var(--text-light);
}

.sidecart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.quantity-selector-small {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    background: white;
}

.quantity-selector-small .qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-light);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 0.75rem;
}

.quantity-selector-small .qty-btn:hover {
    background: var(--primary-color);
    color: white;
}

.quantity-selector-small .qty-value {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0 0.5rem;
}

.remove-item-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--danger-color);
    cursor: pointer;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.remove-item-btn:hover {
    background: #fee2e2;
    transform: scale(1.1);
}

.sidecart-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--border-color);
    background: var(--bg-light);
}

.sidecart-summary {
    margin-bottom: 1.5rem;
}

.sidecart-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.sidecart-summary .summary-row:last-of-type {
    border-bottom: none;
}

.sidecart-summary .summary-row.total {
    border-top: 2px solid var(--border-color);
    margin-top: 0.75rem;
    padding-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
}

.sidecart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidecart-actions .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.sidecart-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Cart Icon Toggle */
.cart-toggle {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}

.cart-link-mobile {
    display: none !important;
}

@media (max-width: 640px) {
    .cart-toggle {
        display: none !important;
    }
    
    .cart-link-mobile {
        display: flex !important;
    }
    
    .sidecart {
        width: 100vw;
        right: -100vw;
    }
    
    .sidecart.active {
        right: 0;
    }
    
    .sidecart-footer {
        padding: 1rem;
        position: sticky;
        bottom: 0;
        background: white;
        border-top: 2px solid var(--border-color);
        max-height: none;
        overflow: visible;
    }
    
    .sidecart-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .sidecart-actions .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .sidecart-body {
        padding-bottom: 1rem;
        max-height: calc(100vh - 200px);
        overflow-y: auto;
    }
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.payment-method-option {
    position: relative;
}

.payment-method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-method-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method-option input[type="radio"]:checked + .payment-method-label {
    border-color: var(--primary-color);
    background: var(--bg-light);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.payment-method-option:hover .payment-method-label {
    border-color: var(--primary-light);
}

.payment-method-icon {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    text-align: center;
}

.payment-method-info {
    flex: 1;
}

.payment-method-info strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.payment-method-info small {
    color: var(--text-light);
    font-size: 0.875rem;
}

.payment-method-fee {
    text-align: right;
}

.fee-free {
    color: var(--success-color);
    font-weight: 600;
}

.fee-amount {
    color: var(--primary-color);
    font-weight: 600;
}

.payment-page {
    max-width: 800px;
    margin: 2rem auto;
}

.payment-info {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.payment-info p {
    margin: 0.5rem 0;
    font-size: 1.125rem;
}

.payment-success-message {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.payment-success-message i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.payment-success-message h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.payment-success-message p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

#paypal-button-container,
#wallet-button-container {
    margin: 2rem 0;
    min-height: 200px;
}

/* Product Reviews */
.product-reviews {
    margin: 4rem 0;
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviews-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
}

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

.average-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24;
}

.stars .fa-star.active {
    color: #fbbf24;
}

.stars .fa-star:not(.active) {
    color: #e5e7eb;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.875rem;
}

.review-form-container {
    background: linear-gradient(135deg, #FFF8F5 0%, #FFFFFF 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.review-form-container h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.rating-input-wrapper {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.rating-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.rating-input {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

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

.rating-input .star-label {
    cursor: pointer;
    font-size: 3rem;
    color: #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding: 0.25rem;
}

.rating-input .star-label:hover {
    color: #fbbf24;
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.rating-input .star-label:active {
    transform: scale(0.95);
}

.rating-input input[type="radio"]:checked ~ .star-label {
    color: #fbbf24;
}

.rating-input input[type="radio"]:checked + .star-label {
    color: #fbbf24;
}

.rating-input:hover .star-label {
    color: #fbbf24;
}

.rating-input .star-label:hover ~ .star-label {
    color: #e5e7eb;
}

.rating-input input[type="radio"]:checked ~ .star-label,
.rating-input input[type="radio"]:checked + .star-label {
    color: #fbbf24;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    background: white;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1.5rem;
}

.review-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary-light);
}

.review-item.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.02) 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.15);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer-info strong {
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-date::before {
    content: '📅';
    font-size: 0.75rem;
}

.review-rating {
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.review-rating .fa-star {
    font-size: 1.25rem;
    transition: all 0.2s;
}

.review-rating .fa-star.active {
    color: #fbbf24;
    text-shadow: 0 1px 3px rgba(251, 191, 36, 0.3);
}

.review-rating .fa-star:not(.active) {
    color: #e5e7eb;
}

.review-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 1rem 0 0.75rem;
    color: var(--text-color);
    padding-left: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

.review-comment {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.review-item:hover .review-comment {
    border-left-color: var(--primary-light);
    background: #FFF8F5;
}

.no-reviews {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.no-reviews i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #e5e7eb;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Auth Pages */
.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 2rem 0;
}

.auth-card {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    max-width: 500px;
    width: 100%;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.auth-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.auth-form label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.875rem;
}

.auth-form input {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.auth-form small {
    color: var(--text-light);
    font-size: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.auth-footer p {
    margin: 0.5rem 0;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

.guest-checkout {
    margin-top: 1rem;
}

.guest-checkout a {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Account Page */
.account-page {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.account-sidebar {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.account-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-item {
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.menu-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.menu-item.active {
    background: var(--primary-color);
    color: white;
}

.account-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.account-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.account-card {
    margin-bottom: 2rem;
}

.account-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

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

.info-item label {
    display: block;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1.125rem;
    color: var(--text-color);
    margin: 0;
}

.user-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .rating-summary {
        width: 100%;
    }
    
    .review-header {
        flex-direction: column;
    }
    
    .auth-card {
        padding: 2rem 1.5rem;
    }
    
    .account-page {
        grid-template-columns: 1fr;
    }
    
    .account-sidebar {
        position: static;
    }
    
    .user-menu {
        flex-direction: column;
        gap: 0;
    }
}

/* Shop Page Styles */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.shop-sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.3s;
}

.filter-option:hover {
    background: var(--bg-light);
}

.filter-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.price-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-range input {
    flex: 1;
    min-width: 80px;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.price-range span {
    color: var(--text-light);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background: white;
    color: var(--text-color);
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.shop-main {
    min-height: 500px;
}

.shop-header {
    margin-bottom: 2rem;
}

.shop-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.shop-header p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: white;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.pagination-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--border-color);
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Duplicate variation styles removed - using main styles above */

@media (max-width: 968px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        position: static;
        order: 2;
    }
    
    .shop-main {
        order: 1;
    }
}

/* Social Share */
.social-share-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}

.social-share-section label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.875rem;
}

.social-buttons {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.whatsapp-share {
    background: #25D366;
}

.social-btn.copy-link {
    background: var(--text-light);
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Sticky Cart Bar */
.sticky-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 1000;
    display: none;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.sticky-cart-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sticky-price-label {
    font-size: 0.75rem;
    color: var(--text-light);
}

.sticky-price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-sticky {
    flex: 1;
    max-width: 300px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Product Details Tabs */
.product-details-tabs {
    margin: 3rem 0;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    background: var(--bg-light);
}

.tab-btn {
    flex: 1;
    padding: 1.25rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s;
    position: relative;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: white;
}

.tabs-content {
    padding: 2rem;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

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

.product-description-content {
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1rem;
}

.product-description-content p {
    margin-bottom: 1rem;
}

.no-content {
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    padding: 2rem;
}

.specifications-table {
    width: 100%;
}

.specifications-table table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specifications-table tr:last-child {
    border-bottom: none;
}

.specifications-table td {
    padding: 1rem;
    vertical-align: top;
}

.specifications-table td:first-child {
    width: 200px;
    color: var(--text-light);
}

.specifications-table td:last-child {
    color: var(--text-color);
    font-weight: 500;
}

/* Related Products Carousel */
.related-products-section {
    margin: 4rem 0;
    padding: 2rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
}

.carousel-controls {
    display: flex;
    gap: 0.5rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.related-products-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
}

.related-products-carousel::-webkit-scrollbar {
    height: 6px;
}

.related-products-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.related-product-card {
    min-width: 250px;
    max-width: 250px;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.related-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.related-product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: var(--bg-light);
}

.related-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.1);
}

.product-discount-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--danger-color);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 2;
}

.related-product-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.related-product-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.related-product-price .old-price {
    font-size: 0.875rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.related-product-price .current-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

.related-product-card .btn {
    margin: 0 1.25rem 1.25rem;
    width: auto;
}

.product-link {
    text-decoration: none;
    color: inherit;
}

/* Responsive Product Detail */
@media (max-width: 968px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin: 1rem 0 !important;
    }
    
    .product-gallery-section {
        position: static !important;
        margin-bottom: 1.5rem;
    }
    
    .image-zoom-container {
        padding-top: 100%;
    }
    
    .image-zoom-container::after {
        display: none;
    }
    
    .zoom-result {
        display: none !important;
    }
    
    .zoom-lens {
        display: none !important;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .current-price-large {
        font-size: 2rem;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-variations {
        gap: 0.35rem;
        padding-top: 0.35rem;
    }
    
    .variations-group {
        gap: 0.25rem;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .variations-group::-webkit-scrollbar {
        height: 4px;
    }
    
    .variations-group::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 2px;
    }
    
    .variation-color {
        width: 18px;
        height: 18px;
        min-width: 18px;
        min-height: 18px;
        border-width: 1.5px;
        flex-shrink: 0;
    }
    
    .variation-size {
        padding: 0.15rem 0.35rem;
        font-size: 0.6rem;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .product-price-wrapper {
        padding-top: 0.35rem;
    }
    
    .price-row-compact {
        gap: 0.25rem;
    }
    
    .product-card .old-price {
        font-size: 0.7rem;
        max-width: 45%;
    }
    
    .product-card .current-price {
        font-size: 0.85rem;
    }
    
    .discount-badge-small {
        font-size: 0.55rem;
        padding: 0.1em 0.25em;
    }
    
    /* Product Info Section Mobile */
    .product-info-section {
        gap: 1rem !important;
        padding: 0 !important;
    }
    
    .product-header {
        padding-bottom: 0.75rem !important;
    }
    
    .product-meta-info {
        flex-direction: column !important;
        gap: 0.5rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Package Details Box Mobile */
    .package-details-box {
        padding: 1rem !important;
        margin: 1rem 0 !important;
    }
    
    .package-detail-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
        padding: 0.75rem 0 !important;
    }
    
    .package-detail-label {
        min-width: auto !important;
        font-size: 0.8rem !important;
    }
    
    .package-detail-value {
        margin-left: 0 !important;
        font-size: 0.875rem !important;
    }
    
    /* Price Section Mobile */
    .product-price-section {
        padding: 1rem !important;
    }
    
    .price-row {
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }
    
    .old-price-large {
        font-size: 1.25rem !important;
    }
    
    .current-price-large {
        font-size: 1.75rem !important;
    }
    
    /* Variation Groups Mobile */
    .product-variation-group {
        padding: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .variation-label-wrapper {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
    }
    
    .variation-label {
        min-width: auto !important;
        font-size: 0.9375rem !important;
    }
    
    .selected-variation-text {
        min-width: 100% !important;
        font-size: 0.875rem !important;
        padding: 0.5rem 0.75rem !important;
    }
    
    .variation-selector {
        gap: 0.5rem !important;
    }
    
    .general-selector button,
    .general-selector .variation-option {
        min-width: 80px !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
        max-width: calc(50% - 0.25rem) !important;
        flex: 0 0 calc(50% - 0.25rem) !important;
    }
    
    .color-selector .variation-option {
        width: 48px !important;
        height: 48px !important;
    }
    
    /* Stock Status Mobile */
    .product-stock-status {
        margin: 0.75rem 0 !important;
    }
    
    /* Actions Section Mobile */
    .product-actions-section {
        padding: 1rem !important;
        gap: 1rem !important;
    }
    
    .quantity-selector-modern {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.75rem !important;
    }
    
    .action-buttons-modern {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .action-buttons-modern .btn {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Social Share Mobile */
    .social-share-section {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    /* Tabs Mobile */
    .product-details-tabs {
        margin: 2rem 0 !important;
    }
    
    .tabs-header {
        flex-wrap: wrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .tab-btn {
        padding: 1rem 1.5rem !important;
        font-size: 0.875rem !important;
        white-space: nowrap !important;
        min-width: auto !important;
    }
    
    .tabs-content {
        padding: 1.5rem !important;
    }
    
    /* Thumbnails Mobile */
    .product-thumbnails {
        gap: 0.5rem !important;
    }
    
    .thumbnail-item {
        min-width: 60px !important;
        width: 60px !important;
        height: 60px !important;
    }
    
    .action-buttons-modern {
        flex-direction: column;
    }
    
    .action-buttons-modern .btn {
        width: 100%;
        min-width: auto;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        border-bottom: 1px solid var(--border-color);
        border-right: none;
    }
    
    .tab-btn.active {
        border-bottom-color: var(--primary-color);
    }
    
    .related-product-card {
        min-width: 200px;
        max-width: 200px;
    }
    
    .sticky-cart-bar {
        display: flex;
    }
}

@media (max-width: 640px) {
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .product-meta-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-share-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sticky-cart-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sticky-price {
        text-align: center;
    }
    
    .btn-sticky {
        max-width: 100%;
    }
}

/* Estimated Delivery Time */
.estimated-delivery-info {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #166534;
    font-size: 0.9375rem;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.1);
}

.estimated-delivery-info i {
    color: #10b981;
    font-size: 1.25rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.estimated-delivery-info strong {
    font-weight: 700;
    color: #047857;
}

/* Delivery Time Estimation */
.delivery-estimate-section {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.delivery-estimate-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.delivery-estimate-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
}

.delivery-estimate-header i {
    color: var(--primary-color);
    font-size: 1.25rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-select-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    margin-left: auto;
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
}

.location-select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.location-select-btn:active {
    transform: translateY(0);
}

.location-form-container {
    margin-top: 1.25rem;
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.625rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.delivery-location-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delivery-location-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.delivery-location-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.delivery-location-form label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.delivery-location-form label::after {
    content: '';
}

.delivery-location-form input {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    background: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.delivery-location-form input::placeholder {
    color: #94a3b8;
    font-size: 0.875rem;
}

.delivery-location-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    background: #ffffff;
}

.delivery-location-form input:hover:not(:focus) {
    border-color: #cbd5e1;
}

.delivery-location-form .btn {
    margin-top: 0.5rem;
    align-self: flex-start;
}

.delivery-result {
    margin-top: 1.25rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
    border-radius: 0.625rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
    animation: slideIn 0.3s ease-out;
}

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

.delivery-result-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #065f46;
}

.delivery-result-content i {
    font-size: 1.75rem;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.delivery-result-content > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.delivery-result-content strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: #047857;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#delivery-days {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.375rem;
}

/* Payment Options */
.payment-methods-section {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.payment-methods-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-methods-title i {
    color: var(--primary-color);
    font-size: 1.25rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
}

.payment-method-card {
    padding: 1rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 0.625rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.payment-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s;
}

.payment-method-card:hover::before {
    left: 100%;
}

.payment-method-card:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.2);
}

.payment-method-icon {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.payment-method-icon img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

.payment-method-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.payment-method-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.payment-method-desc {
    font-size: 0.625rem;
    color: var(--text-light);
    line-height: 1.3;
}

/* Key Features */
.product-features-section {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.features-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-title i {
    color: var(--primary-color);
    font-size: 1.25rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
}

.feature-item {
    padding: 1rem 0.75rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 0.625rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.feature-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.feature-item span {
    font-size: 0.75rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .delivery-estimate-section {
        padding: 1rem;
    }
    
    .delivery-estimate-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .delivery-estimate-header i {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .location-select-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .location-form-container {
        padding: 1rem;
    }
    
    .delivery-location-form .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .delivery-location-form input {
        padding: 0.625rem 0.875rem;
    }
    
    .delivery-result {
        padding: 1rem;
    }
    
    .delivery-result-content i {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }
    
    .estimated-delivery-info {
        font-size: 0.875rem;
        padding: 0.875rem 1rem;
        flex-wrap: wrap;
    }
    
    .estimated-delivery-info i {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .payment-methods-section,
    .product-features-section {
        padding: 1rem;
    }
    
    .payment-methods-title,
    .features-title {
        font-size: 0.9375rem;
        gap: 0.5rem;
    }
    
    .payment-methods-title i,
    .features-title i {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 0.75rem;
    }
    
    .payment-method-card {
        padding: 0.875rem 0.75rem;
    }
    
    .payment-method-icon {
        height: 35px;
        margin-bottom: 0.5rem;
    }
    
    .payment-method-icon i {
        font-size: 1.25rem;
    }
    
    .payment-method-name {
        font-size: 0.7rem;
    }
    
    .payment-method-desc {
        font-size: 0.6rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.875rem 0.5rem;
    }
    
    .feature-item i {
        font-size: 1.125rem;
    }
    
    .feature-item span {
        font-size: 0.7rem;
    }
    
    /* Product Page Mobile Responsive */
    .product-detail-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .product-gallery-section {
        position: static !important;
    }
    
    .product-title {
        font-size: 1.25rem !important;
    }
    
    .current-price-large {
        font-size: 1.75rem !important;
    }
    
    .product-variation-group {
        padding: 1rem !important;
    }
    
    .variation-label-wrapper {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .general-selector button {
        max-width: calc(50% - 0.25rem) !important;
        flex: 0 0 calc(50% - 0.25rem) !important;
        min-width: 80px !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
    }
    
    .package-details-box {
        padding: 1rem !important;
    }
    
    .product-actions-section {
        padding: 1rem !important;
    }
    
    .action-buttons-modern {
        flex-direction: column !important;
    }
    
    .action-buttons-modern .btn {
        width: 100% !important;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0.75rem !important;
    }
    
    .product-detail-wrapper {
        gap: 1rem !important;
        margin: 0.5rem 0 !important;
    }
    
    .product-title {
        font-size: 1.125rem !important;
    }
    
    .current-price-large {
        font-size: 1.5rem !important;
    }
    
    .old-price-large {
        font-size: 1rem !important;
    }
    
    .product-variation-group {
        padding: 0.75rem !important;
    }
    
    .variation-label {
        font-size: 0.875rem !important;
    }
    
    .general-selector button {
        min-width: 70px !important;
        padding: 0.625rem 0.75rem !important;
        font-size: 0.8rem !important;
    }
    
    .color-selector .variation-option {
        width: 40px !important;
        height: 40px !important;
    }
    
    .package-details-box {
        padding: 0.75rem !important;
    }
    
    .package-detail-item {
        padding: 0.5rem 0 !important;
    }
    
    .product-actions-section {
        padding: 0.75rem !important;
    }
    
    .action-buttons-modern .btn {
        padding: 0.875rem !important;
        font-size: 0.875rem !important;
    }
    
    .tabs-header {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .tab-btn {
        padding: 0.75rem 1rem !important;
        font-size: 0.8rem !important;
        white-space: nowrap !important;
    }
    
    .thumbnail-item {
        min-width: 50px !important;
        width: 50px !important;
        height: 50px !important;
    }
}

/* Tablet (769px to 968px) */
@media (min-width: 769px) and (max-width: 968px) {
    .product-detail-wrapper {
        gap: 2.5rem !important;
    }
    
    .general-selector button {
        max-width: calc(33.333% - 0.67rem) !important;
        flex: 0 0 calc(33.333% - 0.67rem) !important;
    }
}

/* ============================================
   VARIATION BUTTONS - PROFESSIONAL STYLES
   ============================================ */

/* Product Variation Group - Override all previous styles */
.product-info-section .product-variation-group,
.product-detail-wrapper .product-variation-group,
.product-variation-group {
    margin-bottom: 2rem !important;
    padding: 1.75rem !important;
    background: #ffffff !important;
    border-radius: 1rem !important;
    border: 2px solid #e5e7eb !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.3s ease !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.product-variation-group:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
    border-color: #d1d5db !important;
}

.product-variation-group.required::before {
    content: '*' !important;
    color: #ef4444 !important;
    font-weight: 700 !important;
    margin-right: 0.25rem !important;
}

/* Variation Label Wrapper */
.variation-label-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-bottom: 1rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 1px solid #f3f4f6 !important;
    width: 100% !important;
}

.variation-label {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    font-size: 1.0625rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    min-width: 160px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.variation-label strong {
    color: #111827 !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
}

.selected-variation-text {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    padding: 0.625rem 1.25rem !important;
    background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
    border-radius: 0.625rem !important;
    border: 2px solid var(--primary-color) !important;
    flex: 1 !important;
    min-width: 180px !important;
    text-align: center !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15) !important;
}

/* Variation Selector */
.variation-selector {
    display: flex !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
    margin-top: 1rem !important;
    width: 100% !important;
}

/* General Selector - Professional Button Style */
.general-selector {
    display: flex !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
    width: 100% !important;
}

/* Variation Option Buttons - Force Professional Style */
.general-selector .variation-option,
.general-selector button.variation-option,
.general-selector button.general-option,
.general-selector button.btn-variation,
button.variation-option.general-option,
button.variation-option.btn-variation,
.product-variation-group button.variation-option,
.product-variation-group .general-selector button {
    min-width: 100px !important;
    padding: 1rem 1.75rem !important;
    border: 2px solid #d1d5db !important;
    background: #ffffff !important;
    border-radius: 0.75rem !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    color: #374151 !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
    position: relative !important;
    overflow: hidden !important;
    flex: 1 !important;
    max-width: 200px !important;
    min-height: 48px !important;
    font-family: inherit !important;
    text-transform: none !important;
    letter-spacing: 0.025em !important;
    margin: 0 !important;
    outline: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.general-selector .variation-option::before,
.general-selector button.variation-option::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent) !important;
    transition: left 0.6s !important;
    z-index: 1 !important;
}

.general-selector .variation-option:hover::before,
.general-selector button.variation-option:hover::before {
    left: 100% !important;
}

.general-selector .variation-option:hover,
.general-selector button.variation-option:hover,
button.general-option:hover,
button.btn-variation:hover {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25) !important;
    background: #fff7ed !important;
    border-width: 2px !important;
}

.general-selector .variation-option.active,
.general-selector button.variation-option.active,
button.general-option.active,
button.btn-variation.active {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px) !important;
    font-weight: 700 !important;
    border-width: 2px !important;
}

.general-selector .variation-option.active::after,
.general-selector button.variation-option.active::after,
button.general-option.active::after,
button.btn-variation.active::after {
    content: '✓' !important;
    position: absolute !important;
    top: 6px !important;
    right: 8px !important;
    font-size: 0.875rem !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    background: rgba(255, 255, 255, 0.2) !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    z-index: 2 !important;
}

.variation-option-text {
    position: relative !important;
    z-index: 1 !important;
}

/* Legal pages */
.legal-page .page-header { margin-bottom: 2rem; }
.legal-page .page-title { font-size: 1.75rem; margin-bottom: 0.25rem; }
.legal-page .page-meta { color: var(--text-light); font-size: 0.9rem; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.25rem; margin: 1.75rem 0 0.75rem; color: var(--text-color); }
.legal-content p, .legal-content ul { margin-bottom: 1rem; color: var(--text-color); line-height: 1.7; }
.legal-content ul { padding-left: 1.5rem; }
.legal-content a { color: var(--primary-color); text-decoration: underline; }
.legal-content a:hover { color: var(--primary-dark); }

