/* ==============================================================
   Home Studio — "Warm wood, cream, terracotta"
   Pre nábytok, dekor, záhradu, bývanie. Custom design.
   Color picker povolený.
   ============================================================== */

.theme-homestudio {
    background-color: #F5EDE0;
    color: #2C2418;
    --hs-bg: #F5EDE0;
    --hs-bg-card: #FFFFFF;
    --hs-bg-secondary: #EDE0CD;
    --hs-text-primary: #2C2418;
    --hs-text-secondary: #6B5A3F;
    --hs-text-quiet: #9C8865;
    --hs-accent: #B85C1F;
    --hs-accent-hover: #9C4D17;
    --hs-wood: #6B4F30;
    --hs-border: #D4C2A0;
    --hs-shadow: 0 2px 12px rgba(107, 79, 48, 0.08);
    --hs-shadow-hover: 0 8px 24px rgba(107, 79, 48, 0.12);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Nav */
.theme-homestudio .storefront-nav {
    background: var(--hs-bg-card);
    border-bottom: 1px solid var(--hs-border);
    box-shadow: var(--hs-shadow);
}
.theme-homestudio .storefront-logo {
    color: var(--hs-text-primary);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0;
}
.theme-homestudio .storefront-nav-link {
    color: var(--hs-text-secondary);
    font-size: 14px;
}
.theme-homestudio .storefront-nav-link:hover { color: var(--hs-accent); }

.theme-homestudio .storefront-badge {
    background: var(--hs-accent);
    color: #FFFFFF;
    border-radius: 8px;
}

.theme-homestudio .storefront-hamburger span { background: var(--hs-text-primary); }
.theme-homestudio .storefront-mobile-menu { background: var(--hs-bg-card); border-bottom: 1px solid var(--hs-border); }
.theme-homestudio .storefront-mobile-link { color: var(--hs-text-primary); border-bottom: 1px solid var(--hs-border); }
.theme-homestudio .storefront-mobile-link:hover { color: var(--hs-accent); }

/* Hero */
.theme-homestudio .storefront-hero {
    padding: 80px 24px 64px;
    background: linear-gradient(180deg, var(--hs-bg) 0%, var(--hs-bg-secondary) 100%);
    border-bottom: 1px solid var(--hs-border);
}
.theme-homestudio .storefront-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--hs-text-primary);
    letter-spacing: -0.3px;
    margin: 0 0 16px;
}
.theme-homestudio .storefront-hero-desc {
    color: var(--hs-text-secondary);
    font-size: 16px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 24px;
}
.theme-homestudio .storefront-hero-cta {
    background: var(--hs-accent) !important;
    color: #FFFFFF !important;
    border-radius: 12px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--hs-shadow);
}
.theme-homestudio .storefront-hero-cta:hover {
    background: var(--hs-accent-hover) !important;
    transform: translateY(-2px);
    box-shadow: var(--hs-shadow-hover);
}

/* Cards */
.theme-homestudio .storefront-products-grid { gap: 20px; }
.theme-homestudio .storefront-card {
    background: var(--hs-bg-card);
    border: 1px solid var(--hs-border);
    border-radius: 12px;
    box-shadow: var(--hs-shadow);
    overflow: hidden;
    transition: box-shadow 300ms ease, transform 300ms ease;
}
.theme-homestudio .storefront-card:hover {
    box-shadow: var(--hs-shadow-hover);
    transform: translateY(-3px);
}
.theme-homestudio .storefront-card-image {
    height: 240px;
    background: var(--hs-bg-secondary);
}
.theme-homestudio .storefront-card-body {
    padding: 16px;
}
.theme-homestudio .storefront-card-title {
    color: var(--hs-text-primary);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    font-size: 16px;
}
.theme-homestudio .storefront-card-price {
    color: var(--hs-accent);
    font-size: 15px;
    font-weight: 600;
}
.theme-homestudio .storefront-card-price-old { color: var(--hs-text-quiet); }
.theme-homestudio .storefront-card-badge { background: var(--hs-accent); color: #FFFFFF; }

/* Section */
.theme-homestudio .storefront-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--hs-text-primary);
    text-align: center;
    letter-spacing: -0.3px;
}

/* Listing */
.theme-homestudio .storefront-listing-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--hs-text-primary);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.3px;
}
.theme-homestudio .storefront-sidebar-box {
    background: var(--hs-bg-card);
    border: 1px solid var(--hs-border);
    border-radius: 12px;
    box-shadow: var(--hs-shadow);
}
.theme-homestudio .storefront-sidebar-title {
    color: var(--hs-text-primary);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 14px;
}
.theme-homestudio .storefront-search-input {
    border: 1px solid var(--hs-border);
    border-radius: 12px;
    background: var(--hs-bg-card);
}
.theme-homestudio .storefront-search-input:focus {
    border-color: var(--hs-accent);
    box-shadow: 0 0 0 3px rgba(184, 92, 31, 0.1);
}
.theme-homestudio .storefront-category-link.active {
    background: rgba(184, 92, 31, 0.1);
    color: var(--hs-accent);
}

/* Pagination */
.theme-homestudio .storefront-page-link {
    border: 1px solid var(--hs-border);
    border-radius: 8px;
    background: var(--hs-bg-card);
    color: var(--hs-text-primary);
}
.theme-homestudio .storefront-page-link.active {
    background: var(--hs-accent);
    color: #FFFFFF;
    border-color: var(--hs-accent);
}

/* Detail */
.theme-homestudio .storefront-detail-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--hs-text-primary);
    letter-spacing: -0.3px;
}
.theme-homestudio .storefront-detail-price {
    color: var(--hs-accent);
    font-size: 24px;
    font-weight: 700;
}
.theme-homestudio .storefront-detail-btn {
    background: var(--hs-accent) !important;
    color: #FFFFFF !important;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    box-shadow: var(--hs-shadow);
}
.theme-homestudio .storefront-detail-btn:hover {
    background: var(--hs-accent-hover) !important;
    box-shadow: var(--hs-shadow-hover);
}

/* Page banner */
.theme-homestudio .storefront-page-banner {
    padding: 64px 24px;
    background: linear-gradient(180deg, var(--hs-bg) 0%, var(--hs-bg-secondary) 100%);
    border-bottom: 1px solid var(--hs-border);
}
.theme-homestudio .storefront-page-banner-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--hs-text-primary);
}

.theme-homestudio .storefront-shop-name {
    color: var(--hs-text-primary);
    font-family: 'Playfair Display', Georgia, serif;
}

/* Footer */
.theme-homestudio .storefront-footer {
    background: var(--hs-wood);
    color: var(--hs-bg);
    border-top: none;
}
.theme-homestudio .storefront-footer-link { color: rgba(245, 237, 224, 0.8); }
.theme-homestudio .storefront-footer-link:hover { color: var(--hs-bg); }
.theme-homestudio .storefront-footer-text { color: rgba(245, 237, 224, 0.5); }

/* Cookie */
.theme-homestudio .storefront-cookie-banner {
    background: var(--hs-bg-card);
    border-color: var(--hs-border);
}
