/* Reset ve Genel Stiller */
:root {
    --primary-color: #FF6B00;      /* Turuncu - ana tema rengi */
    --secondary-color: #9B4DCA;    /* Mor - ikincil renk */
    --accent-color: #FFB800;       /* Altın sarısı - vurgu rengi */
    --dark-color: #1A0F2E;         /* Koyu mor - arka plan */
    --light-color: #f4f4f4;
    --danger-color: #e74c3c;
    --success-color: #FF8533;      /* Turuncu tonu - başarı rengi */
    
    /* Gradient renkleri */
    --gradient-primary: linear-gradient(135deg, #FF6B00, #FFB800);
    --gradient-dark: linear-gradient(135deg, #1A0F2E 0%, #2D1B4E 100%);
}

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

body {
    font-family: 'Segoe UI', 'Minecraft', sans-serif;
    line-height: 1.6;
    background-color: var(--dark-color);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, #2D1B4E, #1A0F2E);
    padding: 8px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    position: relative;
}

.announcement-text {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.countdown-container {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.countdown-item {
    display: flex;
    gap: 4px;
    align-items: baseline;
    background: rgba(255, 107, 0, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
}

.countdown-value {
    font-size: 1rem;
    font-weight: bold;
    color: #FFB800;
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: lowercase;
}

.particle-effect {
    width: 20px;
    height: 20px;
    position: absolute;
}

.left-svg {
    left: 15px;
}

.right-svg {
    right: 15px;
}

/* Particle Effects */
.particle-effect rect {
    fill: #FF6B00;
}

.particle-effect rect:nth-child(2) {
    fill: #FFB800;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(5px); }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(255, 107, 0, 0.6); }
    50% { text-shadow: 0 0 15px rgba(255, 184, 0, 0.9); }
}

.glow-text {
    animation: textGlow 2s ease-in-out infinite;
}

/* Responsive styles for announcement bar */
@media (max-width: 768px) {
    .announcement-content {
        flex-direction: column;
        gap: 6px;
        padding: 4px 0;
    }

    .countdown-container {
        gap: 8px;
    }

    .countdown-item {
        padding: 3px 6px;
    }

    .countdown-value {
        font-size: 0.9rem;
    }

    .particle-effect {
        width: 16px;
        height: 16px;
    }

    .announcement-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        gap: 6px;
    }

    .countdown-item {
        padding: 2px 4px;
    }

    .countdown-value {
        font-size: 0.85rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .particle-effect {
        display: none;
    }
}

/* Header Styles */
.main-header {
    background-color: rgba(26, 15, 46, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.main-container {
    flex: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

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

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
}

.logo-text .highlight {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

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

/* Navigation Styles */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.main-nav ul li a {
    position: relative;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary-color);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

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

/* Search Container */
.search-container {
    position: relative;
    width: 300px;
}

.search-container input {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    background-color: rgba(26, 15, 46, 0.8);
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
    background-color: rgba(26, 15, 46, 0.95);
}

.search-container button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

/* User Actions */
.user-actions {
    display: flex;
    gap: 1rem;
}

.btn-account,
.btn-cart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-account:hover,
.btn-cart:hover {
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
}

.cart-count {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
    margin-left: -0.5rem;
}

/* Responsive Header */
@media (max-width: 1024px) {
    .header-container {
        padding: 1rem 2rem;
    }
    
    .search-container {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .main-nav ul {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }
    
    .main-nav ul {
        justify-content: center;
    }
    
    .btn-account span,
    .btn-cart span {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 2;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover::after {
    opacity: 1;
}

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

.slider-controls button {
    background: none;
    border: 2px solid rgba(255, 107, 0, 0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-controls button:hover {
    background-color: rgba(255, 107, 0, 0.2);
    border-color: var(--primary-color);
}

/* Featured Products Section */
.featured-products {
    padding: 4rem 2rem;
    background-color: rgba(26, 15, 46, 0.8);
}

/* Product Controls */
.product-controls {
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.filter-sort {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.product-filter option, 
.product-sort option {
    background: var(--dark-color);
    color: #fff;
    padding: 10px;
}

.product-filter, 
.product-sort {
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 107, 0, 0.2);
    background: rgba(26, 15, 46, 0.8);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-filter:hover, 
.product-sort:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--primary-color);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Card Styles */
.product-card {
    background: rgba(26, 15, 46, 0.9);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.2);
    border-color: var(--primary-color);
    background: rgba(26, 15, 46, 0.95);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 15, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.quick-view {
    padding: 0.8rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.rating i {
    color: var(--accent-color);
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 8px;
    display: inline-block;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

/* Product Card Animations */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    background-size: 200% 200%;
    animation: shimmer 2s infinite linear;
    border-radius: inherit;
}

.add-to-cart {
    width: 100%;
    padding: 0.8rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-to-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) rotate(45deg) translateX(-150%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.add-to-cart:hover::before {
    transform: translate(-50%, -50%) rotate(45deg) translateX(100%);
}

.add-to-cart:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    padding: 1rem 2rem;
    background: rgba(26, 15, 46, 0.9);
    border: 1px solid rgba(255, 107, 0, 0.2);
    color: #fff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.load-more-btn:hover {
    background: rgba(255, 107, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
    border-color: var(--primary-color);
}

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

.load-more-btn:hover i {
    transform: translateY(3px);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: rgba(26, 15, 46, 0.9);
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 15, 46, 0.8);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(26, 15, 46, 0.95);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.15);
    border-color: var(--primary-color);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    display: inline-block;
}

.feature:hover i {
    transform: scale(1.2) rotate(8deg);
    color: #fff;
    text-shadow: 0 0 20px var(--primary-color);
}

.feature::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature:hover::after {
    opacity: 1;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    color: #fff;
}

.feature:hover h3 {
    color: var(--primary-color);
}

.feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Görünüş animasyonu */
@keyframes featureAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature {
    animation: featureAppear 0.6s ease-out forwards;
}

/* Her feature için farklı gecikme süreleri */
.features .feature:nth-child(1) {
    animation-delay: 0.1s;
}

.features .feature:nth-child(2) {
    animation-delay: 0.2s;
}

.features .feature:nth-child(3) {
    animation-delay: 0.3s;
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(to bottom, rgba(26, 15, 46, 0.95), rgba(26, 15, 46, 0.99));
    color: #fff;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 107, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding: 0 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links i {
    font-size: 1.2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
    margin-top: 4rem;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 0, 0.1);
    background: rgba(26, 15, 46, 0.98);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section ul li a:hover {
        transform: translateX(0);
    }
}

/* Product Detail Page Styles */
.product-detail-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Breadcrumb Styles */
.breadcrumb-container {
    background: rgba(26, 15, 46, 0.8);
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-item a {
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.breadcrumb-item a:hover::after {
    width: 100%;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}

/* Product Detail Content */
.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Gallery Styles */
.product-gallery {
    background: rgba(26, 15, 46, 0.8);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.main-image {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.main-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image:hover::after {
    opacity: 1;
}

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

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

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.gallery-thumbnails img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
    border: 2px solid transparent;
}

.gallery-thumbnails img:hover,
.gallery-thumbnails img.active {
    opacity: 1;
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

/* Product Info Styles */
.product-info-detailed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.category-badge {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

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

.stars {
    color: var(--accent-color);
}

.rating-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Price Section */
.product-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(26, 15, 46, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
}

.discount-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.stock-info {
    color: var(--success-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Action Buttons */
.product-actions {
    display: flex;
    gap: 1rem;
}

.add-to-cart-btn {
    flex: 1;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.add-to-cart-btn:hover::before {
    transform: translateX(100%);
}

.wishlist-btn {
    width: 50px;
    background: rgba(26, 15, 46, 0.8);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

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

.wishlist-btn:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

/* Tab Styles */
.product-tabs {
    margin-top: 4rem;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
    margin-bottom: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.tab-buttons::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    display: none;
    padding: 2rem;
    background: rgba(26, 15, 46, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Reviews Section */
.reviews-section {
    margin-top: 2rem;
}

.reviews-summary {
    display: flex;
    gap: 3rem;
    padding: 2rem;
    background: rgba(26, 15, 46, 0.8);
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.average-rating {
    text-align: center;
    min-width: 200px;
}

.rating-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.rating-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.total-reviews {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Rating Bars */
.rating-bars {
    flex: 1;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.rating-label {
    min-width: 20px;
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 0.6s ease;
}

.rating-count {
    min-width: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    background: rgba(26, 15, 46, 0.8);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 107, 0, 0.1);
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1);
}

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

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

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: #fff;
}

.review-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.review-rating {
    color: var(--accent-color);
}

.review-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Review Interactions */
.review-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 107, 0, 0.1);
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.review-helpful i {
    font-size: 1.1rem;
}

.review-report {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.review-report:hover {
    color: var(--danger-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-summary {
        flex-direction: column;
        gap: 2rem;
    }

    .average-rating {
        min-width: auto;
    }

    .tab-buttons {
        padding-bottom: 1rem;
    }

    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .review-header {
        flex-direction: column;
        gap: 1rem;
    }

    .review-rating {
        margin-left: 50px;
    }

    .review-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Auth Container Styles */
.auth-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 2rem;
    background: rgba(26, 15, 46, 0.95);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

.auth-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.2);
}

.auth-header p {
    color: rgba(255, 255, 255, 0.7);
}

/* Form Styles */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 5px;
    background: rgba(26, 15, 46, 0.8);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group.has-error input {
    border-color: var(--danger-color);
}

.error-message {
    color: var(--danger-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Password Input */
.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
}

.toggle-password:hover {
    color: var(--primary-color);
}

/* Remember Me Checkbox */
.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
}

.remember-me label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
}

/* Form Button */
.auth-button {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.auth-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.auth-button:hover::after {
    opacity: 1;
}

/* Social Login */
.social-login {
    margin-top: 2rem;
    text-align: center;
}

.social-login-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-login-title::before,
.social-login-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 107, 0, 0.2);
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(26, 15, 46, 0.8);
    border: 1px solid rgba(255, 107, 0, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-button:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Auth Links */
.auth-links {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-links a:hover {
    text-decoration: underline;
    color: var(--accent-color);
}

/* Loading State */
.auth-button.loading {
    position: relative;
    color: transparent;
}

.auth-button.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 480px) {
    .auth-container {
        margin: 50px auto;
      

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 15, 46, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal {
    background: rgba(26, 15, 46, 0.95);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 0, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 107, 0, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Quick View Modal */
.quick-view-modal .modal {
    max-width: 900px;
}

.quick-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.quick-view-gallery {
    border-radius: 8px;
    overflow: hidden;
}

.quick-view-info h2 {
    color: #fff;
    margin-bottom: 1rem;
}

/* Notification Styles */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background: rgba(26, 15, 46, 0.95);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #fff;
}

.notification-message {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.5rem;
    margin: -0.5rem;
    transition: all 0.3s ease;
}

.notification-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

/* Notification Types */
.notification.success {
    border-left: 4px solid var(--success-color);
}

.notification.success .notification-icon {
    color: var(--success-color);
}

.notification.error {
    border-left: 4px solid var(--danger-color);
}

.notification.error .notification-icon {
    color: var(--danger-color);
}

.notification.warning {
    border-left: 4px solid var(--accent-color);
}

.notification.warning .notification-icon {
    color: var(--accent-color);
}

.notification.info {
    border-left: 4px solid var(--primary-color);
}

.notification.info .notification-icon {
    color: var(--primary-color);
}

/* Progress Bar */
.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 100%;
    transform-origin: left;
    animation: progress 3s linear forwards;
}

@keyframes progress {
    to { transform: scaleX(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .quick-view-content {
        grid-template-columns: 1fr;
    }

    .notification-container {
        left: 20px;
        right: 20px;
    }

    .notification {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal {
        width: 95%;
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .modal-footer {
        padding: 1rem;
        flex-direction: column;
    }

    .modal-footer button {
        width: 100%;
    }
}	  padding: 1.5rem;
    }

    .auth-header h2 {
        font-size: 1.75rem;
    }

    .social-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}
	  
/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 15, 46, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal {
    background: rgba(26, 15, 46, 0.95);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 0, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 107, 0, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Quick View Modal */
.quick-view-modal .modal {
    max-width: 900px;
}

.quick-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.quick-view-gallery {
    border-radius: 8px;
    overflow: hidden;
}

.quick-view-info h2 {
    color: #fff;
    margin-bottom: 1rem;
}

/* Notification Styles */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background: rgba(26, 15, 46, 0.95);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #fff;
}

.notification-message {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.5rem;
    margin: -0.5rem;
    transition: all 0.3s ease;
}

.notification-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

/* Notification Types */
.notification.success {
    border-left: 4px solid var(--success-color);
}

.notification.success .notification-icon {
    color: var(--success-color);
}

.notification.error {
    border-left: 4px solid var(--danger-color);
}

.notification.error .notification-icon {
    color: var(--danger-color);
}

.notification.warning {
    border-left: 4px solid var(--accent-color);
}

.notification.warning .notification-icon {
    color: var(--accent-color);
}

.notification.info {
    border-left: 4px solid var(--primary-color);
}

.notification.info .notification-icon {
    color: var(--primary-color);
}

/* Progress Bar */
.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 100%;
    transform-origin: left;
    animation: progress 3s linear forwards;
}

@keyframes progress {
    to { transform: scaleX(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .quick-view-content {
        grid-template-columns: 1fr;
    }

    .notification-container {
        left: 20px;
        right: 20px;
    }

    .notification {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal {
        width: 95%;
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .modal-footer {
        padding: 1rem;
        flex-direction: column;
    }

    .modal-footer button {
        width: 100%;
    }
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.text-light { color: var(--light-color); }
.text-danger { color: var(--danger-color); }
.text-success { color: var(--success-color); }

/* Font Weight */
.fw-normal { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }

/* Font Size */
.fs-sm { font-size: 0.875rem; }
.fs-md { font-size: 1rem; }
.fs-lg { font-size: 1.125rem; }
.fs-xl { font-size: 1.25rem; }
.fs-2xl { font-size: 1.5rem; }
.fs-3xl { font-size: 1.875rem; }
.fs-4xl { font-size: 2.25rem; }

/* Margin */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 1rem; }
.m-4 { margin: 1.5rem; }
.m-5 { margin: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 1rem; }
.ml-4 { margin-left: 1.5rem; }
.ml-5 { margin-left: 2rem; }

.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 1rem; }
.mr-4 { margin-right: 1.5rem; }
.mr-5 { margin-right: 2rem; }

/* Padding */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 2rem; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 2rem; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 2rem; }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flex Utilities */
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

.fade-out {
    animation: fadeOut 0.3s ease-out;
}

.slide-up {
    animation: slideUp 0.3s ease-out;
}

.slide-down {
    animation: slideDown 0.3s ease-out;
}

.scale-in {
    animation: scaleIn 0.3s ease-out;
}

.rotate-in {
    animation: rotateIn 0.3s ease-out;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: rotate(0);
    }
}

/* Hover Effects */
.hover-scale {
    transition: transform 0.3s ease;
}

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

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

/* Loading Animations */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 107, 0, 0.1);
    border-left-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-dots {
    display: flex;
    gap: 0.5rem;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: dots 1.5s infinite ease-in-out;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes dots {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Grid System */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* Auto Grid */
.grid-auto {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Grid Gap Utilities */
.gap-0 { gap: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 2rem; }

/* Responsive Design - Mobile First Approach */

/* Base styles are for mobile */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }

    /* Text Sizes */
    .title-lg { font-size: 2.5rem; }
    .title-md { font-size: 2rem; }
    .title-sm { font-size: 1.5rem; }
    
    /* Grid Adjustments */
    .sm-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    /* Navigation */
    .mobile-menu-toggle {
        display: none;
    }

    .main-nav ul {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    /* Header Layout */
    .header-container {
        flex-direction: row;
        justify-content: space-between;
    }

    /* Grid Adjustments */
    .md-grid-3 { grid-template-columns: repeat(3, 1fr); }
    
    /* Product Cards */
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    /* Features Section */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    /* Hero Section */
    .hero-content {
        text-align: left;
        align-items: flex-start;
    }

    .hero-image {
        display: block;
    }

    /* Grid Adjustments */
    .lg-grid-4 { grid-template-columns: repeat(4, 1fr); }

    /* Product Detail */
    .product-detail-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    /* Grid Adjustments */
    .xl-grid-5 { grid-template-columns: repeat(5, 1fr); }
    .xl-grid-6 { grid-template-columns: repeat(6, 1fr); }
}

/* XXL devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Responsive Typography */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    h1, .h1 { font-size: 2rem; }
    h2, .h2 { font-size: 1.75rem; }
    h3, .h3 { font-size: 1.5rem; }
    h4, .h4 { font-size: 1.25rem; }
}

/* Hide/Show Elements Based on Screen Size */
.hide-sm { display: none; }
.show-sm { display: block; }

@media (min-width: 576px) {
    .hide-sm { display: block; }
    .show-sm { display: none; }
}

.hide-md { display: none; }
.show-md { display: block; }

@media (min-width: 768px) {
    .hide-md { display: block; }
    .show-md { display: none; }
}

.hide-lg { display: none; }
.show-lg { display: block; }

@media (min-width: 992px) {
    .hide-lg { display: block; }
    .show-lg { display: none; }
}

/* Responsive Spacing */
@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 1rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .hover-only {
        display: none;
    }

    .touch-only {
        display: block;
    }

    /* Removing hover effects on touch devices */
    .card:hover,
    .button:hover,
    .nav-link:hover {
        transform: none;
        box-shadow: none;
    }

    /* Increasing touch targets */
    .nav-link,
    .button,
    .form-control {
        padding: 0.75rem 1rem;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    body {
        color: #000;
        background: #fff;
    }

    a {
        text-decoration: underline;
    }

    /* Ensure background images print */
    .print-bg {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* Retina Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .retina-img {
        background-size: contain;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --dark-color: #1A0F2E;
        --light-color: #f4f4f4;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Browser Reset ve Normalize */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(26, 15, 46, 0.8);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(26, 15, 46, 0.8);
}

/* Selection Style */
::selection {
    background: var(--primary-color);
    color: white;
    text-shadow: none;
}

/* Performance Optimizations */
.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Force Hardware Acceleration */
.force-gpu {
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

/* Browser Specific Fixes */

/* Safari Specific */
@supports (-webkit-touch-callout: none) {
    .safari-flex-fix {
        flex-shrink: 0;
    }

    /* Fix for Safari sticky header */
    .sticky-header {
        position: -webkit-sticky;
        position: sticky;
    }
}

/* Firefox Specific */
@-moz-document url-prefix() {
    .firefox-scroll-fix {
        scrollbar-width: thin;
    }
}

/* Edge Specific */
@supports (-ms-ime-align: auto) {
    .edge-fix {
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
}

/* IE11 Fixes */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .ie11-flex-fix {
        flex: 0 0 auto;
    }

    .ie11-grid-fix {
        display: -ms-grid;
        -ms-grid-columns: 1fr 1fr 1fr;
    }
}

/* Performance Classes */
.no-transition {
    transition: none !important;
}

.no-animation {
    animation: none !important;
}

.optimized-animation {
    will-change: transform, opacity;
}

/* Loading State Optimizations */
.loading {
    cursor: wait !important;
}

.loading * {
    pointer-events: none !important;
}

/* Content Visibility Optimization */
.optimize-rendering {
    content-visibility: auto;
    contain: content;
}

/* Image Rendering Optimization */
.optimize-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Font Loading Optimization */
.font-optimization {
    font-display: swap;
}

/* Performance Monitoring Classes */
.performance-critical {
    contain: layout style paint;
}

/* Touch Device Optimizations */
@media (hover: hover) and (pointer: fine) {
    .hover-enabled {
        display: block;
    }
    
    .touch-only {
        display: none;
    }
}

/* Intersection Observer Optimization */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.visible {
    opacity: 1;
}

/* Animation Performance Classes */
.smooth-animation {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.performance-animation {
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Canvas Performance */
canvas.optimized {
    image-rendering: pixelated;
}

/* SVG Performance */
.svg-optimize {
    shape-rendering: geometricPrecision;
}

/* Text Rendering */
.text-optimize {
    text-rendering: optimizeLegibility;
}

/* Input Device Specific */
@media (pointer: coarse) {
    .touch-target {
        min-height: 44px;
        min-width: 44px;
    }
}

/* High Performance Animation Classes */
.high-performance {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.transform-optimize {
    will-change: transform;
}

.opacity-optimize {
    will-change: opacity;
}

/* Memory Management */
.memory-optimize {
    contain: strict;
}

/* Paint Performance */
.paint-optimize {
    will-change: transform, opacity;
    z-index: 1;
}

/* Browser Support Fallbacks */
@supports not (display: grid) {
    .grid-fallback {
        display: flex;
        flex-wrap: wrap;
    }
}

@supports not (backdrop-filter: blur()) {
    .backdrop-fallback {
        background: rgba(26, 15, 46, 0.95);
    }
}

/* Critical Rendering Path Optimization */
.critical-path {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* Layout Performance */
.layout-optimize {
    contain: layout;
}

/* Frame Rate Optimization */
.frame-optimize {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Reflow Prevention */
.prevent-reflow {
    transform: translateZ(0);
    will-change: transform;
}

/* Flame Effects */
.flame-effect {
    position: relative;
    overflow: hidden;
}

.flame-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 0, 0),
        rgba(255, 107, 0, 0.2),
        rgba(255, 184, 0, 0.3));
    animation: flameMove 3s infinite;
    filter: blur(10px);
    transform-origin: bottom;
}

@keyframes flameMove {
    0%, 100% {
        transform: scaleY(1) translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: scaleY(1.2) translateY(-10px);
        opacity: 0.8;
    }
}

/* Glowing Border Effect */
.glow-border {
    position: relative;
    border: 1px solid rgba(255, 107, 0, 0.3);
    animation: borderGlow 2s infinite;
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
    }
}

/* Particle System */
.particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 3s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: translate(var(--x), var(--y)) rotate(180deg);
        opacity: 0.5;
    }
}

/* Magic Card Effect */
.magic-card {
    position: relative;
    background: rgba(26, 15, 46, 0.8);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.magic-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 107, 0, 0.3),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.magic-card:hover {
    transform: translateY(-5px) rotateX(5deg) rotateY(5deg);
    box-shadow: 
        0 5px 15px rgba(255, 107, 0, 0.2),
        0 0 30px rgba(255, 107, 0, 0.1);
}

.magic-card:hover::before {
    opacity: 1;
}

/* Neon Text Effect */
.neon-text {
    color: #fff;
    text-shadow:
        0 0 5px rgba(255, 107, 0, 0.5),
        0 0 10px rgba(255, 107, 0, 0.5),
        0 0 20px rgba(255, 107, 0, 0.5),
        0 0 40px rgba(255, 107, 0, 0.3);
    animation: neonPulse 2s infinite;
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow:
            0 0 5px rgba(255, 107, 0, 0.5),
            0 0 10px rgba(255, 107, 0, 0.5),
            0 0 20px rgba(255, 107, 0, 0.5),
            0 0 40px rgba(255, 107, 0, 0.3);
    }
    50% {
        text-shadow:
            0 0 10px rgba(255, 107, 0, 0.7),
            0 0 20px rgba(255, 107, 0, 0.7),
            0 0 40px rgba(255, 107, 0, 0.7),
            0 0 80px rgba(255, 107, 0, 0.5);
    }
}

/* Hover Gradient Border */
.gradient-border {
    position: relative;
    background: rgba(26, 15, 46, 0.8);
    border-radius: 10px;
    padding: 2px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Energy Pulse Effect */
.energy-pulse {
    position: relative;
    overflow: hidden;
}

.energy-pulse::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 107, 0, 0.4) 0%,
        transparent 70%
    );
    animation: pulseEnergy 2s infinite;
}

@keyframes pulseEnergy {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Floating Elements */
.float-element {
    animation: floating 3s ease-in-out infinite;
}

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

/* Interactive Button Effect */
.interactive-btn {
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interactive-btn::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg) translateX(-150%);
    transition: 0.5s;
}

.interactive-btn:hover::before {
    transform: skewX(-20deg) translateX(250%);
}

.interactive-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

/* Focus Ring Animation */
.focus-ring {
    position: relative;
}

.focus-ring:focus {
    outline: none;
}

.focus-ring:focus::after {
    content: '';
    position: absolute;
    inset: -3px;
    border: 2px solid var(--primary-color);
    border-radius: inherit;
    animation: focusRing 0.3s ease-out;
}

@keyframes focusRing {
    from {
        transform: scale(1.1);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Custom Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 15, 46, 0.8);
    transition: 0.4s;
    border-radius: 34px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 3px;
    background: var(--primary-color);
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background: rgba(255, 107, 0, 0.2);
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
    background: var(--accent-color);
}

/* Custom Radio Button */
.radio-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-input {
    display: none;
}

.radio-mark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-mark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.radio-input:checked + .radio-mark {
    border-color: var(--primary-color);
}

.radio-input:checked + .radio-mark::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Custom Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-input {
    display: none;
}

.checkbox-mark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-mark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(45deg);
    width: 6px;
    height: 12px;
    border: solid var(--primary-color);
    border-width: 0 2px 2px 0;
    transition: transform 0.3s ease;
}

.checkbox-input:checked + .checkbox-mark {
    border-color: var(--primary-color);
    background: rgba(255, 107, 0, 0.1);
}

.checkbox-input:checked + .checkbox-mark::before {
    transform: translate(-50%, -50%) scale(1) rotate(45deg);
}

/* Custom Select */
.select-container {
    position: relative;
    width: 100%;
}

.select-container select {
    appearance: none;
    width: 100%;
    padding: 0.8rem 2.5rem 0.8rem 1rem;
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 5px;
    background: rgba(26, 15, 46, 0.8);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-container::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--primary-color);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-container select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.1);
}

.select-container select:focus + .select-container::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Custom Range Slider */
.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 107, 0, 0.2);
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

/* Custom File Upload */
.file-upload {
    position: relative;
    display: inline-block;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload-label {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

.file-name {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Custom Progress Bar */
.progress-container {
    width: 100%;
    height: 8px;
    background: rgba(26, 15, 46, 0.8);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: progressShimmer 1.5s infinite;
}

@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}