:root {
    --bg: #ffffff;
    --bg-soft: #fffaf5;
    --bg-mint: #f4fbf7;
    --white: #ffffff;

    --primary: #1f8f5f;
    --primary-dark: #156b46;
    --primary-soft: #e9f8f0;

    --accent: #f28c28;
    --accent-dark: #d96f0a;
    --accent-soft: #fff1e3;

    --text: #18221d;
    --text-soft: #5f6f66;
    --text-light: #7f9086;

    --border: #e5eee8;
    --border-strong: #d8e6de;

    --shadow-sm: 0 8px 22px rgba(24, 34, 29, 0.05);
    --shadow-md: 0 16px 38px rgba(24, 34, 29, 0.08);
    --shadow-lg: 0 24px 58px rgba(24, 34, 29, 0.11);

    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --radius-xs: 10px;

    --container: 1240px;
    --transition: 0.28s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top right, rgba(242, 140, 40, 0.08), transparent 22%),
        radial-gradient(circle at top left, rgba(31, 143, 95, 0.07), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.section {
    padding: 88px 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    margin: 12px 0 14px;
    letter-spacing: -0.05em;
}

.section-head p {
    color: var(--text-soft);
    font-size: 1.02rem;
}

.center-head {
    text-align: center;
    margin-inline: auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--primary-soft) 0%, #f8fff9 100%);
    border: 1px solid rgba(31, 143, 95, 0.12);
}

/* =========================
   HEADER
========================= */

.topbar {
    background: linear-gradient(90deg, #fff8ef 0%, #f4fbf7 100%);
    border-bottom: 1px solid var(--border);
}

.topbar-inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-soft);
}

.topbar-link {
    font-weight: 800;
    color: var(--accent-dark);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(229, 238, 232, 0.85);
}

.navbar {
    min-height: 80px;
    display: flex;
    align-items: center;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.28rem;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(242, 140, 40, 0.18);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
}

.brand-text strong {
    font-size: 1.14rem;
    letter-spacing: -0.03em;
}

.brand-text small {
    color: var(--text-light);
    font-size: 0.78rem;
    margin-top: 4px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav a {
    font-weight: 700;
    color: var(--text-soft);
    position: relative;
}

.desktop-nav a.active,
.desktop-nav a:hover {
    color: var(--text);
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
    min-width: 280px;
    box-shadow: var(--shadow-sm);
}

.search-box input {
    border: none;
    outline: none;
    background: transparent;
    padding: 12px 14px;
    width: 100%;
    font-size: 0.95rem;
    color: var(--text);
}

.search-box input::placeholder {
    color: var(--text-light);
}

.search-box button {
    border: none;
    background: transparent;
    padding: 0 14px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--primary-dark);
}

.cart-btn,
.menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.cart-btn:hover,
.menu-toggle:hover {
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-size: 0.72rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    font-weight: 800;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text);
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--border);
    background: #ffffff;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu-inner {
    display: grid;
    gap: 8px;
    padding: 14px 0 18px;
}

.mobile-menu a {
    padding: 13px 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfefc 100%);
    border: 1px solid var(--border);
    font-weight: 700;
}

/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 16px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: #fff;
    box-shadow: 0 14px 34px rgba(242, 140, 40, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(242, 140, 40, 0.26);
}

.btn-secondary {
    background: var(--white);
    border-color: var(--border-strong);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: rgba(31, 143, 95, 0.2);
    color: var(--primary-dark);
}

.btn-inline {
    font-weight: 800;
    color: var(--primary-dark);
}

/* =========================
   HERO
========================= */

.hero-section {
    padding: 74px 0 48px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 36px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.7rem, 6vw, 4.9rem);
    line-height: 0.95;
    letter-spacing: -0.065em;
    max-width: 760px;
    margin: 16px 0 18px;
}

.hero-content p {
    color: var(--text-soft);
    max-width: 640px;
    font-size: 1.04rem;
}

.hero-badge {
    display: inline-flex;
    background: linear-gradient(135deg, #fff2e5 0%, #f2fbf6 100%);
    color: var(--accent-dark);
    border: 1px solid rgba(242, 140, 40, 0.14);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.88rem;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.hero-widget-row,
.hero-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-widget,
.stat-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px 18px;
    min-width: 160px;
    box-shadow: var(--shadow-md);
}

.hero-widget strong,
.stat-card strong {
    display: block;
    font-size: 1.08rem;
    margin-bottom: 4px;
}

.hero-widget span,
.stat-card span {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-blob,
.hero-visual-glow {
    position: absolute;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, rgba(242, 140, 40, 0.22), rgba(31, 143, 95, 0.14) 55%, rgba(31, 143, 95, 0.02) 100%);
    filter: blur(18px);
}

.hero-blob {
    width: 430px;
    height: 430px;
}

.hero-dashboard-look {
    min-height: 560px;
}

.hero-visual-glow {
    inset: 40px 60px 50px 60px;
    border-radius: 40px;
    background: radial-gradient(circle at center, rgba(242, 140, 40, 0.17), rgba(31, 143, 95, 0.14), transparent 75%);
}

.product-showcase-card,
.hero-product-panel,
.hero-mini-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(229, 238, 232, 0.95);
    box-shadow: var(--shadow-lg);
}

.product-showcase-card {
    position: absolute;
}

.main-card {
    width: 330px;
    padding: 28px;
    border-radius: 28px;
    z-index: 3;
}

.main-card h3 {
    font-size: 1.9rem;
    margin: 14px 0 8px;
    letter-spacing: -0.04em;
}

.main-card p,
.small-card p,
.hero-product-info p {
    color: var(--text-soft);
}

.pill,
.panel-pill {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff0df 0%, #f6fbf7 100%);
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 800;
}

.mini-link {
    display: inline-block;
    margin-top: 14px;
    font-weight: 800;
    color: var(--primary-dark);
}

.small-card {
    width: 210px;
    padding: 18px;
    border-radius: 22px;
    z-index: 2;
}

.small-card h4 {
    font-size: 1.12rem;
    margin-bottom: 4px;
}

.card-one {
    top: 40px;
    right: 0;
}

.card-two {
    bottom: 35px;
    left: 15px;
}

.hero-product-panel {
    position: relative;
    z-index: 2;
    padding: 22px;
    border-radius: 30px;
}

.hero-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.panel-status,
.stock-badge,
.featured-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
}

.panel-status.in,
.stock-badge.in {
    background: #eaf8f2;
    color: #14724b;
}

.panel-status.out,
.stock-badge.out {
    background: #fff1ef;
    color: #b14a25;
}

.featured-badge {
    background: var(--accent-soft);
    color: var(--accent-dark);
}

.hero-product-card-large {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 18px;
    align-items: center;
    margin-bottom: 18px;
}

.hero-product-img,
.hero-product-placeholder {
    width: 100%;
    height: 240px;
    border-radius: 24px;
}

.hero-product-img {
    object-fit: cover;
}

.hero-product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff1e2 0%, #f2fbf6 100%);
    border: 1px dashed rgba(242, 140, 40, 0.2);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 1.5rem;
    text-align: center;
    padding: 18px;
}

.hero-product-info h3 {
    font-size: 2rem;
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin: 12px 0 10px;
}

.hero-product-bottom {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.hero-product-bottom strong {
    font-size: 1.22rem;
}

.hero-mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hero-mini-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
}

.hero-mini-card h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    letter-spacing: -0.02em;
}

.hero-mini-card p {
    color: var(--text-soft);
    font-size: 0.88rem;
}

.hero-mini-card strong {
    white-space: nowrap;
    font-size: 1rem;
}

/* =========================
   TRUST STRIP
========================= */

.trust-strip {
    padding: 10px 0 20px;
}

.trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.trust-item {
    padding: 16px 18px;
    text-align: center;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfefc 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    font-weight: 800;
    color: var(--text);
    font-size: 0.92rem;
}

/* =========================
   CATEGORY
========================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-grid-v2 {
    margin-top: 8px;
}

.category-card {
    padding: 26px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfefc 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.category-card:hover,
.product-card:hover,
.why-card:hover,
.testimonial-card:hover,
.widget-card:hover,
.latest-product-item:hover {
    transform: translateY(-4px);
}

.category-card span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--primary-soft) 100%);
    color: var(--accent-dark);
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 16px;
}

.category-card h3 {
    font-size: 1.32rem;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.category-card p {
    color: var(--text-soft);
}

.category-card-link {
    margin-top: 18px;
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 0.94rem;
}

/* =========================
   PRODUCT GRID
========================= */

.featured-section,
.latest-products-section {
    background: linear-gradient(180deg, rgba(255, 245, 234, 0.55) 0%, rgba(244, 251, 247, 0.35) 100%);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-image-wrap {
    padding: 18px;
}

.product-image-placeholder,
.product-main-placeholder {
    min-height: 220px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff1e4 0%, #f5fbf8 100%);
    border: 1px dashed rgba(242, 140, 40, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.3rem;
    font-weight: 800;
    text-align: center;
    padding: 18px;
}

.shop-product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
}

.product-info {
    padding: 0 20px 20px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--primary-soft) 0%, #f5fbf8 100%);
    padding: 6px 10px;
    border-radius: 999px;
    display: inline-flex;
    margin-bottom: 12px;
    font-weight: 800;
}

.product-category.large {
    font-size: 0.9rem;
    padding: 8px 14px;
}

.product-info h3 {
    font-size: 1.28rem;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.product-info p {
    color: var(--text-soft);
    min-height: 50px;
    font-size: 0.95rem;
}

.product-meta-line {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-bottom {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.product-bottom strong {
    font-size: 1.12rem;
}

/* =========================
   WHY / WIDGETS / TESTIMONIAL
========================= */

.why-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: start;
}

.why-text {
    color: var(--text-soft);
    max-width: 550px;
    margin-top: 14px;
}

.why-cards,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.why-card,
.testimonial-card,
.widget-card,
.filter-card,
.detail-card,
.product-gallery-card,
.product-content-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.why-card,
.testimonial-card,
.widget-card {
    padding: 24px;
    transition: var(--transition);
}

.why-card h3,
.widget-card h3 {
    font-size: 1.14rem;
    margin-bottom: 10px;
}

.why-card p,
.testimonial-card p,
.widget-card p {
    color: var(--text-soft);
}

.testimonial-card strong {
    display: block;
    margin-top: 16px;
    font-size: 0.95rem;
}

.widget-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.widget-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--primary-soft) 100%);
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 18px;
}

/* =========================
   GOALS
========================= */

.goals-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.goal-chip {
    padding: 14px 18px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    font-weight: 800;
    color: var(--text);
}

.goal-chip:hover {
    color: var(--accent-dark);
    border-color: rgba(242, 140, 40, 0.2);
}

/* =========================
   CTA
========================= */

.cta-section {
    padding: 20px 0 88px;
}

.cta-box {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: #fff;
    border-radius: 32px;
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 24px 58px rgba(31, 143, 95, 0.18);
}

.cta-box .section-tag {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-box h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.08;
    margin-top: 12px;
    letter-spacing: -0.04em;
    max-width: 680px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-box .btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: #10211a;
    color: #d9ede3;
    margin-top: 30px;
    padding-top: 74px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: 28px;
    padding-bottom: 36px;
}

.site-footer .brand-text small,
.site-footer p,
.site-footer li,
.site-footer a {
    color: #b7cfc3;
}

.site-footer h4 {
    color: #ffffff;
    margin-bottom: 14px;
    font-size: 1.02rem;
}

.site-footer ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(217, 238, 229, 0.12);
    padding: 18px 0 24px;
    text-align: center;
    font-size: 0.92rem;
    color: #adc4b9;
}

/* =========================
   SHOP PAGE
========================= */

.shop-hero {
    padding: 74px 0 34px;
}

.shop-hero h1 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    margin: 14px 0 14px;
}

.shop-hero p {
    max-width: 760px;
    color: var(--text-soft);
    font-size: 1.05rem;
}

.shop-layout-section {
    padding: 24px 0 84px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 28px;
    align-items: start;
}

.shop-sidebar {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 18px;
}

.filter-card {
    padding: 22px;
}

.filter-card h3 {
    font-size: 1.08rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.sidebar-search-form {
    display: grid;
    gap: 12px;
}

.sidebar-search-form input,
.sidebar-search-form select,
.qty-box input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0 14px;
    outline: none;
    font-size: 0.95rem;
    background: #fff;
    color: var(--text);
}

.sidebar-btn {
    width: 100%;
}

.shop-category-list {
    display: grid;
    gap: 10px;
}

.shop-category-list a {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
    font-weight: 700;
    color: var(--text-soft);
}

.shop-category-list a.active,
.shop-category-list a:hover {
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--primary-soft) 100%);
    color: var(--primary-dark);
    border-color: rgba(31, 143, 95, 0.15);
}

.shop-main {
    min-width: 0;
}

.shop-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.shop-toolbar h2 {
    font-size: 2rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 6px;
}

.shop-toolbar p {
    color: var(--text-soft);
}

.shop-help-link {
    font-weight: 800;
    color: var(--accent-dark);
    white-space: nowrap;
}

.shop-product-grid {
    gap: 24px;
}

.empty-shop-state {
    padding: 50px 24px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow-md);
}

.empty-shop-state h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.empty-shop-state p {
    color: var(--text-soft);
    margin-bottom: 20px;
}

/* =========================
   PRODUCT PAGE
========================= */

.product-page-section {
    padding: 54px 0 88px;
}

.product-breadcrumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 26px;
    color: var(--text-soft);
    font-size: 0.94rem;
}

.product-breadcrumbs a:hover {
    color: var(--accent-dark);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.product-gallery-card {
    padding: 22px;
}

.product-main-image,
.product-main-placeholder {
    width: 100%;
    min-height: 520px;
    border-radius: 22px;
}

.product-main-image {
    object-fit: cover;
}

.product-content-card {
    padding: 30px;
}

.product-content-card h1 {
    font-size: clamp(2.2rem, 5vw, 3.7rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin: 16px 0 14px;
}

.product-short-text {
    color: var(--text-soft);
    font-size: 1.03rem;
    max-width: 620px;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.product-main-price {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.product-action-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.product-buy-form {
    display: flex;
    align-items: end;
    gap: 14px;
    flex-wrap: wrap;
}

.qty-box {
    min-width: 110px;
}

.qty-box label {
    display: block;
    font-weight: 800;
    font-size: 0.92rem;
    margin-bottom: 8px;
}

.product-highlights-box {
    margin-top: 26px;
    padding: 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fffaf4 0%, #f5fbf8 100%);
    border: 1px solid var(--border);
}

.product-highlights-box h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.product-highlights-box ul {
    padding-left: 18px;
    color: var(--text-soft);
    display: grid;
    gap: 8px;
}

.product-detail-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
}

.detail-card {
    padding: 26px;
}

.detail-card h2 {
    font-size: 1.4rem;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.detail-card p {
    color: var(--text-soft);
}

.product-info-list {
    display: grid;
    gap: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(229, 238, 232, 0.95);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row span {
    color: var(--text-soft);
}

.info-row strong {
    text-align: right;
}

.related-products-section {
    margin-top: 34px;
}

.related-head {
    margin-bottom: 24px;
}

/* =========================
   LATEST PRODUCTS
========================= */

.latest-product-list {
    display: grid;
    gap: 16px;
}

.latest-product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.latest-product-left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.latest-thumb {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff1e4 0%, #f4fbf7 100%);
    border: 1px dashed rgba(242, 140, 40, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.latest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-thumb span {
    color: var(--accent-dark);
    font-weight: 800;
    font-size: 1.2rem;
}

.latest-product-item h3 {
    font-size: 1.12rem;
    margin: 4px 0 6px;
    letter-spacing: -0.03em;
}

.latest-product-item p {
    color: var(--text-soft);
    font-size: 0.94rem;
}

.mini-category {
    font-size: 0.8rem;
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--primary-soft) 0%, #f5fbf8 100%);
    padding: 5px 10px;
    border-radius: 999px;
    display: inline-flex;
    font-weight: 800;
}

.latest-product-right strong {
    white-space: nowrap;
    font-size: 1.08rem;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .hero-grid,
    .hero-grid-v2,
    .why-grid,
    .footer-grid,
    .shop-layout,
    .product-layout,
    .product-detail-grid,
    .widget-grid,
    .trust-strip-inner {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-cards,
    .testimonial-grid,
    .hero-product-card-large {
        grid-template-columns: 1fr;
    }

    .hero-visual,
    .hero-dashboard-look {
        min-height: auto;
    }

    .hero-mini-cards {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 860px) {
    .desktop-nav,
    .search-box {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-section {
        padding-top: 50px;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 10vw, 3.4rem);
    }

    .main-card {
        width: 100%;
        max-width: 320px;
    }

    .small-card {
        display: none;
    }
}

@media (max-width: 760px) {
    .shop-toolbar,
    .latest-product-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-content-card,
    .product-gallery-card,
    .detail-card,
    .filter-card {
        padding: 20px;
    }

    .product-main-image,
    .product-main-placeholder {
        min-height: 340px;
    }

    .product-main-price {
        font-size: 1.6rem;
    }

    .hero-product-card-large {
        display: grid;
        grid-template-columns: 1fr;
    }

    .latest-product-left,
    .latest-product-right {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 64px 0;
    }

    .topbar-inner {
        flex-direction: column;
        justify-content: center;
        padding: 8px 0;
        text-align: center;
    }

    .nav-inner {
        gap: 10px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .hero-widget-row,
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image-placeholder {
        min-height: 190px;
    }

    .hero-visual {
        min-height: 340px;
    }

    .cta-box {
        border-radius: 24px;
        padding: 26px;
    }

    .footer-grid {
        gap: 20px;
    }
}
.mobile-bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 999;
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(229, 238, 232, 0.95);
    box-shadow: 0 18px 42px rgba(24, 34, 29, 0.12);
}

.mobile-bottom-nav a {
    min-height: 56px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-soft);
}

.mobile-bottom-nav a.active {
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--primary-soft) 100%);
    color: var(--primary-dark);
}

.mobile-bottom-icon {
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 760px) {
    .mobile-bottom-nav {
        display: grid;
    }

    body {
        padding-bottom: 98px;
    }
}
/* =========================
   CART PAGE
========================= */

.cart-page {
    background:
        radial-gradient(circle at top right, rgba(242, 140, 40, 0.05), transparent 22%),
        radial-gradient(circle at top left, rgba(31, 143, 95, 0.05), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
}

.cart-hero {
    padding: 54px 0 24px;
}

.cart-breadcrumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    color: var(--text-soft);
    font-size: 0.94rem;
    margin-bottom: 20px;
}

.cart-breadcrumbs a:hover {
    color: var(--accent-dark);
}

.cart-hero-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.cart-hero-head h1 {
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin: 14px 0 12px;
}

.cart-hero-head p {
    color: var(--text-soft);
    max-width: 720px;
}

.cart-main-section {
    padding: 18px 0 88px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: start;
}

.cart-left {
    display: grid;
    gap: 22px;
}

.cart-note-card,
.cart-items-card,
.empty-cart-card,
.cart-summary-card,
.cart-support-card,
.cart-recommend-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow-md);
}

.cart-note-card {
    padding: 16px 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    background: linear-gradient(135deg, #fff8ef 0%, #f4fbf7 100%);
}

.cart-note-card strong {
    color: var(--accent-dark);
}

.cart-note-card span {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.cart-items-card {
    overflow: hidden;
}

.cart-table-head {
    display: grid;
    grid-template-columns: 1.6fr 0.5fr 0.6fr 0.5fr;
    gap: 18px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-light);
    background: linear-gradient(180deg, #fffdf9 0%, #fcfffd 100%);
}

.cart-items-list {
    display: grid;
}

.cart-item {
    display: grid;
    grid-template-columns: 1.6fr 0.5fr 0.6fr 0.5fr;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-product {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.cart-item-thumb {
    width: 110px;
    height: 110px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #fff1e4 0%, #f5fbf8 100%);
    border: 1px dashed rgba(242, 140, 40, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-thumb span {
    color: var(--primary-dark);
    font-weight: 800;
    text-align: center;
    padding: 12px;
    font-size: 1rem;
}

.cart-item-info {
    min-width: 0;
}

.cart-item-info h3 {
    font-size: 1.18rem;
    letter-spacing: -0.03em;
    margin: 6px 0 6px;
}

.cart-item-info p {
    color: var(--text-soft);
    font-size: 0.92rem;
    margin-bottom: 10px;
}

.cart-remove-form {
    margin-top: 4px;
}

.cart-remove-btn {
    border: none;
    background: none;
    color: var(--accent-dark);
    font-weight: 800;
    cursor: pointer;
    padding: 0;
}

.cart-item-price,
.cart-item-total {
    font-weight: 800;
    font-size: 1rem;
}

.cart-item-qty {
    display: flex;
    justify-content: flex-start;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.qty-control form {
    margin: 0;
}

.qty-control button {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #fff 0%, #fcfcfc 100%);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
}

.qty-control span {
    min-width: 20px;
    text-align: center;
    font-weight: 800;
}

.qty-control.disabled {
    opacity: 0.7;
}

.qty-control.disabled button {
    cursor: default;
}

.empty-cart-card {
    padding: 56px 24px;
    text-align: center;
}

.empty-cart-icon {
    width: 84px;
    height: 84px;
    border-radius: 24px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--primary-soft) 100%);
    font-size: 2rem;
}

.empty-cart-card h2 {
    font-size: 2rem;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.empty-cart-card p {
    color: var(--text-soft);
    max-width: 520px;
    margin: 0 auto 24px;
}

.cart-summary-wrap {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 18px;
}

.cart-summary-card {
    padding: 24px;
}

.cart-summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.cart-summary-head h2 {
    font-size: 1.5rem;
    letter-spacing: -0.03em;
}

.cart-summary-head span {
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 700;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-soft);
}

.summary-row strong {
    color: var(--text);
}

.summary-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

.summary-row.total {
    padding-top: 14px;
    color: var(--text);
    font-size: 1.04rem;
    font-weight: 800;
}

.summary-row.total strong {
    font-size: 1.28rem;
}

.summary-btn {
    width: 100%;
    margin-top: 14px;
}

.summary-note {
    margin-top: 16px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff8ef 0%, #f5fbf8 100%);
    border: 1px solid var(--border);
}

.summary-note p {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.cart-support-card {
    padding: 22px;
}

.cart-support-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.cart-support-card p {
    color: var(--text-soft);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.cart-recommend-card {
    padding: 24px;
}

.cart-recommend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.compact-product-card .product-image-placeholder {
    min-height: 170px;
}

/* =========================
   RESPONSIVE CART
========================= */

@media (max-width: 1100px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary-wrap {
        position: static;
    }

    .cart-recommend-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .cart-table-head {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cart-item-price,
    .cart-item-total {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid var(--border);
        padding-top: 10px;
    }

    .cart-item-price::before {
        content: "Price";
        color: var(--text-soft);
        font-weight: 700;
    }

    .cart-item-total::before {
        content: "Total";
        color: var(--text-soft);
        font-weight: 700;
    }

    .cart-item-qty {
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid var(--border);
        padding-top: 10px;
    }

    .cart-item-qty::before {
        content: "Quantity";
        color: var(--text-soft);
        font-weight: 700;
    }

    .cart-hero-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .cart-item-product {
        align-items: flex-start;
    }

    .cart-item-thumb {
        width: 88px;
        height: 88px;
        border-radius: 18px;
    }

    .cart-summary-card,
    .cart-support-card,
    .cart-recommend-card {
        padding: 20px;
    }

    .cart-recommend-grid {
        grid-template-columns: 1fr;
    }

    .empty-cart-card {
        padding: 46px 20px;
    }
}