* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #5d5dff;
    --bg-black: #080808;
    --card-dark: #121212;
    --glass-blur: 3px;   
    --glass-opacity: 0.3;
    --bg-fix: fixed;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { overflow: hidden; height: 100%; }

body {
    background-color: #080808 !important; 
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/background1.webp');
    background-attachment: var(--bg-fix) !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    font-family: 'Iskoola Pota', 'Segoe UI', sans-serif;
    width: 100% !important;
    position: fixed; 
    top: 0; left: 0; right: 0; bottom: 0;
    height: 100%;
    overflow: hidden;
}

.scroll-wrapper {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: none !important;
    background: transparent !important; 
    min-height: 100.1dvh; 
    padding-bottom: 50px !important;
} 

html {
    overflow: hidden;
    height: 100%;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 20px !important;
    min-height: 70px !important;
    width: 100%;

    background: rgba(0, 0, 0, var(--glass-opacity)) !important; 
    backdrop-filter: blur(var(--glass-blur)) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur)) !important;
    
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: backdrop-filter 0.3s ease;
}

.header-left {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: transparent !important;
}

.header-left i {
    font-size: 30px !important; 
    cursor: pointer !important;
    color: #ffffff !important;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5) !important;
}

.header-left h1 {
    color: #ffffff !important;
    font-size: 26px !important; 
    font-weight: 700 !important;
    margin: 0 !important;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.7) !important;
}

.header-left h1 span {
    color: #007bff !important;
    font-size: 26px !important;
    font-weight: 700 !important;
}

.header-right img {
    height: 55px !important; 
    width: auto !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 600px) {
    .header-left h1, .header-left h1 span {
        font-size: 19px !important;
    }
    .header-left i {
        font-size: 25px !important;
    }
    header {
        padding: 5px 15px !important;
        min-height: 60px !important;
    }
}

.logo span { color: var(--primary); }
    .logo {
    font-family: 'Poppins', sans-serif;
    font-size: 28px; 
    font-weight: 800; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo .part1 {
    color: #1b06fd;
}

.logo .part2 {
    color: #fcfcfd;
}

.logo .part3 {
    color: #1b06fd; 
}
.round-logo {
    width: 80px; 
    height: 80px;
    border-radius: 50%;
    
    object-fit: contain; 
    
    image-rendering: -webkit-optimize-contrast;
    image-rendering: smooth;
    
    backface-visibility: hidden;
    transform: translateZ(0); 
    -webkit-font-smoothing: subpixel-antialiased;

    background-color: #ffffff;
    padding: 4px; 
    border: 1px solid #ddd;
}

.custom-slogan {
    font-weight: 900 !important;  
    font-size: 1.1rem !important; 
    color: #ffffff !important;    
    text-align: center;
    letter-spacing: 2px;          
    text-transform: uppercase;     
    text-shadow: none !important; 
    opacity: 0.9;                 
    font-family: 'Arial Black', sans-serif;
}
@media screen and (max-width: 768px) {
    .custom-slogan {
        margin-top: 25px !important; 
    }

}

.badge {
    display: inline-block !important;
    background: rgba(30, 0, 255, 0.25) !important; 
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 800 !important; 
    padding: 4px 12px !important;
    border-radius: 6px !important;
    border: 1px solid rgba(93, 93, 255, 0.6) !important;
    margin-bottom: 12px !important;
    flex-shrink: 0 !important;
    text-transform: uppercase;
}
::-webkit-scrollbar {
    display: none !important;
}


html {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

body {
    overflow-x: hidden !important; 
    width: 100% !important;
    -webkit-overflow-scrolling: touch !important;
}

.product-grid {
    display: grid !important;
    
    grid-template-columns: repeat(4, 1fr) !important; 
    
    grid-auto-rows: min-content !important; 
    
    gap: 20px !important;
    padding: 20px !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    
    overflow: visible !important; 
}
.product-card {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important; 
    text-align: center !important;
    height: 100% !important; 
    box-sizing: border-box !important;
    position: relative !important;
    overflow: hidden !important;
}
.product-card img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    margin-bottom: 10px !important;
    flex-shrink: 0 !important;
    align-self: center !important; 
    aspect-ratio: 1 / 1 !important;
}

.product-card h3 {
    font-size: 14px !important;
    color: #fff !important;
    margin: 5px 0 10px 0 !important;
    font-weight: 600 !important;
    min-height: 2.8em !important; 
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
}
.product-card p {
    font-size: 17px !important;
    font-weight: bold !important;
    color: #acacc4 !important;
    margin-top: auto !important; 
    margin-bottom: 15px !important;
    align-self: center !important;
}

.product-card .view-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: stretch !important; 
    width: auto !important;
    height: 40px !important;
    background: #5d5dff !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 10px !important;
    font-weight: bold !important;
    font-size: 13px !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}

.load-more-container {
    grid-column: 1 / -1 !important;
    display: flex !important;
    justify-content: center !important;
    align-self: start !important; 
    margin-top: 20px !important;
    padding: 10px 0 !important;
    width: 100% !important;
}

.load-more-btn {
    width: 200px !important;
    height: 45px !important;
    background: #222 !important;
    color: white !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    border: 1px solid #444 !important;
}
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: auto !important; 
        gap: 12px !important;
        padding: 10px !important;
        overflow-x: hidden !important;
    }

    .product-card {
        padding: 12px 10px !important;
        align-items: stretch !important; 
    }

    .product-card img {
    display: block !important;
    width: 100% !important;
    height: 120px !important;     
    min-height: 120px !important; 
    max-height: 120px !important; 
    aspect-ratio: 1 / 1 !important;
    object-fit: contain !important; 
    margin: 0 auto !important;   
    background-color: #f0f0f0 !important; 
}
}


.bottom-nav { position: fixed; bottom: 0; width: 100%; background: #000; display: flex; justify-content: space-around; padding: 12px 0; border-top: 1px solid #222; z-index: 10001; }
.bottom-nav a { color: #888; text-decoration: none; font-size: 11px; text-align: center; }
.bottom-nav a.active { color: var(--primary); }

.whatsapp-float { 
    position: fixed; 
    bottom: 90px; 
    right: 20px; 
    background: #25d366; 
    color: white; 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 30px; 
    z-index: 1000;
    text-decoration: none !important;
    transition: 0.3s ease-in-out;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.whatsapp-float:hover {
    transform: scale(1.1); 
    color: white;
    background-color: #20ba5a; 
}

.facebook-float {
    position: fixed;
    bottom: 160px; 
    right: 20px;
    background: #1877F2; 
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.facebook-float:hover {
    transform: scale(1.1);
    color: white;
}
.tiktok-float {
    position: fixed;
    bottom: 230px;
    right: 20px;
    background: #010101; 
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    z-index: 1000;
    text-decoration: none !important;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
    border: 1px solid #fc0000;
}

.tiktok-float:hover {
    transform: scale(1.1);
    background: #fe2c55; 
    color: white;
}
  
    .category-card .view-btn {
    display: inline-block;
    background-color: #5d5dff !important; 
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    border: none;
    transition: 0.3s;
}

.category-page .view-btn:hover {
    background-color: white;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(93, 93, 255, 0.4);
}

.tab {
    cursor: pointer;
    padding: 8px 15px;
    color: #888;
    font-weight: bold;
    transition: 0.3s;
}

.tab.active {
    color: white;
    border-bottom: 2px solid #007bff; 
}
main p {
    margin-bottom: 40px; 
    color: #ccc;       
}
main {
    text-align: center;
    padding: 20px;
}

main h1 {
    margin-top: 30px;
    font-size: 28px;
    color: white;
}.map-section {
    padding: 40px 0;
    background-color: #080808; 
}

iframe {
    width: 100%;      
    max-width: 600px; 
    height: 350px;     
    display: block;
    margin: 0 auto;   
    border-radius: 10px; 

}
.about-container {
    padding: 40px 20px;
    color: white;
    text-align: left;
}

.about-container h1 {
    font-size: 32px;
    color: #5d5dff; 
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.about-text p {
    line-height: 1.8;
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
}

.about-text h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: white;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #eee;
}

.about-text ul li i {
    color: #5d5dff;
}
.about-page-content {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto; 
    color: #eee;
}

.about-page-content h2 {
    color: #5d5dff;
    margin-bottom: 25px;
}

.about-page-content ul {
    list-style: none;
    padding: 0;
}

.about-page-content li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-page-content li i {
    color: #5d5dff;
    font-size: 18px;
}

.login-page {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 100vh !important;
    width: 100% !important;
}
.login-container {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px !important;
}

.login-box {
  background: rgba(242, 242, 245, var(--glass-opacity)) !important;
    backdrop-filter: blur(var(--glass-blur)) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur)) !important;
    padding: 40px 30px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    width: 100% !important;
    max-width: 380px !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.login-box h2 {
    color: rgb(255, 255, 255) !important;
    font-size: 28px !important;
    margin-bottom: 10px !important;
}

.login-box h2 span {
    color: #2e2ed0 !important; 
}

.input-group {
    display: flex !important;
    align-items: center !important; 
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    height: 55px !important;
    padding: 0 15px !important;
    border-radius: 10px !important;
    margin-bottom: 15px !important;
}

.input-group i {
    color: white !important;
    min-width: 30px !important;
    font-size: 18px !important;
    display: flex !important;
    justify-content: center !important;
}

.input-group input {
    flex: 1 !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: white !important;
    height: 100% !important;
    font-size: 16px !important;
    padding-left: 10px !important;
    
}.input-group .fa-eye, 
.input-group .fa-eye-slash {
    margin-left: auto !important;
    cursor: pointer !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}

.login-btn {
    background: #2e2ed0 !important;
    color: white !important;
    width: 100% !important;
    padding: 14px !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: bold !important;
    font-size: 16px !important;
    cursor: pointer !important;
    margin-top: 10px !important;
    transition: 0.3s !important;
}

.login-btn:hover {
    background: #4a4aff !important;
    box-shadow: 0 5px 15px rgba(46, 46, 208, 0.4) !important;
}

.login-footer p, .back-home {
    color: #ccc !important;
    margin-top: 20px !important;
    display: block !important;
    text-decoration: none !important;
}

.login-footer a {
    color: #2e2ed0 !important;
    font-weight: bold !important;
    text-decoration: none !important;
}

.back-home {
    display: block;
    margin-top: 20px;
    color: #777;
    text-decoration: none;
    font-size: 14px;
}


.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
}.order-card {
   
    background: rgba(255, 255, 255, var(--glass-opacity)) !important; 
    backdrop-filter: blur(var(--glass-blur)) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur)) !important;
    
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.order-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}.main-title {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}
.main-title {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

.white-text {
    color: #ffffff;
}

.blue-text {
    color: #5d5dff;
    text-shadow: 0 0 10px rgba(93, 93, 255, 0.5);

}

.sidebar {
    height: 100vh;
    height: 100dvh !important; 
    min-height: -webkit-fill-available;
    
    width: 280px; 
    position: fixed;
    z-index: 10000 !important;
    top: 0;
    left: 0;

    background: rgba(255, 255, 255, 0.05) !important; 
    backdrop-filter: blur(25px) saturate(180%) contrast(100%) brightness(120%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) contrast(100%) brightness(120%) !important;

    border-right: 1px solid rgba(255, 255, 255, 0.1);
    
    transform: translateX(-100%); 
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), backdrop-filter 0.4s ease !important;
    
    visibility: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow-y: auto !important;
    padding-bottom: 60px !important;
    
    visibility: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    
    overflow-y: auto !important; 
    padding-bottom: 60px !important; 
}

.sidebar.open {
    transform: translateX(0);
    visibility: visible;
}

.sidebar-header {
    padding: 20px 15px 10px 15px;
    flex-shrink: 0;
}

.sidebar-header input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 8px;
    font-size: 16px;
}

.menu-tabs {
    display: flex !important;
    flex-direction: row !important;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.tab {
    flex: 1;
    text-align: center;
    color: #888;
    font-weight: bold;
    padding: 12px 0;
}

.tab.active {
    color: white !important;
    border-bottom: 2px solid #5d5dff !important;
}

.menu-items {
    flex-grow: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 50px;
}

.menu-items::-webkit-scrollbar {
    display: none;
}

.menu-items a {
    padding: 16px 25px;
    text-decoration: none;
    color: white;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 1rem;
    transition: 0.2s;
}

@media screen and (max-width: 480px) {
    .sidebar { width: 85%; } 
    .menu-items a { padding: 13px 25px !important; }
}

.menu-items a:hover {
    background: rgba(93, 93, 255, 0.15);
    padding-left: 30px !important;
}

.search-wrapper {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    padding: 15px 0 !important;
    position: relative !important;
}

.search-wrapper form {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
#mySearchInput {
    width: 85% !important; 
    box-sizing: border-box !important;
    padding: 12px 15px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    color: white !important;
    outline: none !important;
    font-size: 16px !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.search-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important; 
    width: 85% !important;
    background: rgba(26, 26, 26, 0.98) !important;
    border: 1px solid #333 !important;
    border-radius: 0 0 8px 8px !important;
    z-index: 9999 !important;
    max-height: 200px !important;
    overflow-y: auto !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5) !important;
    display: none;
}
.search-item {
    padding: 12px !important;
    color: #ddd !important;
    cursor: pointer !important;
    border-bottom: 1px solid #222 !important;
    font-size: 14px !important;
    text-align: left !important;
    transition: background 0.2s;
}

.search-item:hover {
    background: #00aaff !important;
    color: white !important;
}.closebtn {
    position: absolute !important;
    right: 12% !important;       
    top: 50% !important;          
    transform: translateY(-50%) !important; 
    font-size: 22px !important;
    color: rgba(255, 255, 255, 0.6) !important; 
    text-decoration: none !important;
    z-index: 10 !important;       
    line-height: 1 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}


.closebtn:hover {
    color: #ff4d4d !important;   
    transform: translateY(-50%) scale(1.2) !important; 
}

.load-more-btn {
    grid-column: 1 / -1 !important; 
    display: block !important;
    width: fit-content !important;
    
    margin: 80px auto 40px auto !important; 
    
    padding: 12px 40px;
    clear: both !important;
    position: relative !important; 
    z-index: 10 !important;
}
.category-card {
    position: relative !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    height: 300px !important; 
    background-size: 100% 100% !important; 
    background-position: center !important;
    background-repeat: no-repeat !important;
    
    margin-bottom: 25px !important;
    border: 1px solid rgba(255, 255, 255, 0.1); 
}.glass-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    backdrop-filter: blur(3px) !important; 
    -webkit-backdrop-filter: blur(3px) !important;
    
  
    background: rgba(0, 0, 0, var(--glass-opacity)) !important;
    
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px !important;
    border-radius: 20px !important;
    
    transition: backdrop-filter 0.4s ease, background 0.4s ease;
}

.glass-overlay h3 {
    font-size: 26px !important;
    font-weight: bold !important;
    color: white !important;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 1), 0px 0px 5px rgba(0, 0, 0, 0.8) !important;
    margin: 0 !important;
    text-align: center !important;
}

@media (max-width: 768px) {
    .category-card {
        height: 240px !important;
        background-size: 100% 100% !important;
    }
    
    .glass-overlay h3 {
        font-size: 22px !important;
    }
}

.container { 
    max-width: 1100px; 
    margin: auto; 
    padding: 20px; 
}

.back-btn { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    color: var(--text-muted); 
    text-decoration: none; 
    font-size: 14px; 
    margin-bottom: 20px; 
    transition: 0.3s; 
}
.back-btn:hover { color: var(--primary); }

.main-section { 
    display: grid; 
    grid-template-columns: 1fr 1.2fr; 
    gap: 40px; 
    margin-bottom: 40px; 
}

.image-gallery { width: 100%; }

.main-img-box { 
    background: #181818; 
    padding: 20px; 
    border-radius: 12px; 
    border: 1px solid #222;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 350px; 
    aspect-ratio: 1/1;
    margin: 0 auto;
}

.main-img-box img { 
    max-width: 100%; 
    max-height: 100%; 
    border-radius: 8px; 
    object-fit: contain; 
}

.thumbnail-container { 
    display: flex; 
    gap: 10px; 
    justify-content: center; 
    margin-top: 15px; 
}

.thumb { 
    width: 70px; 
    height: 70px; 
    border-radius: 8px; 
    cursor: pointer; 
    border: 2px solid transparent; 
    transition: 0.3s; 
    background: #181818; 
    object-fit: cover; 
}
.thumb.active { border-color: var(--primary); }

.price { 
    font-size: 32px; 
    color: var(--primary); 
    font-weight: bold; 
    margin-bottom: 20px; 
}

.wa-btn {
    
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    
    background: rgba(37, 211, 102, var(--glass-opacity));
    
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 18px;
    
    transition: 0.3s ease, backdrop-filter 0.4s ease;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 40px; 
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.wa-btn:hover {
    
    background: rgba(37, 211, 102, 1);
    transform: translateY(-3px);
}

#full-desc ul {
    list-style-type: disc !important; 
    margin-left: 20px !important;     
    margin-top: 15px !important;
    margin-bottom: 20px !important;
    padding: 0 !important;
}

#full-desc li {
    margin-bottom: 12px !important;   
    line-height: 1.6 !important;      
    font-size: 15px !important;       
    color: #ffffff !important;        
    list-style-position: outside !important;
}

#full-desc strong {
    display: inline-block !important;
    margin-bottom: 10px !important;
    margin-top: 10px !important;
    color: #ffffff !important;
    font-size: 17px !important;
}

.details-tabs { border-top: 1px solid #222; margin-top: 50px; padding-top: 30px; }

.tab-title {
    display: block;
    text-align: center;
    margin: 0 auto 25px;
    width: fit-content;
    font-size: 18px;
    color: var(--primary); 
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
}

.specs-table {
    width: 100%;
    max-width: 600px;
    margin: 20px auto !important; 
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
    color: #ffffff;
}

.spec-name {
    color: var(--text-muted) !important;
    font-weight: 500;
    width: 45%; 
    background: rgba(255, 255, 255, 0.02);
}

.specs-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #fff;
}

.specs-table tr:last-child td { border-bottom: none; }

@media (max-width: 768px) {
    .main-section { 
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; 
        gap: 20px !important;
    }

    .image-gallery, .product-brief { 
        width: 100% !important; 
        text-align: center !important; 
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .main-img-box { 
        width: 90% !important; 
        min-height: 250px !important; 
        margin: 0 auto !important; 
    }

    .wa-btn {
        display: flex !important;
        width: 90% !important; 
        margin: 20px auto !important; 
        padding: 15px 0 !important;
        justify-content: center !important;
    }

    .spec-name { width: 50% !important; }

   
    #full-desc {
        text-align: left !important;
        padding: 0 15px !important;
    }
}

body.ultra-mode { 
    --glass-blur: 4px;      
    --glass-opacity: 0.35; 
    --bg-fix: fixed; 
}

body.glass-mode { 
    --glass-blur: 2px;     
    --glass-opacity: 0.45; 
    --bg-fix: fixed; 
}

body.eco-mode { 
    --glass-blur: 0px;      
    --glass-opacity: 0.5;   
    --bg-fix: scroll; 
}

body.eco-mode * {
    transition: none !important; 
}

body {
    background-attachment: var(--bg-fix) !important;
}

header,  
.login-box, 
.glass-overlay, 
#mySearchInput, 
.product-card, 
.glass-box {
    backdrop-filter: blur(var(--glass-blur)) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur)) !important;

    transition: backdrop-filter 0.4s ease, background 0.4s ease;
}

.wa-btn {
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    background: rgba(37, 211, 102, var(--glass-opacity)) !important; 
    border: 1px solid rgba(255, 255, 255, 0.2);
}

