/* ---------------------------------------------
   Dayhues-PHP :: Stylesheet
--------------------------------------------- */
:root {
    --primary: #f4a726;
    --primary-dark: #e0911a;
    --dark: #1e2a2f;
    --text: #5c6b6f;
    --light-bg: #fbf7f2;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(30, 42, 47, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { overflow-x: hidden; width: 100%; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
}
body.nav-open { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    line-height: 1.3;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 24px);
    width: 100%;
}

.section { padding: clamp(48px, 8vw, 80px) 0; }

.eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

.hero-text .eyebrow.is-typing {
    min-height: 24px;
    position: relative;
}

.hero-text .eyebrow.is-typing::after {
    content: '|';
    margin-left: 4px;
    color: var(--primary);
    animation: eyebrow-blink 1s infinite;
}

@keyframes eyebrow-blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading h2 { font-size: 34px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all .25s ease;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-light { background: var(--white); color: var(--dark); }
.btn-sm { padding: 8px 18px; font-size: 12px; }

/* Header */
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 16px;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(21px, 3vw, 26px);
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}
.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
    font-weight: 500;
    color: var(--dark);
    font-size: 15px;
    transition: color .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.main-nav a, .hamburger, .nav-cta { pointer-events: auto; }
.nav-cta { padding: 10px 26px; flex-shrink: 0; }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 210;
}
.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--dark);
    transition: transform .25s ease, opacity .2s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
    background-image: linear-gradient(90deg, rgba(251,247,242,0.97) 0%, rgba(251,247,242,0.90) 32%, rgba(251,247,242,0.55) 55%, rgba(251,247,242,0.15) 78%, rgba(251,247,242,0) 100%), url('../images/Gemini_Generated_Image_7ifzqk7ifzqk7ifz.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 40px;
    padding: 80px 24px;
}
.hero-text h1 { font-size: 48px; margin: 16px 0; }
.hero-text p { max-width: 520px; margin-bottom: 28px; }

/* Two column generic layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow); }
.col-text h2 { font-size: 32px; margin-bottom: 18px; }
.col-text p { margin-bottom: 18px; }

/* About highlights */
.about-highlight-card {
    margin-top: 20px;
    background: var(--light-bg);
    border: 1px solid #f1e4d3;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 8px 20px rgba(30, 42, 47, 0.05);
}
.about-highlight-card h5 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}
.about-highlight-card p {
    margin-bottom: 10px;
}
.about-highlight-card strong {
    color: var(--dark);
}

/* Category grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.category-card {
    text-align: center;
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 20px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.category-card:hover, .category-card.active { transform: translateY(-6px); box-shadow: var(--shadow); }
.category-card.active { border: 2px solid var(--primary); }
.category-card img { border-radius: 10px; aspect-ratio: 1/1; object-fit: cover; margin-bottom: 14px; }
.category-card h6 { font-size: 16px; margin-bottom: 4px; }
.category-card span { font-size: 13px; color: var(--primary); }

.center-cta { text-align: center; margin-top: 44px; }

/* Deals */
.deals {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(20, 32, 32, 0.28) 0%, rgba(20, 32, 32, 0.5) 100%),
        url('../images/07c963648a6d4d6d8a9e7b1b127ab3bd.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 120px 0;
}

/* Frosted-glass oval: blurs the photo behind it, feathered soft edge */
.deals-glass {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 780px;
    height: 560px;
    transform: translate(-50%, -50%) scale(1);
    border-radius: 50%;
    background: rgba(30, 42, 47, 0.72); /* fallback for browsers without backdrop-filter */
    -webkit-mask-image: radial-gradient(ellipse at center, #000 55%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, #000 55%, transparent 100%);
    z-index: 0;
    pointer-events: none;
    animation: deals-glass-breathe 9s ease-in-out infinite;
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
    .deals-glass {
        background: rgba(30, 42, 47, 0.4);
        -webkit-backdrop-filter: blur(38px) saturate(115%);
        backdrop-filter: blur(38px) saturate(115%);
    }
}
@keyframes deals-glass-breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
    .deals-glass { animation: none; }
}
@media (max-width: 560px) {
    .deals-glass { width: 440px; height: 400px; }
}

.deals-inner { position: relative; z-index: 1; }
.deals-inner .eyebrow { color: var(--primary); }
.deals-inner h2 { color: var(--white); font-size: 36px; margin-bottom: 16px; }
.deals-inner p { max-width: 500px; margin: 0 auto 28px; color: #cdd3d4; }

/* Scroll reveal for deals text (progressively enhanced — visible by default) */
.deals-inner.reveal-init > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease;
}
.deals-inner.reveal-init.in-view > * { opacity: 1; transform: translateY(0); }
.deals-inner.reveal-init.in-view > *:nth-child(1) { transition-delay: .05s; }
.deals-inner.reveal-init.in-view > *:nth-child(2) { transition-delay: .18s; }
.deals-inner.reveal-init.in-view > *:nth-child(3) { transition-delay: .32s; }
.deals-inner.reveal-init.in-view > *:nth-child(4) { transition-delay: .46s; }

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
}
.testimonial-card img { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; object-fit: cover; }
.testimonial-card p { font-style: italic; margin-bottom: 16px; }
.testimonial-card h6 { font-size: 15px; }
.testimonial-card h6 span { color: var(--text); font-weight: 400; font-family: 'Poppins', sans-serif; font-size: 13px; }

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card .blog-tag {
    display: inline-block;
    margin: 18px 0 0 20px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.blog-card h5 { padding: 8px 20px 0; font-size: 18px; }
.blog-card p { padding: 10px 20px 0; font-size: 14px; }
.blog-meta {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px 20px;
    font-size: 13px;
    color: var(--text);
    border-top: 1px solid #f0f0f0;
    margin-top: 16px;
}

/* Page banner */
.page-banner {
    background: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}
.page-banner h1 { font-size: 38px; margin-bottom: 10px; }
.page-banner p a { color: var(--primary); }

/* Menu filters */
.menu-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 44px;
}
.filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid #e5e0da;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.product-card {
    border: 1px solid #eee;
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .25s ease;
}
.product-card:hover { box-shadow: var(--shadow); }
.product-image img { width: 100%; height: 220px; object-fit: cover; }
.product-body { padding: 20px; }
.product-body h5 { font-size: 18px; margin-bottom: 8px; }
.product-body p { font-size: 14px; margin-bottom: 16px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-weight: 700; color: var(--primary); font-size: 18px; }

/* Value grid (about page) */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.value-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 34px rgba(30, 42, 47, 0.14);
}
.value-card h5 { margin-bottom: 12px; }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item img { height: 260px; width: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.08); }

/* Contact */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 84px; align-items: start; }
.contact-intro { max-width: 560px; margin-bottom: 8px; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; color: var(--dark); font-size: 13px; font-weight: 600; }
.contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form textarea {
    padding: 14px 18px;
    border: 1px solid #e5e0da;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    width: 100%;
    outline: none;
    background: var(--white);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(244,167,38,.14); }
.contact-form textarea { resize: vertical; }
.contact-info-col { display: flex; flex-direction: column; gap: 18px; }
.contact-info-heading { margin-bottom: 4px; }
.contact-info-heading h3 { font-size: 28px; }
.info-card {
    background: var(--light-bg);
    padding: 22px;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid #f1e4d3;
    transition: transform .2s ease, box-shadow .2s ease;
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.info-icon { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border-radius: 50%; background: var(--white); color: var(--primary-dark); font-size: 20px; }
.info-card h5 { font-size: 16px; margin-bottom: 6px; color: var(--primary); }
.info-card p { margin-bottom: 5px; line-height: 1.6; }
.info-card a { color: var(--primary-dark); font-size: 13px; font-weight: 600; }
.info-card a:hover { color: var(--dark); }

.alert { padding: 14px 18px; border-radius: 10px; margin: 18px 0; font-size: 14px; }
.alert-success { background: #e6f6ea; color: #1e7b3c; }
.alert-error { background: #fdeaea; color: #b3261e; }

/* Footer */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, var(--dark) 0%, #15201f 100%);
    color: #c6ccce;
    padding-top: 64px;
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 46px;
}
.footer-logo {
    display: inline-block;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 14px;
    letter-spacing: .3px;
}
.footer-about p { max-width: 230px; }
.footer-col h4 {
    position: relative;
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 32px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.footer-col p { font-size: 14px; margin-bottom: 8px; color: #9aa6a9; line-height: 1.8; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--primary); }

.social-links { display: flex; gap: 10px; margin-top: 4px; }
.social-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    color: #c6ccce;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.social-icon svg { width: 17px; height: 17px; fill: currentColor; }
.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    text-align: left;
}
.footer-bottom p { font-size: 13px; color: #8d989b; margin: 0; }
.footer-credit .heart { color: var(--primary); }

/* ---------------------------------------------
   About page enhancements
--------------------------------------------- */

/* Animated banner */
.page-banner {
    position: relative;
    overflow: hidden;
}
.page-banner::before,
.page-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,167,38,0.22) 0%, rgba(244,167,38,0) 70%);
    animation: banner-float 9s ease-in-out infinite;
    pointer-events: none;
}
.page-banner::before { width: 260px; height: 260px; top: -90px; left: -60px; }
.page-banner::after { width: 340px; height: 340px; bottom: -140px; right: -80px; animation-delay: 2.5s; animation-duration: 11s; }
@keyframes banner-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 15px) scale(1.08); }
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 {
    opacity: 0;
    animation: banner-fade-up .7s ease forwards;
}
.page-banner p {
    opacity: 0;
    animation: banner-fade-up .7s ease forwards;
    animation-delay: .15s;
}
@keyframes banner-fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Generic scroll-reveal (reused across sections) */
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-up.in-view { opacity: 1; transform: translateY(0); }
.reveal-up.delay-1 { transition-delay: .1s; }
.reveal-up.delay-2 { transition-delay: .2s; }
.reveal-up.delay-3 { transition-delay: .3s; }
.reveal-up.delay-4 { transition-delay: .4s; }

/* About image column */
.col-image { position: relative; }
.col-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform .5s ease, box-shadow .5s ease;
}
.col-image:hover img {
    transform: scale(1.03) rotate(-0.5deg);
    box-shadow: 0 18px 38px rgba(30, 42, 47, 0.16);
}
.col-image .about-highlight-card {
    animation: card-float 4.5s ease-in-out infinite;
}
@keyframes card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.col-image .about-highlight-card:hover { animation-play-state: paused; }

/* Experience/stat badge on the about image */
.about-stat-badge {
    position: absolute;
    top: 22px;
    right: -18px;
    background: var(--white);
    border-radius: 50%;
    width: 108px;
    height: 108px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow);
    border: 3px solid var(--light-bg);
    animation: badge-pop .6s ease .3s both, badge-spin-in 4.5s ease-in-out infinite 1s;
}
.about-stat-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--primary-dark);
    line-height: 1.1;
}
.about-stat-badge span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    color: var(--text);
}
@keyframes badge-pop {
    from { opacity: 0; transform: scale(0.4) rotate(-15deg); }
    to { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes badge-spin-in {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(6deg); }
}

/* Mission list items animate in one by one */
.about-highlight-card p.reveal-up {
    transform: translateX(-16px);
}
.about-highlight-card p.reveal-up.in-view { transform: translateX(0); }

/* Value cards (Why Choose Us) */
.value-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(244,167,38,0.18), rgba(244,167,38,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: transform .35s ease, background .35s ease;
}
.value-card:hover .value-icon {
    transform: scale(1.12) rotate(8deg);
    background: var(--primary);
}

@media (max-width: 900px) {
    .about-stat-badge { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .page-banner::before, .page-banner::after,
    .col-image .about-highlight-card,
    .about-stat-badge { animation: none; }
    .page-banner h1, .page-banner p { opacity: 1; animation: none; }
}

/* ---------------------------------------------
   Fluid type (scales smoothly between breakpoints,
   not just at the jumps below)
--------------------------------------------- */
.hero-text h1 { font-size: clamp(30px, 6vw, 48px); }
.section-heading h2 { font-size: clamp(24px, 4.2vw, 34px); }
.col-text h2 { font-size: clamp(22px, 4.2vw, 32px); }
.page-banner h1 { font-size: clamp(26px, 5.5vw, 38px); }
.deals-inner h2 { font-size: clamp(24px, 5vw, 36px); }
.contact-info-heading h3 { font-size: clamp(20px, 3.6vw, 28px); }

/* ---------------------------------------------
   Responsive
--------------------------------------------- */

/* Large tablets / small laptops */
@media (max-width: 1024px) {
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonial-grid, .blog-grid, .product-grid, .value-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { gap: 48px; }
}

/* Tablets / mobile nav breakpoint */
@media (max-width: 900px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .nav-cta { padding: 9px 16px; font-size: 14px; }

    /* Mobile dropdown nav panel, anchored below the sticky header */
    .main-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid #eee;
        box-shadow: 0 20px 40px rgba(30, 42, 47, 0.14);
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        z-index: 150;
        pointer-events: none;
        transition: max-height .35s ease, opacity .25s ease;
    }
    .main-nav.open {
        max-height: 80vh;
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
        pointer-events: auto;
    }
    .main-nav ul { flex-direction: column; gap: 0; padding: 8px clamp(16px, 4vw, 24px) 20px; }
    .main-nav ul li { border-bottom: 1px solid #f2f2f2; }
    .main-nav ul li:last-child { border-bottom: none; }
    .main-nav a { display: block; padding: 15px 4px; font-size: 16px; }

    .hero-inner, .two-col, .contact-layout { grid-template-columns: 1fr; text-align: center; }
    .hero-image { order: -1; }
    .hero {
        background-image: linear-gradient(180deg, rgba(251,247,242,0.55) 0%, rgba(251,247,242,0.96) 45%, rgba(251,247,242,0.98) 100%), url('../images/Gemini_Generated_Image_7ifzqk7ifzqk7ifz.png');
    }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid, .blog-grid, .product-grid, .value-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-intro { margin-left: auto; margin-right: auto; }
    .contact-info-col { text-align: left; }
    .about-stat-badge { display: none; }
    .col-image img { height: 320px; }
}

/* Small tablets / large phones */
@media (max-width: 700px) {
    .category-grid, .testimonial-grid, .blog-grid, .product-grid, .value-grid, .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-about { grid-column: 1 / -1; }
    .footer-about p { max-width: none; }
    .contact-form { margin-top: 18px; }
}

/* Phones */
@media (max-width: 560px) {
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .category-grid, .testimonial-grid, .blog-grid, .product-grid, .value-grid, .gallery-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .menu-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
    .menu-filters::-webkit-scrollbar { height: 4px; }
    .filter-btn { flex-shrink: 0; }
    .product-footer { flex-wrap: wrap; gap: 10px; }
    .col-image img { height: 260px; }
    .about-highlight-card { padding: 20px; }
    .info-card { padding: 18px; }
}

/* Small phones */
@media (max-width: 400px) {
    .section-heading { margin-bottom: 32px; }
    .btn { padding: 13px 26px; font-size: 13px; }
    .logo { font-size: 20px; }
    .hero-text .btn, .deals-inner .btn, .center-cta .btn { width: 100%; text-align: center; }
    .value-grid, .gallery-grid { gap: 16px; }
}

/* Comfortable tap targets on touch devices */
@media (hover: none) and (pointer: coarse) {
    .btn, .filter-btn, .social-icon, .hamburger { min-height: 44px; }
    .main-nav a { min-height: 44px; display: flex; align-items: center; }
}
