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

:root {
    /* Futurystyczna kolorystyka neonowa */
    --primary-color: #00ffff;
    --primary-dark: #00cccc;
    --secondary-color: #ff00ff;
    --accent-color: #ffff00;
    --success-color: #00ff00;
    --warning-color: #ff8800;
    --error-color: #ff0080;
    
    /* Gradienty neonowe */
    --gradient-primary: linear-gradient(135deg, #00ffff 0%, #0080ff 50%, #8000ff 100%);
    --gradient-secondary: linear-gradient(135deg, #ff00ff 0%, #ff0080 50%, #8000ff 100%);
    --gradient-accent: linear-gradient(135deg, #ffff00 0%, #ff8800 50%, #ff0080 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    --gradient-neon: linear-gradient(135deg, #00ffff 0%, #ff00ff 50%, #ffff00 100%);
    
    /* Kolory tekstu */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-light: #808080;
    --text-neon: #00ffff;
    
    /* Tła */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a2e;
    --bg-dark: #000000;
    --bg-glass: rgba(255, 255, 255, 0.1);
    --bg-neon: rgba(0, 255, 255, 0.1);
    
    /* Obramowania */
    --border-color: #333333;
    --border-neon: #00ffff;
    --border-glow: 0 0 20px rgba(0, 255, 255, 0.5);
    
    /* Cienie neonowe */
    --shadow-sm: 0 2px 10px rgba(0, 255, 255, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 255, 255, 0.3);
    --shadow-lg: 0 8px 30px rgba(0, 255, 255, 0.4);
    --shadow-xl: 0 15px 40px rgba(0, 255, 255, 0.5);
    --shadow-neon: 0 0 30px rgba(0, 255, 255, 0.8);
    
    /* Font i animacje */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--text-primary);
}

.logo-animation {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-shadow: 0 0 20px var(--primary-color);
}

.logo-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    color: var(--primary-color);
}

.logo-dot {
    color: var(--secondary-color);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    text-shadow: 0 0 20px var(--secondary-color);
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.3);
}

.loading-progress {
    height: 100%;
    background: var(--gradient-neon);
    border-radius: 2px;
    animation: loadingProgress 2s ease-in-out;
    box-shadow: 0 0 10px var(--primary-color);
}



/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-neon);
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-lg);
    border-bottom: 2px solid var(--primary-color);
}

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

.nav-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
    text-shadow: 0 0 10px var(--primary-color);
}

.nav-logo .logo-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
}

.logo-dot {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    position: relative;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.nav-icon {
    font-size: 1.1rem;
}

.nav-text {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    position: absolute;
    transition: all var(--transition-fast);
    box-shadow: 0 0 5px var(--primary-color);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

/* Main Content */
.main-content {
    margin-top: 70px;
    position: relative;
    z-index: 10;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 0s; }
.particle:nth-child(8) { left: 80%; animation-delay: 1s; }
.particle:nth-child(9) { left: 90%; animation-delay: 2s; }
.particle:nth-child(10) { left: 95%; animation-delay: 3s; }

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.1) 0%, 
        rgba(255, 0, 255, 0.05) 50%, 
        rgba(255, 255, 0, 0.1) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-normal);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    text-shadow: 0 0 10px var(--primary-color);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    box-shadow: 0 0 20px var(--primary-color);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    min-width: 400px;
}

.floating-cards-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}

.floating-card {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(26, 26, 46, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
    pointer-events: none;
}

.floating-card:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px var(--primary-color);
}

.card-content {
    text-align: center;
    color: var(--text-primary);
    pointer-events: auto;
}

.card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: all var(--transition-normal);
}

.card-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 0 10px var(--primary-color);
}

.floating-card:hover .card-icon {
    transform: scale(1.2);
    color: var(--accent-color);
}

.floating-card:hover .card-text {
    color: var(--accent-color);
}

/* Responsive floating cards */
@media (max-width: 768px) {
    .floating-card {
        width: 80px;
        height: 80px;
    }
    
    .card-icon {
        font-size: 1.5rem;
    }
    
    .card-text {
        font-size: 0.7rem;
    }
}



.floating-cards-container {
    perspective: 1000px;
}

.card-content {
    transform-style: preserve-3d;
}

.card-icon {
    transform: translateZ(20px);
}

.card-text {
    transform: translateZ(10px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.scroll-arrow:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 10;
}

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

.products-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--primary-color);
}

.products-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.product-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1001;
}

.product-details {
    transition: all var(--transition-normal);
    overflow: hidden;
}

.product-details.collapsed {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
}

.show-more-btn {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    position: relative;
    z-index: 1003;
}

.show-more-btn:hover {
    background: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.show-more-btn i {
    transition: transform var(--transition-normal);
}

.show-more-btn:hover i {
    transform: translateY(1px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.05) 0%, 
        rgba(255, 0, 255, 0.05) 50%, 
        rgba(255, 255, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

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

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

.product-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    text-shadow: 0 0 10px var(--primary-color);
}

.product-card.sold-out .product-header h3 {
    opacity: 0.6;
}

.product-card.sold-out {
    opacity: 0.7;
}

.product-card.sold-out:hover {
    transform: translateY(-8px);
    border-color: #ff00ff;
    box-shadow: 0 8px 32px rgba(255, 0, 255, 0.3);
}

.product-card.sold-out:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, 
        rgba(255, 0, 255, 0.05) 0%, 
        rgba(128, 0, 255, 0.05) 50%, 
        rgba(255, 0, 128, 0.05) 100%);
}

.product-card.new {
    border-color: #00ff00;
}

.product-card.new:hover {
    transform: translateY(-8px);
    border-color: #00ff00;
    box-shadow: 0 8px 32px rgba(0, 255, 0, 0.3);
}

.product-card.new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 255, 0, 0.05) 0%, 
        rgba(0, 200, 0, 0.05) 50%, 
        rgba(0, 255, 128, 0.05) 100%);
    opacity: 1;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.product-card.featured {
    border-color: #ff00ff;
}

.product-card.featured:hover {
    transform: translateY(-8px);
    border-color: #ff00ff;
    box-shadow: 0 8px 32px rgba(255, 0, 255, 0.3);
}

.product-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 0, 0, 0.05) 0%, 
        rgba(255, 128, 0, 0.05) 25%, 
        rgba(255, 255, 0, 0.05) 50%, 
        rgba(0, 255, 0, 0.05) 75%, 
        rgba(0, 128, 255, 0.05) 100%);
    background-size: 200% 200%;
    animation: rainbow 3s ease-in-out infinite;
    opacity: 1;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.product-card.new:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, 
        rgba(0, 255, 0, 0.1) 0%, 
        rgba(0, 200, 0, 0.1) 50%, 
        rgba(0, 255, 128, 0.1) 100%);
}

.product-card.featured:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, 
        rgba(255, 0, 0, 0.1) 0%, 
        rgba(255, 128, 0, 0.1) 25%, 
        rgba(255, 255, 0, 0.1) 50%, 
        rgba(0, 255, 0, 0.1) 75%, 
        rgba(0, 128, 255, 0.1) 100%);
    background-size: 200% 200%;
    animation: rainbow 3s ease-in-out infinite;
}

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

.duration-badge {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
}

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

.provider-name {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.product-features {
    margin-bottom: 1.5rem;
}

.product-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.product-variant-selector {
    margin-bottom: 1.5rem;
}

.product-variant-selector label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.variant-select {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1002;
}

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

.variant-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.variant-select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* Multi-currency price display in modal */
.multi-currency-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.currency-price {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}



/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    max-width: 600px;
    width: 90%;
    height: auto;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

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

.modal-header h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 10px var(--primary-color);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-normal);
}

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

.modal-body {
    padding: 2rem;
    flex: 1;
    overflow-y: auto;
}

.order-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-details h3,
.order-form h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.detail-value {
    color: var(--text-primary);
    font-weight: 600;
}

.order-form .form-group {
    margin-bottom: 1rem;
}

.order-form label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.order-form textarea {
    resize: vertical;
    min-height: 100px;
}

.order-description {
    margin-top: 2rem;
}

.order-description p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    flex-shrink: 0;
}

.modal-footer .btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-primary);
    color: var(--text-primary);
}

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

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

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 98vh;
    }

    .order-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .modal-body {
        padding: 1rem;
    }

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

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

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--bg-primary);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
    opacity: 0.8;
}

.sold-out-badge {
    background: var(--gradient-secondary);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
}

.new-badge {
    background: linear-gradient(135deg, #00ff00, #00cc00);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.featured-badge {
    background: linear-gradient(135deg, #ff0000, #ff8000, #ffff00, #00ff00, #0080ff, #8000ff, #ff0080);
    background-size: 200% 200%;
    animation: rainbow 3s ease-in-out infinite;
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

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

.product-description {
    margin-bottom: 1.5rem;
}

.product-description p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.product-prices {
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.price-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price-value {
    color: var(--text-primary);
    font-weight: 600;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
}

.product-link {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: var(--text-primary);
    text-decoration: none;
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1002;
}

.product-link:hover:not(.sold-out) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    text-shadow: 0 0 10px var(--primary-color);
}

.product-link.sold-out {
    background: var(--bg-primary);
    color: var(--text-secondary);
    cursor: not-allowed;
    opacity: 0.6;
    transition: all var(--transition-normal);
}

.product-link.sold-out:hover {
    background: linear-gradient(135deg, #ff00ff, #8000ff);
    color: var(--text-primary);
    opacity: 0.8;
    box-shadow: 0 4px 16px rgba(255, 0, 255, 0.3);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 10;
}

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

.service-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.05) 0%, 
        rgba(255, 0, 255, 0.05) 50%, 
        rgba(255, 255, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

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

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.service-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-color);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 10;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px var(--primary-color);
}

.about-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.skills-container {
    display: grid;
    gap: 1.5rem;
}

.skill-category h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.skill-tag:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.profile-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    box-shadow: var(--shadow-md);
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}

.profile-info h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.profile-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.profile-avatar {
    position: relative;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-profile {
    text-align: left;
}

.contact-item-profile {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-item-profile:last-child {
    border-bottom: none;
}

.contact-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-value {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 5px var(--primary-color);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 10;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.contact-details h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.contact-details p {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 100;
}

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

.input-container {
    position: relative;
}

.input-container input,
.input-container textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.input-container input:focus,
.input-container textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.input-container label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
    pointer-events: none;
}

.input-container input:focus + label,
.input-container textarea:focus + label,
.input-container.focused label {
    top: 0.5rem;
    left: 0.75rem;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.input-container input:focus ~ .input-line,
.input-container textarea:focus ~ .input-line {
    width: 100%;
}

/* Captcha styles for contact form */
.input-container label[for="contactCaptcha"] {
    position: static;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 100;
}

.input-container input[type="number"] {
    width: 100%;
    padding: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
    z-index: 100;
}

.input-container input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    text-shadow: 0 0 10px var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--accent-color);
}

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

.footer-bottom p {
    color: var(--text-secondary);
}

/* Feedback Section */
.feedback-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 10;
}



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

.feedback-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    position: relative;
    transition: all var(--transition-normal);
}

.feedback-item::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.feedback-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.feedback-item:hover::before {
    opacity: 0.6;
}

.feedback-content {
    position: relative;
    z-index: 1;
}

.feedback-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.feedback-text::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.feedback-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-weight: 600;
}

.author-name {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
}

.feedback-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: normal;
}

.feedback-cta {
    text-align: center;
}

.feedback-btn {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feedback-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    text-shadow: 0 0 10px var(--primary-color);
}

@media (max-width: 768px) {
    .feedback-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .feedback-item {
        padding: 1.5rem;
    }

    .feedback-text {
        font-size: 0.9rem;
    }

    .feedback-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.feedback-form {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

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

.feedback-form label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.feedback-form textarea {
    resize: vertical;
    min-height: 100px;
}

.feedback-form input[type="number"] {
    width: 100px;
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    animation: toastSlideIn 0.4s ease forwards;
}

.toast-success {
    background: linear-gradient(135deg, #10b981, #059669);
    border-left: 4px solid #34d399;
}

.toast-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-left: 4px solid #f87171;
}

.toast-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-message {
    font-size: 0.875rem;
    opacity: 0.9;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 2rem;
    }

    .hero-text {
        order: 1;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .hero-text {
        order: 1;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }


}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left var(--transition-normal);
        border-top: 1px solid rgba(0, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-text {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .products-grid,
    .services-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
    }

    .floating-card {
        width: 80px;
        height: 80px;
    }

    .floating-cards-container {
        width: 300px;
        height: 300px;
    }

    .card-icon {
        font-size: 1.5rem;
    }

    .card-text {
        font-size: 0.7rem;
    }



    .modal-content {
        width: 95%;
        max-width: 500px;
        margin: 2rem auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .order-details {
        flex-direction: column;
        gap: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

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

    .modal-footer .btn {
        width: 100%;
        padding: 1rem;
    }

    .feedback-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feedback-item {
        padding: 1.5rem;
    }

    .feedback-text {
        font-size: 0.95rem;
    }

    .feedback-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

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

    .input-container input,
    .input-container textarea {
        padding: 1rem;
        font-size: 1rem;
    }

    .submit-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .products-container,
    .services-container,
    .about-container,
    .contact-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }



    .modal-content {
        width: 98%;
        margin: 1rem auto;
        max-height: 95vh;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .order-details {
        gap: 1rem;
    }

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .input-container input,
    .input-container textarea,
    .input-container select {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .submit-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .feedback-item {
        padding: 1rem;
    }

    .feedback-text {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .social-links {
        gap: 0.8rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .product-card,
    .service-card {
        padding: 1rem;
    }



    .modal-content {
        width: 99%;
        margin: 0.5rem auto;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-body {
        padding: 0.8rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .input-container input,
    .input-container textarea,
    .input-container select {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    .submit-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .nav-container {
        padding: 0 0.8rem;
    }

    .hero-content {
        padding: 0 0.8rem;
    }

    .products-container,
    .services-container,
    .about-container,
    .contact-container {
        padding: 0 0.8rem;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 1rem 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }



    .modal-content {
        max-height: 80vh;
    }
}

/* Search Bar */
.search-container {
    margin-bottom: 2rem;
    text-align: center;
}

.search-input {
    width: 100%;
    max-width: 500px;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.search-input::placeholder {
    color: var(--text-secondary);
}

/* Pagination */
.pagination-container {
    margin-top: 3rem;
    text-align: center;
}

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

.pagination-btn {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pagination-current {
    padding: 0.75rem 1rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    background: var(--primary-color);
    color: var(--text-primary);
    font-weight: 600;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination-dots {
    padding: 0.75rem 0.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .search-input {
        max-width: 100%;
        font-size: 0.9rem;
    }
    
    .pagination {
        gap: 0.25rem;
    }
    
    .pagination-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        min-width: 40px;
    }
    
    .pagination-current {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        min-width: 40px;
    }
}

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

@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
    opacity: 0.8;
}

@media (max-width: 480px) {
    .modal-content {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .order-details {
        margin-bottom: 1rem;
    }

    .detail-item {
        flex-direction: column;
        gap: 0.25rem;
    }
}