/*
Theme Name: Hakan Garden
Theme URI: https://hakangarden.com
Author: Hakan Garden
Description: Hakan Garden için özel olarak hazırlanmış, doğal ve organik ürünler temalı WordPress teması.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: hakan-garden
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: #fdfbf7;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Navigasyon */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    z-index: 1000;
    background: #1e2d25;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(212, 163, 115, 0.3);
    transition: background 0.3s ease;
    gap: 15px;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-container img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 2px solid #d4a373;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    object-fit: cover;
}

.logo-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #d4a373;
    text-transform: uppercase;
    border-left: 2px solid #d4a373;
    padding-left: 10px;
    white-space: nowrap;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links li {
    margin: 0;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 6px 10px;
    display: block;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: #d4a373;
}

/* Dropdown Menü Stilleri - DÜZELTİLMİŞ (kapanma sorunu çözüldü) */
.dropdown {
    position: relative;
}

.dropdown::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #1e2d25;
    min-width: 160px;
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 1px solid #d4a373;
    z-index: 1001;
    left: 0;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.dropdown-content li {
    margin: 0;
    list-style: none;
}

.dropdown-content a {
    display: block;
    padding: 10px 18px;
    color: #ffffff;
    font-size: 11px;
    text-transform: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background: rgba(212, 163, 115, 0.2);
    color: #d4a373;
    padding-left: 23px;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.25s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: clamp(0.9rem, 3vw, 1.3rem);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

/* HAKKIMIZDA BÖLÜMÜ */
.about-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8f5f0 0%, #fff 100%);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    min-width: 280px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.35);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-content {
    flex: 1;
    min-width: 280px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #344e41;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-content h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 4px;
    background: #d4a373;
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.1rem;
    color: #d4a373;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-text {
    color: #4a5c4e;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.about-text p {
    margin-bottom: 15px;
}

.about-btn {
    display: inline-block;
    background: #588157;
    color: #fff;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(88, 129, 87, 0.3);
}

.about-btn:hover {
    background: #3a5c3a;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(88, 129, 87, 0.4);
}

/* ÜRÜNLER BÖLÜMÜ */
.products-section {
    position: relative;
    padding: 80px 5%;
    background: linear-gradient(145deg, #fdfbf7 0%, #f5efe6 100%);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.products-bg-decoration {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,163,115,0.05) 0%, rgba(212,163,115,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.products-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.products-title {
    font-size: 2.5rem;
    color: #344e41;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #344e41 0%, #588157 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.products-subtitle {
    font-size: 1rem;
    color: #7a8f7c;
    font-style: italic;
    margin-bottom: 20px;
}

.title-decoration {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.title-decoration span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4a373;
}

.title-decoration span:nth-child(1) { width: 40px; border-radius: 4px; }
.title-decoration span:nth-child(2) { width: 12px; }
.title-decoration span:nth-child(3) { width: 12px; }

.products-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(135deg, #d4a373, #588157, #d4a373);
    -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;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f0ebe0, #e8e0d3);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212,163,115,0.3) 0%, rgba(212,163,115,0) 70%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover .image-glow {
    opacity: 1;
    animation: pulse 2s infinite;
}

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

.product-img {
    width: 70%;
    height: auto;
    object-fit: contain;
    transition: all 0.6s ease;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.15));
    position: relative;
    z-index: 2;
}

.product-card:hover .product-img {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.2));
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 78, 65, 0.7);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: pointer;
    z-index: 5;
}

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

.overlay-text {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 25px;
    border-radius: 50px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.product-card:hover .overlay-text {
    transform: translateY(0);
}

.product-info {
    padding: 25px 22px 32px;
    text-align: center;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4a373, #c28a5c);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.product-name {
    font-size: 1.5rem;
    color: #344e41;
    margin-bottom: 12px;
    font-weight: 700;
}

.product-description {
    color: #5a6e5c;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.product-features span {
    background: #f0ebe0;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    color: #588157;
    font-weight: 500;
}

.product-btn {
    display: inline-block;
    background: transparent;
    color: #d4a373;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 25px;
    border: 2px solid #d4a373;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-btn:hover {
    background: #d4a373;
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(212, 163, 115, 0.3);
}

/* GALERİ BÖLÜMÜ */
.gallery-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #fff 0%, #f8f5f0 100%);
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-title {
    font-size: 2.5rem;
    color: #344e41;
    margin-bottom: 15px;
    font-weight: 700;
}

.gallery-subtitle {
    font-size: 1rem;
    color: #7a8f7c;
    font-style: italic;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

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

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 78, 65, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 2.5rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 18px;
    border-radius: 50%;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

.gallery-button-container {
    text-align: center;
}

.gallery-view-all {
    background: linear-gradient(135deg, #d4a373, #c28a5c);
    color: #fff;
    padding: 12px 35px;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.3);
    display: inline-block;
    text-decoration: none;
}

.gallery-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.4);
    background: linear-gradient(135deg, #c28a5c, #b87a4a);
}

/* LIGHTBOX MODAL */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    width: fit-content;
    margin: 0 auto;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
}

.close-lightbox:hover {
    color: #d4a373;
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: #fff;
    font-weight: bold;
    font-size: 30px;
    transition: all 0.3s ease;
    user-select: none;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #d4a373;
    color: #1e2d25;
    transform: translateY(-50%) scale(1.1);
}

/* FOOTER */
.main-footer {
    background: linear-gradient(135deg, #1e2d25 0%, #2a3d33 100%);
    color: #e0d6c6;
    padding: 60px 5% 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a373, #588157, #d4a373);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #d4a373;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #d4a373;
}

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

.footer-logo img {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    border: 2px solid #d4a373;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4a373, #f5e7d3);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.footer-about {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.85rem;
    opacity: 0.85;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    color: #d4a373;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #d4a373;
    color: #1e2d25;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e0d6c6;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    opacity: 0.85;
}

.footer-links a:hover {
    color: #d4a373;
    padding-left: 5px;
    opacity: 1;
}

.contact-info li {
    color: #e0d6c6;
    font-size: 0.85rem;
    opacity: 0.85;
    margin-bottom: 10px;
}

.newsletter {
    margin-top: 20px;
}

.newsletter h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
    min-width: 120px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.25);
}

.newsletter-form button {
    padding: 10px 20px;
    background: #d4a373;
    border: none;
    border-radius: 50px;
    color: #1e2d25;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.newsletter-form button:hover {
    background: #c28a5c;
    transform: translateY(-2px);
}

.newsletter-note {
    font-size: 0.65rem;
    margin-top: 10px;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-content p {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #e0d6c6;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
    opacity: 0.7;
}

.footer-bottom-links a:hover {
    color: #d4a373;
    opacity: 1;
}

/* Mobil Uyum */
@media (max-width: 1024px) {
    nav {
        padding: 10px 20px;
    }
    .logo-text {
        font-size: 0.75rem;
    }
    .logo-container img {
        height: 45px;
        width: 45px;
    }
    .nav-links a {
        font-size: 11px;
        padding: 5px 8px;
    }
    .about-section {
        padding: 60px 5%;
    }
    .about-content h2 {
        font-size: 2rem;
    }
    .products-section {
        padding: 60px 5%;
    }
    .products-title {
        font-size: 2rem;
    }
    .gallery-section {
        padding: 60px 5%;
    }
    .gallery-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 10px 15px;
        gap: 10px;
    }
    .logo-container {
        width: 100%;
        justify-content: center;
    }
    .logo-text {
        font-size: 0.8rem;
    }
    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px;
    }
    .nav-links a {
        font-size: 10px;
        padding: 5px 10px;
        background: rgba(255,255,255,0.08);
        border-radius: 20px;
    }
    .dropdown-content {
        position: fixed;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 200px;
        right: auto;
        margin-top: 5px;
    }
    .dropdown::after, .dropdown-content::before {
        display: none;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .btn {
        padding: 10px 25px;
        font-size: 12px;
    }
    .about-container {
        gap: 30px;
    }
    .about-content h2 {
        font-size: 1.8rem;
    }
    .products-title {
        font-size: 1.8rem;
    }
    .product-name {
        font-size: 1.3rem;
    }
    .gallery-title {
        font-size: 1.8rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    .footer-row {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form button {
        width: 100%;
    }
    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .close-lightbox {
        font-size: 30px;
        top: 15px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .nav-links a {
        font-size: 9px;
        padding: 4px 8px;
    }
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .hero-content p {
        font-size: 0.85rem;
    }
    .btn {
        padding: 8px 20px;
        font-size: 11px;
    }
    .about-content h2 {
        font-size: 1.5rem;
    }
    .products-title {
        font-size: 1.5rem;
    }
    .gallery-title {
        font-size: 1.5rem;
    }
    .product-card {
        min-width: 260px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}