/* Import Modern Typography */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Public+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --premium-primary: #2a5429;
    /* Fastkart Teal */
    --premium-primary-light: #f3f9f8;
    --premium-secondary: #ff8c00;
    /* Vibrant Orange */
    --premium-bg: #f8f9fb;
    --premium-white: #ffffff;
    --premium-text-dark: #222222;
    --premium-text-muted: #7e7e7e;
    --premium-shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
    --premium-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    --sidebar-width: 280px;
    --header-height: 80px;
    --premium-radius: 16px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.premium-layout {
    background-color: var(--premium-bg);
    font-family: 'Public Sans', sans-serif;
    color: var(--premium-text-dark);
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* Glassmorphism Utility */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* Animations */
@keyframes infiniteScroll {
    from {
        transform: translateX(0);
    }

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

/* Professional Ticker Strip */
.offer-section {
    background: var(--premium-primary) !important;
    padding: 12px 0 !important;
    overflow: hidden;
    position: relative;
    border: none !important;
}

.ticker-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.ticker {
    display: flex;
    width: max-content;
    animation: infiniteScroll 30s linear infinite;
}

.ticker-content {
    display: flex;
    flex-shrink: 0;
    gap: 50px;
    padding-right: 50px;
}

.ticker-item {
    color: white !important;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.ticker-item i {
    color: var(--premium-secondary) !important;
    margin-right: 10px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes float-alt {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(15px) rotate(-5deg);
    }
}

@keyframes pulse-slow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-alt {
    animation: float-alt 8s ease-in-out infinite;
}

/* Premium Header */
.premium-header {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px);
    height: var(--header-height);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1050;
    transition: var(--transition-smooth);
    padding: 0 30px;
}

.sticky-header.fixed {
    background: var(--premium-white) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

.search-bar-premium {
    background: #f1f3f6;
    border-radius: 12px;
    padding: 0 20px;
    height: 50px;
    display: flex;
    align-items: center;
    width: 450px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.search-bar-premium:focus-within {
    background: #fff;
    border-color: var(--premium-primary);
    box-shadow: 0 5px 15px rgba(13, 164, 135, 0.1);
}

.search-bar-premium i {
    color: var(--premium-text-muted);
    margin-right: 15px;
}

.search-bar-premium input {
    background: transparent;
    border: none;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
}

.search-bar-premium input:focus {
    outline: none;
}

.action-item {
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 20px;
    color: var(--premium-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.action-item:hover {
    background: var(--premium-primary-light);
    color: var(--premium-primary);
}

.cart-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--premium-secondary);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 20px;
    font-weight: 800;
}

/* Sidebar Styling */
.fixed-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--premium-white);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.sidebar-logo {
    padding: 0 30px 40px;
}

/* Custom Premium Scrollbar (Windows Style) */
::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border: 1px solid #e5e5e5;
}

::-webkit-scrollbar-thumb {
    background: #cdcdcd;
    border: 1px solid #f1f1f1;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a6a6a6;
}

::-webkit-scrollbar-thumb:active {
    background: #606060;
}

/* Scrollbar Buttons (Arrows) */
::-webkit-scrollbar-button {
    background-color: #f1f1f1;
    height: 14px;
    width: 14px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #e5e5e5;
}

::-webkit-scrollbar-button:vertical:decrement {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23666'><polygon points='50,30 80,70 20,70'/></svg>");
}

::-webkit-scrollbar-button:vertical:increment {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23666'><polygon points='50,70 80,30 20,30'/></svg>");
}

::-webkit-scrollbar-button:horizontal:decrement {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23666'><polygon points='30,50 70,80 70,20'/></svg>");
}

::-webkit-scrollbar-button:horizontal:increment {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23666'><polygon points='70,50 30,80 30,20'/></svg>");
}

::-webkit-scrollbar-button:hover {
    background-color: #d1d1d1;
}

.sidebar-content {
    flex: 1;
    height: calc(100vh - 200px);
    overflow-y: scroll !important;
    overflow-x: hidden;
    padding-bottom: 40px;
    scrollbar-width: auto;
    scrollbar-color: #cdcdcd #f1f1f1;
}

.sidebar-content::-webkit-scrollbar {
    width: 14px;
}

.sidebar-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border: 1px solid #e5e5e5;
}

.sidebar-content::-webkit-scrollbar-thumb {
    background: #cdcdcd;
    border: 1px solid #f1f1f1;
}

.sidebar-content::-webkit-scrollbar-button {
    height: 14px;
    width: 14px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f1f1f1;
    border: 1px solid #e5e5e5;
}

.sidebar-content::-webkit-scrollbar-button:vertical:decrement {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23666'><polygon points='50,30 80,70 20,70'/></svg>");
}

.sidebar-content::-webkit-scrollbar-button:vertical:increment {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23666'><polygon points='50,70 80,30 20,30'/></svg>");
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
    background-color: var(--premium-primary);
}

.sidebar-footer {
    background: var(--premium-white);
    padding: 15px 0;
}

.sidebar-footer .category-menu a {
    padding: 12px 30px;
    font-size: 14px;
}

.offcanvas {
    width: 320px !important;
    border-right: none !important;
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1) !important;
    background-color: #ffffff !important;
    z-index: 2000 !important;
}

.offcanvas-header {
    background: var(--premium-primary-light);
    padding: 25px !important;
}

.offcanvas-header h5 {
    font-weight: 800;
    color: var(--premium-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offcanvas-body .nav-link {
    padding: 15px 25px !important;
    font-weight: 600;
    color: #333 !important;
    border-radius: 12px;
    margin: 2px 15px;
}

.offcanvas-body .nav-link:hover {
    background: var(--premium-primary-light);
    color: var(--premium-primary) !important;
}

.offcanvas-body .nav-link i {
    width: 30px;
    color: var(--premium-primary);
}

.category-menu ul {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.category-menu li {
    width: 100% !important;
    display: block !important;
}

.category-menu a {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    color: var(--premium-text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-smooth);
    border-left: 4px solid transparent;
}

.category-menu a:hover,
.category-menu li.active a {
    background: var(--premium-primary-light);
    color: var(--premium-primary);
    border-left-color: var(--premium-primary);
}

.category-menu a i,
.category-menu a svg {
    margin-right: 15px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* Premium Scroll Tabs */
.premium-scroll-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    scrollbar-width: thin;
    scrollbar-color: var(--premium-primary) transparent;
    gap: 10px;
    padding-bottom: 10px;
}

.premium-scroll-tabs::-webkit-scrollbar {
    height: 4px;
    display: block;
}

.premium-scroll-tabs::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.premium-scroll-tabs .nav-item {
    flex: 0 0 auto;
}

.premium-scroll-tabs .nav-link {
    border-radius: 50px !important;
    padding: 10px 25px !important;
    border: 1px solid #eee !important;
    background: #fff !important;
    color: #555 !important;
    font-weight: 600 !important;
    transition: var(--transition-smooth);
}

.premium-scroll-tabs .nav-link.active {
    background: var(--premium-primary) !important;
    color: #fff !important;
    border-color: var(--premium-primary) !important;
    box-shadow: 0 5px 15px rgba(13, 164, 135, 0.2);
}

/* Floating UI Enhancements */
._linkSHare {
    z-index: 9999 !important;
}

@media (max-width: 768px) {
    ._linkSHare {
        bottom: 80px !important;
        right: 15px !important;
    }

    .circle-wrap {
        width: 100px !important;
        height: 100px !important;
    }

    .circle-wrap img {
        width: 50px !important;
        height: 50px !important;
        top: 25px !important;
        left: 25px !important;
    }
}

/* Main Content Wrapper */
.main-content-wrapper {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    transition: var(--transition-smooth);
}

/* Header Styling */
.premium-header {
    position: sticky;
    top: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;

    z-index: 999;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.header-search-container {
    flex: 1;
    max-width: 700px;
    /* Increased width */
    margin: 0 40px;
}

.search-bar-premium {
    position: relative;
    width: 100%;
}

.search-bar-premium input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border-radius: 50px;
    border: 1px solid #eee;
    background: #f5f5f5;
    outline: none;
    transition: var(--transition-smooth);
}

.search-bar-premium input:focus {
    background: #fff;
    border-color: var(--premium-primary);
    box-shadow: 0 0 0 4px var(--premium-primary-light);
}

.search-bar-premium i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--premium-text-muted);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-item {
    position: relative;
    cursor: pointer;
    color: var(--premium-text-dark);
    font-size: 20px;
    transition: var(--transition-smooth);
}

.action-item:hover {
    color: var(--premium-primary);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--premium-secondary);
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
    font-weight: bold;
}

/* Hero Section */
.premium-hero {
    padding: 40px;
}

.hero-banner {
    background: linear-gradient(135deg, #f0f7f0 0%, #e8f3e8 100%);
    border-radius: 30px;
    padding: 80px 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 550px;
    box-shadow: 0 20px 50px rgba(42, 84, 41, 0.05);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232a5429' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42, 84, 41, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    animation: pulse-slow 10s ease-in-out infinite;
}

.hero-search-wrapper {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    z-index: 3;
}

.hero-slider-main {
    margin: 0 -10px;
}

.hero-slider-item {
    padding: 0 10px;
}

/* Slick Customization */
.hero-slider-main .slick-dots {
    bottom: 30px;
}

.hero-slider-main .slick-dots li button:before {
    font-size: 10px;
    color: var(--premium-primary);
    opacity: 0.3;
}

.hero-slider-main .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--premium-primary);
}

.hero-slider-main .slick-prev,
.hero-slider-main .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(5px);
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.hero-slider-main .slick-prev:hover,
.hero-slider-main .slick-next:hover {
    background: var(--premium-primary) !important;
}

.hero-slider-main .slick-prev:hover i,
.hero-slider-main .slick-next:hover i {
    color: #fff;
}

.hero-slider-main .slick-prev i,
.hero-slider-main .slick-next i {
    color: var(--premium-primary);
    font-size: 18px;
}

.hero-slider-main .slick-prev {
    left: 40px;
}

.hero-slider-main .slick-next {
    right: 40px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--premium-text-dark);
}

.hero-content p {
    font-size: 18px;
    color: var(--premium-text-muted);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Premium Section Titles */
.section-title-premium h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--premium-text-dark);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.section-title-premium h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--premium-primary);
    border-radius: 10px;
}

.section-title-premium.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.product-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.product-card-premium {
    background: var(--premium-white);
    border-radius: var(--premium-radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 380px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.product-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--premium-shadow);
    border-color: var(--premium-primary-light);
}

.product-image-box {
    margin-bottom: 15px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #f8f8f8;
    padding: 15px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-premium img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

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

.product-card-premium .name {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 16px;
    min-height: 45px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--premium-text-dark);
}

/* Chutney Book Card Enhancements */
.chutney-book-card {
    border-radius: 15px !important;
    border: 1px solid #f0f0f0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
}

.chutney-book-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--premium-primary-light) !important;
}

.chutney-book-card .product-image-box {
    aspect-ratio: 1 / 1.1;
    background: #fcfcfc;
    border-radius: 10px;
}

.chutney-book-card .product-image-box img {
    height: 100% !important;
    width: 100% !important;
    object-fit: contain !important;
    padding: 10px;
}

.chutney-book-card .product-detail {
    padding: 12px 10px !important;
}

.chutney-book-card .name {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--premium-text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
}

.chutney-book-card .category-label {
    font-size: 10px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--premium-secondary);
}

.chutney-book-card .add-btn-premium {
    background: var(--premium-primary) !important;
    color: white !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    padding: 8px 15px !important;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(0, 75, 58, 0.15);
}

.chutney-book-card .add-btn-premium:hover {
    background: var(--premium-secondary) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(246, 116, 62, 0.25);
}



.product-card-premium .weight {
    color: var(--premium-text-muted);
    font-size: 13px;
    margin-bottom: 10px;
}

.product-card-premium .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.product-card-premium .price {
    font-weight: 700;
    color: var(--premium-primary);
    font-size: 18px;
}

.add-btn-premium {
    padding: 12px 20px;
    background: var(--premium-primary);
    color: white !important;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-weight: 700;
    font-size: 14px;
    width: 100%;
    margin-top: auto;
}

.add-btn-premium:hover {
    background: #0b8d73;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(13, 164, 135, 0.2);
}

.qty-box-premium {
    display: none;
    align-items: center;
    background: var(--premium-primary);
    color: white;
    border-radius: 8px;
    overflow: hidden;
}

.qty-box-premium button {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.qty-box-premium button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.qty-box-premium .qty-input {
    width: 100%;
    border: none;
    background: transparent;
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    pointer-events: none;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

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

.cookie-consent h4 {
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-consent p {
    margin: 0;
    font-size: 14px;
    color: var(--premium-text-muted);
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cookie-btn.accept {
    background: var(--premium-primary);
    color: white;
}

.cookie-btn.decline {
    background: #eee;
    color: var(--premium-text-dark);
}

/* Service Section Premium */
.service-section-premium {
    background: #fdfdfd;
}

.service-card-premium {
    background: var(--premium-white);
    padding: 30px;
    border-radius: var(--premium-radius);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
    border: 1px solid #f0f0f0;
}

.service-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--premium-shadow);
    border-color: var(--premium-primary-light);
}

.service-card-premium .icon-box {
    width: 60px;
    height: 60px;
    background: var(--premium-primary-light);
    color: var(--premium-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.service-card-premium h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.service-card-premium p {
    margin: 0;
    font-size: 13px;
    color: var(--premium-text-muted);
}

/* Responsive */
@media (max-width: 991px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .masonry-item.grid-big {
        grid-column: span 2;
    }

    /* Shop Page & Filter Sidebar */
    .shop-section {
        background-color: #f9f9f9;
    }

    .filter-sidebar {
        background: #fff;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .filter-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--premium-text-dark);
        padding-bottom: 10px;
        border-bottom: 2px solid var(--premium-primary-light);
    }

    .filter-list li {
        margin-bottom: 12px;
    }

    .filter-list a {
        color: var(--premium-text-muted);
        text-decoration: none;
        transition: var(--transition-smooth);
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .filter-list a:hover,
    .filter-list a.active {
        color: var(--premium-primary);
        padding-left: 5px;
    }

    .filter-list a.active {
        font-weight: 600;
    }

    .price-range-wrapper {
        background: var(--premium-primary-light);
        border-radius: 8px;
    }

    .sticky-sidebar {
        position: sticky;
        top: 100px;
    }

    .product-list-section .col {
        display: flex;
    }

    .show-button {
        border: none;
        border-radius: 12px;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .btn-light {
        background: var(--premium-primary-light);
        border: none;
        color: var(--premium-primary);
    }

    .btn-light:hover {
        background: var(--premium-primary);
        color: #fff;
    }

    .fixed-sidebar {
        transform: translateX(-100%);
    }

    .main-content-wrapper {
        margin-left: 0;
    }

    .hero-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .hero-image {
        margin-top: 40px;
    }
}

/* Header Navigation Styling */
.header-nav-row {
    background: var(--premium-white);
    border-top: 1px solid #f5f5f5;
}

.header-nav-row .nav-link {
    color: var(--premium-text-dark) !important;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.header-nav-row .nav-link:hover {
    color: var(--premium-primary) !important;
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 15px;
    margin-top: 0;
}

.dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    background: var(--premium-primary-light);
    color: var(--premium-primary);
}

.premium-header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    padding: 0 30px;
    z-index: 999;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.premium-header .container-fluid {
    height: 100%;
}

/* Mega Menu Support */
.sub-dropdown-hover {
    position: relative;
}

.sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    list-style: none;
    padding: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.sub-dropdown-hover:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
}

.sub-menu li a {
    display: block;
    padding: 8px 15px;
    color: var(--premium-text-dark);
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
}

.sub-menu li a:hover {
    background: var(--premium-primary-light);
    color: var(--premium-primary);
}

/* Modern Category Section Styles */
.category-modern-section {
    background-color: #fcf8f1;
    /* Premium cream background from screenshot */
    padding: 50px 0;
    margin: 20px 0;
}

.category-modern-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 15px 10px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.category-modern-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.category-modern-item {
    flex: 0 0 auto;
    width: 150px;
    text-align: center;
    transition: var(--transition-smooth);
    text-decoration: none !important;
    display: block;
    /* Needed for Slick */
}

.category-modern-item:hover {
    transform: translateY(-8px);
}

.category-modern-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 25px;
    /* Rounded corners as requested */
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    margin-bottom: 12px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.category-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.category-modern-item:hover .category-modern-image img {
    transform: scale(1.1);
}

.category-modern-title {
    font-size: 15px;
    font-weight: 700;
    color: #444;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

/* slick specific fixes */
.category-slick-slider .slick-track {
    display: flex !important;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .category-modern-grid:not(.slick-initialized) {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
    }

    .category-modern-item {
        min-width: 130px;
    }
}

@media (max-width: 768px) {
    .category-modern-item {
        width: 120px;
    }

    .category-modern-title {
        font-size: 13px;
    }
}

/* Masonry Grid */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.masonry-item {
    position: relative;
    border-radius: var(--premium-radius);
    overflow: hidden;
}

.masonry-item.grid-big {
    grid-column: span 2;
    grid-row: span 2;
}

.masonry-card {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    color: white;
    text-decoration: none;
}

.masonry-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.masonry-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
}

.masonry-overlay h3 {
    margin: 0;
    font-size: 24px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.masonry-overlay .explore-btn {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    display: block;
    margin-top: 10px;
    transition: var(--transition-smooth);
    transition-delay: 0.1s;
}

.masonry-card:hover .masonry-img-wrapper img {
    transform: scale(1.1);
}

.masonry-card:hover .masonry-overlay h3,
.masonry-card:hover .masonry-overlay .explore-btn {
    transform: translateY(0);
    opacity: 1;
}

/* Section 2: Trending Showcase */
.trending-carousel .slick-list {
    overflow: visible;
}

.trending-item {
    padding: 15px;
}

.trending-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--premium-radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.trending-card:hover {
    background: white;
    box-shadow: var(--premium-shadow);
    transform: translateY(-10px);
}

.trending-card img {
    height: 180px;
    object-fit: contain;
    margin: 0 auto 15px;
}

.trending-card .wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--premium-shadow-sm);
    color: #ccc;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.trending-card:hover .wishlist-btn {
    opacity: 1;
    transform: scale(1);
}

/* Deals Section */
.deals-wrapper {
    background: linear-gradient(135deg, var(--premium-primary-light) 0%, #ffffff 100%);
    border-radius: 30px;
    position: relative;
}

.deal-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--premium-secondary);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.timer-unit {
    background: white;
    padding: 15px;
    border-radius: 15px;
    min-width: 80px;
    text-align: center;
    box-shadow: var(--premium-shadow-sm);
}

.timer-unit span {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--premium-primary);
}

.timer-unit small {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--premium-text-muted);
}

.deal-image-stack {
    position: relative;
    height: 400px;
    width: 100%;
}

.deal-image-stack img {
    position: absolute;
    height: 300px;
    object-fit: contain;
}

.deal-image-stack .img-1 {
    top: 50px;
    left: 50px;
    z-index: 2;
}

.deal-image-stack .img-2 {
    bottom: 50px;
    right: 50px;
    z-index: 1;
    opacity: 0.6;
}

.discount-blob {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: var(--premium-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(246, 116, 62, 0.3);
    z-index: 3;
}

/* New Arrivals */
.rotate-2 {
    transform: rotate(2deg);
}

.rotate-neg-2 {
    transform: rotate(-2deg);
}

.new-arrival-card {
    padding: 30px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.new-arrival-card:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.05);
    z-index: 10;
}

.badge-pill-premium {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--premium-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Best Sellers */
.best-seller-card {
    background: white;
    border-radius: var(--premium-radius);
    overflow: hidden;
    position: relative;
    border: 1px solid #f0f0f0;
    transition: var(--transition-smooth);
}

.best-seller-card.card-large {
    border: 2px solid var(--premium-primary-light);
}

.best-seller-card:hover {
    box-shadow: var(--premium-shadow);
}

.rank-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--premium-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    z-index: 2;
}

/* Bundle Cards */
.bundle-card {
    transition: var(--transition-smooth);
}

.bundle-card:hover {
    transform: scale(1.02);
}

.bundle-item {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 15px;
    padding: 10px;
    box-shadow: var(--premium-shadow-sm);
}

.plus-icon {
    font-size: 20px;
    color: var(--premium-primary);
    font-weight: 800;
}

/* Icon Box Premium */
.icon-box-premium {
    width: 60px;
    height: 60px;
    background: var(--premium-primary-light);
    color: var(--premium-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto;
}

/* Brands Slider */
.brands-slider-wrapper {
    width: 100%;
    overflow: hidden;
    background: white;
    padding: 40px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.brands-track {
    display: flex;
    width: calc(200px * 12);
    animation: infiniteScroll 20s linear infinite;
}

.brand-logo {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    height: 40px;
    filter: grayscale(1);
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.brand-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* App CTA Section */
.app-cta-wrapper {
    background: linear-gradient(135deg, #f0f7f0 0%, #ffffff 100%);
    border-radius: 40px;
}

.app-btn img {
    height: 45px;
    transition: var(--transition-smooth);
}

.app-btn:hover img {
    transform: translateY(-5px);
}

.floating-ui-1,
.floating-ui-2 {
    position: absolute;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--premium-shadow);
    font-size: 12px;
    font-weight: 700;
}

.floating-ui-1 {
    top: 20%;
    left: 10%;
}

.floating-ui-2 {
    bottom: 30%;
    right: 5%;
}

/* Newsletter Section */
.newsletter-card {
    background: var(--premium-primary);
    border-radius: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-icon {
    font-size: 40px;
    opacity: 0.3;
}

.newsletter-form-wrapper .form-control {
    height: 60px;
    border-radius: 50px 0 0 50px;
    padding-left: 30px;
    border: none;
}

.btn-glow-premium {
    background: var(--premium-secondary);
    color: white;
    border-radius: 0 50px 50px 0;
    padding: 0 40px;
    font-weight: 700;
    border: none;
    box-shadow: 0 0 20px rgba(246, 116, 62, 0.4);
    transition: var(--transition-smooth);
}

.btn-glow-premium:hover {
    background: white;
    color: var(--premium-secondary);
    box-shadow: 0 0 30px white;
}

/* Creative Trending Card */
.trending-card-creative {
    background: white;
    border-radius: var(--premium-radius);
    overflow: hidden;
    position: relative;
    border: 1px solid #f0f0f0;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.trending-card-creative:hover {
    box-shadow: var(--premium-shadow);
    transform: translateY(-10px);
    border-color: var(--premium-primary-light);
}

.product-img-wrapper {
    position: relative;
    padding: 30px;
    background: #fcfcfc;
    overflow: hidden;
}

.product-img-wrapper .main-img {
    height: 160px;
    object-fit: contain;
    z-index: 2;
    position: relative;
    transition: var(--transition-smooth);
}

.trending-card-creative:hover .main-img {
    transform: scale(1.1) rotate(3deg);
}

.img-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--premium-primary-light);
    filter: blur(40px);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
}

.card-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
}

.trending-badge {
    background: #ff4757;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.brand-small {
    font-size: 11px;
    color: var(--premium-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rating-small {
    font-size: 12px;
    font-weight: 700;
    background: #fff9e6;
    color: #ffa502;
    padding: 2px 8px;
    border-radius: 50px;
}

/* Arrow Styling */
.arrow-btn.glass-card {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: var(--transition-smooth);
    background: white;
}

.arrow-btn:hover {
    background: var(--premium-primary);
    color: white;
    transform: scale(1.1);
}

.title-line {
    width: 60px;
    height: 4px;
    background: var(--premium-primary);
    border-radius: 2px;
    margin-top: 10px;
}

/* Slick Fallback & Grid */
.slick-carousel-premium {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 0;
}

.slick-carousel-premium.slick-initialized {
    display: block;
}

.trending-item {
    flex: 0 0 25%;
    max-width: 25%;
}

@media (max-width: 1199px) {
    .trending-item {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 991px) {
    .trending-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .trending-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Add to Cart Bar */
.add-btn-premium {
    background: #e6f1ef;
    /* Light primary background */
    color: var(--premium-primary);
    border: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #f0f0f0;
}

.add-btn-premium:hover {
    background: var(--premium-primary);
    color: white;
}

.qty-box-premium {
    height: 50px;
    background: var(--premium-primary);
    color: white;
}

.qty-box-premium .qty-minus,
.qty-box-premium .qty-plus {
    background: transparent;
    border: none;
    color: white;
    width: 40px;
    font-size: 16px;
}

.qty-box-premium .qty-input {
    background: transparent;
    border: none;
    color: white;
    width: 40px;
    text-align: center;
    font-weight: 800;
}

/* New Arrivals Premium Showcase */
.new-arrivals-premium {
    background: #fdfdfd;
}

.new-arrival-card-premium {
    position: relative;
    padding-top: 60px;
    /* Space for breaking out image */
    transition: var(--transition-smooth);
}

.new-arrival-card-premium:hover {
    transform: translateY(-10px);
}

.card-bg-blob {
    position: absolute;
    top: 60px;
    left: 10%;
    width: 80%;
    height: 70%;
    background: linear-gradient(135deg, var(--premium-primary-light) 0%, #ffffff 100%);
    border-radius: 30px;
    z-index: 1;
    opacity: 0.8;
}

.product-badge-premium {
    position: absolute;
    top: 80px;
    right: 20px;
    background: var(--premium-secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(246, 116, 62, 0.3);
}

.new-arrival-img {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-bottom: -40px;
    /* Overlap with content card */
}

.floating-img {
    height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    transition: var(--transition-smooth);
}

.new-arrival-card-premium:hover .floating-img {
    transform: scale(1.1) translateY(-10px);
}

.new-arrival-content {
    position: relative;
    z-index: 2;
    border-radius: 25px;
    margin-top: 0;
}

.mini-add-btn {
    width: 45px;
    height: 45px;
    background: var(--premium-primary);
    color: white;
    border-radius: 15px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(0, 75, 58, 0.2);
}

.mini-add-btn:hover {
    background: var(--premium-secondary);
    transform: rotate(90deg) scale(1.1);
}

/* Professional eCommerce Card Style */
.new-pro-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: var(--transition-smooth);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.new-pro-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: var(--premium-primary-light);
}

.pro-img-box {
    position: relative;
    padding: 20px;
    background: #f9f9f9;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pro-img-box .main-img {
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.new-pro-card:hover .main-img {
    transform: scale(1.08);
}

.pro-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--premium-secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.pro-actions {
    position: absolute;
    top: 15px;
    right: -50px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.new-pro-card:hover .pro-actions {
    right: 15px;
}

.wish-btn {
    width: 36px;
    height: 36px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.wish-btn:hover {
    background: #ff4757;
    color: white;
}

.pro-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pro-brand {
    font-size: 11px;
    color: var(--premium-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pro-title {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    height: 44px;
    /* Room for 2 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pro-title a {
    color: var(--premium-text-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.pro-title a:hover {
    color: var(--premium-primary);
}

.pro-price .current {
    font-size: 20px;
    font-weight: 700;
    color: var(--premium-primary);
}

.pro-add-btn {
    width: 40px;
    height: 40px;
    background: #f0f3f2;
    color: var(--premium-primary);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.pro-add-btn:hover {
    background: var(--premium-primary);
    color: white;
    transform: scale(1.1);
}

/* Bento Grid Layout for Trending Now */
.bento-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.bento-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.bento-card {
    width: 100%;
    height: 100%;
    position: relative;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.bento-card:hover {
    transform: scale(1.02);
}

/* Large Spotlight Card */
.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.spotlight-card {
    background: linear-gradient(135deg, #004b3a 0%, #002d23 100%);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-card .bento-img {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.spotlight-card:hover .bento-img {
    transform: translateY(-60%) rotate(5deg) scale(1.1);
}

.hot-badge {
    background: var(--premium-secondary);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.price-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin: 15px 0;
    font-weight: 800;
    font-size: 20px;
}

.btn-spotlight {
    background: white;
    color: var(--premium-primary);
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    width: fit-content;
}

/* Medium Cards */
.item-medium-1,
.item-medium-2 {
    grid-column: span 2;
}

.glass-bento {
    background: #f8f9fa;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.bento-img-sm {
    height: 120px;
    object-fit: contain;
}

.bento-info h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.bento-add {
    background: var(--premium-primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    margin-top: 10px;
}

/* Small Cards */
.item-small-1,
.item-small-2,
.item-small-3 {
    grid-column: span 1;
    display: none;
    /* Only show on desktop if space allows, or let grid handle it */
}

/* Re-adjusting grid for 3 columns on medium screens */
@media (max-width: 1200px) {
    .bento-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .item-large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 400px;
    }

    .item-medium-1,
    .item-medium-2 {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .bento-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .item-large,
    .item-medium-1,
    .item-medium-2 {
        grid-column: span 1;
    }

    .spotlight-card {
        padding: 30px;
        text-align: center;
    }

    .spotlight-card .bento-img {
        position: relative;
        right: 0;
        transform: none;
        height: 150px;
        margin: 20px auto;
    }

    .spotlight-card:hover .bento-img {
        transform: scale(1.1);
    }
}

.title-accent {
    width: 80px;
    height: 5px;
    background: var(--premium-secondary);
    border-radius: 10px;
    margin-top: 10px;
}

/* Trending Professional Card */
.trending-pro-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: var(--transition-smooth);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.trending-pro-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.pro-tag.hot {
    background: #ff4757;
    color: white;
}

.trending-pro-item .pro-img-box {
    background: #fff;
    /* Match white image backgrounds */
    padding: 15px;
}

.trending-pro-card .pro-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    height: 38px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.trending-pro-card .pro-price .current {
    font-size: 18px;
    color: var(--premium-primary);
    font-weight: 700;
}

/* List Style for Chutney Books */
.col-12 .product-card-premium {
    display: flex;
    flex-direction: column;
    /* Restoring row for horizontal look in col-12 */
    align-items: center;
    padding: 15px;
    gap: 30px;
}

.col-12 .product-card-premium>a {
    flex: 0 0 150px;
    margin-bottom: 0 !important;
}

.col-12 .product-card-premium .product-detail {
    flex: 1;
    padding: 0 !important;
    text-align: left !important;
}

/* Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 9999;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 12px;
    margin-top: 10px;
    padding: 10px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none !important;
    border-bottom: 1px solid #f5f5f5;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.search-result-item .info h6 {
    margin: 0;
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.search-result-item .info p {
    margin: 0;
    font-size: 12px;
    color: var(--premium-primary);
    font-weight: 700;
}

/* Product Card Redesign - Original Type Premium */
.product-card-premium {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-premium:hover {
    border-color: #0da487;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-card-premium .product-image-box {
    background: transparent;
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-premium .product-image-box img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.product-card-premium .product-option {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    background: white !important;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    z-index: 10;
    margin-bottom: 0;
    border: 1px solid #eee;
    overflow: hidden;
}

.product-card-premium:hover .product-option {
    bottom: 15px;
    opacity: 1;
}

.product-card-premium .product-option li {
    border-right: 1px solid #eee;
}

.product-card-premium .product-option li:last-child {
    border-right: none;
}

.product-card-premium .product-option li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: var(--transition-smooth);
    background: white;
    font-size: 16px;
    /* Increased font size */
}

.product-card-premium .product-option li a:hover {
    color: var(--premium-primary);
    background: #f9f9f9;
}

.product-card-premium .category-label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    color: #999;
}

.product-card-premium .name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
    line-height: 1.4;
}

.product-card-premium .name:hover {
    color: var(--premium-primary);
}

.product-card-premium .product-rating {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.product-card-premium .product-rating i {
    font-size: 11px;
}

.product-card-premium .product-rating .rating-num {
    font-size: 11px;
    color: #bbb;
    margin-left: 5px;
}

.product-card-premium .unit-name {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
    display: block;
}

.product-card-premium .product-detail {
    display: flex;
    flex-direction: column;
    padding: 15px;
    flex-grow: 1;
    height: 100%;
    /* Ensure detail fills the card */
}

.product-card-premium .price-row {
    margin-top: auto;
    /* Push to bottom */
    padding-top: 15px;
    display: block !important;
}

.product-card-premium .price {
    font-size: 19px;
    font-weight: 700;
    color: #0da487 !important;
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-card-premium .price del {
    font-size: 14px;
    color: #aaa;
    font-weight: 400;
}

/* Consistently Styled Add Button */
.add-btn-premium {
    background: var(--fastkart-teal-light, #f3f9f8);
    color: var(--fastkart-teal, #0da487);
    border: 1px solid var(--fastkart-teal, #0da487);
    width: 100%;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 42px;
    gap: 8px;
}

.add-btn-premium i {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-btn-premium:hover {
    background: var(--fastkart-teal, #0da487);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 164, 135, 0.2);
}

.qty-box-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid var(--fastkart-teal, #0da487);
    border-radius: 50px;
    padding: 3px;
    min-height: 42px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.qty-box-premium button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
    flex-shrink: 0;
}

.qty-box-premium .qty-minus {
    background: #f8f9fa;
    color: #4a4a4a;
}

.qty-box-premium .qty-plus {
    background: var(--fastkart-teal, #0da487);
    color: #fff;
    box-shadow: 0 2px 6px rgba(13, 164, 135, 0.3);
}

.qty-box-premium .qty-minus:hover {
    background: #e9ecef;
    color: var(--fastkart-teal, #0da487);
}

.qty-box-premium .qty-plus:hover {
    background: #0b8d73;
    transform: scale(1.05);
}

.qty-box-premium .qty-input {
    flex: 1;
    min-width: 30px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 800;
    font-size: 16px;
    color: #1a1a1a;
    padding: 0;
    margin: 0;
    outline: none;
}

.qty-box-premium .qty-input {
    flex: 1;
    min-width: 30px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: #222;
    padding: 0;
    margin: 0;
}

/* Shop Header Styles */
.show-button {
    border: 1px solid #eee;
}

.grid-option ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.grid-option ul li.active a {
    background: var(--premium-primary);
    border-color: var(--premium-primary);
}

/* Mobile Optimizations */
@media (max-width: 576px) {
    .product-card-premium {
        min-height: 320px !important;
        padding: 10px !important;
    }

    .product-card-premium img {
        height: 120px !important;
        margin-bottom: 8px !important;
    }

    .product-card-premium .name {
        font-size: 13px !important;
        line-height: 1.4 !important;
        min-height: 54px !important;
        -webkit-line-clamp: 3 !important;
        margin-bottom: 5px !important;
    }

    .add-btn-premium {
        padding: 6px 10px !important;
        font-size: 12px !important;
    }

    .chutney-slider-container,
    .related-slider-container {
        padding: 10px 5px !important;
    }

    /* Scale down floating tools to prevent overlap */
    #back-to-top,
    .whatsapp-float {
        transform: scale(0.8);
        bottom: 20px !important;
    }

    .recipe-circular-badge {
        display: none !important;
    }
}


.grid-option ul li.active a i {
    color: white !important;
}

.dropdown-toggle::after {
    margin-left: 10px;
}

/* Premium Product Card Redesign (Modern) */
.premium-grid-layout {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
}

@media (max-width: 1440px) {
    .premium-grid-layout {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 1024px) {
    .premium-grid-layout {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 575px) {
    .premium-grid-layout {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

.product-card-modern {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid #f0f0f0;
}

.product-card-modern:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-card-modern .product-image {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    min-height: 200px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    margin-bottom: 16px;
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
}

.product-card-modern .product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card-modern img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    mix-blend-mode: multiply;
    display: block !important;
    margin: auto !important;
}

.product-card-modern .pro-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4757;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    z-index: 2;
}

.product-card-modern .product-detail {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-modern .brand {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-card-modern .title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    text-decoration: none;
}

.product-card-modern .rating {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #ffb800;
    margin-bottom: 12px;
}

.product-card-modern .rating span {
    color: #777;
    margin-left: 6px;
    font-size: 12px;
}

.product-card-modern .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--premium-primary, #1b6016);
    margin-bottom: 16px;
    margin-top: auto;
}

.product-card-modern .add-to-cart-container {
    width: 100%;
    margin-top: auto;
}

.product-card-modern .add-btn-modern {
    width: 100%;
    background: var(--premium-primary, #28a745);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-modern .add-btn-modern:hover {
    background: var(--premium-secondary, #218838);
    transform: scale(1.02);
}

.product-card-modern .qty-box-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f1f1f1;
    border-radius: 50px;
    padding: 4px;
}

.product-card-modern .qty-box-modern button {
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-card-modern .qty-box-modern input {
    background: transparent;
    border: none;
    width: 40px;
    text-align: center;
    font-weight: bold;
}

.product-card-modern .product-option-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 3;
}

.product-card-modern:hover .product-option-modern {
    opacity: 1;
    visibility: visible;
    bottom: 15px;
}

.product-card-modern .product-option-modern li {
    position: relative;
}

.product-card-modern .product-option-modern li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: #eee;
}

.product-card-modern .product-option-modern li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #444;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.product-card-modern .product-option-modern li a:hover {
    color: var(--theme-color, #ff8c00);
}

/* --- PRODUCT DETAILS PAGE --- */
.product-section {
    padding-top: 40px;
    background: #fff;
}

.right-box-contain .name {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--premium-text-dark);
}

.price-rating h3 {
    font-size: 28px;
    color: var(--premium-primary);
}

.select-package {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    list-style: none;
    margin: 15px 0 25px;
}

.select-package li a {
    display: block;
    padding: 10px 22px;
    border: 1px solid #eee;
    border-radius: 12px;
    color: #555;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.select-package li a:hover {
    border-color: var(--premium-primary);
    color: var(--premium-primary);
    transform: translateY(-2px);
}

.select-package li a.active {
    background: var(--premium-primary-light);
    border-color: var(--premium-primary);
    color: var(--premium-primary);
    box-shadow: 0 4px 12px rgba(13, 164, 135, 0.15);
}

.share-icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none !important;
}

.share-icon-btn.whatsapp {
    background: #25D366;
}

.share-icon-btn.facebook {
    background: #1877F2;
}

.share-icon-btn.instagram {
    background: #E4405F;
}

.share-icon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
}

/* Accordion Customization */
.accordion-box .accordion-item {
    border: 1px solid #f0f0f0;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-box .accordion-button {
    font-weight: 700;
    color: var(--premium-text-dark);
    padding: 20px;
    background: #fff;
}

.accordion-box .accordion-button:not(.collapsed) {
    background: var(--premium-primary-light);
    color: var(--premium-primary);
    box-shadow: none;
}

.accordion-box .accordion-body {
    padding: 25px;
    line-height: 1.8;
    color: #555;
}

/* Breadcrumb refinement */
.breadcrumb-section {
    padding: 30px 0;
    background: #fcfcfc;
}

.breadcrumb-contain h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.breadcrumb-item a {
    color: var(--premium-primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--premium-text-muted);
}

@media (max-width: 768px) {
    .right-box-contain .name {
        font-size: 24px;
    }

    .price-rating h3 {
        font-size: 22px;
    }
}

/* Chutney Book Specific Layout Fixes */
.chutney-detail-custom {
    text-align: center;
    padding: 20px 15px 30px !important;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.chutney-detail-custom .title {
    margin-bottom: 5px !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    color: #333;
}

.chutney-recipe-badge {
    background: #f0f7f4;
    color: #487848;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    display: inline-block;
    margin-top: 15px;
    border: 1px solid rgba(72, 120, 72, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

height: 45px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
color: #fff;
transition: var(--transition-smooth);
border: none;
text-decoration: none !important;
}

.share-icon-btn.whatsapp {
    background: #25D366;
}

.share-icon-btn.facebook {
    background: #1877F2;
}

.share-icon-btn.instagram {
    background: #E4405F;
}

.share-icon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
}

/* Accordion Customization */
.accordion-box .accordion-item {
    border: 1px solid #f0f0f0;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-box .accordion-button {
    font-weight: 700;
    color: var(--premium-text-dark);
    padding: 20px;
    background: #fff;
}

.accordion-box .accordion-button:not(.collapsed) {
    background: var(--premium-primary-light);
    color: var(--premium-primary);
    box-shadow: none;
}

.accordion-box .accordion-body {
    padding: 25px;
    line-height: 1.8;
    color: #555;
}

/* Breadcrumb refinement */
.breadcrumb-section {
    padding: 30px 0;
    background: #fcfcfc;
}

.breadcrumb-contain h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.breadcrumb-item a {
    color: var(--premium-primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--premium-text-muted);
}

@media (max-width: 768px) {
    .right-box-contain .name {
        font-size: 24px;
    }

    .price-rating h3 {
        font-size: 22px;
    }
}