/* =========================================
   Home & Kkids - Custom Homepage Styles
   ========================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Be+Vietnam+Pro:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=swap');

/* --- CSS Variables (Design Tokens) --- */
:root {
    --color-primary:           #d16b3d;
    --color-surface:           #e0f2f1;
    --color-surface-container: #fce4ec;
    --color-surface-bright:    #ffffff;
    --color-on-surface:        #333333;
    --color-on-surface-variant:#666666;
    --color-outline:           #dddddd;
    --color-secondary:         #2d2d2d;
    --color-tertiary:          #81c784;

    --font-headline: 'Plus Jakarta Sans', sans-serif;
    --font-body:     'Be Vietnam Pro', sans-serif;

    --radius-sm:  0.75rem;
    --radius-md:  1.5rem;
    --radius-lg:  2.5rem;
    --radius-full:9999px;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-on-surface);
    background-color: var(--color-surface);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

.overflow-hidden { overflow: hidden; }

/* --- Container --- */
.hk-container {
    max-width: auto; /* Slightly wider for desktop */
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
}

@media (min-width: 1024px) {
    .hk-container {
        padding-left: auto;
        padding-right: auto;
    }
}

/* =========================================
   ANNOUNCEMENT BAR+
   ========================================= */
.hk-announcement-bar {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-family: var(--font-headline);
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hk-hero { 
    background: #FCFBF9; /* Soft, premium light beige */
    padding: 3rem 0; 
    border-bottom: 1px solid var(--border-color);
}

@media (min-width: 1024px) {
    .hk-hero { padding: 6rem 0; }
}

.hk-hero__inner {
    display: flex;
    flex-direction: column-reverse; /* Image on top for mobile */
    gap: 2rem;
}

@media (min-width: 1024px) {
    .hk-hero__inner { 
        flex-direction: row; 
        gap: 3rem;
        align-items: center;
    }
}

.hk-hero__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-on-surface-variant);
}

@media (min-width: 1024px) {
    .hk-hero__trust {
        justify-content: flex-start;
        font-size: 0.95rem;
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }
}

.hk-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hk-icon-sm {
    font-size: 1.2rem;
    color: var(--color-primary); 
}

.hk-hero__content {
    flex: 1;
    max-width: 100%;
    text-align: center;
}

@media (min-width: 1024px) {
    .hk-hero__content { 
        max-width: 650px; 
        text-align: left;
    }
}

.hk-hero__title {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: clamp(2rem, 7vw, 4.25rem); /* Increased for desktop impact */
    line-height: 1.05;
    margin-bottom: 2rem;
    color: var(--color-secondary);
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.hk-hero__title .hk-text-highlight { color: var(--color-primary); }

.hk-hero__subtitle {
    color: var(--color-on-surface-variant);
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 36rem;
    line-height: 1.75;
    margin-bottom: 3rem;
}

.hk-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #000;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}
.hk-hero__cta:hover { opacity: 0.8; }

.hk-hero__image {
    flex: 1;
    min-height: 250px;
    max-height: 40vh;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

@media (min-width: 640px) {
    .hk-hero__image { min-height: 350px; max-height: none; }
}

@media (min-width: 1024px) {
    .hk-hero__image { 
        min-height: 500px; 
        animation: hk-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
}

@keyframes hk-reveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hk-hero__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   CATEGORY GRID
   ========================================= */
.hk-categories { padding: 0 0 3rem; }

.hk-categories__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .hk-categories { padding: 0 0 5rem; }
    .hk-categories__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.hk-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.hk-category-item__img-wrap {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 0.25rem;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s;
}
.hk-category-item:hover .hk-category-item__img-wrap { transform: scale(1.08); }

.hk-category-item__img-wrap img { width: 100%; height: 100%; object-fit: contain; }

.hk-category-item__label {
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    transition: color 0.2s;
}

@media (min-width: 1024px) {
    .hk-category-item__label { font-size: 0.85rem; }
}
.hk-category-item:hover .hk-category-item__label { color: var(--color-primary); }

.hk-category-subcats {
    list-style: none;
    margin-top: 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.hk-category-subcats li a {
    font-size: 0.8rem;
    color: var(--color-on-surface-variant);
    transition: color 0.2s;
}

.hk-category-subcats li a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* =========================================
   SECTION HEADINGS
   ========================================= */
.hk-section-heading {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
    .hk-section-heading { margin-bottom: 5rem; }
}

.hk-section-subheading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.hk-section-subheading-row h2 {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 1.75rem;
}
.hk-section-subheading-row a {
    color: var(--color-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: text-decoration 0.2s;
}
.hk-section-subheading-row a:hover { text-decoration: underline; }

/* =========================================
   TRENDING PRODUCTS
   ========================================= */
.hk-trending { padding: 0 0 5rem; }

.hk-products-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.hk-product-card {
    background: var(--color-surface-container);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hk-product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

.hk-product-card__image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
}
.hk-product-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s;
}
.hk-product-card:hover .hk-product-card__image-wrap img { transform: scale(1.05); }

.hk-sale-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: #fff;
    color: #333;
    padding: 2px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hk-product-card__title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    min-height: 3rem;
    padding: 0 1rem;
}

.hk-product-card__price {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}
.hk-product-card__price del {
    color: var(--color-on-surface-variant);
    font-size: 0.85rem;
    font-weight: 400;
    margin-right: 0.5rem;
}

.hk-add-to-cart-btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid #333;
    background: transparent;
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.hk-add-to-cart-btn:hover { background: #333; color: #fff; }

/* =========================================
   BEST SELLERS
   ========================================= */
.hk-best-sellers {
    padding: 4rem 0;
    background: rgba(252,228,236,0.3);
    border-radius: var(--radius-lg);
    margin: 0 1.5rem 5rem;
}

.hk-bs-card {
    background: #fff;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}
.hk-bs-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

.hk-bs-card__image-wrap {
    position: relative;
    aspect-ratio: 1/1;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: rgba(252,228,236,0.2);
}
.hk-bs-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
}

.hk-off-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #ef4444;
    color: #fff;
    padding: 2px 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hk-stars { display: flex; align-items: center; gap: 2px; margin-bottom: 0.5rem; }
.hk-stars .material-symbols-outlined { font-size: 0.875rem; color: #facc15; }
.hk-stars .material-symbols-outlined.empty { color: #d1d5db; }
.hk-stars span.count { font-size: 0.625rem; color: var(--color-on-surface-variant); margin-left: 0.25rem; }

.hk-bs-card__title {
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.hk-bs-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hk-bs-card__price del { color: var(--color-on-surface-variant); font-size: 0.75rem; display: block; }
.hk-bs-card__price strong { color: var(--color-primary); font-weight: 800; font-size: 1rem; }

.hk-bs-card__cart-btn {
    background: var(--color-on-surface);
    color: #fff;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}
.hk-bs-card__cart-btn:hover { background: var(--color-primary); }
.hk-bs-card__cart-btn .material-symbols-outlined { font-size: 1.15rem; }

/* =========================================
   PROMO BANNER
   ========================================= */
.hk-promo { margin-bottom: 5rem; }

.hk-promo__inner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hk-promo__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hk-promo__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, transparent 100%);
}

.hk-promo__content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    color: #fff;
    max-width: 36rem;
}
.hk-promo__content h2 {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.hk-promo__content p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.hk-promo__btn {
    background: #fff;
    color: #000;
    padding: 1rem 3rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-headline);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-size: 1rem;
}
.hk-promo__btn:hover { background: var(--color-primary); color: #fff; }

/* =========================================
   EDUCATIONAL TOYS
   ========================================= */
.hk-edu-toys { margin-bottom: 5rem; }

.hk-edu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.hk-edu-card { display: flex; flex-direction: column; gap: 1rem; }

.hk-edu-card__image {
    aspect-ratio: 4/5;
    background: var(--color-surface-container);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.hk-edu-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.hk-edu-card:hover .hk-edu-card__image img { transform: scale(1.05); }

.hk-edu-card__age {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-on-surface-variant);
}
.hk-edu-card__title { font-weight: 700; font-size: 1rem; }
.hk-edu-card__price { color: var(--color-primary); font-weight: 700; }

/* =========================================
   REVIEWS
   ========================================= */
.hk-reviews {
    background: #fff;
    padding: 5rem 0;
    margin-bottom: 5rem;
}

.hk-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.hk-review-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    background: rgba(224,242,241,0.5);
    border: 1px solid rgba(0,0,0,0.05);
}

.hk-review-card__stars { display: flex; color: #facc15; margin-bottom: 1rem; }
.hk-review-card__stars .material-symbols-outlined { font-size: 1.25rem; }

.hk-review-card__text {
    font-style: italic;
    color: var(--color-on-surface-variant);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.hk-reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hk-reviewer__avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(209,107,61,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
}

.hk-reviewer__name { font-weight: 700; }
.hk-reviewer__role { font-size: 0.75rem; color: var(--color-on-surface-variant); }

/* =========================================
   TRUST ICONS
   ========================================= */
.hk-trust { margin-bottom: 5rem; }

.hk-trust__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    background: rgba(252,228,236,0.4);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
}

@media (min-width: 480px) {
    .hk-trust__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2.5rem;
    }
}

.hk-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.hk-trust__item .material-symbols-outlined { color: var(--color-primary); font-size: 2.25rem; }
.hk-trust__item strong { font-weight: 700; font-size: 0.9rem; }
.hk-trust__item span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-on-surface-variant);
}

/* =========================================
   NEWSLETTER
   ========================================= */
.hk-newsletter { margin-bottom: 5rem; }

.hk-newsletter__inner {
    background: #000;
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 640px) {
    .hk-newsletter__inner { padding: 4rem 2.5rem; }
}

.hk-newsletter__inner h2 {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 0.5rem;
}
.hk-newsletter__inner p { opacity: 0.8; font-size: 1rem; }

.hk-newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.hk-newsletter__form input {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    border: none;
    font-size: 1rem;
    width: 100%;
}

.hk-newsletter__form button {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
    white-space: nowrap;
}
.hk-newsletter__form button:hover { transform: scale(1.05); }

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.hk-whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.2s;
}
.hk-whatsapp-float:hover { transform: scale(1.1); }
.hk-whatsapp-float svg { width: 1.75rem; height: 1.75rem; }

/* =========================================
   ASTRA HEADER OVERRIDES
   ========================================= */
.main-header-bar, .ast-primary-header-bar {
    background: var(--color-surface-container) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
}

.site-header {
    background: var(--color-surface-container) !important;
}

.ast-builder-menu-1 a, .main-navigation a {
    font-family: var(--font-headline) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: color 0.2s !important;
}
.ast-builder-menu-1 a:hover, .main-navigation a:hover,
.ast-builder-menu-1 .current-menu-item > a { color: var(--color-primary) !important; }

/* =========================================
   MATERIAL SYMBOLS
   ========================================= */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* Tablet */
@media (min-width: 640px) {
    .hk-products-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .hk-reviews-grid    { grid-template-columns: repeat(2, 1fr); }
    .hk-newsletter__form { flex-direction: row; }
}

/* Desktop */
@media (min-width: 1024px) {
    .hk-hero__inner     { flex-direction: row; }
    .hk-hero__content   { padding: 4rem 5rem; }
    .hk-hero__title     { font-size: 3.75rem; }
    .hk-categories__grid{ grid-template-columns: repeat(6, 1fr); }
    .hk-category-item__img-wrap { width: 7rem; height: 7rem; }

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

    .hk-section-heading { text-align: left; font-size: 3rem; }
    .hk-trust__inner    { grid-template-columns: repeat(4, 1fr); }
    .hk-edu-grid        { grid-template-columns: repeat(4, 1fr); }

    .hk-promo__content  { padding: 3rem 5rem; }
    .hk-promo__content h2 { font-size: 3.5rem; }

    .hk-newsletter__inner {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        padding: 4rem 5rem;
    }
    .hk-newsletter__form { width: auto; min-width: 30rem; }
    .hk-newsletter__form input { width: 24rem; }
}

/* =========================================
   FOOTER — Home and Kkids / A.P. Retail
   ========================================= */

/* ── Variables scoped to footer ── */
.hk-footer {
    --footer-bg:         #111827;
    --footer-bg-bottom:  #0d1421;
    --footer-text:       rgba(255,255,255,0.75);
    --footer-heading:    #ffffff;
    --footer-accent:     var(--color-primary);
    --footer-border:     rgba(255,255,255,0.08);
    --footer-link-hover: var(--color-primary);

    background: var(--footer-bg);
    color: var(--footer-text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── Container ── */
.hk-footer__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Main 4-Col Grid ── */
.hk-footer__main {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--footer-border);
}

.hk-footer__main > .hk-footer__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

/* ── Column headings ── */
.hk-footer__col-title {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--footer-heading);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--footer-accent);
    display: inline-block;
}

/* ── Brand / About column ── */
.hk-footer__brand-name {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--footer-heading);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.hk-footer__brand-accent { color: var(--footer-accent); }

.hk-footer__about {
    color: var(--footer-text);
    margin-bottom: 1.5rem;
    max-width: 28rem;
    font-size: 0.875rem;
}

/* Social icons row */
.hk-footer__social {
    display: flex;
    gap: 0.75rem;
}

.hk-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: 1px solid var(--footer-border);
    color: var(--footer-text);
    background: rgba(255,255,255,0.05);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.hk-footer__social-link:hover {
    background: var(--footer-accent);
    color: #fff;
    border-color: var(--footer-accent);
}

/* ── Links list ── */
.hk-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.hk-footer__link {
    color: var(--footer-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s, gap 0.2s;
    font-size: 0.875rem;
}
.hk-footer__link:hover {
    color: var(--footer-link-hover);
    gap: 0.65rem;
}

.hk-footer__link-arrow {
    font-size: 1rem;
    line-height: 1;
    color: var(--footer-accent);
    transition: transform 0.2s;
}
.hk-footer__link:hover .hk-footer__link-arrow { transform: translateX(2px); }

/* ── Contact column ── */
.hk-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hk-footer__contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.875rem;
    color: var(--footer-text);
}

.hk-footer__contact-icon {
    flex-shrink: 0;
    color: var(--footer-accent);
    margin-top: 2px;
    display: flex;
}

.hk-footer__biz-name {
    color: var(--footer-heading);
    font-weight: 700;
    display: block;
    margin-bottom: 0.2rem;
}

.hk-footer__landmark {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    font-style: italic;
}

.hk-footer__phone {
    color: var(--footer-accent);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
}
.hk-footer__phone:hover { opacity: 0.8; }

.hk-footer__gst {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--footer-border);
    border-radius: 0.5rem;
    padding: 0.6rem 0.8rem;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}
.hk-footer__gst strong { color: var(--footer-heading); }

/* ── Bottom bar ── */
.hk-footer__bottom {
    background: var(--footer-bg-bottom);
    padding: 1.25rem 0;
}

.hk-footer__bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.hk-footer__copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

/* Payment badges */
.hk-footer__payments {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hk-footer__pay-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    padding: 0.2rem 0.65rem;
    border-radius: 0.35rem;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: var(--font-headline);
    letter-spacing: 0.05em;
}

/* ── Astra Footer Override ── */
/* Hide Astra's default footer widgets/bar */
.ast-small-footer,
.footer-widget-area,
.ast-footer-copyright { display: none !important; }

/* ── Responsive ── */
@media (min-width: 640px) {
    .hk-footer__main > .hk-footer__container {
        grid-template-columns: repeat(2, 1fr);
    }
    .hk-footer__bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hk-footer__main > .hk-footer__container {
        grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
        gap: 3rem;
    }
    .hk-footer__col--brand { border-right: 1px solid var(--footer-border); padding-right: 2rem; }
}
/* =========================================
   ABOUT US SECTION (Homepage)
   ========================================= */
.hk-about-short {
    padding: 6rem 0;
    background: #fff;
}

.hk-about-short__inner {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hk-about-short__image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
}

.hk-about-short__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hk-about-short__image:hover img {
    transform: scale(1.03);
}

.hk-about-short__content {
    flex: 1;
    max-width: 550px;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hk-about-short__content { padding: 0; }
}

.hk-about-short__body {
    margin: 2rem 0;
}

.hk-about-short__body p {
    font-size: clamp(1rem, 3.5vw, 1.15rem);
    line-height: 1.7;
    color: var(--color-on-surface-variant);
    margin-bottom: 1.25rem;
}

/* =========================================
   BRAND LIFESTYLE BANNER
   ========================================= */
.hk-brand-banner {
    padding: 6rem 0;
    background: var(--color-secondary); /* Dark premium background */
    color: #fff;
    text-align: center;
}

.hk-brand-banner__inner {
    max-width: 800px;
    margin: 0 auto;
}

.hk-brand-banner__title {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hk-brand-banner__subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* =========================================
   VISIT OUR STORE SECTION
   ========================================= */
.hk-visit-store {
    padding: 6rem 0;
    background: var(--color-surface);
}

.hk-visit-store__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

@media (min-width: 992px) {
    .hk-visit-store__inner {
        flex-direction: row;
        gap: 5rem;
        padding: 4rem;
    }
}

.hk-visit-store__image {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.hk-visit-store__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

.hk-visit-store__content {
    flex: 1;
}

.hk-visit-store__text {
    font-size: clamp(1rem, 3.5vw, 1.1rem);
    line-height: 1.6;
    color: var(--color-on-surface-variant);
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 992px) {
    .hk-visit-store__text { text-align: left; margin-bottom: 2.5rem; }
}

.hk-visit-store__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 480px) {
    .hk-visit-store__actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .hk-visit-store__actions { justify-content: flex-start; }
}

.hk-btn--whatsapp {
    background: #25D366;
    color: #fff;
}

.hk-btn--whatsapp:hover {
    background: #128C7E;
    color: #fff;
}

/* =========================================
   UI/UX POLISH & INTERACTIONS
   ========================================= */

/* Category Grid Polish */
.hk-category-item {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03);
}

.hk-category-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--color-primary);
}

/* Store Gallery Polish */
.hk-gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.hk-gallery-item img {
    transition: transform 0.6s ease;
}

.hk-gallery-item:hover img {
    transform: scale(1.1);
}

/* Base Responsive Overrides */
@media (max-width: 992px) {
    .hk-about-short__inner, 
    .hk-visit-store__inner {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hk-visit-store__inner { padding: 3rem 2rem; }
    
    .hk-about-short__inner { flex-direction: column-reverse; } /* Content first on mobile? Or image? Usually image first is fine but user might prefer content. Let's keep image top. */
    
    .hk-visit-store__actions { justify-content: center; }
}

@media (max-width: 768px) {
    .hk-brand-banner__title { font-size: 2.25rem; }
    .hk-about-short, .hk-brand-banner, .hk-visit-store { padding: 4rem 0; }
}

/* =========================================
   ABOUT US PAGE (Dedicated Template)
   ========================================= */
.hk-about-page {
    background: var(--color-surface);
    min-height: 80vh;
}

.hk-about-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, var(--color-surface-bright) 0%, var(--color-surface-container) 100%);
    text-align: center;
}

.hk-about-title {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--color-secondary);
}

.hk-about-content {
    padding: 4rem 0 6rem;
}

.hk-container--narrow {
    max-width: 900px !important;
}

.hk-about-card {
    background: #fff;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.hk-about-card p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-on-surface-variant);
    margin-bottom: 1.5rem;
}

.hk-about-card p strong {
    color: var(--color-primary);
}

.hk-about-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hk-about-title { font-size: 2.5rem; }
    .hk-about-card { padding: 2rem; }
    .hk-about-card p { font-size: 1.05rem; }
}

/* =========================================
   COMING SOON / 404 PAGE
   ========================================= */
.hk-404-page {
    background: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
}

.hk-coming-soon__content {
    background: #fff;
    padding: 4rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto;
}

.hk-coming-soon__icon {
    margin-bottom: 2rem;
}

.hk-coming-soon__icon .material-symbols-outlined {
    font-size: 5rem;
    color: var(--color-primary);
    background: var(--color-surface-bright);
    padding: 1.5rem;
    border-radius: 50%;
}

.hk-coming-soon__title {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.hk-coming-soon__text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-on-surface-variant);
    margin-bottom: 2.5rem;
}

.hk-coming-soon__actions .hk-btn {
    padding: 1rem 2.5rem;
    font-weight: 700;
}

