:root {
    --bg-dark: #07090b;
    --card-bg: rgba(20, 24, 31, 0.85);
    --border-color: rgba(69, 81, 102, 0.3);
    
    --ege-blue: #0A84FF;
    --ege-blue-hover: #1e8dff;
    --ege-blue-glow: rgba(10, 132, 255, 0.3);
    
    --silver: #E0E4E8;
    --text-primary: #FFFFFF;
    --text-muted: #8E9BAE;
    
    --whatsapp-green: #25D366;
    --whatsapp-hover: #1EBE5D;
    
    --glass: rgba(10, 15, 20, 0.7);
    --glass-blur: blur(15px);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Scrollbar Styling */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--ege-blue); }

/* --- Top Bar --- */
.top-bar {
    background: #000;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid #1a1a1a;
}
.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left span { margin-right: 20px; }
.top-bar-right a {
    color: var(--text-muted); text-decoration: none; margin-left: 10px; transition: var(--transition);
}
.top-bar-right a:hover { color: var(--ege-blue); }
.admin-badge {
    color: var(--ege-blue) !important;
    font-weight: 500;
}

/* --- Main Navbar --- */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-logo { max-height: 120px; object-fit: contain; filter: drop-shadow(0px 0px 5px rgba(255,255,255,0.2)); }

.nav-links {
    display: flex; gap: 2.5rem;
}
.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}
.nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
    background: var(--ege-blue); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--ege-blue); }
.nav-links a:hover::after { width: 100%; }

/* --- Navigation Dropdown --- */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}
.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--glass);
    backdrop-filter: var(--glass-blur);
    min-width: 250px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.8);
    z-index: 1005;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-sizing: border-box;
    padding: 10px 0;
    opacity: 0;
    margin-top: 15px;
    transition: opacity 0.3s ease, margin-top 0.3s ease;
}
.nav-dropdown-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}
.nav-dropdown:hover .nav-dropdown-content {
    display: flex;
    flex-direction: column;
    opacity: 1;
    margin-top: 0;
}
.nav-dropdown-content a.drop-item {
    color: var(--text-primary);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: none;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: background-color 0.2s, padding-left 0.2s;
}
.nav-dropdown-content a.drop-item:last-child { border-bottom: none; }
.nav-dropdown-content a.drop-item::after { display: none; }
.nav-dropdown-content a.drop-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--ege-blue);
    padding-left: 25px;
}

.search-box { position: relative; }
.search-box input {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 35px 10px 15px;
    color: #fff;
    outline: none;
    width: 220px;
    transition: var(--transition);
}
.search-box input:focus { border-color: var(--ege-blue); background: rgba(0,0,0,0.5); }
.search-icon { position: absolute; right: 12px; top: 12px; color: var(--text-muted); }

/* --- Ndustrio Style Hero Banner --- */
.ndustrio-hero {
    position: relative;
    height: 600px;
    background: url('https://images.unsplash.com/photo-1586936893354-3687352b21c2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    margin-bottom: 3rem;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}
.hero-content {
    position: relative; z-index: 10;
    max-width: 800px;
}
.subtitle {
    color: var(--ege-blue); letter-spacing: 3px; margin-bottom: 10px; font-weight: 600;
}
.hero-content h1 {
    font-size: 4.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem;
    color: var(--text-primary);
}
.highlight { color: #fff; text-shadow: 0 0 15px rgba(255,255,255,0.4); }
.hero-content p {
    font-size: 1.3rem; color: var(--silver); margin-bottom: 2.5rem; max-width: 600px;
}

.hero-buttons { display: flex; gap: 1rem; }
.btn-primary, .btn-outline {
    padding: 14px 30px; border-radius: 6px; font-weight: 600; text-decoration: none;
    font-size: 1.1rem; transition: var(--transition); text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-primary { background: var(--ege-blue); color: #fff; border: 1px solid var(--ege-blue); }
.btn-primary:hover { background: var(--ege-blue-hover); box-shadow: 0 0 20px var(--ege-blue-glow); transform: translateY(-3px); }
.btn-outline { background: transparent; color: #fff; border: 1px solid var(--silver); }
.btn-outline:hover { background: #fff; color: #000; transform: translateY(-3px); }

/* --- Section Header (Corporate) --- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.5rem; font-weight: 700; color: var(--silver); }
.divider { width: 80px; height: 3px; background: var(--ege-blue); margin: 15px auto 0; }

/* --- Category Sub-brands Grid --- */
.category-showcase {
    max-width: 1400px; margin: 5rem auto; padding: 0 4rem;
}
.category-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.cat-card {
    height: 250px; background-size: cover; background-position: center; border-radius: 12px;
    position: relative; overflow: hidden; cursor: pointer; transition: transform 0.4s ease;
}
.cat-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, #000 0%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
    transition: background 0.4s;
}
.cat-card:hover { transform: scale(1.03); z-index: 2; box-shadow: var(--shadow-md); }
.cat-card:hover .cat-overlay { background: linear-gradient(to top, var(--ege-blue) 0%, transparent 100%); opacity: 0.9; }
.cat-overlay h3 { color: #fff; font-size: 1.3rem; margin-bottom: 5px; letter-spacing: 1px; }
.cat-overlay p { color: var(--silver); font-size: 0.9rem; transform: translateY(20px); opacity: 0; transition: 0.4s; }
.cat-card:hover p { transform: translateY(0); opacity: 1; }

/* --- Tabs --- */
.catalog-filters { display: flex; justify-content: center; margin-bottom: 3rem; }
.tabs {
    display: flex; gap: 0; border: 1px solid var(--border-color); border-radius: 8px;
    background: rgba(255,255,255,0.02); overflow: hidden;
}
.tab-btn {
    background: transparent; border: none; color: var(--text-muted); padding: 16px 40px;
    font-family: inherit; font-weight: 600; font-size: 1.1rem; cursor: pointer; transition: var(--transition);
}
.tab-btn:hover { color: #fff; }
.tab-btn.active { background: var(--ege-blue); color: #fff; }

/* --- Products --- */
.catalog-container { max-width: 1400px; margin: 0 auto; padding: 0 4rem 5rem; }
.product-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    display: none; animation: fadeIn 0.5s forwards;
}
@media (max-width: 1400px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1000px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .product-grid { grid-template-columns: 1fr; } }
.product-grid.active-grid { display: grid; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.card {
    background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px;
    overflow: hidden; display: flex; flex-direction: column; transition: var(--transition);
}
.card:hover { transform: translateY(-8px); border-color: var(--ege-blue); box-shadow: var(--shadow-md); }
.card-image-wrap { height: 260px; background: #000; position: relative; overflow: hidden; }
.card-image { width: 100%; height: 100%; object-fit: contain; transition: 0.5s; }
.card:hover .card-image { transform: scale(1.08); }
.condition-badge {
    position: absolute; top: 15px; left: 15px; padding: 5px 15px; border-radius: 4px;
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase; z-index: 2;
}
.badge-new { background: var(--ege-blue); color: #fff; }
.badge-used { background: #333; color: var(--silver); border: 1px solid #555; }

.card-content { padding: 1.8rem; display: flex; flex-direction: column; flex: 1; }
.card-category { font-size: 0.8rem; color: var(--ege-blue); letter-spacing: 1px; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; }
.card-title { font-size: 1.3rem; color: #fff; margin-bottom: 12px; font-weight: 600; line-height: 1.3; }
.card-desc { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 25px; flex: 1; }

.btn-whatsapp {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--whatsapp-green); color: #fff; padding: 14px; border-radius: 6px;
    text-decoration: none; font-weight: 600; transition: var(--transition);
}
.btn-whatsapp:hover { background: var(--whatsapp-hover); transform: translateY(-2px); }
.btn-whatsapp svg { width: 22px; height: 22px; fill: currentColor; }


/* --- Dark Theme Footer (V13) --- */
.light-footer { background: #080c11; color: var(--silver); font-family: 'Outfit', sans-serif; padding-top: 4rem; margin-top: 3rem; border-top: 1px solid var(--border-color); }
.lf-top { max-width: 1400px; margin: 0 auto; padding: 0 4rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; border-bottom: 1px solid var(--border-color); padding-bottom: 3rem; margin-bottom: 3rem; }
.lf-col { flex: 1; }
.lf-title { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.lf-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 15px; max-width: 350px; }
.ebulten-form { display: flex; align-items: stretch; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-color); max-width: 350px; background: rgba(0,0,0,0.5); height: 42px; }
.ebulten-form input { flex: 1; padding: 0 15px; border: none; outline: none; background: transparent; font-family: inherit; font-size: 0.9rem; color: #fff; }
.ebulten-form button { background: var(--ege-blue); color: #fff; font-weight: 700; border: none; padding: 0 25px; cursor: pointer; transition: 0.3s; border-radius: 20px; margin: 2px; }
.ebulten-form button:hover { background: #005bb5; }

.lf-social { text-align: center; }
.lf-social h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 0.5px; }
.social-icons { display: flex; gap: 15px; justify-content: center; }
.social-icons a { display: flex; align-items: center; justify-content: center; color: var(--silver); text-decoration: none; transition: 0.3s; padding: 5px; }
.social-icons a svg { width: 32px; height: 32px; stroke: currentColor; stroke-width: 1.5; fill: none; transition: 0.2s; }
.social-icons a:hover svg { stroke: var(--ege-blue); transform: translateY(-2px); }

.lf-contact { text-align: right; display: flex; flex-direction: column; align-items: flex-end; }
.lf-phone-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--ege-blue); color: #fff; padding: 12px 25px; border-radius: 8px; font-weight: 700; font-size: 1.2rem; text-decoration: none; margin-top: 5px; transition: 0.3s; box-shadow: 0 4px 15px rgba(10, 132, 255, 0.2); }
.lf-phone-btn:hover { background: #005bb5; transform: translateY(-2px); }

.lf-bottom { max-width: 1400px; margin: 0 auto; padding: 0 4rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding-bottom: 3rem; }
.lf-list { display: flex; flex-direction: column; gap: 10px; }
.lf-list h4 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; text-transform: capitalize; }
.lf-list a, .lf-list p { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: 0.2s; display: inline-flex; align-items: center; gap: 8px; line-height: 1.6; }
.lf-list a:hover { color: var(--ege-blue); padding-left: 5px; }
.lf-icon { width: 18px; height: 18px; flex-shrink: 0; stroke: currentColor; stroke-width: 2; fill: none; }

.lf-brand-slogan { margin-top: 2rem; padding-top: 2rem; border-top: 1px dotted var(--border-color); text-align: center; color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }
.lf-copyright { padding: 15px; text-align: center; font-size: 0.85rem; color: #888; background: #040608; border-top: 1px solid var(--border-color); }

@media(max-width: 1024px) { 
    .lf-top { flex-direction: column; align-items: center; text-align: center; gap: 3rem; }
    .lf-contact { align-items: center; text-align: center; }
    .lf-bottom { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 600px) { 
    .lf-bottom { grid-template-columns: 1fr; }
    .lf-top, .lf-bottom { padding-left: 2rem; padding-right: 2rem; }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content h1 { font-size: 3.5rem; }
}
@media (max-width: 768px) {
    .nav-container, .top-bar-container, .category-showcase, .catalog-container, .footer-grid { padding-left: 1.5rem; padding-right: 1.5rem; }
    .nav-links { display: none; } /* Mobile menu wrapper needed for complete design */
    .hero-content h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .top-bar { display: none; }
}

/* --- HİZMETLERİMİZ (SERVICES) --- */
.services-section {
    padding: 5rem 10%; background: var(--bg-panel); border-top: 1px solid var(--border-color);
}
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem;
}
.service-box {
    background: var(--bg-color); border: 1px solid var(--border-color); border-radius: 12px; padding: 2.5rem 2rem;
    text-align: center; transition: 0.3s;
}
.service-box:hover {
    transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(10, 132, 255, 0.1);
}
.service-box .s-icon {
    font-size: 3rem; width: 80px; height: 80px; margin: 0 auto 1.5rem; background: rgba(10, 132, 255, 0.1);
    color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.service-box h3 { color: #fff; margin-bottom: 1rem; font-size: 1.3rem; }
.service-box p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* --- MÜŞTERİ YORUMLARI (REVIEWS) --- */
.reviews-section {
    padding: 5rem 10%; background: var(--bg-color); border-top: 1px solid var(--border-color);
}
.reviews-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem;
}
.review-card {
    background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: 16px; padding: 2rem;
    position: relative; transition: 0.3s;
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.stars { color: #FFD700; font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { color: #e1e4e8; font-size: 1rem; line-height: 1.6; font-style: italic; margin-bottom: 2rem; }
.review-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--border-color); display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem; color: #fff; }
.author-info h4 { color: #fff; font-size: 1rem; margin-bottom: 3px; }
.author-info span { color: var(--text-muted); font-size: 0.85rem; }

/* --- HARİTA (MAP) --- */
.map-section {
    width: 100%; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);
    background: var(--bg-panel);
}

/* --- İÇ SAYFA HEADER BANNER (V8) --- */
.cat-banner {
    position: relative; width: 100%; height: 350px; 
    background-size: cover; background-position: center; 
    border-bottom: 2px solid var(--border-color);
}
#banner-ndustrio { background-image: url('https://images.unsplash.com/photo-1590846406792-0adc7f138e4a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80'); }
#banner-second-hand { background-image: url('https://images.unsplash.com/photo-1596541530962-4f8102a90093?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80'); }

.cat-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,132,255,0.9) 0%, rgba(0,0,0,0.4) 100%);
}
.cat-banner-content {
    position: relative; z-index: 2; display: flex; flex-direction: column;
    justify-content: center; height: 100%; padding: 0 10%;
}
.cat-banner-content h2 { color: #fff; font-size: 3rem; font-weight: 700; margin-bottom: 10px; text-shadow: 0 4px 15px rgba(0,0,0,0.5); }
.cat-banner-content p { color: rgba(255,255,255,0.9); font-size: 1.25rem; max-width: 600px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }

/* =========================================================
   V9 - E-COMMERCE MODULE (Product, Cart, Checkout) 
========================================================= */

/* --- GENERAL WRAPPERS --- */
.pd-container { width: 100%; min-height: 80vh; background: var(--bg); color: #fff; }
.checkout-wrapper { max-width: 1000px; margin: 4rem auto; padding: 2.5rem; background: var(--card-bg); color: #fff; border-radius: 12px; border: 1px solid var(--border-color); box-shadow: var(--shadow-lg); }

/* --- PRODUCT DETAIL HEADER --- */
.pd-header-banner { background: var(--card-bg); padding: 4rem 10%; border-bottom: 1px solid var(--border-color); position: relative; overflow: hidden; }
.pd-header-banner::after { content:''; position:absolute; top:0; left:0; width:4px; height:100%; background:var(--ege-blue); }
.pd-header-banner h1 { color: #fff; font-size: 2.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* --- PRODUCT DETAIL CONTENT --- */
.pd-grid-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1300px; margin: 0 auto; padding: 4rem 2rem; }
.pd-image-col { display: flex; align-items: flex-start; justify-content: center; background: #000; border-radius: 12px; padding: 2rem; border: 1px solid var(--border-color); }
.pd-image-col img { width: 100%; max-width: 500px; object-fit: contain; border-radius: 8px;}

.pd-info-col { display: flex; flex-direction: column; gap: 2rem; }
.pd-specs { display: flex; flex-direction: column; gap: 15px; background: var(--card-bg); padding: 1.5rem; border-radius: 12px; border: 1px solid var(--border-color); }
.spec-row { display: flex; font-size: 1.05rem; border-bottom: 1px solid var(--border-color); padding-bottom: 8px; }
.spec-row:last-child { border-bottom: none; padding-bottom: 0; }
.spec-label { color: var(--ege-blue); width: 180px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.spec-val { color: #fff; font-weight: 500; }

.pd-cart-actions { display: flex; gap: 15px; align-items: stretch; margin-top: 10px; }
.qty-selector { display: flex; align-items: center; border: 1px solid var(--border-color); font-size: 1.2rem; font-weight: 600; border-radius: 6px; overflow: hidden; background: #000; }
.qty-selector button { background: none; border: none; padding: 0 15px; font-size: 1.2rem; font-weight: 600; color: #fff; cursor: pointer; transition: 0.2s; }
.qty-selector button:hover { background: rgba(255,255,255,0.1); }
.qty-selector span { padding: 0 15px; border-left: 1px solid var(--border-color); border-right: 1px solid var(--border-color); color: #fff; }

.btn-add-cart-main { background: var(--ege-blue); color: #fff; border: 1px solid var(--ege-blue); padding: 0 25px; font-weight: 600; display: flex; align-items: center; gap: 10px; cursor: pointer; transition: 0.3s; border-radius: 6px; }
.btn-add-cart-main:hover { background: var(--ege-blue-hover); box-shadow: 0 0 15px var(--ege-blue-glow); }
.btn-wa-ask { background: transparent; border: 1px solid var(--border-color); padding: 15px 20px; display: flex; align-items: center; gap: 10px; font-weight: 600; color: #25D366; cursor: pointer; transition: 0.3s; margin-top:-10px; width: fit-content; border-radius: 6px; }
.btn-wa-ask:hover { background: rgba(37, 211, 102, 0.1); border-color: #25D366; }

.pd-desc-box h4 { color: var(--ege-blue); font-size: 1.2rem; margin-bottom: 15px; text-transform: uppercase; }
.pd-desc-box p { color: var(--silver); line-height: 1.6; }

.pd-social-share { margin-top: auto; padding-top: 2rem; border-top: 1px solid var(--border-color); }
.share-btn-box { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 6px; border: none; font-weight: 600; cursor: pointer; color: #fff; transition: 0.3s; font-size: 0.9rem; font-family: inherit; }
.share-btn-box.wa { background: #25D366; }
.share-btn-box.fb { background: #1877F2; }
.share-btn-box.x { background: #000; border: 1px solid #333; }
.share-btn-box:hover { opacity: 0.85; transform: translateY(-3px); box-shadow: 0 4px 10px rgba(0,0,0,0.3); }

/* --- CART & CHECKOUT SHARED --- */
.checkout-stepper { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 3rem; }
.step { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-weight: 600; }
.step.active { color: #fff; }
.step.done .circle.done { border-color: var(--ege-blue); color: var(--ege-blue); }
.circle { width: 45px; height: 45px; border-radius: 50%; border: 2px solid var(--border-color); display: flex; align-items: center; justify-content: center; color: var(--text-muted); background: #000; }
.step.active .circle { border-color: var(--ege-blue); background: var(--ege-blue); color: #fff; box-shadow: 0 0 15px var(--ege-blue-glow); }
.step-line { width: 100px; height: 2px; background: var(--border-color); }
.step-line.active { background: var(--ege-blue); }

/* CART TABLE */
.cart-table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; background: #000; border-radius: 8px; overflow: hidden; }
.cart-table th { padding: 15px; text-align: left; color: var(--ege-blue); border-bottom: 1px solid var(--border-color); text-transform: uppercase; font-size: 0.9rem; background: rgba(255,255,255,0.03); }
.cart-table td { padding: 15px; vertical-align: middle; border-bottom: 1px solid var(--border-color); color: #fff; }
.cart-item-img { width: 80px; height: 80px; object-fit: contain; background: #111; border-radius: 8px; padding: 5px; }
.cart-item-name { font-weight: 600; font-size: 1.1rem; }
.cart-qty-controls { display: flex; align-items: center; gap: 10px; font-weight: 700; background: var(--card-bg); border-radius: 6px; border: 1px solid var(--border-color); padding: 5px; }

/* CART SUMMARY */
.cart-summary { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; border-top: 1px solid var(--border-color); padding-top: 2rem; }
.cart-summary p { color: #fff; font-size: 1.1rem; }
.summary-note { font-size: 0.85rem !important; color: var(--text-muted) !important; }
.btn-checkout-next, .btn-checkout-submit { background: var(--ege-blue); color: #fff; border: 1px solid var(--ege-blue); padding: 15px 40px; font-weight: 600; letter-spacing: 0.5px; cursor: pointer; transition: 0.3s; margin-top: 1rem; border-radius: 6px; }
.btn-checkout-next:hover, .btn-checkout-submit:hover { background: var(--ege-blue-hover); box-shadow: 0 0 15px var(--ege-blue-glow); }
.btn-checkout-back { background: transparent; color: var(--silver); font-weight: 600; border: none; padding: 15px 40px; cursor: pointer; margin-top: 1rem; text-decoration: underline; }

/* CHECKOUT FORM */
.checkout-header-banner { background: #000; padding: 2.5rem; border-radius: 8px 8px 0 0; text-align: center; margin: -2.5rem -2.5rem 0 -2.5rem; border-bottom: 2px solid var(--ege-blue); }
.checkout-header-banner h2 { color: #fff; font-size: 2rem; font-weight: 600; letter-spacing: 1px; }

.offer-form { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.form-row-multi { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { color: var(--silver); font-size: 0.9rem; font-weight: 500; }
.form-field input, .form-field textarea { background: #000; border: 1px solid var(--border-color); padding: 12px; border-radius: 6px; font-family: inherit; font-size: 1rem; color: #fff; outline: none; transition: 0.3s; width: 100%; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--ege-blue); box-shadow: 0 0 5px var(--ege-blue-glow); }
.phone-prefix { background: #111; border: 1px solid var(--border-color); border-right: none; padding: 12px 15px; border-radius: 6px 0 0 6px; display: flex; align-items: center; color: var(--silver); font-weight: 500; }
.form-checkbox { display: flex; align-items: center; gap: 10px; margin-top: 1rem; }
.form-checkbox input { width: 18px; height: 18px; cursor: pointer; accent-color: var(--ege-blue); }
.form-checkbox label { color: var(--silver); font-size: 0.95rem; cursor: pointer; }

.offer-actions { display: flex; flex-direction: column; align-items: center; margin-top: 2rem; }

/* Toast Animations */
@keyframes slideUp {
    from { bottom: -50px; opacity: 0; }
    to { bottom: 30px; opacity: 1; }
}
@keyframes slideDown {
    from { bottom: 30px; opacity: 1; }
    to { bottom: -50px; opacity: 0; }
}

/* Cart Bump Animation */
@keyframes cartBump {
    0% { transform: scale(1); }
    50% { transform: scale(1.5) translateY(-2px); background: #ffc107; box-shadow: 0 0 10px #ffc107; }
    100% { transform: scale(1); }
}
.cart-bump { animation: cartBump 0.4s ease-out; }

/* Responsive E-Commerce */
@media (max-width: 900px) {
    .pd-grid-layout { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1rem; }
    .pd-image-col img { max-width: 350px; }
    .form-row-multi { grid-template-columns: 1fr; }
    .step span { display: none; } /* Hide labels on mobile stepper */
    .cart-table th, .cart-table td { font-size: 0.9rem; padding: 10px 5px; }
    .cart-item-img { width: 50px; height: 50px; }
    .checkout-wrapper { padding: 1.5rem; }
    .checkout-header-banner { margin: -1.5rem -1.5rem 0 -1.5rem; }
}

/* --- Modern Minified Cookie Banner --- */
.cookie-banner {
    position: fixed; bottom: 25px; left: 25px;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    padding: 20px 25px; width: calc(100% - 50px); max-width: 400px;
    z-index: 99999; box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: none; font-family: 'Outfit', sans-serif;
    border: 1px solid rgba(0,0,0,0.05); border-radius: 16px;
}
.cookie-banner h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: #111; display: flex; align-items: center; gap: 8px; }
.cookie-banner h3::before { content: '🍪'; font-size: 1.2rem; }
.cookie-banner p { font-size: 0.85rem; color: #555; line-height: 1.5; margin-bottom: 15px; }
.cookie-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.cb-btn {
    padding: 8px 16px; font-weight: 600; font-size: 0.85rem; font-family: inherit;
    border: none; border-radius: 8px; cursor: pointer; transition: 0.3s; flex: 1; text-align: center;
}
.cb-black { background: #111; color: #fff; }
.cb-black:hover { background: #ea7a28; transform: translateY(-1px); }
.cb-gray { background: #f0f0f0; color: #333; }
.cb-gray:hover { background: #e0e0e0; transform: translateY(-1px); }

@media (max-width: 600px) {
    .cookie-banner { bottom: 15px; left: 15px; width: calc(100% - 30px); padding: 15px; max-width: none; }
    .cookie-buttons { flex-direction: column; }
    .cb-btn { width: 100%; }
}
/* --- WhatsApp Floating Widget --- */
.wa-widget { position: fixed; bottom: 85px; left: 25px; z-index: 99998; font-family: 'Outfit', sans-serif; display: flex; flex-direction: column; align-items: flex-start; }
.wa-bubble {
    width: 60px; height: 60px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); cursor: pointer;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); animation: waPulse 2s infinite;
}
.wa-bubble:hover { transform: scale(1.1); }
.wa-bubble svg { width: 35px; height: 35px; fill: #fff; }

.wa-chat-box {
    position: absolute; bottom: 85px; left: 0; width: 330px;
    background: #f5f7f9; border-radius: 15px; overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3); display: none;
    transform-origin: bottom left; animation: waOpen 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    z-index: 100000; font-family: 'Outfit', sans-serif;
}
.wa-chat-header { 
    background: #25D366; color: #fff; padding: 25px 20px; 
    display: flex; flex-direction: column; gap: 8px;
    position: relative;
}
.wa-header-top { display: flex; align-items: center; gap: 12px; }
.wa-header-top svg { width: 35px; height: 35px; fill: #fff; }
.wa-header-top h3 { font-size: 1.25rem; font-weight: 700; margin: 0; color: #fff; }
.wa-chat-header p { 
    font-size: 0.9rem; line-height: 1.4; opacity: 0.95; margin: 0; 
    color: #fff; font-weight: 400;
}

.wa-chat-body { padding: 15px; background: #fff; }
.wa-status-text { font-size: 0.8rem; color: #888; text-align: center; margin-bottom: 15px; }

.wa-contact-card {
    background: #fff; border: 1px solid #eef2f5; border-radius: 12px;
    padding: 15px; display: flex; align-items: center; gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); position: relative;
    border-left: 3px solid #25D366; transition: 0.3s;
}
.wa-card-avatar {
    width: 45px; height: 45px; background: #eef2f5; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.wa-card-avatar svg { width: 24px; height: 24px; fill: #8E9BAE; }
.wa-card-avatar::after {
    content: ''; position: absolute; bottom: 2px; right: 2px;
    width: 10px; height: 10px; background: #25D366; border: 2px solid #fff;
    border-radius: 50%;
}
.wa-card-info { flex: 1; }
.wa-card-info h4 { font-size: 0.95rem; font-weight: 700; color: #111; margin: 0; }
.wa-card-info p { font-size: 0.8rem; color: #777; margin: 2px 0 0; }
.wa-card-icon { color: #25D366; }
.wa-card-icon svg { width: 22px; height: 22px; fill: currentColor; }

.wa-chat-footer { padding: 10px 15px 20px; background: #fff; }
.wa-btn-start {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #25D366; color: #fff; text-decoration: none;
    padding: 14px; border-radius: 30px; font-weight: 700; font-size: 1rem;
    transition: 0.3s; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.wa-btn-start:hover { background: #1EBE5D; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }


@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes waOpen {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}




/* Hamburger & Full-Screen Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    z-index: 10010;
    width: 44px;
    height: 44px;
    transition: 0.3s;
}

.hamburger .bar {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 10px;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    display: block;
}

/* Hamburger to X Animation */
.hamburger.toggle .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.toggle .bar:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.hamburger.toggle .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.fullscreen-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 15, 20, 0.92);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 10005;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fullscreen-nav.nav-active {
    display: flex !important;
    opacity: 1;
}

.mobile-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

.fullscreen-nav a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fullscreen-nav.nav-active a {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay for Menu Items */
.fullscreen-nav a:nth-child(2) { transition-delay: 0.1s; }
.fullscreen-nav a:nth-child(3) { transition-delay: 0.15s; }
.fullscreen-nav a:nth-child(4) { transition-delay: 0.2s; }
.fullscreen-nav a:nth-child(5) { transition-delay: 0.25s; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .nav-links:not(.fullscreen-nav) { display: none; }
    .hamburger { display: flex; }

    .nav-container { padding: 1rem 1.5rem; }
    .header-actions { display: none; } /* Actions moved to menu or tab bar */
    .search-box { display: none; }
    
    body { padding-bottom: 0; }
    
    .wa-widget { bottom: 20px; }
}

@media (max-width: 600px) {
    .wa-widget { left: 15px; bottom: 15px; }
    .wa-chat-box { width: calc(100vw - 30px); left: 0; bottom: 80px; }
}


