/* Laorin — minimal MUJI-inspired storefront */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
    --lr-font: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --lr-text: #1a1a1a;
    --lr-muted: #6b6b6b;
    --lr-line: #e5e5e5;
    --lr-bg: #ffffff;
    --lr-soft: #f7f7f7;
    --lr-accent: #7f0019;
    --lr-max: 1280px;
    --lr-pad: clamp(16px, 3vw, 32px);
}

/* Reset old sureix theme interference */
body.heatclinic-theme {
    margin: 0;
    font-family: var(--lr-font) !important;
    font-size: 14px;
    line-height: 1.5;
    color: var(--lr-text);
    background: var(--lr-bg);
    -webkit-font-smoothing: antialiased;
}

body.heatclinic-theme * {
    box-sizing: border-box;
}

body.heatclinic-theme img {
    max-width: 100%;
    display: block;
}

body.heatclinic-theme a {
    color: inherit;
    text-decoration: none;
}

body.heatclinic-theme .container-wide {
    width: min(var(--lr-max), 100% - var(--lr-pad) * 2);
    margin: 0 auto;
}

/* Announcement */
body.heatclinic-theme .announcement {
    background: var(--lr-text);
    color: #fff;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 16px;
}

/* Header */
body.heatclinic-theme .hc-header {
    background: #fff;
    border-bottom: 1px solid var(--lr-line);
    position: sticky;
    top: 0;
    z-index: 200;
}

body.heatclinic-theme .hc-header-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    max-width: var(--lr-max);
    margin: 0 auto;
    padding: 18px var(--lr-pad) 14px;
}

body.heatclinic-theme .hc-header-left,
body.heatclinic-theme .hc-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

body.heatclinic-theme .hc-header-right {
    justify-content: flex-end;
}

body.heatclinic-theme .hc-search-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--lr-line);
    min-width: 180px;
}

body.heatclinic-theme .hc-search-form input {
    border: 0;
    background: transparent;
    padding: 8px 4px;
    font-size: 13px;
    width: 100%;
    outline: none;
    font-family: inherit;
}

body.heatclinic-theme .hc-search-form button {
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--lr-muted);
    padding: 4px;
}

body.heatclinic-theme .laorin-wordmark {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: var(--lr-text);
    text-indent: 0.28em;
}

body.heatclinic-theme .hc-icon-btn {
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--lr-text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-family: inherit;
    padding: 4px;
}

body.heatclinic-theme .hc-cart-count {
    background: var(--lr-text);
    color: #fff;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.heatclinic-theme .hc-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 28px;
    padding: 0 var(--lr-pad) 14px;
    max-width: var(--lr-max);
    margin: 0 auto;
}

body.heatclinic-theme .hc-nav a {
    color: var(--lr-text);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

body.heatclinic-theme .hc-nav a:hover,
body.heatclinic-theme .hc-nav a.active {
    border-bottom-color: var(--lr-text);
}

/* Homepage */
body.heatclinic-theme .lr-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    background: var(--lr-soft);
}

body.heatclinic-theme .lr-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 6vw, 72px);
}

body.heatclinic-theme .lr-hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lr-muted);
    margin-bottom: 12px;
}

body.heatclinic-theme .lr-hero-copy h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

body.heatclinic-theme .lr-hero-copy p {
    color: var(--lr-muted);
    max-width: 420px;
    margin: 0 0 28px;
    line-height: 1.65;
}

body.heatclinic-theme .lr-hero-media {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

body.heatclinic-theme .lr-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.heatclinic-theme .lr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--lr-text);
    color: #fff;
    padding: 14px 32px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid var(--lr-text);
    transition: background 0.2s, color 0.2s;
}

body.heatclinic-theme .lr-btn:hover {
    background: #fff;
    color: var(--lr-text);
}

body.heatclinic-theme .lr-btn-outline {
    background: transparent;
    color: var(--lr-text);
}

body.heatclinic-theme .lr-btn-outline:hover {
    background: var(--lr-text);
    color: #fff;
}

body.heatclinic-theme .lr-dept-strip {
    border-bottom: 1px solid var(--lr-line);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

body.heatclinic-theme .lr-dept-inner {
    display: flex;
    gap: 8px;
    padding: 16px var(--lr-pad);
    max-width: var(--lr-max);
    margin: 0 auto;
    width: 100%;
}

body.heatclinic-theme .lr-dept-chip {
    flex: 0 0 auto;
    padding: 10px 18px;
    border: 1px solid var(--lr-line);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: border-color 0.2s, background 0.2s;
}

body.heatclinic-theme .lr-dept-chip:hover {
    border-color: var(--lr-text);
    background: var(--lr-soft);
}

body.heatclinic-theme .lr-section {
    padding: clamp(40px, 6vw, 72px) var(--lr-pad);
    max-width: var(--lr-max);
    margin: 0 auto;
}

body.heatclinic-theme .lr-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

body.heatclinic-theme .lr-section-head h2 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
}

body.heatclinic-theme .lr-section-head a {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lr-muted);
    border-bottom: 1px solid var(--lr-line);
}

body.heatclinic-theme .lr-section-head a:hover {
    color: var(--lr-text);
}

/* Product grid — override sureix cards */
body.heatclinic-theme .product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(16px, 2vw, 32px) !important;
}

body.heatclinic-theme .product-card {
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

body.heatclinic-theme .product-card-link {
    display: block;
}

body.heatclinic-theme .product-thumb {
    position: relative;
    aspect-ratio: 1;
    background: var(--lr-soft) !important;
    overflow: hidden;
    margin-bottom: 14px;
}

body.heatclinic-theme .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

body.heatclinic-theme .product-thumb .hover-img {
    display: none !important;
}

body.heatclinic-theme .product-card:hover .product-thumb img.main-img {
    transform: scale(1.03);
}

body.heatclinic-theme .product-card-body {
    padding: 0 !important;
}

body.heatclinic-theme .product-title {
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.45 !important;
    margin: 0 0 8px !important;
    color: var(--lr-text) !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.heatclinic-theme .product-price {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--lr-text) !important;
}

body.heatclinic-theme .product-meta,
body.heatclinic-theme .color-swatches,
body.heatclinic-theme .quick-add {
    display: none !important;
}

/* Collection page */
body.heatclinic-theme .page-title-bar {
    padding: 32px 0 8px;
}

body.heatclinic-theme .page-title-bar h1 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 8px 0 0;
}

body.heatclinic-theme .breadcrumb {
    font-size: 12px;
    color: var(--lr-muted);
}

body.heatclinic-theme .collection-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 24px;
    border-bottom: 1px solid var(--lr-line);
    margin-bottom: 28px;
    font-size: 13px;
    color: var(--lr-muted);
}

body.heatclinic-theme .collection-layout {
    display: block !important;
}

body.heatclinic-theme .filter-panel {
    display: none !important;
}

body.heatclinic-theme .lr-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
}

body.heatclinic-theme .lr-filter-bar label {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lr-muted);
}

body.heatclinic-theme .lr-filter-bar select {
    min-width: 220px;
    padding: 10px 12px;
    border: 1px solid var(--lr-line);
    background: #fff;
    font-family: inherit;
    font-size: 13px;
    border-radius: 0;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

body.heatclinic-theme .collection-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 48px 0 24px;
}

body.heatclinic-theme .collection-pagination a,
body.heatclinic-theme .collection-pagination span {
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lr-line);
    font-size: 13px;
}

body.heatclinic-theme .collection-pagination a:hover,
body.heatclinic-theme .collection-pagination span.current {
    background: var(--lr-text);
    color: #fff;
    border-color: var(--lr-text);
}

/* Product detail */
body.heatclinic-theme.tks-unified-layout .tks-product-page {
    gap: clamp(24px, 5vw, 64px);
}

body.heatclinic-theme .tks-product-info h1 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

body.heatclinic-theme .tks-product-price {
    font-size: 20px;
    font-weight: 500;
}

body.heatclinic-theme .btn-shop,
body.heatclinic-theme .add-to-cart-btn {
    background: var(--lr-text) !important;
    color: #fff !important;
    border: 1px solid var(--lr-text) !important;
    border-radius: 0 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 12px !important;
    padding: 14px 28px !important;
}

/* Footer */
body.heatclinic-theme .hc-footer {
    border-top: 1px solid var(--lr-line);
    background: var(--lr-soft);
    padding: 48px var(--lr-pad) 24px;
    margin-top: 48px;
}

body.heatclinic-theme .hc-footer-grid {
    max-width: var(--lr-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

body.heatclinic-theme .hc-footer-grid h4 {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 16px;
    font-weight: 600;
}

body.heatclinic-theme .hc-footer-grid a,
body.heatclinic-theme .hc-footer-grid p {
    display: block;
    color: var(--lr-muted);
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
}

body.heatclinic-theme .hc-footer-grid a:hover {
    color: var(--lr-text);
}

body.heatclinic-theme .hc-footer-bottom {
    max-width: var(--lr-max);
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--lr-line);
    text-align: center;
    color: var(--lr-muted);
    font-size: 12px;
}

/* Cart drawer */
body.heatclinic-theme .cart-drawer .cart-panel {
    font-family: var(--lr-font);
}

body.heatclinic-theme .menu-toggle {
    display: none;
}

/* Hide old theme junk */
body.heatclinic-theme .marquee-wrap,
body.heatclinic-theme .promo-strip,
body.heatclinic-theme .hero-slideshow.tks-home-hero,
body.heatclinic-theme .shopify-section {
    display: none !important;
}

@media (max-width: 960px) {
    body.heatclinic-theme .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    body.heatclinic-theme .lr-hero {
        grid-template-columns: 1fr;
    }

    body.heatclinic-theme .lr-hero-media {
        min-height: 240px;
        order: -1;
    }

    body.heatclinic-theme .hc-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    body.heatclinic-theme .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }

    body.heatclinic-theme .hc-search-form {
        display: none;
    }

    body.heatclinic-theme .hc-nav {
        display: none;
    }

    body.heatclinic-theme .menu-toggle {
        display: inline-flex;
    }

    body.heatclinic-theme .hc-footer-grid {
        grid-template-columns: 1fr;
    }
}
