/* =========================================================
   Henri Martin — Luxury Custom Theme
   Black (#0a0a0a) + Gold (#c9a84c) + White + Cream
   ========================================================= */

:root {
    --gold:       #c9a84c;
    --gold-light: #e8d49a;
    --black:      #0a0a0a;
    --dark:       #111111;
    --white:      #ffffff;
    --cream:      #faf8f5;
    --text:       #1a1a1a;
    --muted:      #777777;
}

/* ── Global overrides ── */
body {
    background: var(--white);
    color: var(--text);
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    letter-spacing: .3px;
}

/* Override base theme body font */
p, li, span, a, input, textarea, select {
    font-family: 'Raleway', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    letter-spacing: .5px;
}

a, a:hover, a:focus { outline: 0; }

/* ── Top info bar ── */
.hm-topbar {
    background: var(--black);
    padding: 9px 0;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.hm-topbar .topbar-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.hm-topbar .topbar-info li {
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 7px;
}

.hm-topbar .topbar-info li i {
    color: var(--gold);
    font-size: 14px;
}

.hm-topbar .topbar-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}

.hm-topbar .topbar-social li a {
    color: #888;
    font-size: 14px;
    transition: color .25s;
}

.hm-topbar .topbar-social li a:hover {
    color: var(--gold);
}

/* ── Main navbar ── */
.hm-navbar {
    background: var(--white);
    border: none;
    border-bottom: 1px solid #f0ede8;
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
    border-radius: 0;
    margin: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hm-navbar .navbar-brand {
    padding: 10px 0;
    height: auto;
}

.hm-navbar .navbar-brand img {
    height: 52px;
    width: auto;
}

.hm-navbar .navbar-nav > li > a {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text);
    padding: 28px 18px;
    transition: color .25s;
    position: relative;
}

.hm-navbar .navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .3s;
}

.hm-navbar .navbar-nav > li > a:hover,
.hm-navbar .navbar-nav > li.active > a {
    color: var(--gold);
    background: transparent;
}

.hm-navbar .navbar-nav > li > a:hover::after {
    transform: scaleX(1);
}

.hm-navbar .navbar-toggle {
    border-color: #ddd;
    margin-top: 14px;
}

.hm-navbar .navbar-toggle .icon-bar {
    background: var(--text);
}

/* ── Section headings ── */
.section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.section-heading .pre-title {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 16px;
    letter-spacing: 1px;
}

.section-heading .divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}

.section-heading.light h2 { color: var(--white); }
.section-heading.light .divider { background: var(--gold); }

/* ── Hero slider ── */

/*
 * Only the root sets the viewport height.
 * All slick-generated wrappers inherit 100% from it.
 * This prevents the "3 slides stacked" issue where each
 * element independently measuring 100vh breaks slick's
 * position:absolute fade layout.
 */
.hero-slider {
    position: relative;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
}

.hero-slider .slick-list,
.hero-slider .slick-track {
    height: 100% !important;
}

.hero-slider .slick-slide {
    height: 100%;
}

.hero-slider .slick-slide > div {
    height: 100%;
}

.hero-slider .slider-item {
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100%;
}

.hero-area {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 100%);
}

.hero-area .container { position: relative; z-index: 2; }

.hero-area p {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.hero-area h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 70px;
    font-weight: 300;
    font-style: normal;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: 2px;
}

.btn-hero {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 14px 44px;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    transition: background .3s, color .3s;
    background: transparent;
}

.btn-hero:hover {
    background: var(--gold);
    color: var(--black) !important;
}

/* ── About section ── */
.about.section {
    background: var(--cream);
    padding: 100px 0;
}

.about .about-image-wrap {
    position: relative;
    padding-right: 30px;
}

.about .about-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.about .about-image-wrap::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 10px;
    width: 180px;
    height: 180px;
    border: 2px solid var(--gold);
    z-index: 0;
    pointer-events: none;
}

.about .about-content {
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about .about-content .pre-title {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.about .about-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 600;
    font-style: normal;
    color: var(--black);
    margin: 0 0 10px;
    line-height: 1.15;
    letter-spacing: 1px;
}

.about .about-content .gold-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 18px 0 24px;
}

.about .about-content p {
    font-size: 14.5px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 14px;
}

.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--black) !important;
    padding: 14px 42px;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    border: 1px solid var(--gold);
    transition: background .3s, color .3s;
    margin-top: 10px;
}

.btn-gold:hover {
    background: var(--black);
    color: var(--white) !important;
    border-color: var(--black);
}

/* ══════════════════════════════════════════
   PRODUCTS SECTION — full redesign
══════════════════════════════════════════ */
.products.section {
    background: #f9f7f4;
    padding: 100px 0;
}

/* Reset base theme styles that break alignment */
.product-item {
    margin-bottom: 36px;
    background: var(--white);
    border: 1px solid #ede8e0;
    overflow: hidden;
    position: relative;
    transition: transform .4s cubic-bezier(.25,.46,.45,.94),
                box-shadow .4s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,.13);
}

/* ── Image container: fixed square ratio ── */
.product-thumb {
    position: relative;
    overflow: hidden;
    background: var(--cream);
    padding-bottom: 0;  /* reset any theme value */
    height: 280px;      /* fixed height — all cards equal */
}

/* Override base style.css height:auto */
.product-item .product-thumb img,
.product-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top;
    display: block;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

.product-item:hover .product-thumb img {
    transform: scale(1.1);
}

/* ── Dark overlay on hover ── */
.product-item .product-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,.55);
    opacity: 0;
    transition: opacity .4s ease;
    z-index: 1;
}

.product-item:hover .product-thumb::before {
    opacity: 1;
}

/* ── Centered quick-view button ── */
.preview-meta,
.product-item .product-thumb .preview-meta {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    bottom: auto !important;
    transform: translate(-50%, -30%) !important;
    width: auto !important;
    background: none !important;
    padding: 0 !important;
    opacity: 0;
    transition: opacity .35s ease, transform .35s ease !important;
    z-index: 2;
}

.product-item:hover .preview-meta,
.product-item:hover .product-thumb .preview-meta {
    opacity: 1 !important;
    transform: translate(-50%, -50%) !important;
}

.preview-meta ul { margin: 0; padding: 0; list-style: none; }
.preview-meta ul li { display: inline-block; }

/* Quick-view icon button */
.preview-meta ul li a,
.product-item .product-thumb .preview-meta li a {
    width: 52px !important;
    height: 52px !important;
    background: var(--gold) !important;
    color: var(--black) !important;
    font-size: 22px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
    transition: background .25s, transform .25s !important;
}

.preview-meta ul li a:hover,
.product-item .product-thumb .preview-meta li a:hover {
    background: var(--white) !important;
    color: var(--black) !important;
    transform: scale(1.1);
}

/* ── Gold top-border accent ── */
.product-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.product-item:hover::after {
    transform: scaleX(1);
}

/* ── Product info ── */
.product-content,
.product-item .product-content {
    padding: 18px 18px 20px !important;
    text-align: center !important;
    border-top: 1px solid #f0ece6 !important;
    background: var(--white);
}

.product-content h4,
.product-item .product-content h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 17px !important;
    font-weight: 600 !important;
    font-style: normal;
    margin: 0 0 6px !important;
    line-height: 1.3;
    letter-spacing: .5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-content h4 a,
.product-item .product-content h4 a {
    color: var(--black) !important;
    transition: color .25s;
}

.product-content h4 a:hover { color: var(--gold) !important; }

.product-content .price,
.product-item .product-content .price {
    font-family: 'Raleway', sans-serif;
    color: var(--gold) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px;
    margin: 0 !important;
    display: block;
}

/* ── Outlets section ── */
.outlets-section {
    background: var(--cream);
    padding: 100px 0;
}

.outlet-card {
    background: var(--white);
    border: 1px solid #ede8e0;
    overflow: hidden;
    margin-bottom: 30px;
    transition: box-shadow .3s, transform .3s;
    height: 100%;
}

.outlet-card:hover {
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
    transform: translateY(-6px);
}

.outlet-card .outlet-img {
    height: 230px;
    overflow: hidden;
}

.outlet-card .outlet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
    display: block;
}

.outlet-card:hover .outlet-img img {
    transform: scale(1.08);
}

.outlet-card .outlet-body {
    padding: 26px 28px 30px;
    border-top: 3px solid var(--gold);
}

.outlet-card .outlet-body h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    font-style: normal;
    color: var(--black);
    margin: 0 0 16px;
    line-height: 1.3;
    letter-spacing: .5px;
}

.outlet-card .outlet-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 9px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.outlet-card .outlet-detail i {
    color: var(--gold);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── Contact section ── */
.contact-section {
    background: var(--dark);
    padding: 100px 0;
}

.contact-section .google-map {
    border: 3px solid var(--gold);
    margin-bottom: 44px;
    line-height: 0;
}

.contact-short-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-short-info li {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #1a1a1a;
    padding: 18px 28px;
    border-left: 3px solid var(--gold);
    flex: 1;
    min-width: 220px;
}

.contact-short-info li i {
    color: var(--gold);
    font-size: 22px;
    flex-shrink: 0;
}

.contact-short-info li span {
    color: #bbb;
    font-size: 13px;
    line-height: 1.5;
}

/* ── Footer ── */
.hm-footer {
    background: #070707;
    padding: 75px 0 0;
    border-top: 1px solid #1c1c1c;
}

.hm-footer .footer-logo img {
    height: 55px;
    width: auto;
    margin-bottom: 18px;
}

.hm-footer .footer-about p {
    color: #777;
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.hm-footer .footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

.hm-footer .footer-social li a {
    width: 36px;
    height: 36px;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 14px;
    transition: all .25s;
}

.hm-footer .footer-social li a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,.08);
}

.hm-footer .footer-col-title {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gold);
    display: inline-block;
}

.hm-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hm-footer .footer-links li {
    margin-bottom: 11px;
}

.hm-footer .footer-links li a {
    color: #777;
    font-size: 13px;
    letter-spacing: .3px;
    transition: color .25s, padding .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hm-footer .footer-links li a::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
    transition: width .25s;
    flex-shrink: 0;
}

.hm-footer .footer-links li a:hover {
    color: var(--gold);
}

.hm-footer .footer-links li a:hover::before {
    width: 28px;
}

.hm-footer .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hm-footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #777;
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.hm-footer .footer-contact li i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.hm-footer .footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 20px 0;
    margin-top: 55px;
    text-align: center;
}

.hm-footer .footer-bottom p {
    color: #444;
    font-size: 11.5px;
    letter-spacing: 1px;
    margin: 0;
}

.hm-footer .footer-bottom a {
    color: var(--gold);
}

/* ── Product modal improvements ── */
.product-modal .close {
    right: 20px;
    top: 16px;
    z-index: 10;
}

.product-modal .product-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    color: var(--black);
    margin-bottom: 8px;
}

.product-modal .product-price {
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.product-modal .product-short-description {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

/* ── Back-to-top ── */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 9999;
}

#back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

/* ── Utilities ── */
.old-top-header { display: none !important; }

/* ════════════════════════════════════════════════════
   HERO SLIDER — Ken Burns + arrows + dots
════════════════════════════════════════════════════ */

/* Ken Burns zoom on active slide */
.hero-slider .slider-item {
    transition: none;
}

.hero-slider .slider-item.kb-active {
    animation: kenBurns 6s ease-out forwards;
}

@keyframes kenBurns {
    0%   { background-size: 110%; }
    100% { background-size: 120%; }
}

/* Slick dots — gold */
.hero-slider .slick-dots {
    bottom: 28px;
}

.hero-slider .slick-dots li button:before {
    font-size: 0;
    width: 30px;
    height: 3px;
    background: rgba(255,255,255,.4);
    border-radius: 2px;
    content: '';
    opacity: 1;
    transition: background .3s, width .3s;
}

.hero-slider .slick-dots li.slick-active button:before {
    background: var(--gold);
    width: 46px;
}

/* Slick arrows — gold circle */
.heroSliderArrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(10,10,10,.45);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background .3s, color .3s;
    padding: 0;
}

.heroSliderArrow:hover {
    background: var(--gold);
    color: var(--black);
}

.heroSliderArrow.prevArrow { left: 30px; }
.heroSliderArrow.nextArrow { right: 30px; }

@media (max-width: 768px) {
    .heroSliderArrow { display: none !important; }
}

/* Navbar scrolled state */
.hm-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,.12);
}

/* ════════════════════════════════════════════════════
   SCROLL-REVEAL ANIMATIONS
════════════════════════════════════════════════════ */

/* Base hidden states */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-scale {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .6s ease, transform .6s ease;
}

/* Stagger children */
.stagger-child {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .6s ease, transform .6s ease;
}

/* Revealed state (all variants) */
.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed,
.stagger-child.revealed {
    opacity: 1;
    transform: none;
}

/* ── Hero text pulse on the gold pre-title ── */
@keyframes shimmer {
    0%   { opacity: .7; }
    50%  { opacity: 1; }
    100% { opacity: .7; }
}

.hero-area p {
    animation: shimmer 3s ease-in-out infinite;
}

/* ── Section divider grow-in ── */
@keyframes growLine {
    from { width: 0; }
    to   { width: 50px; }
}

.section-heading .divider {
    animation: none; /* triggered by JS reveal below */
}

.section-heading.revealed .divider {
    animation: growLine .6s ease-out .4s both;
}

/* ── Product card hover lift (smoother) ── */
.product-item {
    transition: transform .35s cubic-bezier(.25,.46,.45,.94),
                box-shadow .35s ease;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

/* ── Outlet card ripple border on hover ── */
.outlet-card {
    position: relative;
}

.outlet-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    opacity: 0;
    transition: opacity .35s, inset .35s;
    pointer-events: none;
    z-index: 2;
}

.outlet-card:hover::before {
    opacity: 1;
    inset: -4px;
}

/* ── About image parallax wrapper ── */
.about .about-image-wrap img {
    transition: transform .6s ease;
}

.about .about-image-wrap:hover img {
    transform: scale(1.03);
}

/* ── Gold button pulse on hover ── */
@keyframes goldPulse {
    0%   { box-shadow: 0 0 0 0 rgba(201,168,76,.55); }
    70%  { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
    100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

.btn-gold:hover,
.btn-hero:hover {
    animation: goldPulse .6s ease-out;
}

/* ── Contact info cards slide-in ── */
.contact-short-info li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}

.contact-section.revealed .contact-short-info li:nth-child(1) { transition-delay: .1s; opacity:1; transform:none; }
.contact-section.revealed .contact-short-info li:nth-child(2) { transition-delay: .25s; opacity:1; transform:none; }
.contact-section.revealed .contact-short-info li:nth-child(3) { transition-delay: .4s; opacity:1; transform:none; }

/* ── Footer fade-in from bottom ── */
.hm-footer .col-md-4,
.hm-footer .col-md-4:nth-child(2),
.hm-footer .col-md-4:nth-child(3) {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.hm-footer.footer-revealed .col-md-4:nth-child(1) { opacity:1; transform:none; transition-delay: 0s; }
.hm-footer.footer-revealed .col-md-4:nth-child(2) { opacity:1; transform:none; transition-delay: .15s; }
.hm-footer.footer-revealed .col-md-4:nth-child(3) { opacity:1; transform:none; transition-delay: .3s; }

/* ════════════════════════════════════════
   RESPONSIVE — Tablet (≤992px)
════════════════════════════════════════ */
@media (max-width: 992px) {
    .hero-area h1 { font-size: 50px; }
    .about .about-content { padding-left: 0; margin-top: 40px; }
    .about .about-image-wrap { padding-right: 0; }
    .about .about-image-wrap::after { display: none; }
    .about .about-image-wrap img { height: 380px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — Mobile (≤768px)
════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Hero ── */
    .hero-slider {
        height: 70vh;
        height: calc(var(--vh, 1vh) * 70);
    }
    .hero-area h1 { font-size: 32px; letter-spacing: .5px; margin-bottom: 24px; }
    .hero-area p { letter-spacing: 4px; font-size: 9px; }
    .btn-hero { padding: 12px 30px; font-size: 9px; letter-spacing: 2px; }

    /* ── Top info bar ── */
    .hm-topbar { display: none; }

    /* ── Navbar hamburger menu ── */
    .hm-navbar .navbar-toggle {
        border-color: var(--gold);
        margin-top: 16px;
    }
    .hm-navbar .navbar-toggle .icon-bar {
        background: var(--gold);
    }
    .hm-navbar .navbar-brand img {
        height: 38px;
    }
    /* Collapsed mobile menu panel */
    .hm-navbar .navbar-collapse {
        background: var(--black);
        border-top: 1px solid #222;
        padding: 0;
        margin: 0 -15px;
    }
    .hm-navbar .navbar-nav > li > a {
        padding: 14px 20px !important;
        border-bottom: 1px solid #1a1a1a;
        color: #ccc !important;
        font-size: 10px;
    }
    .hm-navbar .navbar-nav > li > a:hover,
    .hm-navbar .navbar-nav > li.active > a {
        color: var(--gold) !important;
        background: #111 !important;
    }
    .hm-navbar .navbar-nav > li > a::after { display: none; }

    /* ── Section padding ── */
    .about.section,
    .products.section,
    .outlets-section,
    .contact-section { padding: 60px 0; }

    /* ── Section headings ── */
    .section-heading { margin-bottom: 36px; }
    .section-heading h2 { font-size: 28px; }

    /* ── About ── */
    .about .about-image-wrap img { height: 260px; }
    .about .about-content h2 { font-size: 32px; }

    /* ── Products — 2 cols on mobile ── */
    .products.section .col-xs-12 {
        width: 50%;
        float: left;
    }
    .product-thumb { height: 200px; }

    /* ── Outlet cards — full width on mobile ── */
    .outlet-card .outlet-img { height: 180px; }

    /* ── Contact map ── */
    .contact-section .google-map iframe { height: 240px !important; }
    .contact-short-info { flex-direction: column; gap: 10px; }
    .contact-short-info li { min-width: auto; padding: 14px 18px; }

    /* ── Footer ── */
    .hm-footer { padding: 50px 0 0; }
    .hm-footer .col-md-4,
    .hm-footer .col-sm-6 { width: 100% !important; float: none; margin-bottom: 36px; }
    .hm-footer .footer-logo img { height: 40px; }

    /* ── Back to top ── */
    #back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; font-size: 16px; }

    /* ── Arrows hidden ── */
    .heroSliderArrow { display: none !important; }
}

/* ════════════════════════════════════════
   RESPONSIVE — Small mobile (≤480px)
════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero-area h1 { font-size: 26px; }
    .section-heading h2 { font-size: 24px; }
    /* Single column products on very small screens */
    .products.section .col-xs-12 { width: 100%; float: none; }
    .product-thumb { height: 240px; }
    .about .about-content h2 { font-size: 28px; }
}
