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

:root {
    /* Color Palette - Soft Wellness Greens & Graphite */
    --primary: #2D5A47;
    --primary-light: #A8E6CF;
    --secondary: #4A90E2;
    --accent: #FF8BA7;
    --dark: #1A1A1A;
    --gray-dark: #4A4A4A;
    --gray-medium: #888888;
    --gray-light: #F4F7F6;
    --white: #FFFFFF;
    --bg-soft: #F9FBFA;
    --error: #E74C3C;
    --success: #27AE60;

    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

button, .btn {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-main);
    transition: var(--transition);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Promo Bars */
.promo-bar {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.disclosure-bar {
    background-color: var(--gray-light);
    color: var(--gray-dark);
    padding: 10px 0;
    font-size: 0.8rem;
    line-height: 1.4;
    border-bottom: 1px solid #eee;
}

.disclaimer-banner {
    background-color: #FFF9E6;
    color: #856404;
    padding: 15px 0;
    text-align: center;
    font-size: 0.85rem;
    border-bottom: 1px solid #FFEDCC;
}

/* Header */
header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
}

.nav-menu a:hover {
    color: var(--secondary);
}

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

.header-icons i {
    font-size: 1.2rem;
    cursor: pointer;
}

.cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    border-radius: var(--radius-md);
}

.cart-icon:hover {
    background: var(--gray-light);
}

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

/* Sections */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #F4F7F6 0%, #E8F5E9 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gray-dark);
}

/* Hero em duas colunas (texto + imagem de lifestyle) */
.hero--split {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.hero--split .container {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.hero--split .hero-content {
    max-width: none;
}

.hero-visual {
    position: relative;
    margin: 0;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow:
        0 24px 48px rgba(26, 26, 26, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: auto -8% -8% auto;
    width: 55%;
    height: 35%;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.85;
}

/* Bloco editorial com imagem (home) — contentor alinhado à proporção natural da foto */
.home-story-grid {
    display: flex;
    align-items: flex-start;
    gap: clamp(2rem, 4vw, 3.75rem);
    flex-wrap: wrap;
}

.home-story-visual {
    flex: 0 1 auto;
    width: min(100%, 460px);
    max-width: 460px;
    align-self: flex-start;
}

.home-story-figure {
    margin: 0;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 16px 16px 0 var(--primary-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--white);
    overflow: hidden;
    line-height: 0;
}

.home-story-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

.home-story-text {
    flex: 1 1 320px;
    min-width: 280px;
}

/* Mais vendidos — cartões com miniatura */
.bestseller-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.bestseller-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.bestseller-card__img {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--gray-light);
}

.bestseller-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bestseller-card__body {
    padding: 1.25rem 1.35rem 1.5rem;
}

.bestseller-card__body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.bestseller-card__body p {
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin: 0;
    line-height: 1.5;
}

/* Blocos editoriais na homepage */
.home-editorial {
    padding: clamp(2.5rem, 5vw, 3.75rem) 0;
    background: var(--white);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.home-editorial h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.25rem;
    max-width: 42rem;
}

.home-editorial .lead {
    font-size: 1.12rem;
    color: var(--gray-dark);
    max-width: 46rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.home-editorial p {
    color: var(--gray-dark);
    line-height: 1.85;
    max-width: 46rem;
    margin-bottom: 1rem;
}

.research-panel {
    background: linear-gradient(180deg, #f6faf8 0%, #fff 100%);
    border: 1px solid #e4ebe7;
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    margin-top: 2rem;
    max-width: 52rem;
}

.research-panel h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.research-panel ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.research-panel li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.85rem;
    line-height: 1.65;
    color: var(--gray-dark);
    font-size: 0.98rem;
}

.research-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.research-panel a {
    color: var(--primary);
    font-weight: 600;
    word-break: break-word;
}

.research-disclaimer {
    font-size: 0.88rem;
    color: var(--gray-medium);
    line-height: 1.65;
    padding: 1rem 1.15rem;
    background: #fffbf0;
    border: 1px solid #ffe8c4;
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #F0F0F0;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    z-index: 10;
}

.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: #F9F9F9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    transition: var(--transition);
}

.product-card:hover .product-image img {
    scale: 1.1;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--gray-medium);
    margin-bottom: 5px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #F1C40F;
}

.product-rating span {
    color: var(--gray-medium);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.old-price {
    color: var(--gray-medium);
    text-decoration: line-through;
    font-size: 0.95rem;
}

/* ——— Buttons (global) ——— */
.btn-primary,
a.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
    background-color: var(--primary);
    color: var(--white) !important;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(45, 90, 71, 0.2);
    transition: var(--transition);
}

.btn-primary:hover,
a.btn-primary:hover {
    background-color: #234a3a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(45, 90, 71, 0.25);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary,
a.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    background: var(--white);
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--gray-light);
}

.btn-ghost,
a.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    background: transparent;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(168, 230, 207, 0.15);
}

.btn-block {
    display: flex !important;
    width: 100%;
    text-align: center;
}

.btn-lg {
    min-height: 52px;
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* Hero CTA: ligeiramente maior que o botão padrão */
.hero .btn-primary {
    font-size: 1.08rem;
    padding: 16px 36px;
    min-height: 52px;
}

.hero .btn-primary:hover {
    background-color: #1e3d30;
}

/* Botões em grelhas de produto (contraste com cards) */
.products-grid .btn-primary,
.product-card .btn-primary {
    background-color: var(--dark);
    border-color: var(--dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    font-size: 0.95rem;
}

.products-grid .btn-primary:hover,
.product-card .btn-primary:hover {
    background-color: #333;
}

/* Inner pages */
.page-sub {
    background: var(--bg-soft);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-sub main {
    flex: 1;
}

.page-hero {
    background: linear-gradient(135deg, #fff 0%, #eef6f2 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 2rem 0 1.75rem;
}

.breadcrumb {
    font-size: 0.875rem;
    color: var(--gray-medium);
    margin-bottom: 0.75rem;
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-sep {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.breadcrumb-current {
    color: var(--gray-dark);
}

.page-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}

.page-main {
    padding: 2.5rem 0 4rem;
}

.content-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid #eaeaea;
    box-shadow: var(--shadow);
    padding: 2rem 2.25rem;
    max-width: 820px;
    margin: 0 auto;
}

.prose {
    color: var(--gray-dark);
    font-size: 1.05rem;
    line-height: 1.85;
}

.prose p + p {
    margin-top: 1rem;
}

.prose strong {
    color: var(--dark);
    font-weight: 600;
}

.prose a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose a:hover {
    color: #1e3d30;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    padding: 1rem 1.25rem;
    background: var(--gray-light);
    border-radius: var(--radius-md);
    border: 1px solid #eee;
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid #eaeaea;
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
}

.contact-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

/* Catalog toolbar */
.catalog-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
    margin-bottom: 1.25rem;
}

.catalog-search {
    min-width: min(100%, 300px);
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 999px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: var(--transition);
}

.catalog-search:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 71, 0.15);
}

.filter-pill {
    min-height: 44px;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-pill.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.catalog-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-bottom: 2.5rem;
}

.catalog-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    padding: 8px 4px;
    border-bottom: 2px solid transparent;
}

.catalog-links a:hover {
    border-bottom-color: var(--primary);
}

/* Cart & qty */
.cart-page-wrap {
    padding: 3rem 0 4rem;
}

.cart-page-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.25rem;
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 16px 0;
    border-bottom: 2px solid #eee;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gray-medium);
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.cart-product img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid #eee;
}

.cart-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-top: 2.5rem;
    border: 1px solid #eaeaea;
    box-shadow: var(--shadow);
}

.qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
}

.qty-stepper button {
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    background: var(--gray-light);
    border: none;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.qty-stepper button:hover {
    background: #e8ece9;
}

.qty-stepper span {
    min-width: 40px;
    text-align: center;
    font-weight: 700;
    padding: 0 8px;
}

.btn-link-remove {
    background: none;
    border: none;
    color: var(--error);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    padding: 4px 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.btn-link-remove:hover {
    color: #c0392b;
}

.header-link-shop {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
}

.header-link-shop:hover {
    background: rgba(168, 230, 207, 0.25);
    border-color: rgba(45, 90, 71, 0.2);
}

/* Checkout (shared) */
.checkout-page {
    background: #fafafa;
    min-height: 100vh;
}

.checkout-header {
    background: var(--white);
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.checkout-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
}

.form-section {
    background: var(--white);
    padding: 1.75rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid #eaeaea;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.form-section h3 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 71, 0.12);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.payment-option {
    border: 2px solid #e8e8e8;
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--primary);
    background: var(--gray-light);
}

.payment-option.active {
    border-color: var(--primary);
    background: rgba(168, 230, 207, 0.12);
}

.payment-option input {
    width: auto;
    cursor: pointer;
}

.summary-box {
    background: var(--gray-light);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    position: sticky;
    top: 100px;
    border: 1px solid #e0e8e4;
    box-shadow: var(--shadow);
}

.item-small {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.item-small img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid #eee;
}

.checkout-submit {
    width: 100%;
    margin-top: 0.5rem;
}

.discount-row {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.discount-row input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
}

.discount-row .btn-apply {
    min-height: 44px;
    padding: 0 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.discount-row .btn-apply:hover {
    background: #234a3a;
}

.delivery-estimate {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(168, 230, 207, 0.2);
    border-radius: var(--radius-md);
    border: 1px solid rgba(45, 90, 71, 0.15);
    font-size: 0.95rem;
    color: #1e4d3a;
}

.checkout-summary-divider {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray-dark);
}

.checkout-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.checkout-trust {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin-top: 1rem;
}

/* Order confirmation */
.conf-wrap {
    padding: 3rem 0 5rem;
}

.conf-box {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid #eaeaea;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.conf-icon {
    background: var(--primary);
    color: var(--white);
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.order-number {
    background: var(--gray-light);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.15rem;
    margin: 1.25rem 0;
}

/* Minimal footer bar */
.footer-minimal {
    background: var(--dark);
    color: #aaa;
    padding: 1.75rem 0;
    margin-top: auto;
    font-size: 0.9rem;
}

.footer-minimal-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-minimal a {
    color: var(--primary-light);
    font-weight: 500;
}

.footer-minimal a:hover {
    text-decoration: underline;
}

/* Category landing */
.category-intro {
    max-width: 640px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--gray-dark);
    font-size: 1.05rem;
    line-height: 1.7;
}

.category-actions {
    text-align: center;
    margin-top: 2.5rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: var(--spacing-xl) 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    color: var(--primary-light);
}

.footer-about p {
    color: #BBB;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #CCC;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.newsletter h4 {
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 0.9rem;
    color: #BBB;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background: #333;
    border: 1px solid #444;
    padding: 10px 15px;
    color: white;
    border-radius: var(--radius-sm);
}

.newsletter-form button {
    background: var(--primary);
    color: white;
    padding: 12px 22px;
    min-height: 48px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #777;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

    .hero--split .hero-visual {
        order: -1;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-menu { display: none; } /* Add burger menu later if needed */
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .checkout-grid { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; gap: 0; }
    .cart-header { display: none; }
    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    .cart-product { flex-direction: column; }
    .catalog-toolbar { flex-direction: column; align-items: stretch; }
}
