/* style.css - Minified Version */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', 'Segoe UI', Arial, sans-serif; transition: background-color 0.4s ease, color 0.4s ease; }
:root { --bg-color: #ffffff; --text-color: #1a1a1a; --header-bg: rgba(255, 255, 255, 0.85); --nav-link: #333; --card-bg: #ffffff; --secondary-green: #ff1900; --accent: #c0392b; --shadow: 0 10px 30px rgba(0,0,0,0.08); --theme-icon-color: #000000; --tiktok-filter: invert(0); --facebook-blue: #1877F2; --whatsapp-green: #25D366; }
body.dark-mode { --bg-color: #0d0d0d; --text-color: #f5f5f5; --header-bg: rgba(20, 20, 20, 0.85); --nav-link: #eee; --card-bg: #1a1a1a; --shadow: 0 10px 30px rgba(0,0,0,0.4); --theme-icon-color: #ffffff; --tiktok-filter: invert(1); }
.no-transition, .no-transition * { transition: none !important; }
body { background: var(--bg-color); color: var(--text-color); overflow-x: hidden; line-height: 1.6; -webkit-overflow-scrolling: touch; }
header { width: 100%; padding: 12px 0; background: var(--header-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(231, 76, 60, 0.2); }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; }
.logo img { width: 100px; display: block; transition: transform 0.3s; }
.logo img:hover { transform: scale(1.05); }
nav { display: flex; gap: 10px; align-items: center; }
.nav-link { text-decoration: none; color: var(--nav-link); font-size: 15px; font-weight: 600; padding: 10px 22px; border-radius: 50px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; border: none; outline: none; cursor: pointer; }
.nav-link:hover { background: rgba(231, 76, 60, 0.1); color: var(--secondary-green); }
.nav-link.active-nav { background: var(--secondary-green) !important; color: white !important; box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3); }
.header-utilities { display: flex; align-items: center; gap: 20px; }
.custom-lang-dropdown { position: relative; cursor: pointer; font-size: 14px; font-weight: 700; display: flex; align-items: center; }
.selected-lang { display: flex; align-items: center; gap: 8px; padding: 6px 12px; border: 1px solid rgba(231, 76, 60, 0.4); border-radius: 8px; background: var(--card-bg); min-width: 85px; }
.selected-lang img, .lang-option img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }
.lang-options { position: absolute; top: 110%; right: 0; background: var(--card-bg); border: 1px solid rgba(231, 76, 60, 0.2); border-radius: 8px; display: none; flex-direction: column; overflow: hidden; box-shadow: var(--shadow); min-width: 100px; z-index: 1100; }
.lang-options.show { display: flex; }
.lang-option { display: flex; align-items: center; gap: 10px; padding: 10px 15px; transition: 0.2s; color: var(--text-color); }
.lang-option:hover { background: rgba(231, 76, 60, 0.1); }
.social-links { display: flex; gap: 12px; align-items: center; }
.social-icon { display: flex; align-items: center; transition: 0.2s; }
.social-icon:hover { transform: translateY(-2px); }
.facebook-link { color: var(--facebook-blue) !important; }
.tiktok-link { color: #000 !important; filter: var(--tiktok-filter); }
.phone-info { display: flex; align-items: center; gap: 8px; background: var(--whatsapp-green); color: white; padding: 8px 18px; border-radius: 50px; font-weight: 700; font-size: 13px; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3); text-decoration: none; }
.theme-btn { background: none; border: none; cursor: pointer; color: var(--theme-icon-color); display: flex; align-items: center; justify-content: center; padding: 5px; }
.menu-btn { background: none; border: none; cursor: pointer; color: var(--secondary-green); display: flex; align-items: center; }
.page-wrapper { position: relative; width: 100%; min-height: 100vh; }
.page-content { width: 100%; position: absolute; top: 0; left: 0; visibility: hidden; opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease, transform 0.4s ease; pointer-events: none; }
.page-content.active { position: relative; visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
.hero { height: 75vh; display: flex; align-items: center; justify-content: center; text-align: center; color: white; background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('interior.png'); background-size: cover; background-position: center; }
.hero h1 { font-size: clamp(32px, 6vw, 64px); font-weight: 800; text-transform: uppercase; }
.hero p { font-size: 1.2rem; margin-top: 15px; opacity: 0.9; }
.hero button { margin-top: 35px; padding: 16px 45px; background: var(--secondary-green); color: white; border: none; border-radius: 50px; font-weight: 800; font-size: 18px; cursor: pointer; box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3); }
.shop-layout { display: grid; grid-template-columns: 340px 1fr; gap: 50px; padding: 60px 40px; max-width: 1600px; margin: 0 auto; align-items: start; }
.sidebar { background: var(--card-bg); padding: 35px; border-radius: 24px; box-shadow: var(--shadow); height: auto; position: sticky; top: 100px; z-index: 10; border: 1px solid rgba(231, 76, 60, 0.1); }
.sidebar-title { font-size: 1.5rem; font-weight: 800; border-bottom: 3px solid var(--secondary-green); padding-bottom: 15px; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.sidebar-menu { list-style: none; }
.sidebar-item { margin-bottom: 10px; }
.sidebar-link { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 14px 20px; 
    /* CHANGE THIS COLOR - This is the background */
    background: #f8f8f8; 
    color: var(--text-color);
    border-radius: 12px; 
    cursor: pointer; 
    font-weight: 700; 
    transition: 0.3s; 
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 5px;
}

/* Hover effect for the main categories */
.sidebar-link:hover { 
    background: rgba(231, 76, 60, 0.1); /* Slightly darker on hover */
    color: var(--secondary-green);
}

/* Dark Mode support so it doesn't look pink in the dark */
body.dark-mode .sidebar-link {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}
.sidebar-link svg { transition: transform 0.3s; }
.sidebar-link.open svg { transform: rotate(180deg); }
.submenu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding-left: 20px; }
.submenu.open { max-height: 1200px; margin-top: 5px; }
.sub-submenu { padding-left: 15px; border-left: 2px solid rgba(231, 76, 60, 0.15); margin: 5px 0; }
.filter-item { display: flex; align-items: center; gap: 12px; padding: 10px 15px; border-radius: 8px; cursor: pointer; transition: 0.2s; font-size: 14px; }
.filter-item:hover { background: rgba(231, 76, 60, 0.08); color: var(--secondary-green); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.product-card { background: var(--card-bg); border-radius: 20px; padding: 20px; text-align: center; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.03); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
body.dark-mode .product-card { border-color: rgba(255,255,255,0.05); }
.product-card:hover { transform: translateY(-10px); }
.product-img-placeholder { width: 100%; aspect-ratio: 1.2/1; background: #f5f5f5; border-radius: 15px; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
body.dark-mode .product-img-placeholder { background: #222; }
.product-img-placeholder img { width: 100%; height: 100%; object-fit: contain; }
.product-card h3 { font-size: 1.1rem; margin: 10px 0; }
.price { color: var(--secondary-green); font-weight: 800; font-size: 1.4rem; margin-top: 10px; }
.find-container { padding: 80px 20px; text-align: center; max-width: 1100px; margin: 0 auto; }
.section-header h2 { font-size: 3rem; font-weight: 800; }
.section-header p { opacity: 0.6; margin-bottom: 40px; }
.search-bar-row { background: var(--card-bg); padding: 30px; border-radius: 25px; box-shadow: var(--shadow); display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.search-bar-row select { padding: 15px 25px; font-size: 16px; border: 2px solid #eee; border-radius: 15px; min-width: 220px; background-color: var(--bg-color); color: var(--text-color); }
body.dark-mode .search-bar-row select { border-color: #333; }
#search-submit-btn { padding: 0 45px; background-color: var(--secondary-green); color: white; border: none; border-radius: 15px; font-size: 18px; font-weight: 800; cursor: pointer; transition: 0.3s; }
#search-submit-btn:hover { background-color: var(--accent); transform: scale(1.02); }
.mobile-only { display: none; }
.desktop-only { display: flex; }
.mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 998; display: none; opacity: 0; transition: opacity 0.3s ease; }
.mobile-overlay.active { display: block; opacity: 1; }
@media (max-width: 900px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: block; }
    .sidebar { position: relative !important; top: 0 !important; margin-bottom: 30px; width: 100%; }
    nav { position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background: var(--card-bg); flex-direction: column; padding: 40px 25px; z-index: 999; transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: -5px 0 15px rgba(0,0,0,0.1); display: flex; gap: 15px; }
    nav.active { right: 0; }
    .nav-container { padding: 0 20px; }
    .shop-layout { grid-template-columns: 1fr; padding: 20px; display: block; }
    .header-utilities { gap: 10px; }
    .custom-lang-dropdown { margin-right: 5px; }
    .selected-lang { padding: 5px 8px; font-size: 12px; min-width: 70px; }
    .mobile-nav-top { display: flex; flex-direction: column; gap: 20px; margin-bottom: 10px; width: 100%; }
    .mobile-socials { display: flex; gap: 20px; padding-left: 10px; }
    .mobile-socials a { padding: 0; background: none !important; }
    .mobile-call-btn { display: flex; align-items: center; gap: 12px; background: var(--whatsapp-green); color: white !important; padding: 12px 20px !important; border-radius: 12px; text-decoration: none; font-weight: 800; font-size: 16px; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
}
/* Add these to your style.css */
.hero { position: relative; height: 75vh; overflow: hidden; background: #000; }
.slider-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.slider-img { min-width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5); }
.hero-content { position: relative; z-index: 5; pointer-events: none; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.3); color: white; border: none; padding: 20px 15px; cursor: pointer; z-index: 10; font-size: 24px; transition: 0.3s; }
.slider-arrow:hover { background: var(--secondary-green); }
.prev { left: 20px; border-radius: 0 8px 8px 0; }
.next { right: 20px; border-radius: 8px 0 0 8px; }

/* Admin Gallery Styling */
.admin-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; margin-top: 20px; }
.gallery-item { position: relative; border-radius: 8px; overflow: hidden; height: 80px; border: 2px solid #ddd; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-del { position: absolute; top: 2px; right: 2px; background: red; color: white; border: none; font-size: 10px; cursor: pointer; border-radius: 3px; }

/* FOOTER STYLING */
.main-footer {
    background: var(--card-bg);
    border-top: 1px solid rgba(231, 76, 60, 0.2);
    padding: 60px 20px 20px;
    margin-top: 100px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.7;
    max-width: 300px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--secondary-green);
    text-transform: uppercase;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.footer-link:hover {
    color: var(--secondary-green);
}

.footer-text {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

.footer-social-btn.fb { background: var(--facebook-blue); }
.footer-social-btn.tt { background: #000; border: 1px solid rgba(255,255,255,0.1); }
body.dark-mode .footer-social-btn.tt { background: #fff; color: #000; }

.footer-social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 12px;
    opacity: 0.5;
}

body.dark-mode .footer-bottom {
    border-top-color: rgba(255,255,255,0.05);
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand, .footer-socials {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-socials { flex-direction: row; justify-content: center; }
}

/* --- LIGHTBOX MODAL --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    user-select: none;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lightbox-caption {
    color: white;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

/* Controls */
.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 35px;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.arrow-left { left: -80px; }
.arrow-right { right: -80px; }

@media (max-width: 850px) {
    .arrow-left { left: 10px; }
    .arrow-right { right: 10px; }
    .lightbox-arrow { width: 45px; height: 45px; background: rgba(0,0,0,0.5); }
}