@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette - Light Mode "Daylight" */
    --bg-body: #f9f9f9;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.9);
    --text-main: #1d1d1f;
    --text-muted: #6e6e73;

    --accent-primary: #007aff;
    --accent-secondary: #af52de;
    /* Adjusted for light mode */
    --accent-glow: rgba(0, 122, 255, 0.2);

    --border-subtle: rgba(0, 0, 0, 0.1);

    /* Spacing & Layout */
    --nav-height: 60px;
    --container-width: 1200px;

    /* Effects */
    --backdrop-blur: 20px;
    --transition-speed: 0.3s;
    --card-radius: 12px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: var(--bg-glass);
    backdrop-filter: blur(var(--backdrop-blur));
    -webkit-backdrop-filter: blur(var(--backdrop-blur));
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navlinks {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
    font-size: 14px;
    font-weight: 500;
}

.navlink {
    color: var(--text-muted);
    font-weight: 400;
}

.navlink:hover {
    color: var(--text-main);
}

.logo-text {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-main);
}

.responsivediv {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 20px;
}

.icon-circle-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
    transition: all var(--transition-speed);
}

.icon-circle-link:hover {
    background: var(--accent-primary);
    box-shadow: 0 0 15px var(--accent-glow);
    transform: translateY(-2px);
}

/* Main Hero */
.main-hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: var(--nav-height);
    /* Background image removed, handled by video + overlay */
    background: #000;
    text-align: center;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 60%);
    z-index: 1;
}

.main-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(41, 151, 255, 0.05) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #2997ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(41, 151, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 151, 255, 0.6);
}

/* Sections Common */
.section {
    padding: 80px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.testimonial-section {
    max-width: 1400px;
    /* Allow wider layout for testimonials */
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 18px;
}

/* Product Grid */
.popular-products-section {
    width: 100%;
    padding: 80px 5%;
    background: var(--bg-card);
}

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

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--card-radius);
    padding: 15px;
    /* Reduced from 20px */
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-image {
    width: 100%;
    height: 250px;
    /* Increased from 200px */
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}

.product-price {
    color: var(--accent-primary);
    font-weight: 500;
    margin-bottom: 15px;
}

/* Testimonials Slider */
.testimonial-slider-container {
    position: relative;
    max-width: 100%;
    /* Increased from 1100px */
    margin: 0 auto 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    gap: 60px;
    /* Added padding/space for arrows */
}

.testimonial-slider {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--card-radius);
    border: 1px solid var(--border-subtle);
    position: relative;
    /* Show 3 items: 100% width minus 2 gaps of 20px, divided by 3 */
    width: calc((100% - 40px) / 3);
    flex-shrink: 0;
    box-sizing: border-box;
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-secondary);
    display: Flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.author-info h4 {
    margin: 0;
    font-size: 16px;
    color: var(--text-main);
}

.author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.slider-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.slider-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

/* Featured Clients */
/* Featured Clients (Removed) */

/* Newsletter */
.newsletter-section {
    background: #f0f0f2;
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.newsletter-input {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    padding: 12px 20px;
    border-radius: 30px;
    color: var(--text-main);
    width: 300px;
    outline: none;
    transition: border-color var(--transition-speed);
}

.newsletter-input:focus {
    border-color: var(--accent-primary);
}

/* Footer */
.site-footer {
    background-color: #f5f5f7;
    padding: 60px 20px 20px;
    color: var(--text-muted);
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--text-main);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    font-size: 13px;
}

@media (max-width: 768px) {
    .navlinks {
        display: none;
    }

    /* Simplified mobile handling */
    .hero-title {
        font-size: 40px;
    }

    .newsletter-input {
        width: 100%;
    }

    .testimonial-slider-container {
        flex-direction: column;
    }

    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .prev-btn {
        left: 0;
    }

    .next-btn {
        right: 0;
    }

    .testimonial-card {
        width: 100%;
        /* Show 1 item on mobile */
    }
}

/* New Featured Products Style */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Exactly 3 in a row */
    gap: 20px;
    margin-top: 40px;
}

.featured-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    /* Remove default card styles */
    background: transparent;
    border: none;
    border-radius: 0;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .featured-img {
    transform: scale(1.05);
}

.featured-label {
    position: absolute;
    bottom: 20px;
    left: 0;
    background: #fff;
    color: #000;
    padding: 15px 50px 15px 25px;
    /* Create the angular shape */
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    min-width: 180px;
}

.featured-label h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .featured-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .featured-card {
        height: 300px;
    }
}



@media (max-width: 768px) {

    /* Fix for invisible navbar on mobile */
    .navlinks {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 0 20px;
    }

    /* Hide text links (list items that are not the logo) */
    .navlinks>li:not(.applelogo) {
        display: none;
    }

    /* Ensure logo is visible */
    .applelogo {
        display: block;
    }

    /* Ensure responsive icons/menu are visible */
    .responsivediv {
        display: flex;
        margin-left: auto;
    }

    /* Previously defined mobile styles */
    .hero-title {
        font-size: 40px;
    }

    .newsletter-input {
        width: 100%;
    }

    .testimonial-slider-container {
        flex-direction: column;
    }

    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .prev-btn {
        left: 0;
    }

    .next-btn {
        right: 0;
    }

    .testimonial-card {
        width: 100%;
        /* Show 1 item on mobile */
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 40px;
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav-link {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--accent-primary);
}

/* Products Page Layout */
.products-container {
    padding: 40px 20px 80px;
    /* Reduced top padding since we have a hero now */
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Shop Hero Banner */
.shop-hero {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* background: #000; */
}

.shop-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.shop-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.products-header {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.products-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 10px;
}

.products-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 800px;
}

/* Sidebar Filters (Top Bar Style) */
.filters-sidebar {
    position: sticky;
    top: 60px;
    /* Assuming nav height */
    z-index: 99;
    background: var(--bg-body);
    /* Ensure opacity over scrolling content */
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 15px 0 20px;
    /* Add top padding */
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 30px;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
    border: none;
    padding: 0;
}

.filter-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: var(--text-main);
    white-space: nowrap;
}

.filter-title span {
    display: none;
    /* Hide toggle icon */
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-option {
    margin: 0;
}

/* Filter Chips/Pills */
.filter-checkbox {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.filter-checkbox input {
    display: none;
    /* Hide default checkbox */
}

.filter-checkbox:hover {
    border-color: var(--text-main);
    color: var(--text-main);
}

/* Selected State */
.filter-checkbox:has(input:checked) {
    background: var(--text-main);
    color: #ffffff;
    border-color: var(--text-main);
}

/* Products Grid View */
.products-grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

.pro-card {
    background: transparent;
    transition: transform 0.3s ease;
}

.pro-card:hover .pro-img {
    transform: scale(1.05);
}

.pro-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #fff;
    overflow: hidden;
    border-radius: 4px;
    /* Slight radius */
    margin-bottom: 15px;
}

.pro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bestseller-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 5px;
}


/* Product Details Page */
.pd-container {
    padding: 100px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumbs {
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--text-main);
    font-weight: 500;
}

.breadcrumbs a:hover {
    color: var(--accent-primary);
}

.pd-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Gallery */
.pd-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pd-main-image {
    width: 100%;
    aspect-ratio: 1;
    background: #f9f9f9;
    /* Match body bg for seamless look */
    border-radius: 20px;
    overflow: hidden;
    /* border: 1px solid var(--border-subtle); Removed border for cleaner look */
}

.pd-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Contain to show full product clearly */
    transition: opacity 0.3s ease;
}

.pd-thumbnails {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.pd-thumb {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pd-thumb:hover,
.pd-thumb.active {
    opacity: 1;
    border-color: var(--text-main);
    transform: scale(1.05);
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    pointer-events: none;
    backdrop-filter: blur(4px);
}

/* Info */
.pd-info {
    padding-top: 0;
}

.pd-badges {
    margin-bottom: 10px;
}

.bestseller-pill {
    background: #fff4e5;
    color: #ff6b00;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
}

.pd-title {
    font-size: 48px;
    font-weight: 700;
    margin: 5px 0 5px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.pd-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0 0 30px;
}

.pd-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.stars {
    color: #ffb400;
    letter-spacing: 1px;
}

.reviews-count {
    color: var(--text-main);
    font-weight: 500;
}

/* Benefit List */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--text-main);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f5f5f7;
    border-radius: 50%;
    font-size: 16px;
    color: var(--text-main);
}

.pd-price-section {
    margin-bottom: 30px;
}

.pd-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-main);
}

.pd-description {
    /* Removed in favor of benefit list */
    display: none;
}

/* Options */
.pd-option-group {
    margin-bottom: 30px;
}

.pd-option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.color-swatches {
    display: flex;
    gap: 15px;
}

.swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    /* Selection border space */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.swatch.selected {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--text-main);
    transform: scale(1.1);
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-subtle);
    border-radius: 30px;
    width: fit-content;
    padding: 5px;
    background: #fff;
}

.qty-control button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
}

.qty-control button:hover {
    background: #f2f2f7;
}

.qty-control input {
    width: 50px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    /* Hide spinners */
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Actions */
.pd-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    padding: 16px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-subtle);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
}

/* Accordions */
.pd-accordions {
    border-top: 1px solid var(--border-subtle);
}

.pd-accordions details {
    border-bottom: 1px solid var(--border-subtle);
}

.pd-accordions summary {
    padding: 20px 0;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pd-accordions summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
}

.pd-accordions details[open] summary::after {
    content: '-';
}

.accordion-content {
    padding-bottom: 20px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .pd-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pd-main-image {
        aspect-ratio: 4/3;
    }
}

.quick-view-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pro-image-wrapper:hover .quick-view-btn {
    opacity: 1;
    transform: translateY(0);
}

.pro-info {
    padding: 10px 0;
}

.pro-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
}

.pro-price {
    font-size: 16px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .products-container {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
        padding: 15px 0;
        gap: 15px;
        /* Hide scrollbar for cleaner look */
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .filters-sidebar::-webkit-scrollbar {
        display: none;
    }

    .filter-group {
        flex-shrink: 0;
    }
}