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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    /* keeps the parent text color */
    text-decoration: none !important;
}


/* Nav Start */
/* Navbar */



/* Navbar - always transparent */
.navbar-custom {
    background: #fff !important;
    backdrop-filter: none !important;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Add these properties for sticky behavior */
.navbar-custom.sticky {
    position: sticky !important;
    top: 0 !important;
    z-index: 1020 !important;
    width: 100% !important;
}

.navbar-brand img {
    height: 70px;
    width: 70px;
    object-fit: contain;
}

/* Remove underline globally */
.navbar-nav .nav-link,
.navbar-nav .submenu a {
    text-decoration: none !important;
}

/* Desktop Nav */
@media (min-width: 992px) {
    .navbar-nav .nav-link {
        color: #000 !important;
        font-weight: 500;
        margin: 0 8px;
        padding: 8px 12px !important;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        position: relative;
    }

    .navbar-nav .nav-link:hover {
        color: #ff7f00 !important;
        transform: translateY(-2px);
    }

    .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        background: #ff7f00;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }

    .navbar-icons {
        display: flex;
        gap: 1.25rem;
    }

    .navbar-icons a {
        color: black !important;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .navbar-icons a:hover {
        color: #ff7f00 !important;
        transform: scale(1.1);
    }

    /* Desktop submenu */
    .nav-item {
        position: relative;
    }

    .submenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        min-width: 220px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        list-style: none;
        padding: 0;
        margin: 0;
        z-index: 999;
    }

    .submenu .submenu {
        top: 0;
        left: 100%;
    }

    .submenu li a {
        display: block;
        padding: 10px 16px;
        font-size: 0.9rem;
        color: #333 !important;
    }

    .submenu li a:hover {
        background: #f8f9fa;
        color: #ff7f00 !important;
    }

    .nav-item:hover>.submenu,
    .submenu li:hover>.submenu {
        display: block;
    }
}

/* Mobile Nav */
.offcanvas-start {
    width: 300px !important;
    border-right: 1px solid #eee;
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-item {
        border-bottom: 1px solid #f1f1f1;
    }

    .navbar-nav .nav-link {
        padding: 1rem 1.5rem !important;
        color: #333 !important;
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.2s ease;
    }

    .navbar-nav .nav-link:hover {
        background: #f8f9fa;
        color: #ff7f00 !important;
    }

    .navbar-icons {
        padding: 1.25rem;
        display: flex;
        justify-content: center;
        gap: 1.25rem;
        border-top: 1px solid #f1f1f1;
    }

    .navbar-icons a {
        color: #333 !important;
        font-size: 1.1rem;
        transition: all 0.2s ease;
    }

    .navbar-icons a:hover {
        color: #ff7f00 !important;
        transform: scale(1.1);
    }

    /* Mobile submenu (accordion style) */
    .submenu {
        display: none;
        list-style: none;
        margin: 0;
        padding: 0 0 0 1.5rem;
        border-left: 2px solid #f1f1f1;
    }

    .submenu .submenu {
        padding-left: 2.5rem;
    }

    .has-submenu.open>.submenu {
        display: block;
    }

    .submenu li a {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        color: #555 !important;
        display: block;
    }

    .submenu li a:hover {
        background: #f8f9fa;
        color: #ff7f00 !important;
    }

    .has-submenu>.nav-link::after,
    .submenu .has-submenu>a::after {
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        float: right;
        transition: transform 0.3s ease;
    }

    .has-submenu.open>.nav-link::after,
    .submenu .has-submenu.open>a::after {
        transform: rotate(-180deg);
    }

    /* Ensure offcanvas-body is scrollable and fully visible */
    .offcanvas-body {
        overflow-y: auto !important;
        max-height: calc(100vh - 60px);
        /* Adjust based on offcanvas-header height */
        display: block !important;
    }
}



/* Responsive toggle */
@media (min-width: 992px) {

    .mobile-toggler,
    .mobile-offcanvas {
        display: none !important;
    }
}

/* Nav End */
/* ticker-wrap start */
.ticker-wrap {
    width: 100%;
    height: 40px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    /* start outside right */
    animation: ticker 60s linear infinite;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    /* black text */
}

.ticker:hover {
    animation-play-state: paused;
    /* stop on hover */
    cursor: pointer;
}

@keyframes ticker {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ticker span {
    margin: 0 60px;
    /* space between items */
}

/* hero-section start */
/* Custom CSS for full-width images */
.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* Ensures image covers the area without distortion */
    max-height: 80vh;
    /* Limits height to avoid excessive stretching */
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    /* circle size */
    height: 12px;
    /* circle size */
    border-radius: 50%;
    /* makes it round */
    background-color: #333;
    /* default color */
}

.carousel-indicators .active {
    background-color: #ff7f00;
    /* active indicator color */
}

/* Ensure carousel container is responsive */
.carousel {
    width: 100%;
    max-width: 100%;
}

/* Optional: Adjust carousel height for smaller screens */
@media (max-width: 768px) {
    .carousel-item img {
        max-height: 50vh;
        /* Smaller height for mobile */
    }
}

/* hero-section end */
/* Card  start */


:root {
    --catsec-bg-band: #edf5fb;
    --catsec-text: #111;
    --catsec-muted: #6b7280;
    --catsec-accent: #ff8f6b;
    --catsec-card-bg: #fff;
    --catsec-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    --catsec-radius: 16px;
}

/* Section layout */
.catsec-wrap {
    position: relative;
    padding: 72px 0 40px;
    background: linear-gradient(var(--catsec-bg-band) 0 68%, #fff 68% 100%);
    color: var(--catsec-text);
}

/* Header row */
.catsec-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 28px;
    margin-bottom: 28px;
}

.catsec-eyebrow {
    font-size: .8rem;
    letter-spacing: .25em;
    color: #a7b1bc;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.catsec-title {
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 800;
    margin: 0;
}

.catsec-intro {
    color: var(--catsec-muted);
    font-weight: 300;
    line-height: 1.7;
    max-width: 460px;
    margin: 8px 0 0;
}

.catsec-line {
    width: 52px;
    height: 2px;
    background: #c7d4df;
    border-radius: 4px;
    margin: 10px 0 22px;
}

/* Cards */
.catsec-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.catsec-card {
    background: var(--catsec-card-bg);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.catsec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .10)
}

.catsec-card-img {
    aspect-ratio: 4 / 5;
    width: 100%;
    object-fit: cover;
    display: block;
}

.catsec-card-label {
    display: block;
    text-align: center;
    padding: 14px 10px 18px;
    font-weight: 700;
    letter-spacing: .02em;
}

.catsec-card-label .catsec-hash {
    color: #000
}

.catsec-card.active .catsec-card-label {
    color: var(--catsec-accent)
}

.catsec-card.active .catsec-hash {
    color: var(--catsec-accent)
}

/* Responsive */
@media (max-width: 920px) {
    .catsec-header {
        grid-template-columns: 1fr
    }

    .catsec-intro {
        max-width: none
    }
}

@media (max-width: 640px) {
    .catsec-cards {
        grid-template-columns: 1fr
    }
}

/* Card  end */


/* Trust Badges Section */
.trust-badges {
    background-color: white;
    padding: 60px 0;

}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 300px;
    width: 100%;
}

.badge-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.badge-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.badge-content p {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}



/* Modern Furniture Styling */
.chair-silhouette {
    width: 80%;
    height: 80%;
    background: #e9ecef;
    border-radius: 8px;
    position: relative;
}

.chair-1 {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    box-shadow: inset 5px 5px 10px #d1d9e6, inset -5px -5px 10px #ffffff;
}

.chair-2 {
    background: linear-gradient(145deg, #fff5f5, #f8e8e8);
    box-shadow: inset 5px 5px 10px #e1c7c7, inset -5px -5px 10px #ffffff;
}

.chair-3 {
    background: linear-gradient(145deg, #f0f8ff, #e6f3ff);
    box-shadow: inset 5px 5px 10px #c7d7e6, inset -5px -5px 10px #ffffff;
}

.chair-4 {
    background: linear-gradient(145deg, #fffbf0, #f8f2e6);
    box-shadow: inset 5px 5px 10px #e6d7c7, inset -5px -5px 10px #ffffff;
}

/* promo-card start */
:root {
    --promo-orange: #ff7f00;
    --promo-dark: #030303;
    --promo-muted: #6b7280;
    --promo-card-radius: 18px;
    --promo-shadow: 0 8px 24px rgba(3, 3, 3, .08);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 992px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
}

.promo-card {
    position: relative;
    background: white;
    border-radius: var(--promo-card-radius);
    overflow: hidden;
    box-shadow: var(--promo-shadow);
    min-height: 190px;
    display: flex;
    align-items: center;
    padding: 22px 20px;
    isolation: isolate;
}

.promo-card .promo-badge {
    font-size: 11px;
    letter-spacing: .06em;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.promo-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--promo-dark);
    max-width: 60ch;
}

.promo-card .promo-price {
    margin: 0 0 16px;
    font-size: 14px;
    color: #475569;
    font-weight: 600;
}

.promo-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap
}

.promo-btn {
    display: inline-block;
    border: none;
    cursor: pointer;
    background: var(--promo-orange);
    color: white;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.promo-btn:hover {
    background: #e67300;
    transform: translateY(-2px);
}

.promo-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--promo-dark);
    opacity: .7;
    text-decoration: none;
    border-bottom: 1px dashed rgba(3, 3, 3, .2);
    transition: all 0.3s ease;
}

.promo-link:hover {
    opacity: 1;
    border-bottom-color: var(--promo-orange);
    color: var(--promo-orange);
}

/* remove default blue & underline for ANY link inside the grid */
.promo-grid a {
    color: inherit;
    text-decoration: none
}

.promo-btn {
    color: #fff !important
}

/* media area */
.promo-media {
    position: absolute;
    right: 8px;
    bottom: 0;
    top: 0;
    width: 42%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
    z-index: -1;
}

.promo-media img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateY(8px);
    filter: drop-shadow(0 10px 24px rgba(3, 3, 3, .15));
}

/* background tints per card to match the reference */
.promo-orangeTint {
    background: #fff5e6;
}

.promo-warmTint {
    background: #f7efe6;
}

.promo-creamTint {
    background: #fdf8f0;
}

.promo-whiteTint {
    background: #ffffff;
}

.promo-peachTint {
    background: #fff0e6;
}

.promo-sandTint {
    background: #f8f4e6;
}

/* spacing so text doesn't collide with image */
.promo-content {
    max-width: 56%;
}

/* small helpers */
.promo-old-price {
    opacity: .5;
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 500
}

/* Additional orange accent enhancements */
.promo-badge.accent {
    color: var(--promo-orange);
}

.promo-card:hover {
    box-shadow: 0 12px 32px rgba(3, 3, 3, .12);
}

/* promo-card end */


:root {
    --fpsec-bg: #efefef;
    --fpsec-accent: #ff7f00;
    --fpsec-text: #0f0f0f;
    --fpsec-muted: #6e6e6e;
}



.fpsec-hero-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
    padding: 40px 24px;
    background: var(--fpsec-bg);
    border-radius: 14px;
    margin: 28px;
}

.fpsec-hero {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.fpsec-hero-copy {
    flex: 1;
}

.fpsec-hero-heading {
    line-height: 1.2;
}

.fpsec-hero-heading .fpsec-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: .25em;
    color: var(--fpsec-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.fpsec-hero-heading .fpsec-sale {
    display: block;
    font-weight: 800;
    font-size: 42px;
    color: var(--fpsec-accent);
    letter-spacing: .02em;
    margin-bottom: 8px;
}

.fpsec-hero-heading .fpsec-percent {
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: var(--fpsec-text);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.fpsec-hero-media {
    flex: 1;
    text-align: center;
    position: relative;
}



.zmdi-youtube-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
    .fpsec-hero {
        flex-direction: column;
        text-align: center;
    }

    .fpsec-hero-heading .fpsec-sale {
        font-size: 36px;
    }

    .fpsec-hero-wrap {
        padding: 32px 18px;
    }
}


:root {
    --primary-color: #ff7f00;
    /* Modern blue */
    --secondary-color: #7c3aed;
    /* Purple accent */
    --text-color: #1e293b;
    --light-text: #64748b;
    --border-color: #e2e8f0;
    --hover-color: #efefef;
}



.footer {
    background: #fff;
    padding: 60px 20px;

}

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

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 24px;
}

.footer-address {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.footer-links-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-color);
}

.footer-links-column a {
    display: block;
    font-size: 14px;
    color: var(--light-text);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.footer-links-column a:hover {
    color: var(--primary-color);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
}

.footer-newsletter h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-color);
}

.footer-newsletter p {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    margin-bottom: 24px;
}

.newsletter-input {
    padding: 12px 16px;
    flex-grow: 1;
    border: 1px solid var(--border-color);
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

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

.newsletter-button {
    padding: 0 20px;
    border: none;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0 6px 6px 0;
    transition: background 0.2s ease;
}

.newsletter-button:hover {
    background: var(--hover-color);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--text-color);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--light-text);
}

.footer-legal {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.footer-legal a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.copyright {
    text-align: center;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}


.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 200px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-gray {
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.6), rgba(105, 105, 105, 0.4));
}

.card-cream {
    background: linear-gradient(135deg, rgba(241, 241, 227, 0.6), rgba(250, 250, 235, 0.4));
}

.card-light {
    background: linear-gradient(135deg, rgba(247, 247, 215, 0.6), rgba(255, 255, 240, 0.4));
}

.product-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

.product-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    line-height: 1.3;
}

.product-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.buy-button {
    color: #ff7f00;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.buy-button:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Base card heights */
.large-card {
    min-height: 300px;
}

.medium-card {
    min-height: 200px;
}

.small-card {
    min-height: 250px;
}

/* Large screens (xl) - 1200px and up */
@media (min-width: 1200px) {
    .product-image {
        max-width: 220px;
        height: auto;
    }

    .product-title {
        font-size: 1.4rem;
    }

    .large-card {
        min-height: 350px;
    }

    .medium-card {
        min-height: 220px;
    }

    .small-card {
        min-height: 280px;
    }
}

/* Medium screens (lg) - 992px to 1199px */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .product-image {
        max-width: 180px;
        height: auto;
    }

    .product-title {
        font-size: 1.3rem;
    }

    .large-card {
        min-height: 320px;
    }

    .medium-card {
        min-height: 200px;
    }

    .small-card {
        min-height: 260px;
    }
}

/* Medium screens (md) - 768px to 991px */
@media (min-width: 768px) and (max-width: 991.98px) {
    .product-card {
        min-height: 180px;
    }

    .product-image {
        max-width: 150px;
        height: auto;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .product-subtitle {
        font-size: 0.85rem;
    }

    .buy-button {
        font-size: 0.95rem;
    }

    .large-card {
        min-height: 280px;
    }

    .medium-card {
        min-height: 180px;
    }

    .small-card {
        min-height: 220px;
    }
}

/* Small screens (sm) - 576px to 767px */
@media (min-width: 576px) and (max-width: 767.98px) {
    .product-card {
        min-height: 160px;
        margin-bottom: 1rem;
    }

    .product-image {
        max-width: 120px;
        height: auto;
    }

    .product-title {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .product-subtitle {
        font-size: 0.8rem;
    }

    .buy-button {
        font-size: 0.9rem;
    }

    .large-card,
    .medium-card,
    .small-card {
        min-height: 200px;
    }

    /* Stack images vertically on smaller cards */
    .small-card .product-image {
        max-width: 100px;
    }
}

/* Extra small screens (xs) - below 576px */
@media (max-width: 575.98px) {
    .product-card {
        min-height: 140px;
        margin-bottom: 1rem;
    }

    .product-image {
        max-width: 100px;
        height: auto;
    }

    .product-title {
        font-size: 1rem;
        line-height: 1.2;
    }

    .product-subtitle {
        font-size: 0.75rem;
    }

    .buy-button {
        font-size: 0.85rem;
    }

    .large-card,
    .medium-card,
    .small-card {
        min-height: 180px;
    }

    /* Adjust padding for mobile */
    .card-body {
        padding: 1rem 0.75rem;
    }

    /* Make images smaller on mobile for better layout */
    .small-card .product-image {
        max-width: 80px;
    }

    /* Adjust text alignment for mobile */
    .text-end {
        text-align: center !important;
    }
}

/* Very small screens - below 400px */
@media (max-width: 399.98px) {
    .product-card {
        min-height: 120px;
    }

    .product-image {
        max-width: 80px;
        height: auto;
    }

    .product-title {
        font-size: 0.95rem;
        line-height: 1.1;
    }

    .product-subtitle {
        font-size: 0.7rem;
    }

    .buy-button {
        font-size: 0.8rem;
    }

    .large-card,
    .medium-card,
    .small-card {
        min-height: 160px;
    }

    .card-body {
        padding: 0.75rem 0.5rem;
    }
}

/* Specific adjustments for the wide cards (bass guitar, drums) */
.medium-card .product-image {
    max-width: 120px;
}

@media (max-width: 767.98px) {
    .medium-card .product-image {
        max-width: 80px;
    }

    .medium-card .product-title {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .medium-card .product-image {
        max-width: 60px;
    }

    .medium-card .product-title {
        font-size: 0.9rem;
    }

    /* Stack the wide card content vertically on very small screens */
    .medium-card .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }

    .medium-card .col-3,
    .medium-card .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Hover effects - disable on touch devices */
@media (hover: hover) and (pointer: fine) {
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .product-image:hover {
        transform: scale(1.05);
    }
}

/* Print styles */
@media print {
    .product-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .product-card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Banner Section Layout */
.banner-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

/* Common Banner Card */
.banner-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

/* Sofa Banner */
.sofa-banner {
    background: #f1f1f3;
    flex-direction: row;
}

.sofa-content h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 5px;
    color: #2c3e50;
}

.sofa-content .collection {
    color: #ff7f00;
    font-weight: 600;
}

.sofa-content p {
    color: #7f8c8d;
    font-size: 14px;
}

.sofa-img img {
    height: 400px;
    width: auto;
    object-fit: contain;
}

.sofa-banner2 {
    background: #f1f1f3;
    flex-direction: row;
}

.sofa-content2 h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 5px;
    color: #2c3e50;
}

.sofa-content2 .collection {
    color: #ff7f00;
    font-weight: 600;
}

.sofa-content2 p {
    color: #7f8c8d;
    font-size: 14px;
}

.sofa-img2 img {
    height: 300px;
    width: auto;
    object-fit: contain;
}



/* Responsive */
@media (max-width: 768px) {
    .banner-section {
        grid-template-columns: 1fr;
    }

    .banner-card {
        flex-direction: column;
        text-align: center;
    }

    .sofa-banner {
        flex-direction: column;
    }

    .sofa-img img,
    img {
        height: 150px;
        margin-top: 15px;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    color: #95a5a6;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.section-title {
    font-size: 36px;
    font-weight: 300;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 3px;
}

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

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ✅ Image Container */
.product-image-shop {
    height: 220px;
    background: #f8f9fa;
    display: flex;

    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

/* ✅ Actual image */
.product-image-shop img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Keeps aspect ratio, no cropping */
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-shop img {
    transform: scale(1.05);
}

/* Info section */
.product-info {
    padding: 0 20px 25px;
}

.product-name {
    font-size: 16px;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 8px;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.original-price {
    color: #bdc3c7;
    text-decoration: line-through;
    font-size: 14px;
    margin-left: 8px;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

/* Additional styling for visual appeal */
.banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.03) 50%, transparent 52%);
    pointer-events: none;
}

.offer-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 50px 0;
}

.offer-item {
    text-align: center;
    width: 120px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

/* Animate one by one */
.offer-item:nth-child(1) {
    animation-delay: 0.1s;
}

.offer-item:nth-child(2) {
    animation-delay: 0.3s;
}

.offer-item:nth-child(3) {
    animation-delay: 0.5s;
}

.offer-item:nth-child(4) {
    animation-delay: 0.7s;
}

.offer-item:nth-child(5) {
    animation-delay: 0.9s;
}

.offer-item:nth-child(6) {
    animation-delay: 1.1s;
}

.circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    color: #000;
    margin: 0 auto 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Hover effect */
.circle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.circle img {
    width: 50px;
    height: 50px;
}

.offer-label {
    font-size: 14px;
    color: #666;
}

/* Keyframes for fade-in-up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* product-category-grid start */
.product-category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
    position: relative;
}

.product-category-grid {
    display: flex;
    gap: 15px;
    animation: scrollLeft 30s linear infinite;
    width: max-content;
}

.product-category-grid:hover {
    animation-play-state: paused;
}

.product-category-card {
    flex: 0 0 200px;
    /* Fixed width for each card */
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
    min-height: 180px;
    background: white;
}

.product-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-category-image {
    width: 100%;
    height: 120px;
    object-fit: contain;
}

.product-category-title {
    font-size: 1em;
    margin: 8px 0;
    color: #333;
}

.product-category-link {
    display: inline-block;
    padding: 8px;
    color: #ff7f00;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
}

.product-category-link:hover {
    text-decoration: underline;
}

/* Marquee animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* For tablets */
@media (max-width: 1024px) {
    .product-category-card {
        flex: 0 0 180px;
    }
}

/* For mobile */
@media (max-width: 768px) {
    .product-category-card {
        flex: 0 0 150px;
        min-height: 140px;
    }

    .product-category-image {
        height: 100px;
    }

    .product-category-grid {
        animation-duration: 30s;
        /* Faster on mobile */
    }
}

/* product-category-grid end */
.filter-modal {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
    z-index: 1050;
    padding: 20px;
    overflow-y: auto;
}

.filter-modal.show {
    left: 0;
}

.filter-modal .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.filter-section {
    margin-top: 20px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.filter-option {
    margin-bottom: 10px;
}

.filter-title {
    font-size: 1.5em;
    font-weight: bold;
}

.clear-filter {
    color: #ff7f00;
    text-decoration: none;
}

.clear-filter:hover {
    text-decoration: underline;
}

/* ----------------------------------------------------------- */
:root {
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --black: #030303;
    --accent: #ff7f00;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
}

/* Header Styles */
.cm-page-header {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 3rem 0 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.cm-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.cm-page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Filter Bar */
.cm-filter-bar {
    margin-bottom: 2rem;
}

.cm-filter-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cm-filter-btn {
    background: linear-gradient(135deg, var(--accent) 0%, #ff9933 100%);
    color: var(--white);
    border: none;
    padding: 13px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 127, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.cm-filter-btn:hover {
    background: linear-gradient(135deg, #ff9933 0%, var(--accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 127, 0, 0.35);
}

.cm-results-count {
    color: var(--dark-gray);
    font-size: 15px;
    font-weight: 600;


}

.cm-view-controls {
    display: flex;
    gap: 6px;
    background: var(--light-gray);
    padding: 6px;
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.cm-view-btn {
    background: transparent;
    border: none;
    padding: 11px 18px;
    border-radius: 9px;
    cursor: pointer;
    color: var(--dark-gray);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
}

.cm-view-btn.active {
    background: var(--white);
    color: var(--accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.cm-view-btn:hover:not(.active) {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.5);
}

/* Product Card */
.cm-product-card {
    background: var(--white);
    border-radius: 0px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.cm-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.cm-product-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cm-product-image-wrapper img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cm-product-card:hover .cm-product-image-wrapper img {
    transform: scale(1.1) rotate(2deg);
}

/* Badges */
.cm-badge-container {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.cm-status-badge {
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 0px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.cm-discount-badge {
    background: linear-gradient(135deg, var(--accent) 0%, #ff9933 100%);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 0px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.cm-favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cm-favorite-btn:hover {
    background: var(--white);
    transform: scale(1.15);
    box-shadow: var(--shadow-md);
}

.cm-favorite-btn i {
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
}

.cm-favorite-btn.active i {
    color: var(--accent);
}

/* Product Info */
.cm-product-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cm-product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cm-product-colors {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.75rem;
}

.cm-color-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.cm-color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 1px #ddd;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cm-color-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 2px var(--accent);
}

.cm-product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cm-original-price {
    font-size: 15px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

/* Add to Cart Button */
.cm-add-to-cart {
    width: 100%;
    margin: 0;
    background: linear-gradient(135deg, var(--accent) 0%, #ff9933 100%);
    color: var(--white);
    border: none;
    padding: 14px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
}

.cm-product-card:hover .cm-add-to-cart {
    opacity: 1;
    max-height: 50px;
    padding: 14px;
}

.cm-add-to-cart:hover {
    background: linear-gradient(135deg, #ff9933 0%, var(--accent) 100%);
    box-shadow: var(--shadow-md);
}

/* Modal Styles */
.cm-modal-dialog-left {
    position: fixed;
    margin: 0;
    left: 0;
    top: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .cm-modal-dialog-left {
    transform: translateX(0);
}

.cm-modal-dialog-left .modal-content {
    height: 100%;
    border-radius: 0;
    border: none;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.cm-modal-header {
    padding: 1.5rem;
    border: none;
}

.cm-modal-title {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.cm-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--medium-gray);
}

.cm-clear-all {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cm-clear-all:hover {
    color: #ff9933;
    text-decoration: underline;
}

.cm-filter-group {
    margin-bottom: 2rem;
}

.cm-filter-group-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.cm-apply-filters-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, #ff9933 100%);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cm-apply-filters-btn:hover {
    background: linear-gradient(135deg, #ff9933 0%, var(--accent) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cm-page-title {
        font-size: 2rem;
    }

    .cm-filter-bar {
        padding: 1.25rem 1.5rem;
    }

    .cm-product-image-wrapper {
        height: 200px;
    }

    .cm-add-to-cart {
        opacity: 1;
        max-height: none;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .cm-page-title {
        font-size: 1.75rem;
    }

    .cm-page-subtitle {
        font-size: 1rem;
    }

    .cm-filter-bar {
        padding: 1rem;
    }

    .cm-filter-section {
        gap: 1rem;
    }

    .cm-view-controls {
        width: 100%;
        justify-content: center;
    }

    .cm-product-image-wrapper {
        height: 220px;
    }

    .cm-product-info {
        padding: 1rem;
    }

    .cm-add-to-cart {
        opacity: 1;
        padding: 12px;
    }
}


/* ============================================================================================ */
:root {
    --primary: #ff7f00;
    --primary-dark: #e67300;
    --light-bg: #f8f9fa;
    --dark-text: #030303;
    --gray-text: #666;
    --border-color: #e0e0e0;
}


.product-hero {
    background: linear-gradient(135deg, #fff 0%, var(--light-bg) 100%);
    padding: 2rem 0;
}

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Image Gallery */
.image-gallery {
    display: flex;
    gap: 20px;
    position: relative;
}

/* Thumbnail Wrapper (for positioning buttons top/bottom) */
.thumbnail-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 80px;
    /* Matches thumbnail width */
}

/* Navigation Buttons (Carousel Controls) */
.thumb-nav {
    position: absolute;
    left: 0;
    width: 100%;
    height: 30px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--dark-text);
}

.thumb-nav:hover {
    background: var(--primary);
    color: #fff;
}

.thumb-nav svg {
    width: 20px;
    height: 20px;
}

.thumb-prev {
    top: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: 8px 8px 0 0;
}

.thumb-next {
    bottom: 0;
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 8px 8px;
}

/* Disable buttons when at top/bottom */
.thumb-nav.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    /* Prevent clicks when disabled */
}

/* Thumbnail List Updates */
.thumbnail-list {
    flex: 1;
    overflow: hidden;
    /* Hide overflow to show only 6 thumbs */
    max-height: calc(6 * (100px + 12px) - 12px);
    /* Exactly 6 thumbs: height (100px) + gaps (12px) */
    position: relative;
}

.thumbnail-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateY(0);
    /* Initial position */
    transition: transform 0.3s ease;
    /* Smooth scroll animation */
}

/* Ensure thumbnail styles are intact */
.thumbnail {
    width: 80px;
    height: 100px;
    background: #f5f5f5;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .thumbnail-wrapper {
        width: 60px;
    }

    .thumbnail {
        width: 60px;
        height: 70px;
    }

    .thumbnail-list {
        max-height: calc(4 * (70px + 10px) - 10px);
        /* Show 4 on tablets */
    }

    .thumbnail-inner {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .thumbnail-wrapper {
        width: 50px;
    }

    .thumbnail {
        width: 50px;
        height: 60px;
    }

    .thumbnail-list {
        max-height: calc(3 * (60px + 10px) - 10px);
        /* Show 3 on mobile */
    }
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-image {
    flex: 1;
    background: #f5f5f5;
    position: relative;
    object-fit: contain;
    overflow: hidden;
    aspect-ratio: 3/4;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.main-image:hover img {
    transform: scale(1.02);
}

.image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0px !important;
    letter-spacing: 0.5px;
}

/* Product Details */
.product-details {
    padding: 20px 0;
}

.product-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    color: var(--dark-text);
    line-height: 1.2;
}

.product-subtitle {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-text);
}

.original-price {
    font-size: 18px;
    color: #7f8c8d;
    text-decoration: line-through;
}

.discount-badge {
    background-color: var(--primary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.tax-info {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tax-info i {
    color: var(--primary);
}

/* Color Selection */
.color-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
    color: var(--dark-text);
    text-transform: uppercase;
}

.color-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.color-btn {
    padding: 12px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    color: var(--dark-text);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 127, 0, 0.1);
}

.color-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(255, 127, 0, 0.2);
}

.color-swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: inline-block;
    vertical-align: middle;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    padding: 16px 24px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    flex: 1;
}

.btn-wishlist {
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-wishlist:hover {
    background: #fff5e6;
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 127, 0, 0.2);
}

.btn-cart {
    background: var(--primary);
    color: #fff;
}

.btn-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 127, 0, 0.3);
}

/* Product Highlights */
.product-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 127, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.highlight-text {
    font-size: 14px;
    font-weight: 500;
}

/* Accordion */
.accordion {
    border-top: 1px solid var(--border-color);
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: var(--dark-text);
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0 0 0;
}

.accordion-content.active {
    max-height: 500px;
    padding: 0 0 20px 0;
}

.accordion-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-text);
}

.accordion-icon {
    transition: transform 0.3s;
    color: var(--dark-text);
}

.accordion-icon.active {
    transform: rotate(180deg);
    color: var(--primary);
}

/* Product Description */
.product-description {
    margin-top: 60px;

    padding: 60px 0;
    border-radius: 12px;
}

.description-container {
    max-width: 1200px;
    margin: 0 auto;
}

.description-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark-text);
    text-align: center;
}

.description-content {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-text);
}

/* Responsive */
@media (max-width: 992px) {
    .product-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .product-highlights {
        grid-template-columns: 1fr;
    }

    /* Side-by-side layout for gallery */
    .image-gallery {
        display: flex;
        flex-direction: row;
        /* Left thumbnails, right main image */
        align-items: flex-start;
        gap: 15px;
    }

    .thumbnail-list {
        display: flex;
        flex-direction: column;
        /* Stack thumbnails vertically */
        gap: 10px;
        justify-content: flex-start;
        align-items: center;
        width: 70px;
    }

    .thumbnail {
        width: 60px;
        height: 70px;
        cursor: pointer;
    }

    .main-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        object-fit: contain;
    }

    .main-image img {
        width: 100%;
        max-width: 400px;
        object-fit: contain !important;
    }

    .product-title,
    .current-price {
        font-size: 24px;
    }
}

/* Optional: tweak for very small phones */
@media (max-width: 576px) {
    .image-gallery {
        gap: 10px;
    }

    .thumbnail {
        width: 50px;
        height: 60px;
    }

    .main-image img {
        max-width: 300px;
        object-fit: contain !important;
    }
}

.product-description {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.description-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.description-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: #333;
    position: relative;
}

.description-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #ff7f00;
    margin: 15px auto;
}

.description-content {
    margin-bottom: 30px;
}

.description-row {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    /* background: white; */
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

.description-row:last-child {
    margin-bottom: 0;
}

.description-text {
    padding: 30px;
}

.description-text p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
    text-align: justify;
}

.description-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.description-row:hover .description-image img {
    transform: scale(1.03);
}

/* Alternate layout for even items */
.description-row:nth-child(even) {
    flex-direction: row-reverse;
}

/* Full width for text-only rows */
.text-only {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .description-row {
        flex-direction: column !important;
    }

    .description-image {
        height: 250px;
        width: 100%;
    }
}
