/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, 
        #FFE5B4 0%,
        #FFD4E5 25%,
        #D4F1F4 50%,
        #B4E7CE 75%,
        #FFE8CC 100%
    );
    background-attachment: fixed;
    color: #333;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

/* ===== COLOR PALETTE ===== */
:root {
    --yellow-primary: #FFD700;
    --yellow-light: #FFED4E;
    --yellow-dark: #FFC107;
    --orange-bright: #FF6B35;
    --white-cream: #FFF8E1;
    --text-dark: #2E2E2E;
    --text-gray: #555;
    --bg-light: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --input-bg: #FFE5B4;
    --placeholder-color: #888;
    --button-juicy: #FF9966;
    --icon-color: #888;
    --input-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 2000;
    transition: all 0.3s ease;
}

.lang-btn {
    background: var(--yellow-primary);
    color: var(--text-dark);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.lang-btn:hover {
    background: var(--yellow-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.lang-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 150px;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: var(--yellow-light);
    color: var(--text-dark);
    padding-left: 25px;
}

/* ===== HEADER STYLES ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #FFA726 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 1500;
    border-bottom: 3px solid var(--yellow-primary);
    box-shadow: var(--shadow-md);
    animation: slideDown 0.8s ease-out;
    max-height: 100px;
    display: flex;
    align-items: center;
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(3deg);
}

.brand-name {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.turan {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.sps {
    display: inline-flex;
}

.s-yellow {
    color: var(--yellow-primary);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.p-white {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ===== HERO SECTION WITH PARALLAX ===== */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

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

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.1s ease-out;
}

.layer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sky-layer { z-index: 1; }
.mountains-layer { z-index: 2; }
.trees-layer { z-index: 3; }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.1) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 215, 0, 0.1) 100%
    );
    z-index: 4;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    width: 90%;
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translate(-50%, -30%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 900;
    text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 300;
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.8);
}

/* ===== MAIN CONTENT STYLES ===== */
.main-content {
    position: relative;
    z-index: 10;
    background: transparent;
    padding-top: 2rem;
}

/* ===== BRAND BANNER SECTION ===== */
.brand-banner-section {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto 4rem;
    padding: 4rem 2rem 2rem;
}

.brand-banner-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    margin-bottom: 3rem;
}

.brand-banner-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.brand-banner-wrapper:hover .brand-banner-image {
    transform: scale(1.02);
}

.placeholder-banner {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--yellow-light), var(--orange-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.banner-text-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 2rem;
}

.banner-text {
    text-align: center;
    max-width: 900px;
    padding: 2.5rem 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.banner-text h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.banner-text p {
    font-size: 1.4rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===== PRODUCTS SHOWCASE SECTION ===== */
.products-showcase {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-title {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.showcase-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* ===== PROFESSIONAL PRODUCT GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.product-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.product-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 400px;
}

.product-image-container {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 255, 255, 0.1));
}

.product-image {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

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

.product-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-name {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.product-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.product-tag {
    padding: 0.6rem 1.2rem;
    background: var(--yellow-primary);
    color: var(--text-dark);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.product-tag:hover {
    background: var(--yellow-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Alternate layout for even products */
.product-item:nth-child(even) .product-layout {
    direction: rtl;
}

.product-item:nth-child(even) .product-image-container {
    direction: ltr;
}

.product-item:nth-child(even) .product-details {
    direction: ltr;
}

.product-item.no-image .product-layout {
    grid-template-columns: 1fr;
}

.product-item.no-image .product-details {
    padding: 3rem;
    text-align: center;
}

/* ===== NEW LARGE IMAGE-ONLY PRODUCT STYLES ===== */
.product-item.image-only .product-layout {
    grid-template-columns: 1fr;
    min-height: auto;
}

.product-item.image-only .product-image-container {
    padding: 1rem;
    background: none;
}

.product-item.image-only .product-image.large-image {
    max-height: 675px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 45px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.product-item.image-only:hover .product-image.large-image {
    transform: scale(1.05);
}

.product-item.image-only {
    overflow: hidden;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.about-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 800;
}

.about-content p {
    font-size: 1.3rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 6rem 2rem;
    background: #fff7f0;
    border-radius: 30px;
    margin: 4rem auto;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

/* Form elements */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    border-radius: 20px;
    border: 1px solid #ffcba4;
    background: #ffe6d6;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 140, 61, 0.5);
}

/* Button */
.send-btn {
    background: #ff8a3d;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: #ff9c5b;
}

/* ===== TOAST MESSAGE ===== */
.toast-message {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff8a3d;
    color: #ffffff;
    padding: 0.75rem 1.4rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(255, 138, 61, 0.45);
    opacity: 0;
    pointer-events: auto;
    transition: opacity 0.3s ease;
    z-index: 99999;
}

.toast-message.show {
    opacity: 1;
}

.contact-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.contact-content h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.contact-content > p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

/* UPDATED: Contact info styling for proper wrapping */
.contact-info p {
    position: relative;
    margin: 0 auto;
    padding: 1rem 1.5rem 1rem 3.5rem;
    background: var(--white-cream);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%;
    text-align: left;
    line-height: 1.6;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-info p:hover {
    background: var(--yellow-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-info p:first-child::before,
.contact-info p:last-child::before {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--icon-color);
}
.contact-info p:first-child::before { content: '\1F4DE'; }
.contact-info p:last-child::before { content: '\2709'; }

/* UPDATED: Email text styling */
.contact-info p.email-text {
    font-size: 1.2rem !important;
    min-height: auto !important;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-content form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
    background: none;
    padding: 0;
    box-shadow: none;
}

.contact-content form input,
.contact-content form textarea {
    position: relative;
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 3.5rem;
    background: var(--input-bg);
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    color: var(--text-dark);
    box-shadow: var(--input-shadow);
    transition: all 0.3s ease;
}

.contact-content form input:focus,
.contact-content form textarea:focus {
    outline: none;
    box-shadow: 0 4px 10px rgba(255, 153, 102, 0.3);
}

.contact-content form input::placeholder,
.contact-content form textarea::placeholder {
    color: var(--placeholder-color);
    font-size: 1rem;
}

.contact-content form input[name="name"]::before {
    content: '\1F464';
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--icon-color);
    z-index: 1;
}

.contact-content form input[name="email"]::before {
    content: '\2709';
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--icon-color);
    z-index: 1;
}

.contact-content form textarea {
    height: 180px;
    resize: none;
    padding-top: 1.5rem;
}

.contact-content form button {
    background: var(--button-juicy);
    color: white;
    border: none;
    padding: 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--input-shadow);
    text-transform: none;
    letter-spacing: 0;
}

.contact-content form button:hover {
    background: #FF8533;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 153, 102, 0.3);
}

.contact-content form button:active {
    transform: translateY(0);
    box-shadow: var(--input-shadow);
}

/* ===== FOOTER STYLES ===== */
.main-footer {
    background: linear-gradient(135deg, var(--orange-bright), var(--yellow-dark));
    padding: 4rem 2rem 2rem;
    color: white;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo .footer-brand {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-logo p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
}

.footer-link:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    opacity: 0.9;
    font-size: 1rem;
}

/* ===== SOCIAL MEDIA BUTTONS ===== */
.social-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    position: relative;
    background: var(--button-juicy);
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--input-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.social-btn:hover {
    background: #FF8533;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 153, 102, 0.3);
}

.social-btn:active {
    transform: translateY(0);
    box-shadow: var(--input-shadow);
}

/* =========================================
   ===== UPDATED RESPONSIVE DESIGN =======
   ========================================= */

/* Tablet & Smaller Laptops */
@media (max-width: 1024px) {
    .header-content {
        padding: 0 10px;
    }
    
    .main-nav {
        position: relative;
        left: auto;
        transform: none;
        margin-left: auto;
        gap: 1rem;
    }

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

    .hero-title { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1.6rem; }
    
    .product-layout {
        grid-template-columns: 1fr;
    }

    .product-item:nth-child(even) .product-layout { direction: ltr; }
    .product-item:nth-child(even) .product-image-container { direction: ltr; }
    .product-item:nth-child(even) .product-details { direction: ltr; }

    .product-item.image-only .product-image.large-image {
        max-height: 500px;
    }
}

/* Mobile & Small Tablets (768px and below) */
@media (max-width: 768px) {
    /* --- FIXED: Language button stays fixed on the right --- */
    .language-selector {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 2000;
        margin: 0;
    }

    .lang-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
        min-width: auto;
    }

    .lang-dropdown {
        top: 45px;
        right: 0;
    }

    /* --- HEADER ADAPTATION --- */
    .main-header {
        padding: 0.5rem 1rem;
        max-height: none;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        justify-content: center;
        padding: 0.5rem;
    }

    .logo-section {
        justify-content: center;
        width: 100%;
        gap: 0.5rem;
    }

    .logo {
        height: 40px;
    }

    .brand-name {
        font-size: 1.2rem;
    }
    
    /* Navigation + Language Selector Container */
    .nav-and-lang-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        flex-wrap: wrap;
        margin-top: 10px;
    }
    
    /* Nav in same row as language */
    .main-nav {
        position: relative;
        left: auto;
        transform: none;
        margin: 0;
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        flex: 1;
        min-width: 0;
    }

    /* Compact Nav Links */
    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
        background: rgba(255,255,255,0.15);
    }

    /* --- HERO & CONTENT --- */
    .hero-section {
        height: 60vh;
        margin-top: 0;
    }

    /* FIXED: Move hero text down on mobile */
    .hero-content {
        top: 60%;
    }

    .hero-title { 
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle { 
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .parallax-layer {
        transition: transform 0.2s ease-out;
    }

    .layer-image {
        object-fit: cover;
        min-height: 100%;
    }

    /* --- PRODUCTS --- */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-image {
        max-height: 250px;
        width: auto;
        max-width: 80%;
    }
    
    .product-image-container {
        padding: 1rem;
        min-height: auto;
    }

    .product-item.image-only .product-image.large-image {
        max-height: 300px;
    }

    .product-details {
        padding: 1.5rem;
        text-align: center;
    }
    
    .product-tags {
        justify-content: center;
    }

    /* --- UPDATED: Contact info adjustments for mobile --- */
    .contact-info p {
        font-size: 1.1rem;
        padding: 0.8rem 1.2rem 0.8rem 3rem;
        text-align: center;
    }
    
    .contact-info p.email-text {
        font-size: 1.1rem !important;
        padding: 0.8rem 1.2rem 0.8rem 3rem;
        white-space: normal;
    }
    
    .contact-info br {
        display: block;
    }

    /* --- BUTTONS IN A ROW --- */
    .social-buttons {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .social-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        min-width: auto;
        flex: 0 1 auto;
    }

    .contact-content form button {
        padding: 0.8rem;
        font-size: 1rem;
    }
}

/* Very Small Phones (480px and below) */
@media (max-width: 480px) {
    /* Hide brand name text on very small screens to keep Nav row intact */
    .brand-name {
        display: none; 
    }
    
    /* FIXED: Language button adjustment for very small screens */
    .language-selector {
        top: 10px;
        right: 10px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
    }
    
    /* FIXED: Hero text moved further down on very small screens */
    .hero-content {
        top: 65%;
    }
    
    .hero-section {
        margin-top: 0;
        height: 50vh;
    }

    .hero-title { 
        font-size: 1.8rem; 
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    /* Even smaller product images */
    .product-image {
        max-height: 200px;
    }
    
    /* UPDATED: Contact info adjustments for very small screens */
    .contact-info p {
        font-size: 1rem;
        padding: 0.7rem 1rem 0.7rem 2.5rem;
    }
    
    .contact-info p.email-text {
        font-size: 1rem !important;
        padding: 0.7rem 1rem 0.7rem 2.5rem;
    }
    
    /* Buttons in row - ensure they fit */
    .social-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}