/* ===========================
   Kidupia - Main Stylesheet
   =========================== */

/* ===========================
   FONT UTILITY CLASSES
   =========================== */

/* Cardo */
.cardo-regular        { font-family: "Cardo", serif; font-weight: 400; font-style: normal; }
.cardo-bold           { font-family: "Cardo", serif; font-weight: 700; font-style: normal; }
.cardo-regular-italic { font-family: "Cardo", serif; font-weight: 400; font-style: italic; }

/* Roboto */
.roboto-thin          { font-family: "Roboto", sans-serif; font-optical-sizing: auto; font-weight: 100; font-style: normal; font-variation-settings: "wdth" 100; }
.roboto-light         { font-family: "Roboto", sans-serif; font-optical-sizing: auto; font-weight: 300; font-style: normal; font-variation-settings: "wdth" 100; }
.roboto-regular       { font-family: "Roboto", sans-serif; font-optical-sizing: auto; font-weight: 400; font-style: normal; font-variation-settings: "wdth" 100; }
.roboto-medium        { font-family: "Roboto", sans-serif; font-optical-sizing: auto; font-weight: 500; font-style: normal; font-variation-settings: "wdth" 100; }
.roboto-semibold      { font-family: "Roboto", sans-serif; font-optical-sizing: auto; font-weight: 600; font-style: normal; font-variation-settings: "wdth" 100; }
.roboto-bold          { font-family: "Roboto", sans-serif; font-optical-sizing: auto; font-weight: 700; font-style: normal; font-variation-settings: "wdth" 100; }
.roboto-extrabold     { font-family: "Roboto", sans-serif; font-optical-sizing: auto; font-weight: 800; font-style: normal; font-variation-settings: "wdth" 100; }
.roboto-black         { font-family: "Roboto", sans-serif; font-optical-sizing: auto; font-weight: 900; font-style: normal; font-variation-settings: "wdth" 100; }

/* Inter */
.inter-thin           { font-family: "Inter", sans-serif; font-optical-sizing: auto; font-weight: 100; font-style: normal; }
.inter-light          { font-family: "Inter", sans-serif; font-optical-sizing: auto; font-weight: 300; font-style: normal; }
.inter-regular        { font-family: "Inter", sans-serif; font-optical-sizing: auto; font-weight: 400; font-style: normal; }
.inter-medium         { font-family: "Inter", sans-serif; font-optical-sizing: auto; font-weight: 500; font-style: normal; }
.inter-semibold       { font-family: "Inter", sans-serif; font-optical-sizing: auto; font-weight: 600; font-style: normal; }
.inter-bold           { font-family: "Inter", sans-serif; font-optical-sizing: auto; font-weight: 700; font-style: normal; }
.inter-extrabold      { font-family: "Inter", sans-serif; font-optical-sizing: auto; font-weight: 800; font-style: normal; }
.inter-black          { font-family: "Inter", sans-serif; font-optical-sizing: auto; font-weight: 900; font-style: normal; }

/* Jost */
.jost-thin            { font-family: "Jost", sans-serif; font-optical-sizing: auto; font-weight: 100; font-style: normal; }
.jost-light           { font-family: "Jost", sans-serif; font-optical-sizing: auto; font-weight: 300; font-style: normal; }
.jost-regular         { font-family: "Jost", sans-serif; font-optical-sizing: auto; font-weight: 400; font-style: normal; }
.jost-medium          { font-family: "Jost", sans-serif; font-optical-sizing: auto; font-weight: 500; font-style: normal; }
.jost-semibold        { font-family: "Jost", sans-serif; font-optical-sizing: auto; font-weight: 600; font-style: normal; }
.jost-bold            { font-family: "Jost", sans-serif; font-optical-sizing: auto; font-weight: 700; font-style: normal; }
.jost-extrabold       { font-family: "Jost", sans-serif; font-optical-sizing: auto; font-weight: 800; font-style: normal; }
.jost-black           { font-family: "Jost", sans-serif; font-optical-sizing: auto; font-weight: 900; font-style: normal; }

:root {
    --primary: #e91e8c;
    --primary-dark: #c4176e;
    --primary-light: #fce4f3;
    --secondary: #ff6b35;
    --accent-yellow: #ffc107;
    --accent-green: #4caf50;
    --accent-blue: #2196f3;
    --dark: #1a1a2e;
    --dark-2: #333333;
    --gray: #777777;
    --gray-light: #f8f8f8;
    --border: #e8e8e8;
    --white: #ffffff;
    --font-inter: 'Jost', sans-serif;
    --font-cardo: 'Jost', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --font-roboto-slab: 'Roboto Slab', serif;
    --font-jost: 'Jost', sans-serif;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body, input, select, optgroup, textarea {
    font-weight: 400 !important;
    font-size: 16px !important;
    letter-spacing: 0.5px !important;
    font-family: var(--font-jost) !important;
    color: #666 !important;
}
body {
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-cardo);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 28px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-inter);
    transition: all var(--transition);
    cursor: pointer;
    display: inline-block;
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233,30,140,0.3);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-inter);
    transition: all var(--transition);
    cursor: pointer;
    display: inline-block;
}
.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
}

.section-tag {
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9ccb0b;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-jost);
    font-size: 36px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.2;
}

.section-title span { color: var(--primary); }

/* ===========================
   TOP BAR
   =========================== */
.top-bar {
    background: #fdc903;
    color: #1a1a1a;
    font-size: 12px;
    padding: 7px 0;
}
.top-bar a {
    color: #1a1a1a;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.7px;
    white-space: nowrap;
}
.top-bar a:hover { color: rgba(0,0,0,0.6); }
.top-bar-marquee {
    overflow: hidden;
    white-space: nowrap;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.7px;
}
.top-bar-marquee span {
    display: inline-block;
    animation: marquee 25s linear infinite;
}
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ===========================
   NAVBAR
   =========================== */
.main-navbar {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.navbar-brand img { height: 40px; }

.brand-text {
    font-family: var(--font-cardo);
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.brand-text span { color: var(--dark); }

.search-form {
    position: relative;
    flex: 1;
    max-width: 500px;
}
.search-form input {
    width: 100%;
    border: 2px solid var(--border);
    border-radius: 25px;
    padding: 9px 50px 9px 20px;
    font-size: 13px;
    font-family: var(--font-inter);
    outline: none;
    transition: border-color var(--transition);
}
.search-form input:focus { border-color: var(--primary); }
.search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #9ccb0b;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    font-size: 13px;
}
.search-form button:hover { background: #7faa09; }

.nav-icons a {
    position: relative;
    color: #9ccb0b;
    font-size: 18px;
    padding: 0 10px;
    transition: color var(--transition);
}
.nav-icons a:hover { color: #9ccb0b; }
.nav-icons .badge-count {
    position: absolute;
    top: -6px;
    right: 2px;
    background: var(--primary);
    color: var(--white);
    font-size: 9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.nav-icon-label {
    color: var(--gray);
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 17px;
}

.main-nav {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 0;
}
.main-nav ul li.menu-item a {
    padding: 20px !important;
    display: block;
    position: relative;
}

/* Menu Icon Styles */
.menu-icon {
    margin-right: 8px;
    font-size: 16px;
    color: inherit;
}
#mobileNav .menu-icon {
    margin-right: 10px;
    font-size: 18px;
}

/* Icon-only mode - for account/cart menu */
.icon-only .menu-icon {
    margin-right: 0;
    font-size: 18px;
}
.nav-icons .icon-only a {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.nav-icons .icon-only .menu-icon {
    font-size: 20px;
}

/* Account/Cart menu - icon on top of text */
.nav-icons .menu-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.nav-icons .menu-icon {
    margin-right: 0;
    margin-bottom: 4px;
    font-size: 20px;
}
.nav-icons .menu-item a .menu-icon + span,
.nav-icons .menu-item a .menu-icon + a {
    font-size: 12px;
    line-height: 1.2;
}
.main-nav .nav-link {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: var(--dark-2);
    padding: 12px 20px;
    transition: color var(--transition);
    position: relative;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a { color: #9ccb0b; }
.main-nav .nav-link.active::after,
.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #9ccb0b;
    border-radius: 2px;
}

.main-nav .dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    min-width: 200px;
}
.main-nav .dropdown-item {
    font-size: 13px;
    padding: 8px 20px;
    transition: background var(--transition);
}
.main-nav .dropdown-item:hover { background: var(--primary-light); color: var(--primary); }

/* Mobile Navigation Active State */
#mobileNav .nav-link {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}
#mobileNav .nav-link:hover,
#mobileNav .current-menu-item > a,
#mobileNav .current_page_item > a {
    color: #9ccb0b;
    background: var(--primary-light);
}

.nav-categories-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background var(--transition);
}
.nav-categories-btn:hover { background: var(--primary-dark); }

/* ===========================
   HERO BANNER SLIDER
   =========================== */
.hero-section { overflow: hidden; position: relative; }

.hero-swiper { height: auto; }

.hero-slide {
    background: #f7e8ef;
    min-height: 460px;
    display: flex;
    align-items: stretch;
    position: relative;
}

/* Full-bleed layout: image left, text right */
.hero-inner {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 460px;
}

.hero-img-col {
    flex: 0 0 58%;
    max-width: 58%;
    position: relative;
    overflow: hidden;
}
.hero-img-col .hero-img-wrap {
    width: 100%;
    height: 100%;
    min-height: 460px;
}
.hero-img-col .hero-img-wrap img,
.hero-img-col .hero-img-wrap .img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 0;
}

.hero-text-col {
    flex: 0 0 42%;
    max-width: 42%;
    display: flex;
    align-items: center;
    padding: 50px 60px 50px 50px;
}

.hero-content { width: 100%; }

.hero-slide .hero-tag {
    letter-spacing: 2px;
    font-size: 19px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 16px;
    display: block;
}
.hero-slide h1 {
    font-family: var(--font-jost);
    font-size: 51px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 28px;
}
.hero-slide p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Slide background variants */
.hero-slide.slide-blush { background: #f5e6ee; }
.hero-slide.slide-blue  { background: #e8f0f7; }
.hero-slide.slide-cream { background: #f7f3e8; }

/* Responsive hero */
@media (max-width: 991px) {
    .hero-inner { flex-direction: column; min-height: auto; }
    .hero-img-col, .hero-text-col { flex: 0 0 100%; max-width: 100%; }
    .hero-img-col .hero-img-wrap,
    .hero-img-col .hero-img-wrap img,
    .hero-img-col .hero-img-wrap .img-placeholder { min-height: 280px; height: 280px; }
    .hero-text-col { padding: 30px 24px; }
    .hero-slide h1 { font-size: 32px; }
}
@media (max-width: 575px) {
    .hero-slide h1 { font-size: 26px; }
    .hero-img-col .hero-img-wrap,
    .hero-img-col .hero-img-wrap img,
    .hero-img-col .hero-img-wrap .img-placeholder { min-height: 220px; height: 220px; }
}

/* Swiper custom arrows */
.swiper-button-next, .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background: rgba(255,255,255,0.85) !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15) !important;
    color: var(--dark) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
}
.hero-swiper .swiper-button-prev { left: 16px !important; }
.hero-swiper .swiper-button-next { right: 16px !important; }
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 13px !important;
    font-weight: 800 !important;
    color: var(--dark) !important;
}
.swiper-pagination-bullet { background: var(--primary) !important; }
.swiper-pagination-bullet-active { opacity: 1 !important; }
.hero-swiper .swiper-pagination { bottom: 16px !important; }

/* ===========================
   PROMO BANNERS (2 col)
   =========================== */
.promo-section { padding: 30px 0; }

/* Promo banner card — full bg image, text on right */
.promo-section .row { align-items: stretch; }
.promo-section .col-md-6 { display: flex; flex-direction: column; }
.promo-banner-card {
    display: flex;
    align-items: stretch;
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 280px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    cursor: pointer;
    background-size: auto 100%;
    background-position: left center;
    background-repeat: no-repeat;
    transition: background-size 0.5s ease;
}
.promo-banner-card.promo-banner-cream { background-color: #f5ede0; }
.promo-banner-card.promo-banner-mint  { background-color: #ddeee6; }
.promo-banner-card:hover { background-size: auto 110%; }

/* Text panel — right side, uses card bg color naturally */
.promo-banner-body {
    margin-left: auto;
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    padding: 30px 28px;
}
.promo-banner-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 8px;
    display: block;
}
.promo-banner-title {
    font-family: var(--font-jost);
    font-size: 24px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 18px;
}
.promo-banner-btn {
    align-self: flex-end;
    padding: 10px 28px;
    font-size: 13px;
    border-radius: 4px;
    background: #9ccb0b;
    color: #fff;
}
.promo-banner-btn:hover {
    background: #7faa09;
    color: #fff;
}

@media (max-width: 575px) {
    .promo-banner-card { flex-direction: column; }
    .promo-banner-img { flex: 0 0 180px; max-width: 100%; height: 180px; }
    .promo-banner-body { padding: 20px; }
    .promo-banner-title { font-size: 20px; }
}

/* ===========================
   CATEGORIES SECTION
   =========================== */
.categories-section { padding: 60px 0; }

.category-swiper { padding: 10px 5px 30px; }

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px 15px;
    text-align: center;
    border: 1px solid #e8e8e8;
    transition: all var(--transition);
    cursor: pointer;
}
.category-card:hover {
    transform: translateY(-5px);
}
.category-card img,
.category-card video {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
    margin: 0 auto 15px;
    border-radius: var(--radius);
}
.cat-media-wrap {
    position: relative;
    width: 100%;
    min-height: 250px;
    height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 15px;
}
.cat-media-wrap img,
.cat-media-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 0;
}
.cat-media-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1.6;
    pointer-events: none;
}
.cat-media-badge.gif-badge  { background: #ff4ecd; color: #fff; }
.cat-media-badge.vid-badge  { background: #1c1c1c; color: #fff; }
/* animated shimmer for placeholder media */
@keyframes shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position:  400px 0; }
}
.cat-media-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 800px 100%;
    animation: shimmer 1.6s infinite linear;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    gap: 6px; color: #bbb; font-size: 12px;
}
.cat-media-placeholder i { font-size: 26px; }
.category-card h5 {
    font-size: 17px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 4px;
    font-family: var(--font-jost);
}
.category-card p {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    font-family: var(--font-jost);
    color: #666;
    margin: 0;
}

/* ===========================
   INFO SECTION (Reading & Cultural)
   =========================== */
.info-section { padding: 60px 0; background: var(--white); }
.info-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.info-img-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    background: #f5d0e8;
}
.info-content { padding: 0 20px; }
.info-content p.lead {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}
.info-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.info-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}
.info-feature-icon.icon-pink { background: var(--primary-light); color: var(--primary); }
.info-feature-icon.icon-blue { background: #e3f2fd; color: var(--accent-blue); }
.info-feature-icon.icon-green { background: #e8f5e9; color: var(--accent-green); }
.info-feature-icon.icon-yellow { background: #fff8e1; color: var(--accent-yellow); }
.info-feature-item h6 { font-size: 14px; font-weight: 600; margin-bottom: 4px; font-family: var(--font-inter); }
.info-feature-item p { font-size: 12px; color: var(--gray); margin: 0; }

/* ===========================
   TRENDING PRODUCTS — 2-Row Slider
   =========================== */
.trending-section { padding: 60px 0; background: #f5f5f5; }

/* Wrapper holds arrows + swiper side-by-side */
.trending-slider-wrap {
    display: flex;
    align-items: center;
    gap: 0;
}

/* Side arrow buttons */
.trend-arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--dark-2);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10;
    box-shadow: var(--shadow);
}
.trend-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.trend-arrow-prev { margin-right: 10px; }
.trend-arrow-next { margin-left: 10px; }

/* Swiper fills remaining space */
.trending-row-swiper { flex: 1; min-width: 0; background: transparent; }

/* Product title as pink link */
.product-title-link {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 22px;
    margin-bottom: 2px;
    font-family: var(--font-jost);
}
.product-title-link:hover { color: #1a1a1a; text-decoration: none; }

/* Countdown timer */
.countdown-timer {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 3;
    letter-spacing: 0.3px;
}

/* View Cart button */
.btn-view-cart {
    width: 100%;
    background: #9ccb0b;
    border: none;
    color: #fff;
    border-radius: 6px;
    padding: 10px 8px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-inter);
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-view-cart:hover { background: #7faa09; color: #fff; }

/* Tighten product info in trending */
.trending-row-swiper .product-info { padding: 12px; }
.trending-row-swiper .product-price .current { font-size: 14px; font-weight: 700; }
.trending-row-swiper .product-price .original { font-size: 11px; }
.trending-row-swiper .btn-add-cart,
.trending-row-swiper .btn-select-options,
.trending-row-swiper .btn-view-cart { font-size: 15px; padding: 7px; letter-spacing: 0.3px; text-align: center; }

@media (max-width: 767px) {
    .trend-arrow { display: none; }
}

.product-swiper { padding: 10px 5px 40px; }

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: all var(--transition);
    position: relative;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #e91e8c;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-badge.badge-new { background: #e91e8c; }
.product-badge.badge-sale { background: #e91e8c; }

.product-img-wrap {
    position: relative;
    overflow: hidden;
    background: #fff;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
    transition: transform var(--transition);
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    transition: bottom var(--transition);
    padding: 10px;
}
.product-card:hover .product-actions { bottom: 10px; }
.product-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray);
    box-shadow: var(--shadow);
    font-size: 14px;
    transition: all var(--transition);
}
.product-action-btn:hover { background: var(--primary); color: var(--white); }

.product-info { padding: 15px; }
.product-info h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    font-family: var(--font-inter);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.product-rating .stars { color: var(--accent-yellow); font-size: 12px; }
.product-rating .count { font-size: 11px; color: var(--gray); }
.product-price { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.product-price .current { font-size: 16px; font-weight: 700; color: #9ccb0b; }
.product-price .original { font-size: 12px; color: #e53935; text-decoration: line-through; }

/* WooCommerce Product Price Override */
.woocommerce .product-price,
.woocommerce .price,
.woocommerce-Price-amount {
    color: #9ccb0b !important;
    font-weight: 700;
    font-family: var(--font-inter);
}

.woocommerce .product-price .original,
.woocommerce .price del,
.woocommerce .price del .woocommerce-Price-amount {
    color: #e53935 !important;
    font-weight: 400;
    text-decoration: line-through;
}
/* Shop page striked price color */
.woocommerce-shop .product-price del,
.woocommerce-shop .price del,
.woocommerce-shop .price del .woocommerce-Price-amount,
.shop-page .product-price del,
.shop-page .price del,
.shop-page .price del .woocommerce-Price-amount {
    color: #e53935 !important;
}

/* Global del element styling */
del, del span, del bdi {
    color: #e91e8c;
    font-size: 12px;
}

.btn-add-cart {
    text-align: center;
    width: 100%;
    background: #fdc903;
    border: none;
    color: #1a1a1a;
    display: block;
    border-radius: 6px;
    padding: 10px 8px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-jost);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-add-cart:hover { background: #e6b600; color: #1a1a1a; }

/* WooCommerce default add to cart button styling */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce .add_to_cart_button,
.woocommerce .product_type_simple .button,
.woocommerce .product_type_variable .button,
.woocommerce .product-type-simple .button,
.woocommerce .product-type-variable .button,
.woocommerce .product-type-grouped .button,
.woocommerce a.add_to_cart_button,
.woocommerce button.add_to_cart_button,
.shop-page a.button,
.shop-page button.button,
.shop-page .add_to_cart_button,
.shop-page-section .add_to_cart_button,
.woocommerce-page .add_to_cart_button,
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product button.button {
    width: 100% !important;
    background: #fdc903 !important;
    border: none !important;
    color: #1a1a1a !important;
    border-radius: 6px !important;
    padding: 10px 8px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    font-family: var(--font-jost) !important;
    cursor: pointer !important;
    transition: all var(--transition) !important;
    text-align: center !important;
    display: inline-block !important;
    line-height: 1.5 !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce .add_to_cart_button:hover,
.woocommerce .product_type_simple .button:hover,
.woocommerce .product_type_variable .button:hover,
.woocommerce .product-type-simple .button:hover,
.woocommerce .product-type-variable .button:hover,
.woocommerce .product-type-grouped .button:hover,
.woocommerce a.add_to_cart_button:hover,
.woocommerce button.add_to_cart_button:hover,
.shop-page a.button:hover,
.shop-page button.button:hover,
.shop-page .add_to_cart_button:hover,
.shop-page-section .add_to_cart_button:hover,
.woocommerce-page .add_to_cart_button:hover,
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover,
.woocommerce ul.products li.product button.button:hover {
    background: #e6b600 !important;
    color: #1a1a1a !important;
}
.btn-select-options {
    width: 100%;
    background: #fdc903;
    border: none;
    color: #1a1a1a;
    border-radius: 6px;
    padding: 10px 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-inter);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-select-options:hover { background: #e6b600; color: #1a1a1a; }

/* ===========================
   FEATURES STRIP
   =========================== */
.features-strip { padding: 35px 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feature-item { display: flex; align-items: center; gap: 15px; }
.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e7fce4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ccb0b;
    font-size: 20px;
    flex-shrink: 0;
}
.feature-text h6 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 2px;
    font-family: var(--font-jost);
}
.feature-text p {
    margin: 0;
    color: #666666;
    font-size: 16px;
}

/* ===========================
   PROMO BANNERS ROW 2
   =========================== */
.promo2-section { padding: 30px 0; background: var(--gray-light); }
.promo2-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 160px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.promo2-card.promo2-blue { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.promo2-card.promo2-green { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.promo2-card.promo2-orange { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.promo2-card .tag { font-size: 11px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.promo2-card h4 { font-size: 20px; color: var(--dark); margin-bottom: 10px; }
.promo2-card-img { position: absolute; right: 10px; bottom: 0; height: 140px; object-fit: contain; }

/* ===========================
   FEATURED PRODUCTS
   =========================== */
.featured-section { padding: 60px 0; background: var(--white); }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section { padding: 60px 0; background: var(--gray-light); }

.testimonial-swiper { padding: 10px 5px 40px; }
.testimonial-swiper { padding: 10px 5px 10px; }
.testimonial-swiper .swiper-slide { height: auto; display: flex; }

/* Slide inner: card on top, author below */
.testimonial-slide-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 18px;
}
.testimonial-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 28px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    border: 1px solid var(--border);
    flex: 1;
}
/* Speech bubble tail — bottom left */
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 28px;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 0px solid transparent;
    border-top: 14px solid var(--white);
    filter: drop-shadow(0 2px 1px rgba(0,0,0,0.07));
}
.testimonial-quote {
    color: #1e1e1e;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--font-jost);
    margin-bottom: 12px;
    line-height: 1.4;
}
.testimonial-card p {
    margin: 0;
    font-style: normal;
    color: #666666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.5px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 4px;
}
.testimonial-author h6 {
    color: #1e1e1e;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 3px;
    font-family: var(--font-jost);
}
.testimonial-author span {
    color: #666666;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

/* Always-visible side arrows — yellow circles */
.test-arrow-wrap { display: flex; align-items: center; gap: 12px; }
.test-arrow {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fdc903;
    border: none;
    color: #1a1a1a;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.test-arrow:hover { background: #e6b600; }

/* ===========================
   LOGO SLIDER
   =========================== */
.logo-section { padding: 40px 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logo-swiper { padding: 5px 0; }
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition);
}
.logo-item:hover { filter: grayscale(0%); opacity: 1; }
.logo-item img { max-height: 50px; object-fit: contain; }
.logo-item .logo-text {
    font-family: var(--font-cardo);
    font-size: 22px;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: -0.5px;
}

/* ===========================
   BLOG SECTION
   =========================== */
.blog-section { padding: 60px 0; background: var(--gray-light); }

.blog-swiper { padding: 10px 5px 40px; }

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.blog-card-img {
    height: 200px;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
    background: #e8d5f0;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 20px; }
.blog-meta { display: flex; gap: 12px; font-size: 11px; color: var(--gray); margin-bottom: 10px; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card-body h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
    font-family: var(--font-inter);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-body p { font-size: 13px; color: var(--gray); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-read-more { font-size: 13px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; }
.blog-read-more:hover { color: var(--primary-dark); }
.blog-read-more i { font-size: 11px; transition: transform var(--transition); }
.blog-read-more:hover i { transform: translateX(3px); }

/* ===========================
   NEWSLETTER
   =========================== */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #c4176e 100%);
    position: relative;
    overflow: hidden;
}
.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.newsletter-content { position: relative; z-index: 1; }
.newsletter-content h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 10px;
}
.newsletter-content p { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 30px; }
.newsletter-form { display: flex; gap: 0; max-width: 500px; margin: 0 auto; }
.newsletter-form input {
    flex: 1;
    border: none;
    border-radius: 25px 0 0 25px;
    padding: 14px 24px;
    font-size: 14px;
    font-family: var(--font-inter);
    outline: none;
}
.newsletter-form button {
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 0 25px 25px 0;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-inter);
    cursor: pointer;
    transition: background var(--transition);
}
.newsletter-form button:hover { background: #000; }

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: #1a1a2e;
    color: #aaa;
    padding: 60px 0 0;
    border-top: none;
    font-size: 16px;
    font-weight: 400;
}
.footer-brand { margin-bottom: 20px; }
.footer-brand .brand-text { font-size: 28px; color: #fff; }
.footer p { font-size: 16px; font-weight: 400; line-height: 1.7; color: #aaa; }
.footer h5 { font-size: 16px; font-weight: 400; color: #fff; margin-bottom: 20px; font-family: var(--font-jost); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 16px; font-weight: 400; color: #aaa; transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: #9ccb0b; font-size: 16px; }
.footer-links a:hover { color: #fff; padding-left: 5px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    color: #aaa;
}
.footer-contact i { color: #9ccb0b; font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ccb0b;
    font-size: 14px;
    transition: all var(--transition);
}
.footer-social a:hover { background: #9ccb0b; color: var(--white); transform: translateY(-3px); }
.footer-apps { display: flex; gap: 10px; margin-top: 15px; }
.footer-apps a {
    border-radius: var(--radius);
    padding: 8px 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 12px;
    transition: background var(--transition);
}
.footer-apps a i { font-size: 20px; }
.footer-apps a:hover { background: var(--primary); color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    margin-top: 40px;
    background: #18644861;
}
.footer-bottom p { font-size: 16px; font-weight: 400; color: #fff; margin: 0; }
.footer-payments { display: flex; gap: 8px; align-items: center; }
.footer-payments img { height: 28px; border-radius: 4px; }
.payment-icon {
    background: #ddd;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* ===========================
   PLACEHOLDER IMAGES (colored boxes)
   =========================== */
.img-placeholder {
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 12px;
    text-align: center;
}
.img-ph-pink { background: #fce4f3; }
.img-ph-blue { background: #e3f2fd; }
.img-ph-yellow { background: #fff9e6; }
.img-ph-green { background: #e8f5e9; }
.img-ph-purple { background: #f3e5f5; }

/* ===========================
   BACK TO TOP
   =========================== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #9ccb0b;
    color: var(--white);
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 999;
    transition: all var(--transition);
}
#backToTop.visible { display: flex; }
#backToTop:hover { background: #7faa09; transform: translateY(-3px); }

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header { text-align: center; margin-bottom: 40px; }
.section-header .section-tag {
    display: block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9ccb0b;
    margin-bottom: 10px;
}
.section-header .section-title {
    font-size: 46px;
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0px;
}
.section-header p { font-size: 15px; color: var(--gray); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.section-divider { width: 50px; height: 3px; background: var(--primary); border-radius: 3px; margin: 12px auto 0; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1199px) {
    .hero-slide h1 { font-size: 42px; }
    .section-title { font-size: 30px; }
}

@media (max-width: 991px) {
    .hero-slide { padding: 40px 0 30px; min-height: auto; }
    .hero-slide h1 { font-size: 36px; }
    .info-features { grid-template-columns: 1fr; }
    .section-header .section-title { font-size: 28px; }
}

@media (max-width: 767px) {
    .hero-slide h1 { font-size: 28px; }
    .hero-slide .hero-img-wrap { margin-top: 25px; }
    .info-content { padding: 20px 0 0; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { border-radius: 25px; margin-bottom: 10px; }
    .newsletter-form button { border-radius: 25px; }
    .section-header .section-title { font-size: 24px; }
    .promo-card-img { height: 90px; right: 8px; }
    .features-strip .feature-item { flex-direction: column; text-align: center; }
}

@media (max-width: 575px) {
    .brand-text { font-size: 22px; }
    .hero-slide h1 { font-size: 24px; }
    .top-bar .d-flex { flex-direction: column; gap: 4px; text-align: center; }
}

/* ===========================
   UTILITIES
   =========================== */
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.rounded-custom { border-radius: var(--radius) !important; }
.rounded-lg-custom { border-radius: var(--radius-lg) !important; }
.shadow-custom { box-shadow: var(--shadow) !important; }

/* ===========================
   SIDE-ARROW WRAP (Featured Products — always visible, same as trending)
   =========================== */
.side-arrow-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 8px;
}
.side-arrow-wrap .trend-arrow-prev { margin-right: 10px; }
.side-arrow-wrap .trend-arrow-next { margin-left: 10px; }

/* ===========================
   HOVER-ARROW WRAP (Testimonials, Blog — arrows hidden until hover)
   =========================== */
.hover-arrow-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.hover-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--dark-2);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0;
    transition: opacity var(--transition), background var(--transition), color var(--transition);
}
.hover-arrow-prev { left: -18px; }
.hover-arrow-next { right: -18px; }
.hover-arrow-wrap:hover .hover-arrow { opacity: 1; }
.hover-arrow:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

@media (max-width: 767px) {
    .hover-arrow { display: none; }
}

/* Swiper nav overrides */
.swiper-button-next.custom-next,
.swiper-button-prev.custom-prev {
    position: static;
    width: 38px;
    height: 38px;
    margin: 0;
    background: var(--white);
    border-radius: 50%;
    border: 2px solid var(--border);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}
.swiper-button-next.custom-next:hover,
.swiper-button-prev.custom-prev:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.swiper-button-next.custom-next::after,
.swiper-button-prev.custom-prev::after { font-size: 13px !important; }
.slider-nav { display: flex; align-items: center; gap: 8px; margin-top: 30px; }

/* ===========================
   AJAX PRODUCT SEARCH
   =========================== */
.search-form {
    position: relative;
}

/* Search Loader */
.search-loader {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ccb0b;
    font-size: 16px;
    z-index: 5;
}

/* Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    margin-top: 8px;
    max-height: 400px;
    overflow-y: auto;
}

/* Search Results List */
.search-results-list {
    padding: 8px 0;
}

/* Search Result Item */
.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    transition: background var(--transition);
    border-bottom: 1px solid var(--gray-light);
}

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

.search-result-item:hover {
    background: var(--primary-light);
}

/* Search Result Image */
.search-result-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-light);
}

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

/* Search Result Details */
.search-result-details {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 4px 0;
    font-family: var(--font-jost);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.search-result-price {
    font-size: 13px;
    font-weight: 700;
    color: #9ccb0b;
    margin-bottom: 4px;
    font-family: var(--font-inter);
}

.search-result-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 11px;
    color: var(--accent-yellow);
}

/* No Results / Error Messages */
.search-no-results,
.search-error {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--gray);
    font-family: var(--font-jost);
}

.search-error {
    color: var(--primary);
}

/* Search Results Footer */
.search-results-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    background: var(--gray-light);
    text-align: center;
}

.search-results-footer a {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
    font-family: var(--font-inter);
}

.search-results-footer a:hover {
    color: var(--primary-dark);
}

/* Custom Scrollbar for Search Results */
.search-results-dropdown::-webkit-scrollbar {
    width: 6px;
}

.search-results-dropdown::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 3px;
}

.search-results-dropdown::-webkit-scrollbar-thumb {
    background: #9ccb0b;
    border-radius: 3px;
}

.search-results-dropdown::-webkit-scrollbar-thumb:hover {
    background: #7faa09;
}

/* Mobile Search Adjustments */
@media (max-width: 767px) {
    .search-results-dropdown {
        max-height: 300px;
    }

    .search-result-image {
        width: 50px;
        height: 50px;
    }

    .search-result-title {
        font-size: 13px;
    }

    .search-result-price {
        font-size: 12px;
    }
}

/* ===========================
   WOOCOMMERCE SINGLE PRODUCT
   =========================== */
.single-product-section {
    background: var(--white);
}

.product-gallery {
    position: relative;
}

.product-gallery .woocommerce-product-gallery__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-light);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.product-gallery .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.product-gallery .woocommerce-product-gallery__wrapper {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.product-gallery .woocommerce-product-gallery__thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
}

.product-gallery .woocommerce-product-gallery__thumbnail:hover,
.product-gallery .woocommerce-product-gallery__thumbnail.active {
    border-color: #9ccb0b;
    transform: scale(1.05);
}

.product-gallery .woocommerce-product-gallery__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details h1.product_title {
    font-family: var(--font-jost);
    font-size: 36px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-rating-single {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.product-rating-single .star-rating {
    color: var(--accent-yellow);
    font-size: 18px;
}

.product-rating-single .woocommerce-review-link {
    font-size: 14px;
    color: var(--gray);
    text-decoration: none;
    font-family: var(--font-inter);
    font-weight: 500;
    transition: color var(--transition);
}

.product-rating-single .woocommerce-review-link:hover {
    color: #9ccb0b;
}

.product-price-single .price {
    font-size: 28px;
    font-weight: 700;
    color: #9ccb0b;
    font-family: var(--font-inter);
    margin-bottom: 20px;
}

.product-price-single .price del {
    font-size: 18px;
    color: var(--gray);
    margin-right: 12px;
    font-weight: 400;
}

.product-short-description {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: var(--font-jost);
}

.product-add-to-cart {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.product-add-to-cart .quantity {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
}

.product-add-to-cart .quantity input {
    width: 70px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-family: var(--font-jost);
    padding: 12px;
    outline: none;
    font-weight: 600;
    color: var(--dark);
}

.product-add-to-cart .quantity input:focus {
    outline: none;
}

.product-add-to-cart .quantity button {
    background: transparent;
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    font-size: 18px;
    color: var(--dark);
    transition: all var(--transition);
    font-weight: 600;
}

.product-add-to-cart .quantity button:hover {
    color: #9ccb0b;
    background: var(--gray-light);
}

.product-add-to-cart .single_add_to_cart_button {
    background: #9ccb0b;
    border: none;
    color: var(--white);
    border-radius: var(--radius);
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-jost);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(156, 203, 11, 0.3);
}

.product-add-to-cart .single_add_to_cart_button:hover {
    background: #7faa09;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 203, 11, 0.4);
}

.product-meta {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 25px;
    font-family: var(--font-jost);
}

.product-meta .sku_wrapper,
.product-meta .posted_in {
    display: block;
    margin-bottom: 10px;
}

.product-meta span {
    font-weight: 600;
    color: var(--dark);
}

.product-meta a {
    color: #9ccb0b;
    text-decoration: none;
    transition: color var(--transition);
}

.product-meta a:hover {
    color: var(--primary);
}

/* Product Tabs */
.product-tabs .woocommerce-tabs {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.product-tabs .wc-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid var(--border);
    background: var(--gray-light);
}

.product-tabs .wc-tabs li {
    flex: 1;
    text-align: center;
}

.product-tabs .wc-tabs li a {
    display: block;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    text-decoration: none;
    font-family: var(--font-inter);
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
}

.product-tabs .wc-tabs li.active a,
.product-tabs .wc-tabs li a:hover {
    color: var(--primary);
    background: var(--white);
    border-bottom-color: var(--primary);
}

.product-tabs .woocommerce-Tabs-panel {
    padding: 30px;
}

.product-tabs .woocommerce-Tabs-panel h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-jost);
    color: var(--dark);
}

.product-tabs .woocommerce-Tabs-panel p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* Related Products */
.upsells.products,
.related.products {
    margin-top: 40px;
}

.upsells.products h2,
.related.products h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
    font-family: var(--font-jost);
    color: var(--dark);
}

.woocommerce .related.products ul.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce .related.products ul.products li.product {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
}

.woocommerce .related.products .product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.woocommerce .related.products .product-card:hover {
    transform: translateY(-5px);
}

.woocommerce .related.products .product-img-wrap {
    position: relative;
    overflow: hidden;
}

.woocommerce .related.products .product-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
}

.woocommerce .related.products .product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity var(--transition);
}

.woocommerce .related.products .product-card:hover .product-actions {
    opacity: 1;
}

.woocommerce .related.products .product-action-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.woocommerce .related.products .product-action-btn:hover {
    background: #9ccb0b;
    color: var(--white);
}

.woocommerce .related.products .product-info {
    padding: 15px;
}

.woocommerce .related.products .product-title-link {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    margin-bottom: 8px;
    font-family: var(--font-jost);
    line-height: 1.4;
    transition: color var(--transition);
}

.woocommerce .related.products .product-title-link:hover {
    color: #9ccb0b;
}

.woocommerce .related.products .product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.woocommerce .related.products .product-rating .stars {
    color: var(--accent-yellow);
    font-size: 12px;
}

.woocommerce .related.products .product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.woocommerce .related.products .product-price .current {
    font-size: 16px;
    font-weight: 700;
    color: #9ccb0b;
}

.woocommerce .related.products .product-price .original {
    font-size: 12px;
    color: #e53935;
    text-decoration: line-through;
}

.woocommerce .related.products .btn-add-cart,
.woocommerce .related.products .btn-select-options {
    width: 100%;
    background: #fdc903;
    border: none;
    color: #1a1a1a;
    border-radius: 6px;
    padding: 10px 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-jost);
    cursor: pointer;
    transition: all var(--transition);
}

.woocommerce .related.products .btn-add-cart:hover,
.woocommerce .related.products .btn-select-options:hover {
    background: #e6b600;
}

/* WooCommerce Archive Page */
.woocommerce-products-header {
    margin-bottom: 30px;
}

.woocommerce-products-header h1 {
    font-family: var(--font-jost);
    font-size: 36px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 10px;
}

.woocommerce-result-count {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.woocommerce-ordering {
    margin-bottom: 20px;
}

.woocommerce-ordering select {
    padding: 8px 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font-jost);
    color: var(--dark);
    outline: none;
    cursor: pointer;
}

.woocommerce-ordering select:focus {
    border-color: #9ccb0b;
}

/* WooCommerce Pagination */
.woocommerce-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.woocommerce-pagination ul {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-pagination li a,
.woocommerce-pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    font-family: var(--font-inter);
    transition: all var(--transition);
}

.woocommerce-pagination li a:hover,
.woocommerce-pagination li span.current {
    background: #9ccb0b;
    border-color: #9ccb0b;
    color: var(--white);
}

/* No Products */
.no-products {
    text-align: center;
    padding: 60px 20px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
}

.no-products p {
    font-size: 18px;
    color: var(--gray);
    font-family: var(--font-jost);
}

/* Responsive WooCommerce */
@media (max-width: 767px) {
    .product-details h1.product_title {
        font-size: 24px;
    }

    .product-price-single .price {
        font-size: 20px;
    }

    .product-tabs .wc-tabs {
        flex-wrap: wrap;
    }

    .product-tabs .wc-tabs li {
        flex: 1 1 50%;
    }

    .product-tabs .woocommerce-Tabs-panel {
        padding: 20px;
    }
}

/* ===========================
   SHOP SIDEBAR
   =========================== */
.shop-page-section {
    background: var(--white);
}

.shop-sidebar {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.sidebar-widget {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.sidebar-widget:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-widget-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: var(--font-jost);
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #9ccb0b;
    border-radius: 2px;
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    margin-bottom: 12px;
}

.sidebar-categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--gray);
    text-decoration: none;
    transition: color var(--transition);
    font-family: var(--font-jost);
}

.sidebar-categories li a:hover {
    color: #9ccb0b;
}

.sidebar-categories li a span {
    background: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
}

.sidebar-rating-filter {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.sidebar-rating-filter li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray);
    text-decoration: none;
    transition: color var(--transition);
    font-family: var(--font-jost);
}

.sidebar-rating-filter li a:hover {
    color: #9ccb0b;
}
.sidebar-rating-filter li a.active {
    color: #9ccb0b;
    font-weight: 600;
}

.sidebar-rating-filter .stars {
    color: var(--accent-yellow);
    font-size: 12px;
}

.sidebar-featured-products {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-product-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.sidebar-product-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--white);
}

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

.sidebar-product-info {
    flex: 1;
    min-width: 0;
}

.sidebar-product-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
    font-family: var(--font-jost);
    transition: color var(--transition);
}

.sidebar-product-title:hover {
    color: #9ccb0b;
}

.sidebar-product-price {
    font-size: 14px;
    font-weight: 700;
    color: #9ccb0b;
    font-family: var(--font-inter);
}

/* Shop Header */
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.shop-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--dark);
    margin: 0;
    font-family: var(--font-jost);
}

.shop-toolbar {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Price Filter Widget */
.widget_price_filter .price_slider {
    margin: 15px 0;
}

.widget_price_filter .price_slider_amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.widget_price_filter .price_slider_amount .button {
    background: #9ccb0b;
    border: none;
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
    font-family: var(--font-inter);
}

.widget_price_filter .price_slider_amount .button:hover {
    background: #7faa09;
}

.widget_price_filter .price_label {
    font-size: 14px;
    color: var(--gray);
    font-family: var(--font-jost);
}

/* Custom Price Range Slider */
.price-range-filter {
    padding: 10px 0;
}

.price-range-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--gray);
    font-family: var(--font-inter);
}

.price-range-values .price-min-label,
.price-range-values .price-max-label {
    font-weight: 600;
    color: var(--dark);
}

.price-range-filter input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.price-range-filter input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #9ccb0b;
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition);
}

.price-range-filter input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.price-range-filter input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #9ccb0b;
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition);
}

.price-range-filter input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
}

.price-range-filter input[type="range"]::-moz-range-track {
    height: 6px;
    border-radius: 3px;
    background: var(--border);
}

.price-current {
    margin-top: 15px;
    font-size: 14px;
    color: var(--gray);
    font-family: var(--font-jost);
}

.price-current span:first-child {
    font-weight: 500;
}

.price-current #priceValue {
    font-weight: 700;
    color: #9ccb0b;
    font-family: var(--font-inter);
}

/* Breadcrumb */
.woocommerce-breadcrumb {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.woocommerce-breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    transition: color var(--transition);
}

.woocommerce-breadcrumb a:hover {
    color: #9ccb0b;
}

/* ===========================
   MY ACCOUNT PAGE
   =========================== */
.my-account-section {
    background: var(--white);
}

.woocommerce-MyAccount-navigation {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 30px;
}

.woocommerce.woocommerce-MyAccount {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.woocommerce-MyAccount-navigation {
    flex: 0 0 280px;
    margin-bottom: 0;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 5px;
}

.woocommerce-MyAccount-navigation ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all var(--transition);
    font-family: var(--font-jost);
    border: 1px solid transparent;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--gray-light);
    color: #9ccb0b;
    border-color: var(--border);
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    background: #9ccb0b;
    color: var(--white);
    border-color: #9ccb0b;
}

.woocommerce-MyAccount-content {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.woocommerce-MyAccount-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: var(--font-jost);
}

.woocommerce-MyAccount-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    font-family: var(--font-jost);
}

/* My Account Forms */
.woocommerce-MyAccount-content form {
    margin-bottom: 30px;
}

.woocommerce-MyAccount-content .form-row {
    margin-bottom: 20px;
}

.woocommerce-MyAccount-content label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: var(--font-jost);
}

.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content input[type="tel"],
.woocommerce-MyAccount-content select,
.woocommerce-MyAccount-content textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font-jost);
    color: var(--dark);
    outline: none;
    transition: border-color var(--transition);
}

.woocommerce-MyAccount-content input[type="text"]:focus,
.woocommerce-MyAccount-content input[type="email"]:focus,
.woocommerce-MyAccount-content input[type="password"]:focus,
.woocommerce-MyAccount-content input[type="tel"]:focus,
.woocommerce-MyAccount-content select:focus,
.woocommerce-MyAccount-content textarea:focus {
    border-color: #9ccb0b;
}

.woocommerce-MyAccount-content .woocommerce-Button {
    background: #9ccb0b;
    border: none;
    color: var(--white);
    padding: 14px 30px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-jost);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(156, 203, 11, 0.3);
}

.woocommerce-MyAccount-content .woocommerce-Button:hover {
    background: #7faa09;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 203, 11, 0.4);
}

.woocommerce-MyAccount-content .woocommerce-Button--secondary {
    background: var(--gray);
    box-shadow: none;
}

.woocommerce-MyAccount-content .woocommerce-Button--secondary:hover {
    background: var(--dark);
}

.woocommerce-MyAccount-content .woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.woocommerce-MyAccount-content .woocommerce-form-login__rememberme input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.woocommerce-MyAccount-content .woocommerce-form-login__rememberme label {
    margin-bottom: 0;
    font-weight: 400;
}

.woocommerce-MyAccount-content .lost_password {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: #9ccb0b;
    text-decoration: none;
    transition: color var(--transition);
}

.woocommerce-MyAccount-content .lost_password:hover {
    color: var(--primary);
}

.woocommerce-MyAccount-content .woocommerce-message,
.woocommerce-MyAccount-content .woocommerce-error,
.woocommerce-MyAccount-content .woocommerce-info {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    font-family: var(--font-jost);
}

.woocommerce-MyAccount-content .woocommerce-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.woocommerce-MyAccount-content .woocommerce-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.woocommerce-MyAccount-content .woocommerce-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.woocommerce-MyAccount-content .woocommerce-message::before,
.woocommerce-MyAccount-content .woocommerce-error::before,
.woocommerce-MyAccount-content .woocommerce-info::before {
    content: none;
}

.woocommerce-MyAccount-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.woocommerce-MyAccount-content table th,
.woocommerce-MyAccount-content table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--gray);
    font-family: var(--font-jost);
}

.woocommerce-MyAccount-content table th {
    font-weight: 600;
    color: var(--dark);
    background: var(--gray-light);
}

.woocommerce-MyAccount-content .woocommerce-Button {
    background: #9ccb0b;
    border: none;
    color: var(--white);
    padding: 10px 25px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
    font-family: var(--font-inter);
    text-decoration: none;
    display: inline-block;
}

.woocommerce-MyAccount-content .woocommerce-Button:hover {
    background: #7faa09;
}

.woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
}

.woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: var(--font-jost);
}

.woocommerce-MyAccount-content .woocommerce-Addresses address {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    font-family: var(--font-jost);
}

/* Product Features on PDP */
.product-features {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.feature-item-single {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--gray);
    font-family: var(--font-jost);
}

.feature-item-single i {
    color: #9ccb0b;
    font-size: 16px;
}

/* Product Reviews Section */
.woocommerce-Reviews {
    margin-top: 40px;
}

.woocommerce-Reviews .commentlist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-Reviews .commentlist li {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 20px;
}

.woocommerce-Reviews .commentlist li .comment_container {
    display: flex;
    gap: 20px;
}

.woocommerce-Reviews .commentlist li .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
}

.woocommerce-Reviews .commentlist li .comment-text {
    flex: 1;
}

.woocommerce-Reviews .commentlist li .star-rating {
    color: var(--accent-yellow);
    font-size: 14px;
    margin-bottom: 10px;
}

.woocommerce-Reviews .commentlist li .meta {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
    font-family: var(--font-inter);
}

.woocommerce-Reviews .commentlist li .meta strong {
    color: var(--dark);
    font-weight: 600;
}

.woocommerce-Reviews .commentlist li .description {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    font-family: var(--font-jost);
}

.woocommerce-Reviews #review_form_wrapper {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-top: 30px;
}

.woocommerce-Reviews #review_form_wrapper h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: var(--font-jost);
}

.woocommerce-Reviews #review_form_wrapper .comment-form-rating {
    margin-bottom: 20px;
}

.woocommerce-Reviews #review_form_wrapper .comment-form-rating label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: var(--font-jost);
}

.woocommerce-Reviews #review_form_wrapper .stars {
    color: var(--accent-yellow);
    font-size: 20px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.woocommerce-Reviews #review_form_wrapper .stars a {
    color: #ddd;
    text-decoration: none;
    display: inline-block;
    position: relative;
    margin-left: 5px;
    transition: color var(--transition);
}

.woocommerce-Reviews #review_form_wrapper .stars a::before {
    content: '\f005';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.woocommerce-Reviews #review_form_wrapper .stars a:hover,
.woocommerce-Reviews #review_form_wrapper .stars a:hover ~ a,
.woocommerce-Reviews #review_form_wrapper .stars a.active,
.woocommerce-Reviews #review_form_wrapper .stars a.active ~ a {
    color: var(--accent-yellow);
}

.woocommerce-Reviews #review_form_wrapper .comment-form-comment label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: var(--font-jost);
}

.woocommerce-Reviews #review_form_wrapper .comment-form-comment textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font-jost);
    color: var(--dark);
    outline: none;
    transition: border-color var(--transition);
    min-height: 120px;
}

.woocommerce-Reviews #review_form_wrapper .comment-form-comment textarea:focus {
    border-color: #9ccb0b;
}

.woocommerce-Reviews #review_form_wrapper .form-submit {
    margin-top: 20px;
}

.woocommerce-Reviews #review_form_wrapper .form-submit input {
    background: #9ccb0b;
    border: none;
    color: var(--white);
    padding: 14px 40px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-jost);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(156, 203, 11, 0.3);
}

.woocommerce-Reviews #review_form_wrapper .form-submit input:hover {
    background: #7faa09;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 203, 11, 0.4);
}

/* Responsive Sidebar & My Account */
@media (max-width: 991px) {
    .shop-sidebar {
        margin-bottom: 30px;
    }

    .shop-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-toolbar {
        width: 100%;
        justify-content: space-between;
    }
}

/* Attribute Filter Checkboxes */
.sidebar-attribute-filter {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.attribute-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray);
    font-family: var(--font-jost);
    transition: color var(--transition);
}

.attribute-checkbox:hover {
    color: #9ccb0b;
}

.attribute-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}

.attribute-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: #9ccb0b;
    border-color: #9ccb0b;
}

.attribute-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--white);
    font-size: 10px;
}

.attribute-label {
    flex: 1;
    font-weight: 500;
}

.attribute-count {
    font-size: 12px;
    color: var(--gray);
    font-weight: 600;
}

/* Quick View Modal */
#quickViewModal .modal-content {
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#quickViewModal .modal-header {
    border-bottom: 1px solid var(--border);
    padding: 20px 25px;
}

#quickViewModal .modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font-jost);
}

#quickViewModal .modal-body {
    padding: 30px 25px;
}

.quick-view-product {
    display: flex;
    gap: 30px;
}

.quick-view-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    object-fit: contain;
}

.quick-view-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.quick-view-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

.quick-view-thumb:hover {
    transform: scale(1.05);
}

.quick-view-details h3.quick-view-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    font-family: var(--font-jost);
}

.quick-view-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.quick-view-rating .stars {
    font-size: 16px;
}

.quick-view-rating .review-count {
    font-size: 13px;
    color: var(--gray);
}

.quick-view-price {
    font-size: 24px;
    font-weight: 700;
    color: #9ccb0b;
    margin-bottom: 15px;
    font-family: var(--font-inter);
}

.quick-view-price del {
    font-size: 16px;
    color: var(--gray);
    margin-right: 10px;
    font-weight: 400;
}

.quick-view-description {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: var(--font-jost);
}

.quick-view-attributes {
    margin-bottom: 20px;
}

.quick-view-attributes .attribute-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--gray);
}

.quick-view-attributes .attribute-item strong {
    color: var(--dark);
    font-weight: 600;
}

.quick-view-stock {
    margin-bottom: 20px;
}

.quick-view-stock .in-stock {
    color: #28a745;
    font-size: 14px;
    font-weight: 500;
}

.quick-view-stock .out-of-stock {
    color: #dc3545;
    font-size: 14px;
    font-weight: 500;
}

.quick-view-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-view-actions .btn-primary {
    background: #9ccb0b;
    border: none;
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-jost);
    transition: all var(--transition);
}

.quick-view-actions .btn-primary:hover {
    background: #7faa09;
    transform: translateY(-2px);
}

.quick-view-actions .btn-add-cart {
    background: #fdc903;
    border: none;
    color: #1a1a1a;
    padding: 12px 25px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-jost);
    transition: all var(--transition);
}

.quick-view-actions .btn-add-cart:hover {
    background: #e6b600;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-jost);
    z-index: 9999;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notification-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.notification-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Wishlist/Compare Button States */
.btn-wishlist.active,
.btn-compare.active {
    background: #9ccb0b !important;
    color: var(--white) !important;
}

.btn-wishlist.active i {
    color: #e53935 !important;
}

.btn-compare.active i {
    color: var(--white) !important;
}

.btn-wishlist.loading,
.btn-compare.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Quick View Add to Cart Form */
.quick-view-add-to-cart {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
}

.quick-view-add-to-cart .quantity {
    width: 80px;
}

.quick-view-add-to-cart .quantity input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    text-align: center;
}

.quick-view-add-to-cart .btn-add-cart {
    flex: 1;
}

.quick-view-add-to-cart .btn-add-cart.loading {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

.quick-view-add-to-cart .btn-add-cart.loading:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Wishlist Page */
.wishlist-section {
    background: var(--gray-light);
}

.empty-wishlist {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px 30px;
    box-shadow: var(--shadow);
}

.wishlist-table-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.wishlist-table {
    width: 100%;
    border-collapse: collapse;
}

.wishlist-table thead {
    background: var(--gray-light);
}

.wishlist-table th {
    padding: 15px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font-jost);
    border-bottom: 2px solid var(--border);
}

.wishlist-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.wishlist-table tbody tr:last-child td {
    border-bottom: none;
}

.wishlist-table tbody tr:hover {
    background: var(--gray-light);
}

.wishlist-product {
    display: flex;
    gap: 20px;
    align-items: center;
}

.wishlist-product .product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.wishlist-product .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
}

.wishlist-product .product-details {
    flex: 1;
}

.wishlist-product .product-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    margin-bottom: 8px;
    font-family: var(--font-jost);
    transition: color var(--transition);
}

.wishlist-product .product-title:hover {
    color: #9ccb0b;
}

.wishlist-product .product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.wishlist-table .price-col {
    font-size: 18px;
    font-weight: 700;
    color: #9ccb0b;
    font-family: var(--font-inter);
}

.wishlist-table .price-col del {
    font-size: 14px;
    color: var(--gray);
    margin-right: 8px;
    font-weight: 400;
}

.wishlist-table .stock-col .in-stock {
    color: #28a745;
    font-size: 14px;
    font-weight: 500;
}

.wishlist-table .stock-col .out-of-stock {
    color: #dc3545;
    font-size: 14px;
    font-weight: 500;
}

.wishlist-table .action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.wishlist-table .btn-add-to-cart {
    background: #9ccb0b;
    border: none;
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-jost);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.wishlist-table .btn-add-to-cart:hover {
    background: #7faa09;
    transform: translateY(-2px);
}

.wishlist-table .btn-add-to-cart.loading {
    opacity: 0.6;
    pointer-events: none;
}

.wishlist-table .btn-remove {
    background: var(--gray);
    border: none;
    color: var(--dark);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-jost);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.wishlist-table .btn-remove:hover {
    background: var(--dark);
    color: var(--white);
}

.wishlist-table .btn-remove.loading {
    opacity: 0.6;
    pointer-events: none;
}

.wishlist-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.wishlist-actions .btn-primary {
    background: #9ccb0b;
    border: none;
    color: var(--white);
    padding: 14px 30px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-jost);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(156, 203, 11, 0.3);
}

.wishlist-actions .btn-primary:hover {
    background: #7faa09;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 203, 11, 0.4);
}

.wishlist-actions .btn-primary.loading {
    opacity: 0.6;
    pointer-events: none;
}

@media (max-width: 767px) {
    .wishlist-table-wrapper {
        padding: 15px;
    }
    
    .wishlist-table thead {
        display: none;
    }
    
    .wishlist-table tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 15px;
    }
    
    .wishlist-table td {
        display: block;
        padding: 10px 0;
        border: none;
    }
    
    .wishlist-product {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wishlist-product .product-image {
        width: 100%;
        height: 200px;
    }
    
    .wishlist-table .action-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .wishlist-table .btn-add-to-cart,
    .wishlist-table .btn-remove {
        width: 100%;
        justify-content: center;
    }
    
    .wishlist-actions {
        justify-content: center;
    }
    
    .wishlist-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Related Products Slider */
.related-products-slider-wrapper {
    position: relative;
    padding: 0 40px;
}

.related-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10;
    box-shadow: var(--shadow);
}

.related-arrow:hover {
    background: #9ccb0b;
    border-color: #9ccb0b;
    color: var(--white);
}

.related-arrow-prev {
    left: 0;
}

.related-arrow-next {
    right: 0;
}

.related-products-swiper {
    padding: 10px 0;
}

@media (max-width: 767px) {
    .related-products-slider-wrapper {
        padding: 0 30px;
    }
    
    .related-arrow {
        width: 35px;
        height: 35px;
    }
}

/* Compare Page */
.compare-section {
    background: var(--gray-light);
}

.empty-compare {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px 30px;
    box-shadow: var(--shadow);
}

.compare-table-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table thead {
    background: var(--gray-light);
}

.compare-table th {
    padding: 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font-jost);
    border-bottom: 2px solid var(--border);
    vertical-align: top;
}

.compare-table th.feature-col {
    width: 200px;
    background: var(--dark);
    color: var(--white);
}

.compare-table th.product-col {
    min-width: 250px;
}

.compare-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr:hover {
    background: var(--gray-light);
}

.compare-table .feature-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
    font-family: var(--font-jost);
}

.compare-table .feature-value {
    font-size: 14px;
    color: var(--gray);
}

.compare-product-header {
    position: relative;
    text-align: center;
}

.btn-remove-compare {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--dark);
    border: none;
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove-compare:hover {
    background: #dc3545;
    transform: rotate(90deg);
}

.btn-remove-compare.loading {
    opacity: 0.6;
    pointer-events: none;
}

.compare-product-header .product-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
}

.compare-product-header .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
}

.compare-product-header .product-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    margin-bottom: 10px;
    font-family: var(--font-jost);
    transition: color var(--transition);
}

.compare-product-header .product-title:hover {
    color: #9ccb0b;
}

.compare-table .feature-value .stars {
    font-size: 14px;
}

.compare-table .feature-value .review-count {
    font-size: 12px;
    color: var(--gray);
    margin-left: 5px;
}

.compare-table .feature-value .no-rating {
    color: var(--gray);
    font-size: 13px;
}

.compare-table .feature-value .in-stock {
    color: #28a745;
    font-size: 14px;
    font-weight: 500;
}

.compare-table .feature-value .out-of-stock {
    color: #dc3545;
    font-size: 14px;
    font-weight: 500;
}

.compare-table .feature-value .product-description {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    max-width: 250px;
}

.compare-table .feature-value .btn-add-cart {
    background: #9ccb0b;
    border: none;
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-jost);
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.compare-table .feature-value .btn-add-cart:hover {
    background: #7faa09;
    transform: translateY(-2px);
}

.compare-table .feature-value .btn-disabled {
    background: var(--gray);
    border: none;
    color: var(--dark);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-jost);
    cursor: not-allowed;
    opacity: 0.6;
}

@media (max-width: 991px) {
    .compare-table-wrapper {
        padding: 15px;
    }
    
    .compare-table th.feature-col {
        width: 150px;
    }
    
    .compare-table th.product-col {
        min-width: 200px;
    }
    
    .compare-product-header .product-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 767px) {
    .compare-table thead {
        display: none;
    }
    
    .compare-table tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 15px;
    }
    
    .compare-table td {
        display: block;
        padding: 10px 0;
        border: none;
    }
    
    .compare-table td.feature-label {
        font-weight: 700;
        margin-bottom: 5px;
    }
    
    .compare-product-header .product-image {
        width: 100%;
        height: 200px;
    }
    
    .compare-table .feature-value .product-description {
        max-width: 100%;
    }
    
    .compare-table .feature-value .btn-add-cart {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .shop-sidebar {
        padding: 20px;
    }

    .sidebar-widget-title {
        font-size: 16px;
    }

    .woocommerce.woocommerce-MyAccount {
        flex-direction: column;
    }

    .woocommerce-MyAccount-navigation {
        flex: 0 0 auto;
        width: 100%;
        padding: 20px;
        margin-bottom: 20px;
    }

    .woocommerce-MyAccount-content {
        padding: 20px;
    }

    .woocommerce-MyAccount-content table {
        font-size: 12px;
    }

    .woocommerce-MyAccount-content table th,
    .woocommerce-MyAccount-content table td {
        padding: 8px;
    }
}

/* ===========================
   CART PAGE
   =========================== */
.cart-section {
    background: var(--white);
}

.woocommerce-cart-form {
    margin-bottom: 40px;
}

.woocommerce-cart-form table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.woocommerce-cart-form table th,
.woocommerce-cart-form table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--gray);
    font-family: var(--font-jost);
}

.woocommerce-cart-form table th {
    font-weight: 600;
    color: var(--dark);
    background: var(--gray-light);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.woocommerce-cart-form table .product-name a {
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: color var(--transition);
}

.woocommerce-cart-form table .product-name a:hover {
    color: #9ccb0b;
}

.woocommerce-cart-form table .product-thumbnail img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius);
}

.woocommerce-cart-form table .product-quantity input {
    width: 60px;
    padding: 8px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    font-size: 14px;
    font-family: var(--font-jost);
    outline: none;
}

.woocommerce-cart-form table .product-quantity input:focus {
    border-color: #9ccb0b;
}

.woocommerce-cart-form table .product-price,
.woocommerce-cart-form table .product-subtotal {
    font-weight: 700;
    color: #9ccb0b;
    font-family: var(--font-inter);
}

.woocommerce-cart-form table .product-remove a {
    color: var(--primary);
    font-size: 18px;
    transition: color var(--transition);
}

.woocommerce-cart-form table .product-remove a:hover {
    color: #c4176e;
}

/* Cart Collaterals */
.cart-collaterals {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.cart-collaterals .cross-sells {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.cart-collaterals .cross-sells h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: var(--font-jost);
}

.cart-collaterals .cross-sells ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-collaterals .cross-sells ul li {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cart-collaterals .cross-sells ul li a {
    display: flex;
    gap: 15px;
    align-items: center;
    text-decoration: none;
}

.cart-collaterals .cross-sells ul li img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius);
}

.cart-collaterals .cross-sells ul li .cross-sells-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font-jost);
}

.cart-collaterals .cart_totals {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.cart-collaterals .cart_totals h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: var(--font-jost);
}

.cart-collaterals .cart_totals table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cart-collaterals .cart_totals table th,
.cart-collaterals .cart_totals table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--gray);
    font-family: var(--font-jost);
}

.cart-collaterals .cart_totals table th {
    font-weight: 600;
    color: var(--dark);
}

.cart-collaterals .cart_totals .order-total th,
.cart-collaterals .cart_totals .order-total td {
    font-size: 16px;
    font-weight: 700;
    color: #9ccb0b;
    font-family: var(--font-inter);
}

.cart-collaterals .wc-proceed-to-checkout {
    margin-top: 20px;
}

.cart-collaterals .wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    background: #9ccb0b;
    border: none;
    color: var(--white);
    padding: 15px 30px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background var(--transition);
    font-family: var(--font-inter);
    text-decoration: none;
    text-align: center;
}

.cart-collaterals .wc-proceed-to-checkout .checkout-button:hover {
    background: #7faa09;
}

/* ===========================
   CHECKOUT PAGE
   =========================== */
.checkout-section {
    background: var(--white);
}

.woocommerce-checkout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}

.woocommerce-checkout .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.woocommerce-checkout h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: var(--font-jost);
}

.woocommerce-checkout .form-row {
    margin-bottom: 15px;
}

.woocommerce-checkout .form-row label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: var(--font-jost);
}

.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font-jost);
    color: var(--dark);
    outline: none;
    transition: border-color var(--transition);
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    border-color: #9ccb0b;
}

.woocommerce-checkout .form-row .required {
    color: var(--primary);
}

.woocommerce-checkout #order_review {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.woocommerce-checkout #order_review .shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.woocommerce-checkout #order_review .shop_table th,
.woocommerce-checkout #order_review .shop_table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--gray);
    font-family: var(--font-jost);
}

.woocommerce-checkout #order_review .shop_table th {
    font-weight: 600;
    color: var(--dark);
}

.woocommerce-checkout #order_review .order-total th,
.woocommerce-checkout #order_review .order-total td {
    font-size: 16px;
    font-weight: 700;
    color: #9ccb0b;
    font-family: var(--font-inter);
}

.woocommerce-checkout #order_review .payment_methods {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.woocommerce-checkout #order_review .payment_methods li {
    margin-bottom: 15px;
}

.woocommerce-checkout #order_review .payment_methods li input {
    margin-right: 10px;
}

.woocommerce-checkout #order_review .payment_methods li label {
    font-size: 14px;
    color: var(--dark);
    font-family: var(--font-jost);
}

.woocommerce-checkout #order_review .payment_methods li .payment_box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 15px;
    margin-top: 10px;
    font-size: 13px;
    color: var(--gray);
    font-family: var(--font-jost);
}

.woocommerce-checkout #order_review .button {
    display: block;
    width: 100%;
    background: #9ccb0b;
    border: none;
    color: var(--white);
    padding: 15px 30px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background var(--transition);
    font-family: var(--font-inter);
}

.woocommerce-checkout #order_review .button:hover {
    background: #7faa09;
}

/* Responsive Cart & Checkout */
@media (max-width: 991px) {
    .cart-collaterals {
        grid-template-columns: 1fr;
    }

    .woocommerce-checkout {
        grid-template-columns: 1fr;
    }

    .woocommerce-checkout .col2-set {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .woocommerce-cart-form table {
        font-size: 12px;
    }

    .woocommerce-cart-form table th,
    .woocommerce-cart-form table td {
        padding: 10px;
    }

    .woocommerce-cart-form table .product-thumbnail img {
        width: 40px;
        height: 40px;
    }

    .cart-collaterals .cross-sells,
    .cart-collaterals .cart_totals {
        padding: 20px;
    }

    .woocommerce-checkout .col-1,
    .woocommerce-checkout .col-2 {
        padding: 20px;
    }

    .woocommerce-checkout #order_review {
        padding: 20px;
    }
}

/* WooCommerce Block Cart Remove Link */
button.wc-block-cart-item__remove-link path {
    fill: #ff0000bf;
}

/* WooCommerce Block Buttons - Match Add to Cart Color */
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button,
button.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button,
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button {
    background: #fdc903 !important;
    color: #1a1a1a !important;
    border: 1px solid #ccc;
}

/* WooCommerce Checkout Order Summary Quantity */
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-order-summary-item__quantity {
    background-color: #fdc903;
    color: #000 !important;
}
