/* Desktop Design Tokens */
:root {
    --primary: #fb641b;
    --secondary: #2874f0;
    --bg-light: #f1f3f6;
    --text-main: #212121;
    --text-muted: #878787;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    margin: 0;
}

/* Mega Menu Header */
.desktop-header {
    background: var(--secondary);
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
}

.desktop-search {
    flex: 1;
    background: white;
    border-radius: 2px;
    display: flex;
    overflow: hidden;
    height: 36px;
}

.desktop-search input {
    border: none;
    flex: 1;
    padding: 0 15px;
    outline: none;
}

.desktop-search button {
    background: white;
    border: none;
    padding: 0 15px;
    color: var(--secondary);
    cursor: pointer;
}

/* Main Layout */
.desktop-main {
    max-width: 1200px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 20px;
    padding: 0 20px;
}

/* Sidebar */
.sidebar {
    background: linear-gradient(180deg, #2d1b69 0%, #1a0e3d 100%);
    padding: 0;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    height: 100vh;
    border-radius: 0;
    overflow-y: auto;
    color: #ffffff;
}

.sidebar h3 {
    font-size: 11px;
    margin: 25px 20px 15px 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    padding: 0;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 2px;
}

.sidebar-links a {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.sidebar-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-left-color: #fb641b;
}

.sidebar-links a.active {
    background: rgba(251, 100, 27, 0.2);
    color: #ffffff;
    border-left-color: #fb641b;
    font-weight: 600;
}

/* Sidebar scrollbar */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Banner Slider */
.banner-slider {
    width: 100%;
    height: 300px;
    background: #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #888;
}

/* Product Grid Desktop */
.product-grid-desktop {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.product-card-desktop {
    background: white;
    padding: 10px;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.product-card-desktop:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card-desktop img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-card-desktop .name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.product-card-desktop .price {
    font-size: 18px;
    font-weight: 700;
}

/* Swiper Customization */
.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}

/* Category Section Hover */
.header-container a:hover .category-icon-shell {
    background: #eef5ff;
}

.category-icon-shell {
    transition: all 0.2s ease;
}

/* Premium Footer */
.gletra-footer {
    background: linear-gradient(180deg, #172337 0%, #101928 100%);
    color: #fff;
    padding-top: 60px;
    font-family: 'Inter', sans-serif;
}

.footer-heading {
    color: #878787;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 0.8px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    display: block;
    margin-bottom: 12px;
    transition: all 0.2s;
    opacity: 0.9;
}

.footer-link:hover {
    color: var(--primary);
    text-decoration: none;
    opacity: 1;
    transform: translateX(3px);
}

.footer-bottom {
    background: #172337;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

.payout-icon {
    font-size: 24px;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
    cursor: pointer;
}

.payout-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    transition: background 0.2s;
}

.footer-social-btn:hover {
    background: var(--secondary);
    color: white;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 991.98px) {
    .col-lg-2 {
        display: none !important;
    }
}