/*
 * Home page widget styles for pId 63135.
 * Auto-loaded by base.php only on the home page (view = home.php).
 * Edit this file to customise the look of every home widget for this brand.
 */

/* ── Strip the generic .section shell ───────────────────────────────
   theme.css alternates background on even children via --surface-2.
   brand_themes.css adds a ::before overlay on .home-bg for ue_silver.
   Both must be cleared so widget sections control their own backgrounds.
   ─────────────────────────────────────────────────────────────────── */

/* Kill the ue_silver brand-tinted ::before overlay — it creates
   a pinkish bleed wherever sections are transparent. */
[data-theme=ue_silver] .home-bg::before,
[data-theme=ue_silver] .home-bg:before {
    display: none !important;
}

/* Transparent, zero-padded section shells — all widget types */
.section[data-widget],
.section.section--no-bg[data-widget] {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
}
/* ID-level specificity beats brand_themes.css ue_silver section rule (0-3-0) */
#main-content .home-bg .section[data-widget],
#main-content .home-bg .section[data-widget]:nth-child(even),
#main-content .home-bg .section[data-widget]:nth-child(odd) {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
}
/* Also beat the [data-theme] prefix variant (specificity 0-3-0 with !important) */
[data-theme=ue_silver] #main-content .home-bg .section[data-widget],
[data-theme=ue_silver] .home-bg > .section[data-widget] {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}
.heroSec { margin-top: -1px; }

/* Trending Items (vt4) is a generic, sitewide widget — its own bottom
   padding is what normally separates its dots from the next section. The
   blanket zero-padding strip above removes that along with everything else.
   The actual markup is <section class="section section--no-bg" data-widget="4">,
   so it's the COMPOUND .section.section--no-bg[data-widget] selector (2
   classes + 1 attr) doing the zeroing here, not the plain .home-bg-scoped
   rules — match that same specificity (and appear later) to actually win. */
.section.section--no-bg[data-widget="4"],
.section[data-widget="4"] {
    padding: 24px 0 56px !important;
}

/* ── Typography ─────────────────────────────────────────────────── */
.newhome-design h1,
.newhome-design h2,
.newhome-design h3,
.newhome-design h4,
.newhome-design h5,
.newhome-design h6 {
    line-height: 1.3;
    margin: 0;
}

.newhome-design h1,
.newhome-design h2 {
    font-family: var(--font-display, 'Figtree', sans-serif);
}

.newhome-design p {
    line-height: 1.3;
}

.newhome-design.common-space1,
.newhome-design .common-space {
    padding: 40px 0 !important;
}

/* ── Shared utilities ───────────────────────────────────────────── */
.darkbg  { background: var(--brand-primary); }
.bgimage { background-position: right center !important; background-repeat: no-repeat !important; }

.secBgoverlay { position: relative; overflow: hidden; }
.secBgoverlay:after {
    content: "";
    position: absolute;
    width: 100%; height: 100%;
    left: 0; top: 0;
    background-color: var(--brand-primary);
    opacity: 0.03;
    z-index: -1;
}
.newhome-design .row { z-index: 1; position: relative; }

.secBgoverlay-1 p,
.secBgoverlay-1 h1, .secBgoverlay-1 h2,
.secBgoverlay-1 h3, .secBgoverlay-1 h4 { color: #fff; }
.secBgoverlay-1 .subTag { color: #fff; }
.secBgoverlay-1:after { opacity: 1 !important; }

.subTag {
    color: var(--brand-primary);
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 1.3 !important;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.view-all-wrapper { position: relative; z-index: 1; }

/* ── Buttons ────────────────────────────────────────────────────── */
.cta-primary {
    font-size: 16px;
    background-color: var(--brand-primary);
    color: #fff;
    border: 1px solid var(--brand-primary);
    padding: 12px 24px !important;
    font-weight: 600;
    border-radius: 12px !important;
    line-height: 1.3;
    display: inline-block;
}
.cta-primary:hover { opacity: 0.85; color: #fff; }
.cta-primary--yellow {
    background-color: var(--text, #1a1a1a) !important;
    border-color: var(--text, #1a1a1a) !important;
    color: #fff !important;
}
.cta-secondary--outline {
    font-size: 16px;
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    background-color: #fff;
    padding: 10px 24px !important;
    font-weight: 600;
    border-radius: 12px !important;
    line-height: 1.3;
    display: inline-block;
}
.cta-secondary--outline:hover { opacity: 0.7; }

/* ── About Us quote (vt2) ──────────────────────────────────────────── */
.about-quote-widget {
    background: #F5EFE6;
    text-align: center;
    padding: 48px 0;
}
.about-quote-inner {
    max-width: 760px;
    margin: 0 auto;
}
.about-quote-eyebrow {
    margin-bottom: 12px;
}
/* The opening " glyph: line-height:1 keeps its box flush with the glyph height
   so it doesn't bleed upward and inflate the apparent top padding. */
.about-quote-mark {
    font-family: var(--font-display, 'Figtree', sans-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--brand-primary);
    margin-bottom: 8px;
    display: block;
}
/* Scoped to .about-quote-widget (2 classes) so this beats the generic
   .newhome-design p rule (1 class + 1 element) — otherwise that rule's
   line-height:1.3 silently wins over the 1.7 below, cramming this italic
   quote's lines tighter than intended and crowding the link underneath. */
.about-quote-widget .about-quote-text {
    font-family: var(--font-display, 'Figtree', sans-serif);
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    font-style: italic;
    color: var(--brand-primary);
    line-height: 1.7;
    margin: 0 auto 24px;
}
.about-quote-link {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text, #1a1a1a);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    margin-top: 8px;
}
.about-quote-link:hover { opacity: 0.75; }

/* ── Hero banner (vt22) ─────────────────────────────────────────── */
.hero-banner { position: relative; overflow: hidden; }
.full-banner-two-cta { background-repeat: no-repeat; background-size: cover; }
.heroSec { background-color: var(--brand-primary, #580201); min-height: 80vh; display: flex; align-items: center; }
/* carousel must fill the heroSec flex row so content centres inside it */
#main-content .heroSec .carousel { width: 100%; }
.hero-slide { position: relative; padding: 80px 0; width: 100%; }

/* Hero centering — ID-anchored (1,n,0) beats any [data-theme] class-chain
   (0,n,0). Use display:block (not flex) on hero-content so text-align:center
   inherits cleanly to all block children without flex cross-axis sizing
   interfering with percentage widths on the title. */
#main-content .hero-slide .hero-overlay {
    display: block !important;
    width: 100% !important;
    float: none !important;
}
#main-content .heroSec .hero-content {
    display: block !important;
    text-align: center !important;
    max-width: 860px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    float: none !important;
    box-sizing: border-box !important;
}
#main-content .heroSec .hero-slide .subTag {
    display: inline-block;
    font-size: 12px !important;
    letter-spacing: 2px;
    backdrop-filter: blur(12px);
    border: 1px solid var(--brand-primary);
    background: rgba(0,0,0,0.3);
    color: #fff !important;
    padding: 4px 16px;
    border-radius: 15px;
    margin-bottom: 0;
}
#main-content .heroSec .hero-slide .hero-title {
    font-size: clamp(1.75rem, 3.8vw, 3rem);
    line-height: 1.22;
    margin: 0.5rem auto 1rem;
    color: #fff;
    font-weight: 600;
    font-family: var(--font-display, 'Figtree', sans-serif);
    text-align: center !important;
    text-wrap: balance;
    width: 100%;
    display: block;
}
#main-content .heroSec .hero-slide .hero-description {
    color: rgba(255,255,255,0.88);
    font-weight: 300;
    max-width: 620px;
    line-height: 1.6;
    text-align: center !important;
    text-wrap: pretty;
    margin: 0 auto 40px !important;
}
#main-content .heroSec .hero-slide .hero-actions {
    display: flex !important;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center !important;
    width: 100%;
}
#main-content .heroSec .hero-slide .cta-secondary--outline {
    border-color: #fff;
    background: transparent;
    color: #fff;
}
/* Order Online — match View Restaurants' transparent/outline look on the hero. */
#main-content .heroSec .hero-slide .cta-primary--yellow {
    background-color: transparent !important;
    border-color: #fff !important;
    color: #fff !important;
}
.hero-actions .cta-width {
    width: 200px;
    max-width: initial;
    padding: 12px 15px !important;
}

/* ── About (vt41) ───────────────────────────────────────────────── */
.newhome-design .about-title {
    font-size: 48px;
    color: #fff;
    font-weight: 500;
}
.legacy-title { font-weight: 600; color: #fff; line-height: 1.2; }
.legacy-highlight { color: #fff; font-weight: 400; font-style: italic; }
.legacy-desc { font-size: 1.13rem; color: #E4E4E4; line-height: 1.7; font-weight: 400; }
.legacy-stats-row { display: flex; gap: 36px; margin-bottom: 2em; }
.legacy-stat { border-left: 2px solid #fff; padding-left: 18px; }
.legacy-stat-number { font-size: 2rem; font-weight: 700; color: #fff; }
.legacy-stat-label { font-size: 14px; color: #E4E4E4; line-height: 1.3; margin-top: 10px; }
.legacy-cta {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1.5px solid var(--brand-primary);
}
.legacy-cta:hover { color: #fff; border-bottom-color: #fff; }
.legacy-block-image img {
    width: 100%;
    border: 6px solid #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}
.legacy-block-image img:hover { transform: translateY(-6px) scale(1.02); }

/* ── Featured categories (vt3) ──────────────────────────────────── */
.new-category-bg .slick-list { padding-bottom: 28px; }
.newhome-design .featured-outer { padding: 0; margin-right: 15px; }
.newhome-design .cart-btn-outer { bottom: 20px; }
.newhome-design.top-offers .slick-list { padding: 0 !important; }
.newhome-design.top-offers .container { padding-left: 0; }
.featured-placeholder img { aspect-ratio: 1 / 1; }

/* ── USPs (vt48) — numbered card layout ─────────────────────────── */
.usp-section { background: #F5EFE6; padding: 64px 0 72px; }
.usp-heading { margin-bottom: 48px; }
.usp-heading h2 { font-size: 2rem; font-weight: 600; color: var(--brand-primary); }
.usp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
/* Open strip design — no white box, gold top rule anchors each item */
.usp-card {
    border-top: 3px solid var(--brand-primary);
    border-right: 1px solid rgba(154,124,44,0.18);
    padding: 28px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: transparent;
}
.usp-card:last-child { border-right: none; }
.usp-number {
    font-family: var(--font-display, 'Figtree', sans-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary);
    opacity: 0.55;
    line-height: 1;
    margin-bottom: 4px;
}
.usp-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0;
    line-height: 1.3;
}
.usp-desc {
    font-size: 0.85rem;
    color: #6b5c4a;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 991px) {
    .usp-grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
    .usp-card { border-right: 1px solid rgba(154,124,44,0.18); border-bottom: 1px solid rgba(154,124,44,0.12); padding-bottom: 28px; }
    .usp-card:nth-child(3n) { border-right: none; }
}
@media (max-width: 600px) {
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .usp-card:nth-child(3n) { border-right: 1px solid rgba(154,124,44,0.18); }
    .usp-card:nth-child(2n) { border-right: none; }
}

.feature-icon1 { display: flex; justify-content: center; align-items: center; margin-bottom: 15px; }
.feature-icon1 img {
    width: 195px; height: 195px;
    object-fit: cover; border-radius: 20px; display: block;
}
.hightlighted { color: var(--brand-primary); font-style: italic; font-weight: 400 !important; }

/* ── Awards & Milestones (vt42) ─────────────────────────────────── */
.milestone-section { background: var(--brand-primary); padding: 64px 0; }
.milestone-heading { margin-bottom: 48px; }
.milestone-heading h2 { color: #fff; }
.milestone-heading .subTag { color: #fff; }

.milestone-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.milestone-track::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255,255,255,0.25);
    z-index: 0;
}
.milestone-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px 32px;
    position: relative;
    z-index: 1;
}
.milestone-year {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: var(--brand-primary);
    color: #fff;
    font-family: var(--font-display, 'Figtree', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.milestone-divider {
    width: 2px;
    height: 24px;
    background: rgba(255,255,255,0.3);
    margin: 8px 0;
}
.milestone-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.3;
}
.milestone-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.5;
    margin: 0;
}

/* Award card on dark bg.
   .milestone-award-icon gets the same 72×72 circle as .milestone-year
   so its centre sits at exactly 36px from the card top — matching the
   ::before connector line (top: 36px) that runs across all four columns. */
.milestone-card--award {
    justify-content: flex-start;
}
.milestone-award-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: var(--brand-primary, #580201); /* same as .milestone-year — hides connector line bleeding through */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    /* no margin-bottom — .milestone-divider's margin: 8px 0 owns that gap */
}
.milestone-award-title {
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 6px;
}
.milestone-award-desc {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
    margin: 0;
}

/* Image-based fallback */
.milestone-image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.milestone-img-card img {
    max-height: 80px;
    max-width: 140px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.2s;
}
.milestone-img-card img:hover { opacity: 1; }

@media (max-width: 991px) {
    .milestone-track { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .milestone-track::before { display: none; }
}
@media (max-width: 600px) {
    .milestone-track { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ── Press & Recognition (vt16) ─────────────────────────────────── */
.media-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 60px;
    gap: 20px;
    overflow: hidden;
}
.media-logos span {
    font-size: 2rem;
    font-weight: 600;
    color: #aab0bb;
    letter-spacing: 0.5px;
}
.media-quote {
    background: #fff;
    border-radius: 14px;
    padding: 32px 36px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    font-size: 1.18rem;
    color: #3a3a3a;
    position: relative;
}
.media-quote-icon {
    font-size: 2.2rem;
    position: absolute;
    left: 30px; top: 30px;
}
.media-quote-icon svg { color: var(--brand-primary); }
.media-quote-text { display: inline-block; padding-left: 30px; }
.media-quote-source { margin-top: 18px; font-size: 1rem; color: var(--brand-primary); font-weight: 700; }

/* ── Testimonials (vt29) ────────────────────────────────────────── */
.testimonial-slider {
    display: flex;
    gap: 32px;
    padding: 20px 0 0;
    justify-content: center;
    align-items: stretch;
}
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 28px 24px 20px;
    min-width: 340px;
    max-width: 370px;
    flex: 0 0 370px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}
.testimonial-stars { color: #ffd600; font-size: 1.4rem; margin-bottom: 12px; display: flex; }
.testimonial-text { font-size: 1.05rem; color: #374151; margin-bottom: 22px; line-height: 1.6; font-weight: 400; }
.testimonial-user { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-user img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 700; color: var(--brand-primary); font-size: 1.08rem; }
.testimonial-city { color: #4B5563; font-size: 0.98rem; margin-top: 2px; }
.testimonial-slider--scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 16px 16px;
}
.testimonial-slider--scroll::-webkit-scrollbar { display: none; }
.testimonial-slider--scroll > .testimonial-card { scroll-snap-align: start; }

/* ── Blogs (vt28) ───────────────────────────────────────────────── */
.Secblog { z-index: 100; position: relative; }
.blog-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 0 0 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    scroll-snap-align: start;
}
.Secblog .blog-img { width: 100%; overflow: hidden; margin-bottom: 16px; padding: 12px 12px 0; }
.Secblog .blog-img img { width: 100%; object-fit: cover; border-radius: 12px; }
.Secblog .blog-title {
    font-size: 20px; font-weight: 700;
    margin: 0 18px 0; color: var(--text-1, #333);
    display: -webkit-box; -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; overflow: hidden;
}
.Secblog .blog-desc {
    font-size: 1rem; color: #707070;
    padding: 0 18px; line-height: 1.5;
    display: -webkit-box; -webkit-box-orient: vertical;
    -webkit-line-clamp: 5; overflow: hidden;
    height: 125px; flex-grow: 1;
}
.Secblog .blog-meta {
    display: flex; justify-content: space-between;
    gap: 18px; font-size: 15px; color: var(--text-1, #333);
    margin-bottom: 10px; align-items: center;
    width: 100%; padding: 0 15px;
}
.Secblog .blog-btn { margin: 0 20px; }
.blog-btn {
    padding: 10px 32px;
    border-radius: 8px; font-weight: 600;
    background: #fff; text-decoration: none;
    letter-spacing: 1px; display: inline-block;
}
.blog-btn:hover { background: var(--brand-primary); color: #fff; }
.blog-slider--scroll {
    display: flex; flex-wrap: nowrap; justify-content: center;
    gap: 20px; max-width: 1200px; margin: 0 auto;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; padding: 4px 16px 16px;
}
.blog-slider--scroll::-webkit-scrollbar { display: none; }
.blog-slider--scroll > .blog-card { flex: 0 0 360px; min-width: 340px; max-width: 370px; scroll-snap-align: start; }

/* ── FAQs (vt49) ────────────────────────────────────────────────── */
.newhome-design.CS-faqSection #faqSection { background: none; border: none; margin: 0 auto; max-width: 780px; }
.newhome-design.CS-faqSection #faqSection .card {
    background: #fff7f0; border: none;
    border-radius: 14px; margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    overflow: hidden;
}
.CS-faqSection #faqSection .card-header { background: none; border: none; padding: 0; }
.CS-faqSection #faqSection .btn-link {
    display: flex; align-items: center;
    justify-content: space-between; width: 100%;
    color: var(--text-1, #333); background: none;
    font-size: 1.15rem !important; font-weight: 500;
    padding: 16px 28px !important;
    border-radius: 14px 14px 0 0 !important;
    text-align: left; text-decoration: none; box-shadow: none;
}
.CS-faqSection #faqSection .btn-link .faq-chevron { flex: 0 0 auto; transition: transform 0.3s; }
.CS-faqSection #faqSection .btn-link.collapsed .faq-chevron { transform: rotate(0deg); }
.CS-faqSection #faqSection .btn-link:not(.collapsed) .faq-chevron { transform: rotate(180deg); }
.CS-faqSection #faqSection .card-body {
    background: #fff; padding: 20px 28px 18px;
    border-top: 1px solid #f3e7db;
}
.CS-faqSection #faqSection .plight { margin: 0; color: var(--text-1, #333); font-size: 0.98rem; line-height: 1.7; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media screen and (min-width: 768px) {
    .heroSec .hero-slide .subTag { padding: 4px 35px !important; }
    .newhome-design h2 { font-size: 36px; font-weight: 600; }
    .newhome-design h3 { font-size: 20px; font-weight: 600; }
    .newhome-design p { font-size: 16px; }
}

@media screen and (min-width: 992px) {
    .newhome-design.Sectfeatures .feature-col { flex: 0 0 24.33%; max-width: 24.33%; }
}

@media screen and (min-width: 1200px) {
    .newhome-design .category-main li>div {
        background-color: #fff;
        display: inline-block;
        padding: 12px;
        border-radius: 15px !important;
        height: 100%;
        max-width: 240px;
        width: 100%;
        box-shadow: 0 0 5px rgba(0,0,0,0.15) !important;
    }
}

@media screen and (min-width: 1440px) {
    .newhome-design h2 { font-size: 40px; }
    .newhome-design p { font-size: 18px; margin-bottom: 0; }
}

@media (max-width: 991px) {
    .newhome-design.Sectfeatures .feature-row { display: grid; grid-template-columns: repeat(3, 1fr); }
    .newhome-design.common-space1, .newhome-design .common-space { padding: 30px 0 !important; }
    .feature-row { flex-wrap: wrap; gap: 20px !important; }
    .feature-col { max-width: 100%; flex: 1 1 40%; }
    section#Sectestimonials { overflow: hidden; }
    .testimonial-card { min-width: 100%; max-width: 100%; }
    .legacy-block-image { max-width: 100%; margin-top: 18px; }
}

@media screen and (max-width: 767px) {
    #main-content .heroSec .hero-slide .hero-title { font-size: 36px !important; }
    .Secblog .blog-card { min-width: 100%; }
    .newhome-design h2, .newhome-design h3, .newhome-design h4 { font-weight: 600; }
    #main-content .hero-slide .hero-overlay { padding-bottom: 2.5rem; }
    .blog-slider--scroll { justify-content: flex-start; }
    .blog-slider--scroll > .blog-card { flex-basis: 86%; min-width: 0; max-width: 86%; }
    .testimonial-slider--scroll { justify-content: flex-start; }
    .testimonial-slider--scroll > .testimonial-card { flex-basis: 86%; min-width: 0; max-width: 86%; }
}

@media (max-width: 600px) {
    .newhome-design.Sectfeatures .feature-row { grid-template-columns: repeat(2, 1fr); }
    .feature-col { max-width: 90vw; }
}

@media screen and (max-width: 475px) {
    #main-content .heroSec .hero-slide .hero-title { font-size: 32px !important; }
    #main-content .heroSec .hero-slide .hero-actions { gap: 8px !important; flex-wrap: nowrap !important; }
    .hero-actions .cta-width { width: 100%; padding: 12px !important; font-size: 14px; }
    #main-content .heroSec .hero-content { padding: 0 10px !important; }
    .feature-col { flex: 1 1 100%; }
}

@media screen and (max-width: 410px) {
    .newhome-design .about-title { font-size: 28px; }
    .newhome-design.Sectfeatures .feature-row { grid-template-columns: repeat(1, 1fr); }
}

/* ── Our Family of Brands (vt52) ─────────────────────────────────── */
.brand-family-section {
    background: #fff;
    padding: 64px 0;
}
.brand-family-heading {
    margin-bottom: 40px;
}
.brand-family-heading h2 {
    color: var(--brand-primary);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.brand-family-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card shell */
.brand-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--brand-primary);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s;
}
.brand-card:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 2px; }
.brand-card:hover {
    box-shadow: 0 8px 28px rgba(88,2,1,0.12);
    transform: translateY(-4px);
}

/* Image / placeholder area — full card width, fixed height */
.brand-card__media {
    width: 100%;
    height: 200px;
    background: #f5f1eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px dashed rgba(154,124,44,0.4);
    overflow: hidden;
    flex-shrink: 0;
}
.brand-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Placeholder icon — shown when no CDN image is available */
.brand-card__ph {
    color: #c0b09a;
    display: flex;
}

/* Card content */
.brand-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 20px 28px;
}
/* Scoped to .brand-card (2 classes) so this beats the generic
   .newhome-design h1,h2 rule (1 class + 1 element) — otherwise that rule's
   margin:0 silently wins, losing the 6px gap before the category tag. */
.brand-card .brand-card__name {
    font-family: var(--font-display, 'Figtree', sans-serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0 0 6px;
    line-height: 1.2;
}
.brand-card__category {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin: 0;
}
.brand-card__rule {
    width: 32px;
    border: none;
    border-top: 2px solid var(--brand-primary);
    margin: 14px 0;
}
/* Scoped to .brand-card (2 classes) so this beats the generic
   .newhome-design p rule (1 class + 1 element) — otherwise that rule's
   line-height:1.3 silently wins over 1.65, cramming this description tighter
   than intended and crowding the Explore link below. */
.brand-card .brand-card__desc {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.65;
    margin: 0 0 20px;
    flex: 1;
}
.brand-card__cta {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text, #1a1a1a);
    text-decoration: none;
    margin-top: auto;
    padding-top: 8px;
    transition: opacity 0.15s;
}
.brand-card__cta:hover { opacity: 0.7; color: var(--text, #1a1a1a); }

@media (max-width: 768px) {
    .brand-family-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
    .brand-family-section { padding: 48px 0; }
    .brand-family-grid { grid-template-columns: 1fr; gap: 14px; }
    .brand-card__media { height: 160px; }
}

/* ── Order Channels widget (viewType 53) — "Order in your favourite way" ──
   Lives here (not the shared theme.css) so it ships cleanly with the rest of
   this brand's home-page CSS, since order_channels.php is currently only
   used by Imperio. If another brand adopts viewType 53 later, promote this
   block to theme.css at that point. */
.order-channels { padding: var(--space-10) 0; background: var(--oc-bg, var(--surface)); }
.order-channels__inner { max-width: 1180px; margin: 0 auto; padding: 0 var(--space-4); }
.order-channels__heading { font-size: 1.4rem; font-weight: 800; color: var(--brand-primary, var(--text)); margin: 0 0 var(--space-1); }
.order-channels__sub { font-size: .92rem; color: var(--text-2); margin: 0 0 var(--space-4); }
.order-channels__buttons { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.order-channels__btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: .65rem 1.4rem; border-radius: var(--r-full, 999px);
    color: #fff; font-weight: 700; font-size: .92rem; text-decoration: none;
    box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.order-channels__btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md, var(--shadow-sm)); }
.order-channels__btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

@media (min-width: 768px) {
    .order-channels__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); }
    .order-channels__text { flex: 0 0 auto; }
    .order-channels__heading { font-size: 1.7rem; margin-bottom: var(--space-2); }
    .order-channels__sub { margin-bottom: 0; }
    .order-channels__buttons { flex: 0 0 auto; }
}
