/* ==========================================================================
   Hortum Sepetim - CSS Tasarım Sistemi (Premium Dark & Gold Theme)
   ========================================================================== */

:root {
    --bg-primary: #0a0a0c;
    --bg-secondary: #121216;
    --bg-tertiary: #1a1a22;
    --accent: #d4af37;
    --accent-hover: #f3e5ab;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;
    --glass-bg: rgba(18, 18, 22, 0.7);
    --glass-border: rgba(212, 175, 55, 0.15);
    --glass-shadow: rgba(0, 0, 0, 0.5);
    --border-radius: 12px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   ANIMATIONS & PARTICLES
   ========================================================================== */

@keyframes pulse-glow {
    0% { transform: scale(1); box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 0 35px rgba(212, 175, 55, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
}

@keyframes logo-3d {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes float-particle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -10px;
    background: radial-gradient(circle, rgba(212,175,55,1) 0%, rgba(212,175,55,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float-particle 12s linear infinite;
}

/* ==========================================================================
   LOADING SCREEN
   ========================================================================== */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

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

.loading-logo-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    perspective: 1000px;
}

.loading-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    animation: logo-3d 6s infinite linear, pulse-glow 3s infinite ease-in-out;
}

.loading-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.3) 0%, transparent 70%);
    filter: blur(10px);
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    margin: 20px auto;
    overflow: hidden;
}

.loading-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    transition: width 0.3s ease;
}

.loading-text {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding-top: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.header-top {
    background-color: #050507;
    padding: 8px 0;
    font-size: 12px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-contact-info i {
    color: var(--accent);
}

.header-contact-info .separator {
    color: var(--text-muted);
}

.main-nav {
    padding: 8px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.nav-logo img {
    height: 80px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--accent);
    transition: var(--transition-smooth);
}

.nav-search {
    flex: 1;
    max-width: 500px;
}

.nav-search form {
    display: flex;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 2px 5px 2px 20px;
    overflow: hidden;
}

.nav-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 14px;
    padding: 10px 0;
}

.nav-search button {
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    outline: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-search button:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cart {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(214, 175, 55, 0.1);
    border: 1px solid var(--accent);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--accent);
    position: relative;
}

.nav-cart:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.cart-badge {
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -5px;
    right: 5px;
    font-weight: bold;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Mega Menu Bar */
.mega-menu-bar {
    position: relative;
    margin-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 15px;
}

.mega-menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.mega-menu-list > li > a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.mega-menu-list > li > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}

.mega-menu-list > li:hover > a {
    color: var(--accent);
}

.mega-menu-list > li:hover > a::after {
    width: 100%;
}

.has-dropdown {
    position: static;
}

/* Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(15px);
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(214, 175, 55, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
    border-radius: 12px;
    box-sizing: border-box;
    padding: 35px 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.4s;
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.has-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.mega-dropdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
    z-index: -1;
}

.mega-dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    transition: var(--transition-smooth);
}

.mega-cat-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    border-bottom: 2px solid rgba(214, 175, 55, 0.15);
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.mega-cat-title:hover {
    color: var(--text-primary);
    border-bottom-color: var(--accent);
    padding-left: 5px;
}

.mega-subcats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-subcats a {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 4px 0;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.mega-subcats a::before {
    content: '→';
    margin-right: 6px;
    opacity: 0;
    transition: var(--transition-smooth);
    font-size: 12px;
}

.mega-subcats a:hover {
    color: var(--accent-hover);
    padding-left: 8px;
}

.mega-subcats a:hover::before {
    opacity: 1;
    color: var(--accent);
}

/* ==========================================================================
   MOBILE SIDEBAR
   ========================================================================== */

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-sidebar.active {
    visibility: visible;
}

.mobile-sidebar-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.mobile-sidebar-content {
    position: absolute;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--bg-secondary);
    border-left: 1px solid var(--glass-border);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: var(--transition-smooth);
}

.mobile-sidebar.active .mobile-sidebar-content {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-sidebar-header img {
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.mobile-close-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    flex: 1;
}

.mobile-nav-link {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-parent {
    cursor: pointer;
}

.mobile-submenu {
    display: none;
    padding-left: 20px;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.mobile-submenu a {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 5px 0;
}

.mobile-toggle {
    transition: var(--transition-smooth);
}

.mobile-toggle.active {
    transform: rotate(180deg);
}

.whatsapp-btn-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

@keyframes ambient-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 220px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #0a0a0c, #161204, #0a0a0c, #1f1803);
    background-size: 400% 400%;
    animation: ambient-glow 15s ease infinite;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 70% 30%, rgba(214, 175, 55, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../logo.jpeg') no-repeat center center;
    background-size: cover;
    opacity: 0.15;
    filter: blur(2px);
    mix-blend-mode: overlay;
    z-index: 0;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(214,175,55,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    transform: translateY(-3px);
}

/* ==========================================================================
   CATEGORIES GRID
   ========================================================================== */

.section-padding {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: var(--transition-smooth);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(214,175,55,0.05) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.category-card:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    transform: translateY(-5px) scale(1.02);
}

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

.category-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(214, 175, 55, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--accent);
    transition: var(--transition-smooth);
    transform: translateZ(30px);
}

.category-card:hover .category-icon-wrapper {
    background: var(--accent);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(214,175,55,0.4);
}

.category-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    transform: translateZ(20px);
}

.category-card p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 20px;
    transform: translateZ(10px);
}

.category-link {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transform: translateZ(15px);
}

.category-link i {
    transition: var(--transition-smooth);
}

.category-card:hover .category-link i {
    transform: translateX(5px);
}

/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.product-card:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    transform: translateY(-5px);
}

.product-img-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #14141a;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category {
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

.add-to-cart-btn {
    background: rgba(214,175,55,0.1);
    color: var(--accent);
    border: 1px solid var(--accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.add-to-cart-btn:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: scale(1.1);
}

/* ==========================================================================
   ABOUT & STATS SECTION
   ========================================================================== */

.about-section {
    background: var(--bg-secondary);
    position: relative;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.about-img {
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 15px 30px rgba(214,175,55,0.3);
}

.about-badge .years {
    font-size: 40px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-badge .label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: var(--border-radius);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 13px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
    background-color: var(--bg-secondary);
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.footer-wave {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    line-height: 0;
    color: var(--bg-secondary);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100%;
}

.footer-content {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    height: 80px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--accent);
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-about-text {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section ul a {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-section ul a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-contact i {
    color: var(--accent);
    margin-right: 8px;
}

.footer-bottom {
    background-color: #050507;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.03);
    font-size: 13px;
    color: var(--text-muted);
}

.footer-developer-credit {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-muted);
}
.footer-developer-credit span,
.footer-developer-credit a {
    color: #ff4d4d;
    font-weight: 600;
}
.footer-developer-credit a {
    text-decoration: underline;
}
.footer-developer-credit a:hover {
    color: #ff6b6b;
}

/* ==========================================================================
   FLOATING BUTTONS & UTILITIES
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37,211,102,0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--bg-secondary);
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--accent);
    color: var(--accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--accent);
    color: var(--bg-primary);
}

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */

.detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.detail-img-box {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-img-box img {
    border-radius: 8px;
    max-height: 500px;
    object-fit: contain;
}

.detail-info {
    display: flex;
    flex-direction: column;
}

.detail-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.detail-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 25px;
}

.detail-desc {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.detail-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.qty-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    background: rgba(255,255,255,0.05);
    color: var(--accent);
}

.qty-input input {
    width: 50px;
    height: 40px;
    text-align: center;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-weight: 600;
}

.detail-features {
    margin-top: 30px;
}

.detail-features h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.features-table {
    width: 100%;
    border-collapse: collapse;
}

.features-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.features-table td {
    padding: 12px 0;
    font-size: 14px;
}

.features-table td:first-child {
    font-weight: 600;
    color: var(--accent);
    width: 40%;
}

.features-table td:last-child {
    color: var(--text-secondary);
}

/* ==========================================================================
   CART PAGE
   ========================================================================== */

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 20px;
    gap: 20px;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    background: #14141a;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--accent);
    font-weight: 700;
}

.cart-item-qty {
    display: flex;
    align-items: center;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.cart-item-remove:hover {
    color: #e74c3c;
}

.cart-summary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px;
    height: fit-content;
}

.summary-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.checkout-btn {
    width: 100%;
    margin-top: 30px;
}

.empty-cart-msg {
    text-align: center;
    padding: 50px 0;
}

.empty-cart-msg i {
    font-size: 60px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ==========================================================================
   RESPONSIVENESS
   ========================================================================== */

@media (max-width: 991px) {
    .mega-menu-bar { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero-title { font-size: 44px; }
    .hero-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .hero-showcase { order: -1; margin-bottom: 20px; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .detail-grid { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .about-badge {
        right: 10px !important;
        bottom: 10px !important;
        padding: 12px 20px !important;
    }
    .about-badge .years {
        font-size: 22px !important;
    }
    .about-badge .label {
        font-size: 9px !important;
    }
}

@media (max-width: 575px) {
    .nav-search { display: none; }
    .hero-title { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .cart-item { flex-direction: column; text-align: center; }
    .qty-input { margin: 10px auto; }
}
