
:root {
    --color-primary: #2563eb;
    --color-secondary: #1e40af;
    --color-accent: #f59e0b;
    --color-bg: #ffffff;
    --color-text: #1f2937;
    --font-heading: Inter, system-ui, sans-serif;
    --font-body: Inter, system-ui, sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-header {
    background: var(--color-bg);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-header .site-logo   { order: 1; flex: 0 0 auto; }
.site-header .site-nav    { order: 2; flex: 1 1 auto; justify-content: center; }
.site-header .nav-actions { order: 3; flex: 0 0 auto; }

.header-left-aligned .site-nav {
    flex: 0 0 auto;
    margin-right: auto;
}

.header-centered .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
}

.header-centered .site-logo   { flex: 1 0 100%; justify-content: center; }
.header-centered .site-nav    { flex: 1 0 100%; justify-content: center; }
.header-centered .nav-actions { position: absolute; right: 0; top: 0; }

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-text);
}

.site-logo img {
    height: 40px;
    width: auto;
}

.site-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.site-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.site-nav a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.site-nav a:hover {
    color: var(--color-primary);
}

.hero {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    padding: 6rem 0;
}

.hero .hero-inner {
    max-width: 560px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.2rem;
    opacity: 0.94;
    margin-bottom: 1.8rem;
    max-width: 440px;
}

.hero-photo {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20,16,12,.68) 0%, rgba(20,16,12,.47) 46%, rgba(20,16,12,0) 84%);
}

.hero-photo .container {
    position: relative;
    z-index: 1;
}

.hero-photo .hero-inner { color: #fff; }
.hero-photo .btn-primary { box-shadow: 0 6px 24px rgba(0,0,0,0.25); }

.welcome-strip {
    text-align: center;
    padding: 4.5rem 0 1rem;
}

.welcome-strip p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.5;
    max-width: 720px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 2.8rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

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

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
}

.technical-privacy {
    border-top: 1px solid var(--border, rgba(0,0,0,0.12));
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    font-size: 0.95rem;
}

.technical-privacy h2 {
    font-size: 1.15rem;
}

.technical-privacy-note {
    color: var(--text-muted, #6b5b4a);
    font-size: 0.85rem;
    margin-top: -0.25rem;
}

.technical-privacy ul {
    padding-left: 1.1rem;
}

.technical-privacy li {
    margin-bottom: 0.4rem;
}

.category-nav {
    margin-bottom: 2rem;
}

.category-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.5rem;
}

.category-nav a {
    display: inline-block;
    padding: 0.35rem 0;
    color: var(--text-muted, #6b5b4a);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}

.category-nav a:hover {
    color: var(--text, #2a2521);
}

.category-nav a.active {
    color: var(--text, #2a2521);
    border-bottom-color: var(--primary, #2a2521);
    font-weight: 600;
}

.category-count {
    font-size: 0.85em;
    color: var(--text-muted, #6b5b4a);
    margin-left: 0.15rem;
}

.product-grid {
    display: grid;
    gap: 1.5rem;

    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.product-grid:not(:has(> :nth-child(2))) {
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 481px) {
    .product-grid:has(> :nth-child(2)):not(:has(> :nth-child(3))) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }
}

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

@media (max-width: 480px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

.product-card {
    border-radius: 3px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    transition: box-shadow 0.25s, transform 0.25s;
}

.product-card:hover {
    box-shadow: 0 14px 34px rgba(42,37,33,0.10);
    transform: translateY(-4px);
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

.product-image {
    aspect-ratio: auto;
    overflow: hidden;
    background: #f3f4f6;
    position: relative;
}

.sale-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--primary, #2a2521);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.25rem 0.55rem;
    border-radius: 2px;
    line-height: 1.4;
}

.product-image img,
.product-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

.product-info {
    padding: 1rem;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.compare-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.9rem;
}

.product-detail {
    padding: 3rem 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.product-gallery img,
.product-gallery video {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-sidebar h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.product-price-large {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-price-large .current-price {
    font-size: 1.75rem;
}

.product-description {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.product-tags .tag {
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

.featured-products,
.products-listing,
.page-content {
    padding: 4rem 0;
}

.featured-products h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.section-head h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.section-footer {
    text-align: center;
    margin-top: 2rem;
}

.page-header {
    background: #f9fafb;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
}

.content-body {
    max-width: 800px;
    line-height: 1.8;
}

.content-body p {
    margin-bottom: 1rem;
}

.site-footer {
    background: #2a2521;
    color: #cdbfae;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-grid h4 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.footer-col nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col nav a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col nav a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #3b332c;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #8a7d6f;
}

.blog-listing h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}

.blog-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.blog-card h3 a {
    color: var(--color-text);
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: var(--color-primary);
}

.blog-meta {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.blog-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.blog-post-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.blog-post-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 720px;
}

.blog-post-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.blog-post-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.blog-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.blog-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
}

.back-to-blog {
    display: inline-block;
    margin-top: 3rem;
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
}

.back-to-blog:hover {
    text-decoration: underline;
}

.cart-toggle {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    padding: 4px;
    display: flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

body.cart-open .cart-overlay {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

body.cart-open .cart-drawer {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.cart-drawer-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0 4px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.cart-empty {
    text-align: center;
    color: #9ca3af;
    padding: 3rem 0;
    font-size: 0.95rem;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.cart-item-price {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-item-controls button {
    width: 28px;
    height: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-controls button:hover {
    background: #f3f4f6;
}

.cart-item-controls span {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.cart-item-remove {
    color: #ef4444 !important;
    border-color: transparent !important;
    font-size: 1.2rem !important;
}

.cart-footer {
    border-top: 1px solid #e5e7eb;
    padding: 1.25rem 1.5rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cart-checkout-btn {
    width: 100%;
}

.cart-checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.checkout-result {
    text-align: center;
    padding: 5rem 0;
}

.checkout-result h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.checkout-result p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--color-text); padding: 4px; }
.menu-toggle .close-icon { display: none; }
body.nav-open .menu-toggle .menu-icon { display: none; }
body.nav-open .menu-toggle .close-icon { display: block; }

@media (max-width: 768px) {
    .site-header .container { flex-wrap: wrap; gap: 0; }
    .menu-toggle { display: flex; align-items: center; }

    .site-header .site-logo,
    .site-header .nav-actions { order: 1; }
    .site-header .site-nav,
    .header-split .site-nav,
    .header-left .site-nav,
    .header-left-aligned .site-nav {
        order: 2; flex: 1 0 100%; margin-left: 0; margin-right: 0;
    }
    .header-centered .container { justify-content: space-between; }
    .header-centered .site-logo { flex: 0 0 auto; }
    .header-centered .nav-actions { position: static; }
    .site-nav {
        display: none; flex-direction: column; width: 100%;
        padding: 1rem 0; gap: 0; border-top: 1px solid rgba(0,0,0,0.08);
    }
    body.nav-open .site-nav { display: flex; }
    .site-nav a { padding: 0.75rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-bottom p::after {
  content: " · Built with LaunchPad";
  color: #9ca3af;
}

.welcome-strip { text-align: left; padding: 0; }
.welcome-strip > .container { max-width: 1100px; }
.welcome-strip p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  max-width: none;
  margin: 0 0 1em;
}

.product-image {
aspect-ratio: auto !important;

}

.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}

@media (max-width: 768px) {
[style*="grid-template-columns: repeat(3"],
[style*="grid-template-columns: repeat(2"],
[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; gap: 28px !important; }
section[style*="min-height: 480px"] { min-height: auto !important; }
section[style*="padding: 100px"], section[style*="padding: 80px"] { padding: 48px 20px !important; }
h1[style*="font-size: 52px"] { font-size: 34px !important; }
h2[style*="font-size: 36px"], h2[style*="font-size: 32px"] { font-size: 26px !important; }
}
