/* ==========================================================================
   Classic Two / index-new — section skin ("Soft Studio")
   --------------------------------------------------------------------------
   Loaded once per request by partials/section-skin.blade.php whenever an
   index-new section or the index-new card renders. Scoped under .c2.

   Shape language: warm sand canvas, deep navy ink, 20px squircles, soft
   diffuse shadows (no hard borders), pastel tinted tiles, pill navigation,
   uppercase micro-labels — a calm department-store feel.
   ========================================================================== */

.c2 {
    --c2-font: 'DM Sans', var(--primary-font, 'Public Sans'), sans-serif;
    --c2-navy: var(--primary-color, #1a2939);
    --c2-navy-deep: color-mix(in srgb, var(--c2-navy) 84%, #000814);
    --c2-ink: #16202c;
    --c2-muted: #6c7a89;
    --c2-sand: #f5f1ea;
    --c2-sand-2: #ece5db;
    --c2-paper: #ffffff;
    --c2-clay: #d9714f;
    --c2-sage: #8fa68e;
    --c2-sky: #9db6cf;
    --c2-lilac: #b3a7cd;
    --c2-butter: #e8c877;
    --c2-line: color-mix(in srgb, var(--c2-ink) 8%, transparent);
    --c2-radius: 20px;
    --c2-radius-lg: 28px;
    --c2-shadow: 0 1px 2px rgba(22, 32, 44, .03), 0 16px 38px -24px rgba(22, 32, 44, .26);
    --c2-shadow-hover: 0 24px 48px -20px rgba(22, 32, 44, .34);
    --c2-ease: cubic-bezier(.2, .8, .2, 1);

    /* Shape language of this skin, but the Appearance settings win whenever an
       admin actually sets a radius (--ui-* is emitted only when configured). */
    --appearance-card-border-radius: var(--ui-card-radius, var(--c2-radius));
    --appearance-product-card-border-radius: var(--ui-product-card-radius, var(--c2-radius));
    --appearance-button-border-radius: var(--ui-button-radius, 999px);
    --appearance-input-border-radius: var(--ui-input-radius, 999px);

    position: relative;
    font-family: var(--c2-font);
    color: var(--c2-ink);
}
body[data-theme="dark"] .c2 {
    --c2-ink: #eaeef3;
    --c2-muted: #9aa8b6;
    --c2-sand: #171e26;
    --c2-sand-2: #1f2833;
    --c2-paper: #131a22;
    --c2-line: color-mix(in srgb, #ffffff 10%, transparent);
    --c2-shadow: 0 1px 2px rgba(0, 0, 0, .35), 0 16px 38px -24px rgba(0, 0, 0, .7);
}

.c2 *, .c2 *::before, .c2 *::after { box-sizing: border-box; }
.c2 a { color: inherit; text-decoration: none; }
.c2 img { max-width: 100%; }
.c2 h1, .c2 h2, .c2 h3, .c2 h4 { font-family: var(--c2-font) !important; color: inherit; margin: 0; font-weight: 700; letter-spacing: -.02em; }

/* ---- Section header --------------------------------------------------- */
.c2-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px 24px; flex-wrap: wrap; margin-bottom: 28px; }
.c2-head--center { flex-direction: column; align-items: center; text-align: center; }
.c2-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--c2-muted);
}
.c2-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--c2-clay); }
.c2-head--center .c2-label::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--c2-clay); }
.c2-title { margin-top: 10px; font-size: clamp(26px, 3.1vw, 42px); font-weight: 700; letter-spacing: -.03em; line-height: 1.08; }
.c2-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    border-radius: 999px;
    background: var(--c2-paper);
    box-shadow: var(--c2-shadow);
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.c2-link svg, .c2-link i { transition: transform .2s; }
.c2-link:hover { transform: translateY(-2px); background: var(--c2-navy); color: #fff; box-shadow: var(--c2-shadow-hover); }
.c2-link:hover svg, .c2-link:hover i { transform: translateX(3px); }

/* ---- Buttons ----------------------------------------------------------- */
.c2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: 0;
    border-radius: var(--appearance-button-border-radius, 999px) !important;
    background: var(--c2-navy);
    color: #fff !important;
    font: inherit;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 12px 26px -14px rgba(22, 32, 44, .7);
    transition: transform .2s var(--c2-ease), box-shadow .2s, background .2s;
}
.c2-btn:hover { transform: translateY(-2px); background: var(--c2-navy-deep); color: #fff; box-shadow: 0 18px 34px -16px rgba(22, 32, 44, .8); }
.c2-btn svg, .c2-btn i { transition: transform .2s; }
.c2-btn:hover svg, .c2-btn:hover i { transform: translateX(3px); }
.c2-btn--light { background: var(--c2-paper); color: var(--c2-ink) !important; box-shadow: var(--c2-shadow); }
.c2-btn--light:hover { background: var(--c2-paper); color: var(--c2-navy) !important; }
.c2-btn--clay { background: var(--c2-clay); box-shadow: 0 12px 26px -14px rgba(217, 113, 79, .8); }
.c2-btn--clay:hover { background: color-mix(in srgb, var(--c2-clay) 85%, #000); }
.c2-btn--sm { padding: 11px 18px; font-size: 13.5px; }

/* ---- Hero -------------------------------------------------------------- */
.c2-hero__stage { position: relative; border-radius: var(--c2-radius-lg); background: var(--c2-sand); overflow: hidden; }
.c2-hero__slide { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 24px; padding: clamp(28px, 4vw, 64px); min-height: 460px; }
.c2-hero__copy { position: relative; z-index: 1; }
.c2-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 15px;
    border-radius: 999px;
    background: var(--c2-paper);
    box-shadow: var(--c2-shadow);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--c2-clay);
    margin-bottom: 20px;
}
.c2-hero__title { font-size: clamp(32px, 4.6vw, 62px); font-weight: 700; letter-spacing: -.04em; line-height: 1.02; margin-bottom: 18px; }
.c2-hero__desc { max-width: 46ch; margin: 0 0 28px; font-size: 16.5px; line-height: 1.65; color: var(--c2-muted); }
.c2-hero__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.c2-hero__media { position: relative; display: flex; align-items: center; justify-content: center; }
.c2-hero__disc { position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; background: var(--c2-sand-2); }
.c2-hero__disc::after { content: ''; position: absolute; inset: 8%; border-radius: 50%; border: 1px dashed color-mix(in srgb, var(--c2-ink) 16%, transparent); }
.c2-hero__img { position: relative; width: 92%; max-height: 420px; object-fit: contain; filter: drop-shadow(0 28px 34px rgba(22, 32, 44, .22)); }
.c2-hero__count { position: absolute; right: 0; bottom: 0; font-size: 13px; font-weight: 600; color: var(--c2-muted); font-variant-numeric: tabular-nums; }
.c2-hero__count b { color: var(--c2-ink); }
.c2-hero .swiper-pagination { position: absolute; left: clamp(28px, 4vw, 64px); bottom: 26px; display: flex; gap: 7px; width: auto; z-index: 3; }
.c2-hero .swiper-pagination-bullet { width: 9px; height: 9px; margin: 0 !important; border-radius: 999px; background: var(--c2-ink); opacity: .2; transition: width .25s, opacity .25s, background .25s; }
.c2-hero .swiper-pagination-bullet-active { width: 30px; opacity: 1; background: var(--c2-clay); }

/* ---- Benefits ---------------------------------------------------------- */
.c2-benefits { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .c2-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .c2-benefits { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; } }
.c2-benefit {
    position: relative;
    display: flex;
    gap: 14px;
    padding: 24px 22px;
    border-radius: var(--c2-radius);
    background: var(--c2-paper);
    box-shadow: var(--c2-shadow);
    overflow: hidden;
    transition: transform .25s var(--c2-ease), box-shadow .25s;
}
.c2-benefit:hover { transform: translateY(-5px); box-shadow: var(--c2-shadow-hover); }
.c2-benefit__num { position: absolute; right: 14px; top: 6px; font-size: 54px; font-weight: 700; letter-spacing: -.05em; color: var(--c2-sand-2); line-height: 1; pointer-events: none; }
.c2-benefit__ico { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--c2-tint, var(--c2-sand)); font-size: 17px; color: var(--c2-navy); }
.c2-benefit__ico img { width: 24px; height: 24px; object-fit: contain; }
.c2-benefit:nth-child(4n+1) .c2-benefit__ico { --c2-tint: color-mix(in srgb, var(--c2-clay) 20%, #fff); color: var(--c2-clay); }
.c2-benefit:nth-child(4n+2) .c2-benefit__ico { --c2-tint: color-mix(in srgb, var(--c2-sage) 26%, #fff); color: color-mix(in srgb, var(--c2-sage) 80%, #000); }
.c2-benefit:nth-child(4n+3) .c2-benefit__ico { --c2-tint: color-mix(in srgb, var(--c2-sky) 26%, #fff); color: color-mix(in srgb, var(--c2-sky) 80%, #000); }
.c2-benefit:nth-child(4n+4) .c2-benefit__ico { --c2-tint: color-mix(in srgb, var(--c2-butter) 32%, #fff); color: color-mix(in srgb, var(--c2-butter) 70%, #000); }
.c2-benefit__title { position: relative; font-size: 16px; font-weight: 700; line-height: 1.25; margin-bottom: 5px; }
.c2-benefit__text { position: relative; margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--c2-muted); }

/* ---- Category tiles ---------------------------------------------------- */
.c2-cats { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 640px)  { .c2-cats { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 992px)  { .c2-cats { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .c2-cats { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; } }
.c2-cat { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.c2-cat__tile {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--c2-radius);
    background: var(--c2-tint, var(--c2-sand));
    display: grid;
    place-items: center;
    overflow: hidden;
    transition: transform .3s var(--c2-ease), box-shadow .3s;
}
.c2-cat:hover .c2-cat__tile { transform: translateY(-5px); box-shadow: var(--c2-shadow-hover); }
.c2-cat__tile img { width: 74%; height: 74%; object-fit: contain; transition: transform .4s var(--c2-ease); }
.c2-cat:hover .c2-cat__tile img { transform: scale(1.08); }
.c2-cat:nth-child(6n+1) .c2-cat__tile { --c2-tint: color-mix(in srgb, var(--c2-clay) 15%, var(--c2-sand)); }
.c2-cat:nth-child(6n+2) .c2-cat__tile { --c2-tint: color-mix(in srgb, var(--c2-sage) 20%, var(--c2-sand)); }
.c2-cat:nth-child(6n+3) .c2-cat__tile { --c2-tint: color-mix(in srgb, var(--c2-sky) 20%, var(--c2-sand)); }
.c2-cat:nth-child(6n+4) .c2-cat__tile { --c2-tint: color-mix(in srgb, var(--c2-lilac) 20%, var(--c2-sand)); }
.c2-cat:nth-child(6n+5) .c2-cat__tile { --c2-tint: color-mix(in srgb, var(--c2-butter) 24%, var(--c2-sand)); }
.c2-cat__name { font-size: 14.5px; font-weight: 600; line-height: 1.3; transition: color .2s; }
.c2-cat:hover .c2-cat__name { color: var(--c2-clay); }

/* ---- Product card ------------------------------------------------------ */
.c2 .qv-card-wrap { height: 100%; }
.c2-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--c2-radius) !important;
    background: var(--c2-paper);
    box-shadow: var(--c2-shadow);
    overflow: hidden;
    transition: transform .25s var(--c2-ease), box-shadow .25s;
}
.c2-card:hover { transform: translateY(-5px); box-shadow: var(--c2-shadow-hover); }
.c2-card__media { position: relative; aspect-ratio: 1; background: var(--c2-sand); overflow: hidden; }
.c2-card__media > a { display: block; width: 100%; height: 100%; }
.c2-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 11%; transition: transform .5s var(--c2-ease); }
.c2-card:hover .c2-card__media img { transform: scale(1.07); }
.c2-card__tag { position: absolute; top: 12px; left: 12px; padding: 6px 10px; border-radius: 999px; background: var(--c2-clay); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em; z-index: 2; }
.c2-card__wish {
    position: absolute;
    top: 10px; right: 10px;
    width: 36px; height: 36px;
    border: 0;
    border-radius: 50% !important;
    background: var(--c2-paper);
    color: var(--c2-ink);
    box-shadow: var(--c2-shadow);
    display: grid; place-items: center;
    font-size: 13px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .2s, transform .2s, color .2s;
    z-index: 3;
}
.c2-card:hover .c2-card__wish { opacity: 1; transform: none; }
.c2-card__wish:hover, .c2-card__wish .wishlist-icon-filled { color: var(--c2-clay); }
.c2-card__cta {
    position: absolute;
    left: 12px; right: 12px; bottom: 12px;
    padding: 11px;
    border: 0;
    border-radius: var(--appearance-button-border-radius, 999px) !important;
    background: var(--c2-navy);
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transform: translateY(calc(100% + 16px));
    transition: transform .3s var(--c2-ease), background .2s;
    z-index: 3;
}
.c2-card:hover .c2-card__cta { transform: none; }
.c2-card__cta:hover { background: var(--c2-clay); color: #fff; }
@media (hover: none) { .c2-card__wish { opacity: 1; transform: none; } .c2-card__cta { transform: none; } }
.c2-card__body { display: flex; flex-direction: column; gap: 5px; padding: 14px 16px 16px; }
.c2-card__cat { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--c2-muted); }
.c2-card__name { font-size: 14.5px; font-weight: 600; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.c2-card__price { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; font-size: 16px; font-weight: 700; }
.c2-card__price del { font-size: 12.5px; font-weight: 500; color: var(--c2-muted); }

/* ---- Grids -------------------------------------------------------------- */
.c2-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px)  { .c2-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .c2-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; } }
.c2-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px)  { .c2-grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .c2-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---- Promo split (discount-banner) ------------------------------------- */
.c2-promos { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 992px) { .c2-promos { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.c2-promo {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 18px;
    padding: clamp(22px, 3vw, 36px);
    border-radius: var(--c2-radius-lg);
    background: var(--c2-tint, var(--c2-sand));
    overflow: hidden;
}
@media (min-width: 576px) { .c2-promo { grid-template-columns: 1.1fr .9fr; } }
.c2-promo:nth-child(odd)  { --c2-tint: color-mix(in srgb, var(--c2-clay) 14%, var(--c2-sand)); }
.c2-promo:nth-child(even) { --c2-tint: color-mix(in srgb, var(--c2-sky) 18%, var(--c2-sand)); }
.c2-promo__small { display: inline-block; padding: 5px 12px; border-radius: 999px; background: var(--c2-paper); font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c2-clay); margin-bottom: 12px; }
.c2-promo__title { font-size: clamp(21px, 2.2vw, 28px); line-height: 1.15; margin-bottom: 10px; }
.c2-promo__text { margin: 0 0 20px; font-size: 14px; line-height: 1.6; color: var(--c2-muted); }
.c2-promo__img { display: flex; align-items: center; justify-content: center; }
.c2-promo__img img { max-height: 220px; width: 100%; object-fit: contain; filter: drop-shadow(0 18px 22px rgba(22, 32, 44, .22)); transition: transform .5s var(--c2-ease); }
.c2-promo:hover .c2-promo__img img { transform: translateY(-6px); }

/* ---- Feature split (product-gallery) ----------------------------------- */
.c2-feature { display: grid; gap: 20px; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 992px) { .c2-feature { grid-template-columns: minmax(0, 340px) minmax(0, 1fr); } }
.c2-poster {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 360px;
    border-radius: var(--c2-radius-lg);
    background: var(--c2-sand-2);
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}
.c2-poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--c2-ease); z-index: -2; }
.c2-poster:hover img { transform: scale(1.05); }
.c2-poster::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255, 255, 255, .85) 0%, rgba(255, 255, 255, .35) 45%, transparent 75%); z-index: -1; }
body[data-theme="dark"] .c2-poster::after { background: linear-gradient(180deg, rgba(19, 26, 34, .9) 0%, rgba(19, 26, 34, .4) 45%, transparent 75%); }
.c2-poster__copy { position: relative; padding: clamp(24px, 3vw, 38px); max-width: 24rem; }
.c2-poster__small { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--c2-clay); margin-bottom: 10px; }
.c2-poster__title { font-size: clamp(22px, 2.3vw, 30px); line-height: 1.15; margin-bottom: 20px; }

/* ---- Rail (groceries slider) ------------------------------------------- */
.c2-rail .swiper { padding: 8px 4px 12px; margin: -8px -4px 0; }
.c2-nav { display: flex; align-items: center; gap: 8px; }
.c2-nav__btn {
    position: static;
    width: 46px; height: 46px;
    margin: 0;
    border: 0;
    border-radius: 999px !important;
    background: var(--c2-paper);
    color: var(--c2-ink);
    box-shadow: var(--c2-shadow);
    display: grid !important;
    place-items: center;
    font-size: 13px;
    cursor: pointer;
    transition: background .2s, color .2s, transform .2s;
}
/* Swiper injects its own <svg class="swiper-navigation-icon"> child (and an
   ::after glyph on older builds) — hide both so only our arrow shows. */
.c2-nav__btn::after { display: none !important; }
.c2-nav__btn .swiper-navigation-icon { display: none !important; }
/* watchOverflow locks the buttons when every slide fits; keep them visible but inert. */
.c2-nav__btn.swiper-button-lock { display: grid !important; opacity: .35; pointer-events: none; }
.c2-nav__btn:hover { background: var(--c2-navy); color: #fff; transform: translateY(-2px); }
.c2-nav__btn.swiper-button-disabled { opacity: .35; }

/* ---- Deals split (groceries-discount) ---------------------------------- */
.c2-deals { display: grid; gap: 20px; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 992px) { .c2-deals { grid-template-columns: minmax(0, 1fr) minmax(0, 330px); } }
.c2-deals__side { display: flex; flex-direction: column; gap: 20px; }
.c2-side {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    flex: 1;
    padding: 24px;
    border-radius: var(--c2-radius-lg);
    background: var(--c2-side-bg, var(--c2-clay));
    color: #fff;
    overflow: hidden;
}
.c2-side:nth-child(2) { --c2-side-bg: var(--c2-navy); }
.c2-side__small { font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; opacity: .85; }
.c2-side__title { font-size: 26px; line-height: 1.1; color: #fff; margin: 8px 0 16px; }
.c2-side__img { display: flex; align-items: flex-end; justify-content: center; margin-top: auto; }
.c2-side__img img { max-height: 150px; width: auto; max-width: 100%; object-fit: contain; filter: drop-shadow(0 16px 20px rgba(0, 0, 0, .35)); transition: transform .5s var(--c2-ease); }
.c2-side:hover .c2-side__img img { transform: translateY(-6px) scale(1.03); }

/* ---- Brands ------------------------------------------------------------- */
.c2-brands { padding: clamp(28px, 4vw, 56px) 0; border-radius: var(--c2-radius-lg); background: var(--c2-sand); }

/* Breathing room for the hover lift's shadow, pulled back off the layout with a
   matching negative margin. (An edge-fade mask was tried here and dropped: with
   six slides per view the rail usually has no overflow, so the gradient only
   ever bit into the first and last tile.) */
.c2-brands .swiper { padding: 10px 6px 16px; margin: -10px -6px 0; }

.c2-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 132px;
    padding: 18px 16px;
    border-radius: var(--c2-radius);
    background: var(--c2-paper);
    border: 1px solid var(--c2-line);
    box-shadow: var(--c2-shadow);
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    transition: transform .28s var(--c2-ease), box-shadow .28s, border-color .28s;
}
.c2-brand:hover {
    transform: translateY(-6px);
    color: inherit;
    border-color: color-mix(in srgb, var(--c2-navy) 22%, transparent);
    box-shadow: var(--c2-shadow-hover);
}

/* A logo box measured in px, NOT a percentage. The tile is a flex/grid item in
   a content-sized track, so the old `max-height: 100%` resolved against an
   indefinite height and was dropped — every oversized brand PNG then drew at
   its natural size and spilled out of the card. */
.c2-brand__logo { display: flex; align-items: center; justify-content: center; width: 100%; height: 54px; }
.c2-brand__logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 54px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .62;
    transition: filter .3s, opacity .3s, transform .3s var(--c2-ease);
}
.c2-brand:hover .c2-brand__logo img { filter: none; opacity: 1; transform: scale(1.05); }

/* Brand art is whatever the shop uploaded — a wordmark, a packshot, a photo.
   The caption keeps the tile readable when the picture alone is not. */
.c2-brand__name {
    max-width: 100%;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--c2-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .3s;
}
.c2-brand:hover .c2-brand__name { color: var(--c2-ink); }

.c2-head__actions { display: flex; align-items: center; gap: 10px; }

/* ---- Blog --------------------------------------------------------------- */
.c2-posts { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .c2-posts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .c2-posts { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.c2-post { display: flex; flex-direction: column; height: 100%; border-radius: var(--c2-radius); background: var(--c2-paper); box-shadow: var(--c2-shadow); overflow: hidden; transition: transform .25s var(--c2-ease), box-shadow .25s; }
.c2-post:hover { transform: translateY(-5px); box-shadow: var(--c2-shadow-hover); }
.c2-post__thumb { position: relative; aspect-ratio: 13 / 10; background: var(--c2-sand); overflow: hidden; }
.c2-post__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--c2-ease); }
.c2-post:hover .c2-post__thumb img { transform: scale(1.05); }
.c2-post__date { position: absolute; left: 14px; bottom: 14px; padding: 6px 12px; border-radius: 999px; background: var(--c2-paper); color: var(--c2-ink); font-size: 11.5px; font-weight: 700; }
.c2-post__body { display: flex; flex-direction: column; gap: 8px; padding: 18px 20px 20px; flex: 1; }
.c2-post__by { font-size: 12px; color: var(--c2-muted); }
.c2-post__title { font-size: 16px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.c2-post__more { margin-top: auto; padding-top: 6px; font-size: 13px; font-weight: 700; color: var(--c2-clay); display: inline-flex; align-items: center; gap: 8px; }
.c2-post__more svg, .c2-post__more i { transition: transform .2s; }
.c2-post:hover .c2-post__more svg, .c2-post:hover .c2-post__more i { transform: translateX(4px); }

/* ---- Newsletter ---------------------------------------------------------- */
.c2-news {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: center;
    padding: clamp(24px, 3.5vw, 44px);
    border-radius: var(--c2-radius-lg);
    background: var(--c2-sand);
}
@media (min-width: 992px) { .c2-news { grid-template-columns: .9fr 1.1fr; gap: 48px; } }
.c2-news__media { border-radius: var(--c2-radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--c2-sand-2); }
.c2-news__media img { width: 100%; height: 100%; object-fit: cover; }
.c2-news__title { font-size: clamp(24px, 2.8vw, 36px); line-height: 1.12; margin-bottom: 12px; }
.c2-news__desc { margin: 0 0 22px; font-size: 15px; line-height: 1.6; color: var(--c2-muted); }
.c2-news__form { display: flex; gap: 8px; padding: 6px; border-radius: 999px; background: var(--c2-paper); box-shadow: var(--c2-shadow); transition: box-shadow .2s; }
.c2-news__form:focus-within { box-shadow: 0 0 0 4px color-mix(in srgb, var(--c2-clay) 25%, transparent), var(--c2-shadow); }
.c2-news__input { flex: 1; min-width: 0; padding: 12px 18px; border: 0; border-radius: 999px !important; background: transparent; color: var(--c2-ink); font: inherit; font-size: 15px; outline: 0; }
.c2-news__input::placeholder { color: var(--c2-muted); }
@media (max-width: 480px) { .c2-news__form { flex-direction: column; border-radius: 24px; } .c2-news__form .c2-btn { width: 100%; } }

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 991.98px) {
    .c2-hero__slide { grid-template-columns: 1fr; min-height: 0; gap: 18px; padding-bottom: 62px; text-align: center; }
    .c2-hero__copy { order: 2; }
    .c2-hero__media { order: 1; }
    .c2-hero__desc { margin-left: auto; margin-right: auto; }
    .c2-hero__actions { justify-content: center; }
    .c2-hero__img { max-height: 260px; }
    .c2-hero__count { display: none; }
    .c2-hero .swiper-pagination { left: 50%; transform: translateX(-50%); }
    .c2-side__img img { max-height: 120px; }
}
@media (max-width: 575.98px) {
    .c2-head { margin-bottom: 20px; }
    .c2-brand { height: 112px; gap: 10px; padding: 14px 12px; }
    .c2-brand__logo { height: 42px; }
    .c2-brand__logo img { max-height: 42px; }
    .c2-brand__name { font-size: 11px; }
    .c2-card__body { padding: 12px 13px 14px; }
    .c2-card__name { font-size: 13.5px; }
    .c2-benefit__num { font-size: 42px; }
    .c2-promo__img img { max-height: 160px; }
}
