/* --- LD WHOLESALE GLOBAL SYSTEM --- */

:root {
    --brand-red: #FF0000;
    --brand-black: #000000;
    --text-dark: #333333;
    --text-medium: #555555;
    --text-gray: #9ca3af;
    --bg-light: #fcfcfc;
    --bg-offwhite: #f9f9f9;
    --shadow-soft: 0 10px 25px rgba(0,0,0,0.05);
    --shadow-heavy: 0 10px 35px rgba(0,0,0,0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--brand-black);
    overflow-x: hidden;
    line-height: 1.5;
}

/* --- BRAND LOGO DESIGN (Anaglyph 3D Effect) --- */
.logo-3d-brand {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #fff;
    line-height: 0.8;
    font-size: 2.2rem;
    letter-spacing: -0.04em;
    display: inline-block;
    font-weight: 700;
    text-shadow: 
        1px 1px 0 #000, 2px 2px 0 #000, 3px 3px 0 #000, 4px 4px 0 #000, 
        5px 5px 0 #000, 6px 6px 0 #000, 7px 7px 0 #000;
    transform: scaleY(1.3);
    transform-origin: center left;
    text-decoration: none;
}

@media (max-width: 768px) {
    .logo-3d-brand { 
        font-size: 1.5rem; 
        text-shadow: 1px 1px 0 #000, 2px 2px 0 #000, 3px 3px 0 #000; 
    }
}

/* --- NAVIGATION & DROPDOWN MENU --- */

/* Desktop Dropdown (Matching image_c8ee0f.png) */
.nav-item-dropdown {
    position: relative;
}

.dropdown-content { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    background-color: #ffffff; 
    min-width: 200px; 
    box-shadow: var(--shadow-heavy); 
    padding: 0;
    z-index: 9999;
    border: 1px solid #e5e5e5;
}

.nav-item-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    padding: 14px 20px;
    display: block;
    font-size: 14px;
    text-transform: none; 
    color: var(--text-dark) !important;
    transition: all 0.2s;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0; 
    text-align: left;
    text-decoration: none;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    color: var(--brand-red) !important;
    background-color: #f9f9f9;
}

/* --- MOBILE NAV DRAWER (Matching image_1d7b5a93 Style) --- */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 85%;
    max-width: 350px;
    height: 100%;
    background-color: #ffffff;
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
}

.mobile-nav-drawer.active {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
    backdrop-filter: blur(2px);
}

.drawer-overlay.active {
    display: block;
}

.mobile-menu-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
}

.mobile-menu-item {
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.mobile-menu-item:hover, .mobile-menu-item.active {
    color: var(--brand-red);
    border-bottom-color: var(--brand-red);
}

/* Close Button for Drawer */
.close-drawer {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--brand-red);
    cursor: pointer;
}

/* --- COMPONENTS & CARDS --- */

.view-more-red {
    color: var(--brand-red);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 15px;
    border-bottom: 3px solid var(--brand-red);
    padding-bottom: 4px;
    display: inline-block;
    text-decoration: none;
}

.announcement-box {
    background-color: var(--brand-red);
    color: #000;
    padding: 2.5rem 1.5rem;
    text-align: center;
    max-width: 1100px;
    margin: 20px auto;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 10px 25px -5px rgba(255, 0, 0, 0.2);
}

.info-card {
    background-color: #ffffff;
    padding: 50px;
    box-shadow: var(--shadow-soft);
    border-radius: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .info-card { padding: 30px; }
}

.section-image-container {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.learn-btn {
    display: inline-block;
    background-color: var(--brand-red);
    color: white;
    padding: 14px 40px;
    font-weight: 800;
    text-transform: capitalize;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 30px;
    text-decoration: none;
    text-align: center;
    width: fit-content;
}

.product-card {
    background: white;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    height: 100%;
    transition: transform 0.3s ease;
}

.product-card:hover { transform: translateY(-5px); }

.sold-out-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    color: var(--brand-red);
    border: 1px solid var(--brand-red);
    padding: 3px 10px;
    font-weight: 800;
    font-size: 10px;
    text-transform: uppercase;
    z-index: 10;
}

/* --- FOOTER STYLING --- */
.footer-social-icon {
    width: 42px;
    height: 42px;
    background-color: white;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    transition: transform 0.2s;
    text-decoration: none;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
}

.footer-col-title {
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-link-list {
    list-style: none;
}

.footer-link-list li {
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-link-list li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link-list li a:hover {
    color: white;
}

.footer-payment-icon {
    height: 25px;
    background: white;
    padding: 2px;
    border-radius: 4px;
}

/* Helper Classes */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.main-nav-container { overflow: visible !important; }