/* Iron K9 Gear - Custom Brand Styling */

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --accent-gray: #2a2a2a;
    --text-light: #e5e5e5;
    --text-gray: #999;
    --accent-gold: #d4af37;
    --accent-red: #8b0000;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--primary-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.nav-container.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--accent-gray);
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.lang-btn:hover {
    background: var(--accent-gray);
    border-color: var(--text-light);
}

.lang-btn.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-black);
}

/* Hero Section - Modern & Creative */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000000;
    overflow: hidden;
    isolation: isolate;
    padding-top: 100px;
    padding-bottom: 60px;
}

/* Animated Background Orbs */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.3) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Grid Pattern Overlay */
.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Floating Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

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

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
}

.particle:nth-child(6) {
    left: 20%;
    animation-delay: 10s;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 3rem 0 2rem;
    width: 100%;
}

/* Animated Logo */
.hero-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 3.5rem;
    margin-top: 1rem;
    animation: logo-float 3s ease-in-out infinite;
}

.hero-logo {
    height: 120px;
    width: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    transition: transform 0.3s ease;
}

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

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
    z-index: 1;
}

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

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Hero Title with Gradient */
.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.subtitle-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    animation: underline-expand 1.5s ease forwards 1s;
}

@keyframes underline-expand {
    to {
        width: 100%;
    }
}

/* Hero CTA Buttons */
.hero-cta-wrapper {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ffd700 100%);
    color: var(--primary-black);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-hero-primary .btn-arrow {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-gold);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-hero-secondary:hover::before {
    width: 100%;
}

.btn-hero-secondary:hover {
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 25px;
    position: relative;
    animation: mouse-scroll 2s infinite;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel-scroll 2s infinite;
}

@keyframes mouse-scroll {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes wheel-scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

.scroll-text {
    animation: fade-pulse 2s infinite;
}

@keyframes fade-pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-gold);
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--accent-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-black);
    transform: translateY(-2px);
}

/* Product Cards */
.product-card {
    background: var(--secondary-black);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-gold);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Image Gallery Carousel */
.gallery-carousel-container {
    position: relative;
    margin: 2rem 0;
    overflow: hidden;
    width: 100%;
}

.gallery-carousel-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1rem;
    will-change: transform;
}

.gallery-item {
    flex: 0 0 calc(20% - 0.8rem);
    min-width: calc(20% - 0.8rem);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 3/4;
    max-height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: var(--transition);
}

.gallery-nav-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
}

.gallery-nav-btn.prev {
    left: 20px;
}

.gallery-nav-btn.next {
    right: 20px;
}

.gallery-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-nav-btn:disabled:hover {
    background: rgba(0, 0, 0, 0.7);
    color: var(--accent-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.gallery-item:hover img {
    filter: brightness(0.85);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.8));
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--secondary-black);
    border: 1px solid var(--accent-gray);
    border-radius: 4px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

/* Color Swatches */
.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    position: relative;
}

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

.color-swatch.selected {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

/* Shipping Options */
.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.shipping-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-black);
    border: 1px solid var(--accent-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.shipping-option:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

.shipping-option input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.shipping-option input[type="radio"]:checked + .shipping-label {
    color: var(--accent-gold);
}

.shipping-label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    flex: 1;
}

.shipping-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.shipping-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
}

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

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Footer */
.footer {
    background: var(--secondary-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 5rem;
}

.footer .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.footer .grid {
    gap: 2rem;
}

.footer h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer ul {
    gap: 0.75rem;
}

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

/* Gallery Item Clickable */
.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.gallery-item:hover img {
    filter: brightness(0.8);
}

/* Lightbox - Enhanced */
.lightbox {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lightbox.active {
    display: flex !important;
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    max-width: 95%;
    max-height: 95vh;
    position: relative;
    animation: lightbox-zoom 0.3s ease;
    padding: 20px;
    z-index: 10000;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    margin: 0;
    text-align: center;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-prev::before {
    content: '‹';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.lightbox-next {
    right: 20px;
}

.lightbox-next::before {
    content: '›';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(212, 175, 55, 0.9);
    border-color: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-50%) scale(1.1);
}

@keyframes lightbox-zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(212, 175, 55, 0.9);
    border-color: var(--accent-gold);
    color: var(--primary-black);
    transform: rotate(90deg) scale(1.1);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-menu.active {
    display: block;
    max-height: 500px;
}

/* Responsive */
@media (max-width: 1024px) {
    /* Tablet optimizasyonu */
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .footer {
        padding: 3.5rem 1.25rem 2rem;
    }

    .footer .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .section {
        padding: 4rem 1.25rem;
    }

    .gallery-item {
        flex: 0 0 calc(25% - 0.75rem);
        min-width: calc(25% - 0.75rem);
        max-height: 180px;
    }
}

@media (max-width: 900px) {
    /* Tablet landscape ve küçük tablet */
    .footer .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Container padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Footer optimizasyonu - mobilde daha fazla padding */
    .footer {
        padding: 3rem 1rem 2rem;
        margin-top: 3rem;
    }

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

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

    .footer h4 {
        margin-bottom: 1.25rem;
        font-size: 1.125rem;
    }

    .footer ul {
        gap: 0.5rem;
    }

    .footer ul li {
        margin-bottom: 0.75rem;
        padding: 0.25rem 0;
    }

    .footer img {
        margin: 0 auto 1rem;
    }

    .footer p {
        padding: 0 0.5rem;
        line-height: 1.6;
    }

    /* Gallery */
    .gallery-item {
        flex: 0 0 calc(33.333% - 0.666rem);
        min-width: calc(33.333% - 0.666rem);
        max-height: 150px;
    }

    .gallery-item::after {
        font-size: 1.5rem;
    }

    /* Lightbox */
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .lightbox-prev, .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-content {
        max-width: 98%;
        max-height: 95vh;
        padding: 10px;
    }

    .gallery-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .gallery-nav-btn.prev {
        left: 10px;
    }

    .gallery-nav-btn.next {
        right: 10px;
    }

    /* Sections - mobilde daha fazla padding */
    .section {
        padding: 3rem 1rem;
    }

    .section-title {
        margin-bottom: 2rem;
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 100vh;
        padding: 120px 1rem 80px;
        align-items: flex-start;
        padding-top: 120px;
    }

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

    .hero-logo-wrapper {
        margin-bottom: 2.5rem;
        margin-top: 0.5rem;
    }

    .hero-logo {
        height: 80px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
        margin-bottom: 2.5rem;
        padding: 0 1rem;
        line-height: 1.5;
    }
    
    .hero-cta-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        padding: 0 1rem;
        margin-bottom: 3rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 1.125rem 2rem;
        font-size: 1rem;
        margin: 0;
    }

    .orb-1, .orb-2, .orb-3 {
        width: 300px;
        height: 300px;
    }

    /* Typography */
    h1 {
        font-size: 2.5rem;
        padding: 0 0.5rem;
    }
    
    h2 {
        font-size: 2rem;
        padding: 0 0.5rem;
    }

    h3 {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }

    /* Product Cards */
    .product-card {
        margin-bottom: 1.5rem;
    }

    .product-card .p-6 {
        padding: 1.25rem;
    }

    /* Forms */
    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.875rem 1rem;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    /* Navigation */
    .nav-container {
        padding: 0 1rem;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }

    /* Product pages */
    .product-hero {
        padding: 2rem 1rem;
    }

    .product-description {
        padding: 0 1rem;
    }

    .product-features {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra small devices - daha küçük ekranlar için */
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .footer {
        padding: 2.5rem 0.75rem 1.5rem;
    }

    .footer .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .footer .grid {
        gap: 2rem;
    }

    .section {
        padding: 2rem 0.75rem;
    }

    .hero-section {
        padding: 100px 0.75rem 60px;
    }

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

    .hero-logo-wrapper {
        margin-bottom: 2rem;
    }

    .hero-logo {
        height: 70px;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .hero-cta-wrapper {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

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

    .gallery-item {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}

