/*
Theme Name: Hungry Korean
Theme URI: https://hungrykorean.com
Author: Tenarock Culinary Ventures Inc.
Author URI: https://hungrykorean.com
Description: An editorial, premium WordPress theme for Hungry Korean — an authentic Korean food e-commerce brand. WooCommerce compatible with a Momofuku Goods-style aesthetic — sesame green chrome, gochujang red accents, generous typography, and editorial whitespace.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hungry-korean
Tags: e-commerce, food, woocommerce, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ==========================================================================
   CSS Custom Properties — Brand Tokens
   ========================================================================== */
:root {
    --hk-color-primary: #026231;        /* Sesame Green */
    --hk-color-primary-dark: #014a25;
    --hk-color-accent: #CE2E28;         /* Gochujang Red */
    --hk-color-accent-dark: #a82420;
    --hk-color-bg: #FFFCF5;             /* Light Beige */
    --hk-color-bg-alt: #f7f3e9;
    --hk-color-text: #2E2E2E;           /* Rich Black */
    --hk-color-text-muted: #6b6b6b;
    --hk-color-border: #e6e0d0;
    --hk-color-white: #ffffff;

    --hk-font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --hk-font-body: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --hk-container: 1280px;
    --hk-container-narrow: 760px;
    --hk-radius-sm: 2px;
    --hk-radius: 4px;
    --hk-radius-lg: 6px;
    --hk-transition: 0.2s ease;

    --hk-tracking-tight: -0.015em;
    --hk-tracking-loose: 0.18em;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--hk-font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--hk-color-text);
    background-color: var(--hk-color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover,
a:focus {
    color: var(--hk-color-accent);
}

/* ==========================================================================
   Typography — editorial scale, generous tracking on headings
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--hk-font-heading);
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 0.6em;
    color: var(--hk-color-text);
    letter-spacing: var(--hk-tracking-tight);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.15rem; }

p {
    margin: 0 0 1.25em;
}

.eyebrow {
    display: inline-block;
    font-family: var(--hk-font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: var(--hk-tracking-loose);
    color: var(--hk-color-accent);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--hk-container);
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 110px 0;
}

.section--alt {
    background-color: var(--hk-color-bg);
}

.section--white {
    background-color: var(--hk-color-white);
}

.section--dark {
    background-color: var(--hk-color-primary);
    color: var(--hk-color-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
    color: var(--hk-color-white);
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 70px;
}

/* ==========================================================================
   Buttons — flat, confident, editorial
   ========================================================================== */
.btn,
.button,
input[type="submit"],
button.button,
.wp-block-button__link {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--hk-font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: var(--hk-tracking-loose);
    text-transform: uppercase;
    background-color: var(--hk-color-primary);
    color: var(--hk-color-white);
    border: 1.5px solid var(--hk-color-primary);
    border-radius: var(--hk-radius-sm);
    cursor: pointer;
    transition: all var(--hk-transition);
    text-align: center;
    line-height: 1.2;
}

.btn:hover,
.button:hover,
input[type="submit"]:hover,
button.button:hover,
.wp-block-button__link:hover {
    background-color: var(--hk-color-primary-dark);
    border-color: var(--hk-color-primary-dark);
    color: var(--hk-color-white);
}

.btn--accent {
    background-color: var(--hk-color-accent);
    border-color: var(--hk-color-accent);
}

.btn--accent:hover {
    background-color: var(--hk-color-accent-dark);
    border-color: var(--hk-color-accent-dark);
}

.btn--outline {
    background-color: transparent;
    color: var(--hk-color-text);
    border-color: var(--hk-color-text);
}

.btn--outline:hover {
    background-color: var(--hk-color-text);
    color: var(--hk-color-white);
}

.btn--light {
    background-color: var(--hk-color-white);
    color: var(--hk-color-primary);
    border-color: var(--hk-color-white);
}

.btn--light:hover {
    background-color: transparent;
    color: var(--hk-color-white);
    border-color: var(--hk-color-white);
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announcement-bar {
    background-color: var(--hk-color-accent);
    color: var(--hk-color-white);
    text-align: center;
    padding: 9px 24px;
    font-family: var(--hk-font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: var(--hk-tracking-loose);
    text-transform: uppercase;
    line-height: 1.4;
}

.announcement-bar a {
    color: var(--hk-color-white);
    text-decoration: underline;
}

/* ==========================================================================
   Header — light beige chrome, grounded with green bottom border
   ========================================================================== */
.site-header {
    background-color: var(--hk-color-bg);
    border-bottom: 3px solid var(--hk-color-primary);
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 90px;
    transition: background-color var(--hk-transition), box-shadow var(--hk-transition);
}

.site-header.is-scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 32px;
    min-height: 90px;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    font-family: var(--hk-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    letter-spacing: var(--hk-tracking-tight);
    color: var(--hk-color-primary);
}

.site-title a {
    color: var(--hk-color-primary);
}

.site-title a:hover {
    color: var(--hk-color-accent);
}

.site-description {
    font-size: 0.75rem;
    color: var(--hk-color-text-muted);
    margin: 4px 0 0;
    font-style: normal;
    letter-spacing: 0.05em;
}

.custom-logo {
    max-height: 72px;
    width: auto;
    max-width: none;
    height: auto;
    align-self: center;
    display: block;
}

.header-brand {
    display: flex;
    align-items: center;
}

/* Primary Nav */
.primary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 36px;
    align-items: center;
}

.primary-nav a {
    font-family: var(--hk-font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--hk-color-text);
    text-transform: uppercase;
    letter-spacing: var(--hk-tracking-loose);
    position: relative;
    padding: 8px 0;
    display: inline-block;
}

.primary-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--hk-color-accent);
    transition: width var(--hk-transition);
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
    color: var(--hk-color-primary);
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    color: var(--hk-color-primary);
    font-family: var(--hk-font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: var(--hk-tracking-loose);
}

.header-cart:hover {
    color: var(--hk-color-accent);
    background: transparent;
}

.header-cart__count {
    background-color: var(--hk-color-primary);
    color: var(--hk-color-white);
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1.5px solid var(--hk-color-text);
    color: var(--hk-color-text);
    padding: 6px 14px;
    border-radius: var(--hk-radius-sm);
    font-family: var(--hk-font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: var(--hk-tracking-loose);
}

/* ==========================================================================
   Hero — editorial two-column grid, image edge-to-edge
   ========================================================================== */
.hero {
    background-color: var(--hk-color-bg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    align-items: stretch;
    min-height: 600px;
    position: relative;
    padding: 0;
    margin: 24px;
}

.hero__content {
    padding: 60px;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.hero__media {
    position: relative;
    overflow: hidden;
    align-self: stretch;
    height: 100%;
    min-height: 600px;
    border-radius: 12px;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__title {
    font-family: var(--hk-font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1;
    letter-spacing: var(--hk-tracking-tight);
    margin: 0 0 28px;
    color: var(--hk-color-text);
}

.hero__tagline {
    font-family: var(--hk-font-body);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: var(--hk-color-text-muted);
    max-width: 540px;
    line-height: 1.6;
    margin: 0 0 44px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Story Section — two-column editorial split
   ========================================================================== */
.story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    align-items: stretch;
    gap: 64px;
    min-height: 500px;
}

.story__media {
    position: relative;
    overflow: hidden;
    background-color: var(--hk-color-primary);
    border-radius: 12px;
    min-height: 500px;
    align-self: stretch;
}

.story__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 520px;
}

.story__content p {
    font-size: 1.1rem;
    color: var(--hk-color-text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}

.story__actions {
    margin-top: 36px;
}

/* ==========================================================================
   Category Grid — clean, editorial tiles
   ========================================================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.category-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    background-color: var(--hk-color-bg-alt);
    display: flex;
    align-items: flex-end;
    padding: 28px;
    color: var(--hk-color-white);
    text-decoration: none;
    transition: transform var(--hk-transition);
    background-size: cover;
    background-position: center;
    border-radius: var(--hk-radius);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.55) 100%);
    transition: background var(--hk-transition);
}

.category-card:hover {
    color: var(--hk-color-white);
}

.category-card:hover::before {
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.65) 100%);
}

.category-card__title {
    position: relative;
    font-family: var(--hk-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    margin: 0;
    color: var(--hk-color-white);
    letter-spacing: var(--hk-tracking-tight);
    display: inline-block;
    padding-bottom: 6px;
}

.category-card__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--hk-color-accent);
    transition: width 0.3s ease;
}

.category-card:hover .category-card__title::after {
    width: 100%;
}

/* ==========================================================================
   Cards / Grid (generic)
   ========================================================================== */
.grid {
    display: grid;
    gap: 32px;
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
    background-color: var(--hk-color-white);
    overflow: hidden;
    transition: transform var(--hk-transition);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-2px);
}

.card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--hk-color-bg-alt);
}

.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card__media img {
    transform: scale(1.04);
}

.card__body {
    padding: 24px 0 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card__title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    letter-spacing: var(--hk-tracking-tight);
}

.card__title a {
    color: var(--hk-color-text);
}

.card__title a:hover {
    color: var(--hk-color-accent);
}

.card__excerpt {
    color: var(--hk-color-text-muted);
    font-size: 0.97rem;
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}

.card__meta {
    font-size: 0.72rem;
    color: var(--hk-color-text-muted);
    margin-bottom: 12px;
    font-family: var(--hk-font-heading);
    text-transform: uppercase;
    letter-spacing: var(--hk-tracking-loose);
    font-weight: 600;
}

.card__more {
    font-family: var(--hk-font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--hk-tracking-loose);
    color: var(--hk-color-primary);
    border-bottom: 1.5px solid var(--hk-color-primary);
    padding-bottom: 2px;
    align-self: flex-start;
}

.card__more:hover {
    color: var(--hk-color-accent);
    border-bottom-color: var(--hk-color-accent);
}

/* ==========================================================================
   Page Content
   ========================================================================== */
.page-header {
    padding: 100px 0 60px;
    text-align: center;
    background-color: var(--hk-color-bg);
    border-bottom: 1px solid var(--hk-color-border);
}

.page-header__title {
    margin-bottom: 0.4em;
}

.page-header__subtitle {
    color: var(--hk-color-text-muted);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.entry-content {
    max-width: var(--hk-container-narrow);
    margin: 0 auto;
    padding: 80px 32px;
    font-size: 1.08rem;
    line-height: 1.8;
}

.entry-content img {
    border-radius: var(--hk-radius);
    margin: 2em 0;
}

.entry-content blockquote {
    border-left: 3px solid var(--hk-color-accent);
    padding: 4px 0 4px 28px;
    margin: 2em 0;
    font-family: var(--hk-font-heading);
    font-style: normal;
    font-weight: 600;
    color: var(--hk-color-text);
    font-size: 1.35rem;
    line-height: 1.4;
    letter-spacing: var(--hk-tracking-tight);
}

.entry-meta {
    color: var(--hk-color-text-muted);
    font-size: 0.78rem;
    margin-bottom: 1.5em;
    font-family: var(--hk-font-heading);
    text-transform: uppercase;
    letter-spacing: var(--hk-tracking-loose);
    font-weight: 600;
}

/* ==========================================================================
   Forms
   ========================================================================== */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--hk-color-border);
    border-radius: var(--hk-radius-sm);
    background-color: var(--hk-color-white);
    font-family: var(--hk-font-body);
    font-size: 1rem;
    color: var(--hk-color-text);
    transition: border-color var(--hk-transition);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--hk-color-primary);
}

label {
    display: block;
    font-family: var(--hk-font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: var(--hk-tracking-loose);
    margin-bottom: 8px;
    color: var(--hk-color-text);
}

/* ==========================================================================
   Footer — sesame green, white text, 4 columns
   ========================================================================== */
.site-footer {
    background-color: var(--hk-color-primary);
    color: var(--hk-color-white);
    padding: 90px 0 36px;
    margin-top: 0;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
    color: var(--hk-color-white);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    margin-bottom: 30px;
}

.footer-widgets h4 {
    color: var(--hk-color-white);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: var(--hk-tracking-loose);
    margin-bottom: 1.5em;
    font-weight: 700;
}

.footer-widgets ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widgets li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--hk-font-heading);
    letter-spacing: 0.05em;
}

.footer-bottom p { margin: 0; }

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-menu a {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: var(--hk-tracking-loose);
    font-family: var(--hk-font-heading);
    font-weight: 600;
}

/* ==========================================================================
   WooCommerce
   ========================================================================== */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 40px 32px;
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}

.woocommerce ul.products li.product {
    background-color: var(--hk-color-white);
    border-radius: var(--hk-radius);
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
    transition: transform var(--hk-transition);
    text-align: left;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-3px);
}

.woocommerce ul.products li.product a img {
    margin: 0 0 16px !important;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background-color: var(--hk-color-bg-alt);
    border-radius: var(--hk-radius);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--hk-font-heading) !important;
    font-size: 1rem !important;
    padding: 0 !important;
    margin: 0 0 6px !important;
    color: var(--hk-color-text);
    font-weight: 700 !important;
    letter-spacing: var(--hk-tracking-tight);
}

.woocommerce ul.products li.product .price {
    color: var(--hk-color-text) !important;
    font-family: var(--hk-font-heading) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    padding: 0 !important;
    display: block;
    margin: 0 0 14px;
}

.woocommerce ul.products li.product .button {
    margin: 0 0 4px !important;
    display: inline-block;
}

.woocommerce span.onsale {
    background-color: var(--hk-color-accent) !important;
    color: var(--hk-color-white) !important;
    border-radius: var(--hk-radius-sm) !important;
    font-family: var(--hk-font-heading);
    font-weight: 700;
    padding: 4px 10px !important;
    min-height: auto !important;
    line-height: 1.4 !important;
    top: 12px !important;
    left: 12px !important;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: var(--hk-tracking-loose);
}

.woocommerce div.product .product_title {
    font-family: var(--hk-font-heading);
    margin-bottom: 0.4em;
    letter-spacing: var(--hk-tracking-tight);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--hk-color-text) !important;
    font-family: var(--hk-font-heading);
    font-size: 1.5rem !important;
    font-weight: 700;
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
    border-top-color: var(--hk-color-primary) !important;
    background-color: var(--hk-color-bg) !important;
    border-radius: var(--hk-radius);
}

.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before {
    color: var(--hk-color-primary) !important;
}

.woocommerce-cart table.cart,
.woocommerce-checkout form {
    background-color: var(--hk-color-white);
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
    background-color: var(--hk-color-primary) !important;
    color: var(--hk-color-white) !important;
    border-radius: var(--hk-radius-sm) !important;
    font-family: var(--hk-font-heading);
    font-weight: 700;
    padding: 14px 28px !important;
    text-transform: uppercase;
    letter-spacing: var(--hk-tracking-loose);
    font-size: 0.78rem;
    transition: all var(--hk-transition);
    border: 1.5px solid var(--hk-color-primary);
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
    background-color: var(--hk-color-primary-dark) !important;
    border-color: var(--hk-color-primary-dark) !important;
    color: var(--hk-color-white) !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    border: 1px solid var(--hk-color-border) !important;
    padding: 10px 16px !important;
    border-radius: var(--hk-radius-sm) !important;
    font-family: var(--hk-font-heading);
    font-weight: 600;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background-color: var(--hk-color-primary) !important;
    color: var(--hk-color-white) !important;
    border-color: var(--hk-color-primary) !important;
}

/* ==========================================================================
   My Account
   ========================================================================== */
.account-page .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 240px;
    float: left;
    margin-right: 48px;
}

.account-page .woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--hk-color-border);
}

.account-page .woocommerce-account .woocommerce-MyAccount-navigation li {
    border-bottom: 1px solid var(--hk-color-border);
}

.account-page .woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 14px 0;
    font-family: var(--hk-font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: var(--hk-tracking-loose);
    text-transform: uppercase;
    color: var(--hk-color-text);
    transition: color var(--hk-transition);
}

.account-page .woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.account-page .woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    color: var(--hk-color-primary);
}

.account-page .woocommerce-account .woocommerce-MyAccount-content {
    overflow: hidden;
    padding-left: 8px;
}

.account-page .woocommerce-account .woocommerce-MyAccount-content h2,
.account-page .woocommerce-account .woocommerce-MyAccount-content h3 {
    margin-top: 0;
}

.account-page .woocommerce-account .woocommerce-Address {
    background-color: var(--hk-color-bg);
    padding: 24px 28px;
    border-radius: var(--hk-radius);
    margin-bottom: 30px;
}

.account-page .woocommerce-account .woocommerce-Address-title h2,
.account-page .woocommerce-account .woocommerce-Address-title h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.account-page::after {
    content: '';
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .account-page .woocommerce-account .woocommerce-MyAccount-navigation {
        width: 100%;
        float: none;
        margin: 0 0 40px;
    }
    .account-page .woocommerce-account .woocommerce-MyAccount-content {
        padding-left: 0;
    }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: inline-block;
    }

    .primary-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--hk-color-bg);
        border-top: 1px solid var(--hk-color-border);
        border-bottom: 3px solid var(--hk-color-primary);
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 8px 32px 16px;
    }

    .primary-nav li {
        width: 100%;
        border-bottom: 1px solid var(--hk-color-border);
    }

    .primary-nav li:last-child {
        border-bottom: none;
    }

    .primary-nav a {
        display: block;
        padding: 14px 0;
    }

    .section { padding: 80px 0; }
    .section-head { margin-bottom: 50px; }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero__media {
        grid-row: 1;
        min-height: 280px;
        aspect-ratio: 16 / 10;
    }

    .hero__content {
        grid-row: 2;
        padding: 56px 24px;
    }

    .story__grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 32px;
    }

    .story__media {
        min-height: 320px;
        aspect-ratio: 16 / 10;
    }

    .container { padding: 0 24px; }

    .footer-widgets {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 560px) {
    body { font-size: 16px; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { width: 100%; }
    .category-grid { grid-template-columns: 1fr; gap: 16px; }
    .footer-widgets { grid-template-columns: 1fr; }
}
