/* Desktop Design Tokens */
:root {
    --primary: #fb641b;
    --secondary: #2874f0;
    --bg-light: #f1f3f6;
    --text-main: #212121;
    --text-muted: #878787;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --gletra-page-max: 1320px;
    --gletra-page-gutter: 16px;
}

@media (min-width: 1200px) {
    :root {
        --gletra-page-gutter: 20px;
    }
}

/* Unified page width — header, home, footer align */
.gletra-page-inner {
    width: 100%;
    max-width: var(--gletra-page-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--gletra-page-gutter);
    padding-right: var(--gletra-page-gutter);
    box-sizing: border-box;
}

@media (min-width: 992px) {
    header .container,
    header .container-fluid.px-lg-5,
    footer .container,
    footer .gletra-footer .container {
        max-width: var(--gletra-page-max);
        padding-left: var(--gletra-page-gutter);
        padding-right: var(--gletra-page-gutter);
        box-sizing: border-box;
    }
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    margin: 0;
    overflow-x: clip;
}

html {
    overflow-x: clip;
}

/* Mega Menu Header */
.desktop-header {
    background: var(--secondary);
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--gletra-page-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 var(--gletra-page-gutter);
}

.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: var(--gletra-page-max);
    margin: 16px auto;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 20px;
    padding: 0 var(--gletra-page-gutter);
    box-sizing: border-box;
    width: 100%;
}

/* 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);
}

/* ── Desktop Shop Page ── */
.desktop-shop {
    grid-template-columns: 220px 1fr;
    max-width: 1300px;
    align-items: start;
}

.shop-sidebar {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    color: var(--text-main);
}

.shop-sidebar-block {
    padding: 0 0 8px;
    border-bottom: 1px solid #f0f0f0;
}

.shop-sidebar-block:last-of-type {
    border-bottom: none;
}

.shop-sidebar h3 {
    font-size: 11px;
    margin: 18px 16px 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.shop-sidebar-links {
    list-style: none;
    padding: 0 8px 12px;
    margin: 0;
}

.shop-sidebar-links li {
    margin-bottom: 2px;
}

.shop-sidebar-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.shop-sidebar-links a i {
    font-size: 12px;
    color: var(--secondary);
}

.shop-sidebar-links a:hover,
.shop-sidebar-links a.active {
    background: #eef5ff;
    color: var(--secondary);
    border-left-color: var(--secondary);
}

.shop-sidebar-links a.active {
    font-weight: 700;
}

.shop-sidebar-advice {
    margin: 12px;
    padding: 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, #eef5ff 0%, #f8fbff 100%);
    border: 1px solid #dbeafe;
}

.shop-sidebar-advice h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.shop-sidebar-advice h4 i {
    color: var(--primary);
}

.shop-sidebar-advice ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-sidebar-advice li {
    font-size: 11px;
    color: #555;
    line-height: 1.45;
    margin-bottom: 7px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.shop-sidebar-advice li i {
    color: #388e3c;
    font-size: 12px;
    margin-top: 1px;
    flex-shrink: 0;
}

.shop-main {
    min-width: 0;
}

.desktop-shop .shop-hero-swiper {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.desktop-shop .shop-hero-fallback {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
}

.desktop-shop .shop-hero-swiper-next,
.desktop-shop .shop-hero-swiper-prev {
    color: white;
    background: rgba(0, 0, 0, 0.25);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.desktop-shop .shop-hero-swiper-next::after,
.desktop-shop .shop-hero-swiper-prev::after {
    font-size: 16px !important;
}

.shop-products-panel {
    margin-bottom: 40px;
}

.shop-count-badge {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    background: #eef5ff;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.shop-active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.shop-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: #fff8e1;
    color: #f57f17;
    border: 1px solid #ffe082;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.shop-filter-chip:hover {
    background: #ffecb3;
    color: #e65100;
}

.shop-filter-chip i {
    font-size: 10px;
}

.shop-clear-filters {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    margin-left: 4px;
}

.shop-clear-filters:hover {
    text-decoration: underline;
    color: #1a5fd4;
}

.shop-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}

.shop-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.shop-empty i {
    font-size: 48px;
    color: #ccc;
    display: block;
    margin-bottom: 16px;
}

.shop-empty h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.shop-empty p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.shop-cat-strip-wrap .cat-strip-link.active .category-icon-shell {
    background: #eef5ff;
    box-shadow: 0 0 0 2px var(--secondary);
}

.shop-cat-strip-wrap .cat-strip-link.active span {
    color: var(--secondary);
    font-weight: 700;
}

.shop-pagination .pagination {
    margin-bottom: 0;
}

.shop-pagination .page-link {
    color: var(--secondary);
    border-color: #dbeafe;
}

.shop-pagination .page-item.active .page-link {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

.shop-pagination .page-link:hover {
    background: #eef5ff;
    color: var(--secondary);
}

/* 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 {
    display: block;
    background: white;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.product-card-desktop:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #dbeafe;
    color: inherit;
}

.pcd-image-wrap {
    position: relative;
    background: #fafafa;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}

.pcd-image-wrap img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.product-card-desktop:hover .pcd-image-wrap img {
    transform: scale(1.04);
}

.pcd-discount,
.pcd-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    color: white;
}

.pcd-discount {
    background: #e53935;
}

.pcd-badge {
    background: #388e3c;
}

.pcd-wishlist {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    color: #999;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.2s;
}

.product-card-desktop:hover .pcd-wishlist {
    opacity: 1;
}

.pcd-body .name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    min-height: 40px;
}

.pcd-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.product-card-desktop .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.pcd-mrp {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.pcd-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pcd-rating-badge {
    background: #388e3c;
    color: white;
    padding: 1px 6px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
}

.pcd-review-count {
    font-size: 12px;
    color: var(--text-muted);
}

/* 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,
.cat-strip-link:hover .category-icon-shell {
    background: #eef5ff;
    transform: scale(1.05);
}

.category-icon-shell {
    transition: all 0.2s ease;
}

/* Desktop Homepage Layout */
main.desktop-main.desktop-home {
    grid-template-columns: 1fr !important;
}

/* Desktop Homepage — Category Strip (cat-strip) */
.cat-strip-wrap {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
    padding: 14px 0;
    position: sticky;
    top: 56px;
    z-index: 900;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    width: 100%;
}

.cat-strip-wrap .gletra-page-inner {
    position: relative;
}

.cat-strip {
    width: 100%;
    margin: 0;
    padding: 0 28px;
    position: relative;
    box-sizing: border-box;
}

.cat-strip .swiper-slide {
    width: auto;
}

.cat-strip-item {
    width: 90px !important;
}

.cat-strip-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-main);
    padding: 4px 6px;
}

.cat-strip-link .category-icon-shell {
    width: 64px;
    height: 64px;
    margin: 0 auto 8px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cat-strip-link .category-icon-shell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-strip-link .category-icon-shell i {
    font-size: 26px;
    color: var(--secondary);
}

.cat-strip-link span {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    max-width: 80px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.cat-strip-prev,
.cat-strip-next {
    width: 28px;
    height: 28px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    color: var(--secondary) !important;
}

.cat-strip-prev::after,
.cat-strip-next::after {
    font-size: 14px !important;
}

.cat-strip-prev {
    left: 0;
}

.cat-strip-next {
    right: 0;
}

/* Desktop Homepage — Hero Swiper */
.desktop-home .hero-swiper {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-fallback {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
    padding: 0 24px;
    max-width: 600px;
    margin-right: auto;
}

.hero-slide-content h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-slide-content p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 24px;
}

.hero-cta {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hero-cta-light {
    background: white;
    color: #6366f1;
    border-radius: 50px;
}

.desktop-home .hero-swiper-next,
.desktop-home .hero-swiper-prev {
    color: white;
    background: rgba(0, 0, 0, 0.25);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.desktop-home .hero-swiper-next::after,
.desktop-home .hero-swiper-prev::after {
    font-size: 18px !important;
}

/* Trust Bar */
.home-trust-bar {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 28px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.home-trust-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    border-right: 1px solid #f0f0f0;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item i {
    font-size: 28px;
    color: var(--secondary);
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
}

.trust-item span {
    font-size: 11px;
    color: var(--text-muted);
}

/* Desktop Homepage — Section Blocks */
.home-section {
    background: var(--white);
    padding: 18px 16px;
    border-radius: 10px;
    margin-bottom: 28px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.home-section-alt {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

.home-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 14px;
}

.home-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-cat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eef5ff;
}

.home-section-badge {
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.home-section-badge.new {
    background: #e8f5e9;
    color: #2e7d32;
}

.home-section-badge.rated {
    background: #fff8e1;
    color: #f57f17;
}

.home-section-badge.featured {
    background: #fce4ec;
    color: #c2185b;
}

.home-section-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.home-section-header h2 small {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 13px;
    margin-left: 8px;
}

.home-section-cta {
    background: var(--secondary);
    color: white;
    padding: 7px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.home-section-cta:hover {
    color: white;
    background: #1a5fd4;
    transform: translateX(2px);
}

.home-section-cta.outline {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.home-section-cta.outline:hover {
    background: #eef5ff;
}

.home-products-grid {
    display: grid;
    gap: 14px;
}

.home-products-grid.cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

/* Category Product Swiper */
.category-products-swiper {
    padding: 4px 2px 8px;
    position: relative;
}

.category-product-slide {
    height: auto;
}

.category-products-swiper .cat-prod-next,
.category-products-swiper .cat-prod-prev,
.recently-viewed-swiper .rv-next,
.recently-viewed-swiper .rv-prev {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    color: var(--secondary) !important;
}

.category-products-swiper .cat-prod-next::after,
.category-products-swiper .cat-prod-prev::after,
.recently-viewed-swiper .rv-next::after,
.recently-viewed-swiper .rv-prev::after {
    font-size: 14px !important;
}

.home-category-section {
    scroll-margin-top: 140px;
}

/* Promo Cards */
.home-promo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.home-promo-card {
    padding: 24px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.home-promo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.home-promo-card.flash {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8db 100%);
    border: 1px solid #ffe0b2;
}

.home-promo-card.best {
    background: linear-gradient(135deg, #eef5ff 0%, #dbeafe 100%);
    border: 1px solid #bbdefb;
}

.home-promo-text h3 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 8px;
}

.home-promo-card.flash .home-promo-text h3 {
    color: var(--primary);
}

.home-promo-card.best .home-promo-text h3 {
    color: var(--secondary);
}

.home-promo-text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.5;
}

.home-promo-btn {
    display: inline-block;
    color: white;
    padding: 10px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: transform 0.2s;
}

.home-promo-btn:hover {
    color: white;
    transform: scale(1.03);
}

.flash-btn {
    background: var(--primary);
}

.best-btn {
    background: var(--secondary);
}

.home-promo-img {
    max-height: 110px;
    max-width: 140px;
    object-fit: contain;
}

.home-promo-icon {
    font-size: 72px;
    opacity: 0.15;
}

.home-promo-card.flash .home-promo-icon {
    color: var(--primary);
}

.home-promo-card.best .best-icon {
    color: var(--secondary);
}

/* Banner Swiper */
.home-banner-wrap {
    margin-bottom: 28px;
}

.banner-swiper-desktop {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.home-banner-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.recently-viewed-swiper {
    padding: 4px 2px;
}

.rv-slide {
    height: auto;
}

.home-pagination {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

@media (max-width: 1200px) {
    .home-products-grid.cols-5 {
        grid-template-columns: repeat(4, 1fr);
    }

    .home-trust-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: none;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-top: 1px solid #f0f0f0;
    }
}

@media (max-width: 900px) {
    .home-products-grid.cols-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-promo-row {
        grid-template-columns: 1fr;
    }

    .hero-slide-content h2 {
        font-size: 32px;
    }
}

/* 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;
    }
}