/* ==========================================================================
   Electronics One — section skin ("Tech Glass")
   --------------------------------------------------------------------------
   Loaded once per request by partials/section-skin.blade.php whenever an
   electronics-one section or the electronics-one card renders. Scoped under
   .e1 so nothing else inherits it.

   Shape language: cool light surfaces + navy dark bands, blue→cyan gradient
   accents, glow rings, segmented tabs, chip rails, 16px radius, hairlines.
   ========================================================================== */

.e1 {
    --e1-font: 'IBM Plex Sans', 'Inter', var(--primary-font, 'Public Sans'), sans-serif;
    --e1-blue: var(--primary-color, #0c55aa);
    --e1-blue-deep: color-mix(in srgb, var(--e1-blue) 78%, #041226);
    --e1-cyan: #22d3ee;
    --e1-ink: #0b1220;
    --e1-navy: #0f1a2e;
    --e1-navy-2: #16233d;
    --e1-bg: #f4f6fb;
    --e1-card: #ffffff;
    --e1-muted: #5d6b82;
    --e1-line: color-mix(in srgb, var(--e1-ink) 9%, transparent);
    --e1-tint: color-mix(in srgb, var(--e1-blue) 8%, #ffffff);
    --e1-tint-2: color-mix(in srgb, var(--e1-blue) 16%, #ffffff);
    --e1-grad: linear-gradient(135deg, var(--e1-blue) 0%, var(--e1-cyan) 100%);
    --e1-radius: 16px;
    --e1-shadow: 0 1px 2px rgba(11, 18, 32, .04), 0 18px 44px -26px rgba(11, 18, 32, .3);
    --e1-ring: 0 0 0 1px color-mix(in srgb, var(--e1-cyan) 45%, transparent), 0 22px 60px -22px color-mix(in srgb, var(--e1-cyan) 55%, transparent);
    --e1-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(--e1-radius));
    --appearance-product-card-border-radius: var(--ui-product-card-radius, var(--e1-radius));
    --appearance-button-border-radius: var(--ui-button-radius, 10px);
    --appearance-input-border-radius: var(--ui-input-radius, 10px);

    position: relative;
    font-family: var(--e1-font);
    color: var(--e1-ink);
}
body[data-theme="dark"] .e1 {
    --e1-ink: #e8edf6;
    --e1-muted: #9aa8bf;
    --e1-bg: #0c1424;
    --e1-card: #131d31;
    --e1-line: color-mix(in srgb, #ffffff 10%, transparent);
    --e1-tint: color-mix(in srgb, var(--e1-blue) 22%, #131d31);
    --e1-tint-2: color-mix(in srgb, var(--e1-blue) 34%, #131d31);
    --e1-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 18px 44px -26px rgba(0, 0, 0, .7);
}

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

/* dark band modifier */
.e1-dark { position: relative; background: var(--e1-navy); color: #fff; overflow: hidden; isolation: isolate; }
.e1-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 100% 56px,
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 56px 100%;
    -webkit-mask: radial-gradient(ellipse at 60% 40%, #000 30%, transparent 75%);
    mask: radial-gradient(ellipse at 60% 40%, #000 30%, transparent 75%);
    pointer-events: none;
    z-index: -1;
}
.e1-dark::after {
    content: '';
    position: absolute;
    width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
    right: -20vw; top: -30vw;
    background: radial-gradient(circle, color-mix(in srgb, var(--e1-cyan) 28%, transparent) 0%, transparent 60%);
    filter: blur(20px);
    pointer-events: none;
    z-index: -1;
}
.e1-dark .e1-title, .e1-dark h1, .e1-dark h2, .e1-dark h3 { color: #fff; }
.e1-dark .e1-kicker { color: var(--e1-cyan); }
.e1-dark .e1-link { color: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28); }
.e1-dark .e1-link:hover { background: rgba(255, 255, 255, .1); }

/* ---- Section header --------------------------------------------------- */
.e1-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px 24px; flex-wrap: wrap; margin-bottom: 26px; }
.e1-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--e1-blue);
}
.e1-kicker::before { content: ''; width: 4px; height: 14px; border-radius: 2px; background: var(--e1-grad); }
.e1-title { margin-top: 8px; font-size: clamp(24px, 2.8vw, 38px); font-weight: 700; letter-spacing: -.025em; line-height: 1.1; }
.e1-title span { background: var(--e1-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.e1-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px var(--e1-line);
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;
    transition: background .2s, box-shadow .2s;
}
.e1-link i { font-size: 12px; transition: transform .2s; }
.e1-link:hover { background: var(--e1-tint); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--e1-blue) 35%, transparent); }
.e1-link:hover i { transform: translateX(3px); }

/* ---- Buttons ----------------------------------------------------------- */
.e1-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 0;
    border-radius: var(--appearance-button-border-radius, 10px) !important;
    background: var(--e1-grad);
    color: #fff !important;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    box-shadow: 0 12px 28px -14px color-mix(in srgb, var(--e1-blue) 80%, transparent);
    transition: transform .2s var(--e1-ease), box-shadow .2s;
}
.e1-btn::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%); transform: translateX(-120%); transition: transform .6s var(--e1-ease); }
.e1-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px color-mix(in srgb, var(--e1-cyan) 80%, transparent); color: #fff; }
.e1-btn:hover::after { transform: translateX(120%); }
.e1-btn i { font-size: 12px; }
.e1-btn--ghost { background: transparent; color: var(--e1-ink) !important; box-shadow: inset 0 0 0 1.5px var(--e1-line); }
.e1-btn--ghost:hover { background: var(--e1-tint); box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--e1-blue) 40%, transparent); }
.e1-btn--ghost::after { display: none; }
.e1-dark .e1-btn--ghost { color: #fff !important; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .3); }
.e1-dark .e1-btn--ghost:hover { background: rgba(255, 255, 255, .1); }
.e1-btn--dark { background: var(--e1-navy); box-shadow: none; }
.e1-btn--sm { padding: 10px 16px; font-size: 13px; }

/* ---- Hero -------------------------------------------------------------- */
.e1-hero { background: var(--e1-navy); color: #fff; overflow: hidden; }
.e1-hero__item { position: relative; display: flex; align-items: center; min-height: 560px; padding: 56px 0 72px; isolation: isolate; }
.e1-hero__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px) 0 0 / 100% 56px,
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px) 0 0 / 56px 100%;
    -webkit-mask: radial-gradient(ellipse at 70% 50%, #000 25%, transparent 70%);
    mask: radial-gradient(ellipse at 70% 50%, #000 25%, transparent 70%);
    z-index: -1;
}
.e1-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 36px; width: 100%; }
.e1-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .04em;
    color: #dbe7ff;
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
}
.e1-hero__chip::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--e1-cyan); box-shadow: 0 0 0 4px color-mix(in srgb, var(--e1-cyan) 25%, transparent); }
.e1-hero__title { font-size: clamp(36px, 5.4vw, 76px); font-weight: 700; letter-spacing: -.035em; line-height: 1.02; color: #fff; margin-bottom: 20px; }
.e1-hero__title span { background: var(--e1-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.e1-hero__desc { max-width: 52ch; margin: 0 0 30px; font-size: 16.5px; line-height: 1.65; color: rgba(219, 231, 255, .78); }
.e1-hero__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.e1-hero__media { position: relative; display: flex; align-items: center; justify-content: center; min-height: 380px; }
.e1-hero__rings { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.e1-hero__rings span {
    position: absolute;
    width: var(--s);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    background: radial-gradient(circle, color-mix(in srgb, var(--e1-cyan) 10%, transparent) 0%, transparent 70%);
    animation: e1-pulse 6s ease-in-out infinite;
}
.e1-hero__rings span:nth-child(1) { --s: 62%; animation-delay: 0s; }
.e1-hero__rings span:nth-child(2) { --s: 84%; animation-delay: 1s; border-style: dashed; }
.e1-hero__rings span:nth-child(3) { --s: 106%; animation-delay: 2s; opacity: .6; }
.e1-hero__glow { position: absolute; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--e1-cyan) 45%, transparent), transparent 65%); filter: blur(30px); }
.e1-hero__img { position: relative; width: 88%; max-height: 500px; object-fit: contain; filter: drop-shadow(0 36px 40px rgba(0, 0, 0, .5)); animation: e1-float 7s ease-in-out infinite; }
.e1-hero__counter { position: absolute; left: 0; bottom: 0; font-size: 13px; letter-spacing: .12em; color: rgba(219, 231, 255, .6); font-variant-numeric: tabular-nums; }
.e1-hero__counter b { color: #fff; font-weight: 700; }
.e1-hero #sliderOne.owl-carousel .owl-dots {
    position: absolute;
    right: 0; left: auto;
    bottom: 28px;
    top: auto;
    display: flex;
    gap: 6px;
    margin: 0; padding: 0;
    z-index: 3;
}
.e1-hero #sliderOne.owl-carousel .owl-dots .owl-dot { width: 10px; height: 10px; margin: 0 !important; padding: 0 !important; border: 0; border-radius: 999px !important; background: rgba(255, 255, 255, .25); transition: width .25s, background .25s; }
.e1-hero #sliderOne.owl-carousel .owl-dots .owl-dot span { display: none; }
.e1-hero #sliderOne.owl-carousel .owl-dots .owl-dot.active { width: 28px; background: var(--e1-cyan); }
.e1-hero #sliderOne.owl-carousel .owl-nav { margin: 0; }
.e1-hero #sliderOne.owl-carousel .owl-nav button.owl-prev,
.e1-hero #sliderOne.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    width: 48px; height: 48px;
    margin: 0; padding: 0;
    transform: translateY(-50%);
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .08) !important;
    color: #fff !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2);
    backdrop-filter: blur(6px);
    display: grid; place-items: center;
    font-size: 13px;
    opacity: 0;
    transition: opacity .25s, background .2s;
    z-index: 3;
}
.e1-hero #sliderOne.owl-carousel .owl-nav button.owl-prev { left: 16px; }
.e1-hero #sliderOne.owl-carousel .owl-nav button.owl-next { right: 16px; }
.e1-hero:hover #sliderOne.owl-carousel .owl-nav button { opacity: 1; }
.e1-hero #sliderOne.owl-carousel .owl-nav button:hover { background: var(--e1-blue) !important; }
@keyframes e1-pulse { 0%, 100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.04); opacity: .6; } }
@keyframes e1-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---- Category chips ---------------------------------------------------- */
.e1-cats__grid { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 640px)  { .e1-cats__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 992px)  { .e1-cats__grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .e1-cats__grid { grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 14px; } }
.e1-chip {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 16px 10px 14px;
    border-radius: var(--e1-radius);
    background: var(--e1-card);
    box-shadow: inset 0 0 0 1px var(--e1-line), var(--e1-shadow);
    transition: transform .25s var(--e1-ease), box-shadow .25s;
}
.e1-chip:hover { transform: translateY(-4px); box-shadow: var(--e1-ring); }
.e1-chip__tile { width: 72px; height: 72px; border-radius: 18px; background: var(--e1-tint); display: grid; place-items: center; overflow: hidden; transition: background .2s; }
.e1-chip__tile img { width: 70%; height: 70%; object-fit: contain; transition: transform .35s var(--e1-ease); }
.e1-chip:hover .e1-chip__tile { background: var(--e1-tint-2); }
.e1-chip:hover .e1-chip__tile img { transform: scale(1.12); }
.e1-chip__name { font-size: 14px; font-weight: 700; line-height: 1.25; }
.e1-chip__count { font-size: 12px; color: var(--e1-muted); }

/* ---- Trust strip (feature-area) ---------------------------------------- */
.e1-trust {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: var(--e1-radius);
    background: var(--e1-card);
    box-shadow: inset 0 0 0 1px var(--e1-line), var(--e1-shadow);
    overflow: hidden;
}
@media (min-width: 640px)  { .e1-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .e1-trust { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.e1-trust__item { display: flex; align-items: center; gap: 14px; padding: 18px 22px; border-right: 1px solid var(--e1-line); border-bottom: 1px solid var(--e1-line); transition: background .2s; }
.e1-trust__item:hover { background: var(--e1-tint); }
@media (min-width: 1200px) { .e1-trust__item { border-bottom: 0; } .e1-trust__item:last-child { border-right: 0; } }
.e1-trust__icon { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: var(--e1-grad); color: #fff; display: grid; place-items: center; font-size: 17px; box-shadow: 0 10px 20px -10px color-mix(in srgb, var(--e1-blue) 80%, transparent); }
.e1-trust__icon img { width: 24px; height: 24px; object-fit: contain; filter: brightness(0) invert(1); }
.e1-trust__title { font-size: 15px; font-weight: 700; line-height: 1.2; }
.e1-trust__text { font-size: 12.5px; color: var(--e1-muted); margin-top: 2px; }

/* ---- Segmented tabs ---------------------------------------------------- */
.e1-seg { display: inline-flex; gap: 4px; padding: 4px; border-radius: 12px; background: var(--e1-tint); list-style: none; margin: 0; flex-wrap: wrap; }
.e1-seg li {
    padding: 9px 16px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    color: var(--e1-muted);
    cursor: pointer;
    transition: background .2s, color .2s, box-shadow .2s;
    user-select: none;
}
.e1-seg li:hover { color: var(--e1-ink); }
.e1-seg li.active { background: var(--e1-navy); color: #fff; box-shadow: 0 8px 18px -10px rgba(11, 18, 32, .6); }
body[data-theme="dark"] .e1-seg li.active { background: var(--e1-blue); }

/* ---- Product grid + card ----------------------------------------------- */
.e1-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px)  { .e1-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .e1-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; } }
.e1-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1400px) { .e1-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.e1 .qv-card-wrap { height: 100%; }
.e1-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--e1-radius) !important;
    background: var(--e1-card);
    box-shadow: inset 0 0 0 1px var(--e1-line), var(--e1-shadow);
    overflow: hidden;
    transition: transform .25s var(--e1-ease), box-shadow .25s;
}
.e1-card:hover { transform: translateY(-5px); box-shadow: var(--e1-ring); }
.e1-card__media { position: relative; aspect-ratio: 1; background: linear-gradient(160deg, var(--e1-tint) 0%, var(--e1-card) 100%); overflow: hidden; }
.e1-card__media > a { display: block; width: 100%; height: 100%; }
.e1-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 12%; transition: transform .5s var(--e1-ease); }
.e1-card:hover .e1-card__media img { transform: scale(1.07); }
.e1-card__tag { position: absolute; top: 12px; left: 12px; padding: 5px 9px; border-radius: 8px; background: var(--e1-grad); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em; z-index: 2; }
.e1-card__actions { position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column; gap: 6px; opacity: 0; transform: translateX(6px); transition: opacity .2s, transform .2s; z-index: 3; }
.e1-card:hover .e1-card__actions { opacity: 1; transform: none; }
.e1-card__icon { width: 36px; height: 36px; border: 0; border-radius: 10px !important; background: var(--e1-card); color: var(--e1-ink); box-shadow: 0 6px 16px -8px rgba(11, 18, 32, .5), inset 0 0 0 1px var(--e1-line); display: grid; place-items: center; font-size: 13px; cursor: pointer; transition: background .2s, color .2s; }
.e1-card__icon:hover { background: var(--e1-navy); color: #fff; }
.e1-card__icon .wishlist-icon-filled { color: #ef4444; }
.e1-card__cta {
    position: absolute;
    left: 10px; right: 10px; bottom: 10px;
    padding: 11px;
    border: 0;
    border-radius: var(--appearance-button-border-radius, 10px) !important;
    background: var(--e1-navy);
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateY(calc(100% + 14px));
    transition: transform .3s var(--e1-ease), background .2s;
    z-index: 3;
}
.e1-card:hover .e1-card__cta { transform: none; }
.e1-card__cta:hover { background: var(--e1-blue); color: #fff; }
@media (hover: none) { .e1-card__actions { opacity: 1; transform: none; } .e1-card__cta { transform: none; } }
.e1-card__body { display: flex; flex-direction: column; gap: 5px; padding: 14px 16px 16px; }
.e1-card__cat { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--e1-blue); }
.e1-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; }
.e1-card__price { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; font-size: 16px; font-weight: 700; }
.e1-card__price del { font-size: 12.5px; font-weight: 500; color: var(--e1-muted); }

/* ---- Promo tiles (banner-area) ----------------------------------------- */
.e1-promo__grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 992px) { .e1-promo__grid { grid-template-columns: 2fr 1fr; gap: 22px; } }
.e1-tile {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 280px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--e1-navy);
    color: #fff;
    isolation: isolate;
    box-shadow: var(--e1-shadow);
}
.e1-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--e1-ease); z-index: -2; }
.e1-tile:hover img { transform: scale(1.05); }
.e1-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11, 18, 32, .88) 0%, rgba(11, 18, 32, .55) 55%, rgba(11, 18, 32, .15) 100%); z-index: -1; }
.e1-tile--accent::after { background: linear-gradient(160deg, color-mix(in srgb, var(--e1-blue) 92%, transparent) 0%, color-mix(in srgb, var(--e1-cyan) 70%, transparent) 100%); }
.e1-tile__copy { position: relative; padding: 30px; max-width: 30rem; }
.e1-tile__small { display: inline-block; padding: 5px 10px; border-radius: 999px; background: rgba(255, 255, 255, .14); font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.e1-tile__title { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.12; color: #fff; margin-bottom: 16px; }
.e1-tile__link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; padding-bottom: 3px; border-bottom: 2px solid var(--e1-cyan); transition: gap .2s; }
.e1-tile:hover .e1-tile__link { gap: 14px; }

/* ---- Deal band (product-offer, owl #sliderTwo) ------------------------- */
.e1-deal { padding: clamp(28px, 4vw, 60px) 0; border-radius: 0; }
.e1-deal__badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, .1); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; }
.e1-deal__badge i { color: var(--e1-cyan); }
.e1-deal .owl-carousel .owl-stage-outer { padding: 8px 0 12px; margin: -8px 0 0; }
.e1-deal .owl-carousel .owl-item { padding: 0 2px; }
.e1-deal .owl-carousel .owl-item > div { height: 100%; }
.e1-deal .owl-carousel .owl-stage { display: flex; }
.e1-deal .owl-carousel .owl-dots { display: flex; justify-content: center; gap: 6px; margin-top: 18px; }
.e1-deal .owl-carousel .owl-dots .owl-dot { width: 8px; height: 8px; margin: 0 !important; padding: 0 !important; border: 0; border-radius: 999px !important; background: rgba(255, 255, 255, .25); transition: width .25s, background .25s; }
.e1-deal .owl-carousel .owl-dots .owl-dot span { display: none; }
.e1-deal .owl-carousel .owl-dots .owl-dot.active { width: 24px; background: var(--e1-cyan); }

/* ---- Arrivals (arrival-area) ------------------------------------------- */
.e1-arrivals__grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 992px) { .e1-arrivals__grid { grid-template-columns: minmax(0, 320px) minmax(0, 1fr); align-items: start; } }
.e1-side { display: flex; flex-direction: column; gap: 18px; }
.e1-catcard { position: relative; padding: 22px; border-radius: 22px; background: var(--e1-card); box-shadow: inset 0 0 0 1px var(--e1-line), var(--e1-shadow); overflow: hidden; }
.e1-catcard__thumb { display: flex; align-items: center; justify-content: center; height: 180px; margin-bottom: 16px; border-radius: 16px; background: var(--e1-tint); overflow: hidden; }
.e1-catcard__thumb img { max-height: 100%; width: auto; max-width: 100%; object-fit: contain; }
.e1-catcard__title { font-size: 22px; margin-bottom: 12px; }
.e1-catcard__subs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.e1-catcard__subs a { padding: 6px 10px; border-radius: 8px; background: var(--e1-bg); font-size: 12.5px; font-weight: 600; color: var(--e1-muted); transition: background .2s, color .2s; }
.e1-catcard__subs a:hover { background: var(--e1-tint-2); color: var(--e1-blue); }
.e1-sidebanner { position: relative; display: flex; align-items: flex-end; min-height: 220px; border-radius: 22px; overflow: hidden; background: var(--e1-navy); color: #fff; isolation: isolate; box-shadow: var(--e1-shadow); }
.e1-sidebanner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.e1-sidebanner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 18, 32, .05) 20%, rgba(11, 18, 32, .85) 100%); z-index: -1; }
.e1-sidebanner__copy { position: relative; padding: 22px; }
.e1-sidebanner__copy span { display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--e1-cyan); margin-bottom: 6px; }
.e1-sidebanner__copy h3 { font-size: 20px; line-height: 1.2; color: #fff; }
.e1-sidebanner__copy .e1-tile__link { margin-top: 10px; }
.e1-sidebanner.owl-carousel .owl-stage-outer, .e1-side .owl-carousel .owl-item { border-radius: 22px; }
.e1-side .owl-carousel .owl-dots { position: absolute; right: 16px; top: 16px; display: flex; gap: 5px; }
.e1-side .owl-carousel .owl-dots .owl-dot { width: 7px; height: 7px; margin: 0 !important; padding: 0 !important; border: 0; border-radius: 999px !important; background: rgba(255, 255, 255, .4); }
.e1-side .owl-carousel .owl-dots .owl-dot span { display: none; }
.e1-side .owl-carousel .owl-dots .owl-dot.active { background: var(--e1-cyan); }

/* ---- Spotlight (banner-slider, owl #productBannerSlider) ---------------- */
.e1-spot .owl-carousel, .e1-spot .owl-stage-outer { border-radius: 24px; }
.e1-spot__slide {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 20px;
    min-height: 360px;
    padding: clamp(24px, 4vw, 56px);
    border-radius: 24px;
    background: linear-gradient(120deg, var(--e1-blue-deep) 0%, var(--e1-blue) 60%, color-mix(in srgb, var(--e1-cyan) 70%, var(--e1-blue)) 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
@media (min-width: 992px) { .e1-spot__slide { grid-template-columns: 1fr 1fr; gap: 32px; } .e1-spot__slide.is-right { direction: rtl; } .e1-spot__slide.is-right > * { direction: ltr; } }
.e1-spot__slide::before { content: ''; position: absolute; width: 50%; aspect-ratio: 1; right: -10%; top: -30%; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, .22), transparent 65%); z-index: -1; }
.e1-spot__small { display: inline-block; padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, .14); font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.e1-spot__title { font-size: clamp(26px, 3.4vw, 46px); line-height: 1.06; color: inherit; margin-bottom: 22px; }
.e1-spot__img { display: flex; align-items: center; justify-content: center; }
.e1-spot__img img { max-height: 340px; width: auto; max-width: 100%; object-fit: contain; filter: drop-shadow(0 30px 34px rgba(0, 0, 0, .35)); }
.e1-spot .owl-dots { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); display: flex; gap: 6px; }
.e1-spot .owl-dots .owl-dot { width: 8px; height: 8px; margin: 0 !important; padding: 0 !important; border: 0; border-radius: 999px !important; background: rgba(255, 255, 255, .35); transition: width .25s, background .25s; }
.e1-spot .owl-dots .owl-dot span { display: none; }
.e1-spot .owl-dots .owl-dot.active { width: 24px; background: #fff; }

/* ---- New arrivals (owl #newProduct) ------------------------------------ */
.e1-new { position: relative; }
.e1-new .owl-carousel .owl-stage-outer { padding: 8px 0 12px; margin: -8px 0 0; }
.e1-new .owl-carousel .owl-stage { display: flex; }
.e1-new .owl-carousel .owl-item > div { height: 100%; }
.e1-new .owl-carousel .owl-nav { position: absolute; right: 0; top: -70px; display: flex; gap: 8px; margin: 0; }
.e1-new .owl-carousel .owl-nav button.owl-prev,
.e1-new .owl-carousel .owl-nav button.owl-next { position: static; width: 42px; height: 42px; margin: 0; padding: 0; border-radius: 12px !important; background: var(--e1-card) !important; color: var(--e1-ink) !important; box-shadow: inset 0 0 0 1px var(--e1-line), var(--e1-shadow); display: grid; place-items: center; font-size: 12px; transition: background .2s, color .2s; }
.e1-new .owl-carousel .owl-nav button:hover { background: var(--e1-navy) !important; color: #fff !important; }
.e1-new .owl-carousel .owl-nav button.disabled { opacity: .35; }
@media (max-width: 767.98px) { .e1-new .owl-carousel .owl-nav { position: static; justify-content: center; margin-top: 14px; } }

/* ---- Lists (product-list) ---------------------------------------------- */
.e1-lists__grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 768px)  { .e1-lists__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .e1-lists__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; } }
.e1-list { padding: 20px 20px 8px; border-radius: 22px; background: var(--e1-card); box-shadow: inset 0 0 0 1px var(--e1-line), var(--e1-shadow); }
.e1-list__title { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 18px; }
.e1-list__title::before { content: ''; width: 4px; height: 18px; border-radius: 2px; background: var(--e1-grad); }
.e1-row { display: grid; grid-template-columns: 68px 1fr; gap: 14px; align-items: center; padding: 12px 8px; margin: 0 -8px; border-top: 1px solid var(--e1-line); border-radius: 12px; transition: background .2s; }
.e1-row:first-of-type { border-top: 0; }
.e1-row:hover { background: var(--e1-tint); }
.e1-row__thumb { width: 68px; height: 68px; border-radius: 14px; background: var(--e1-tint); display: grid; place-items: center; overflow: hidden; }
.e1-row__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 10%; }
.e1-row__cat { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--e1-blue); }
.e1-row__name { font-size: 14px; font-weight: 600; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.e1-row__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 4px; }
.e1-row__stars { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--e1-muted); }
.e1-row__stars i { font-size: 10px; color: #f59e0b; }
.e1-row__stars i.is-empty { color: color-mix(in srgb, var(--e1-ink) 18%, transparent); }
.e1-row__price { font-size: 15px; font-weight: 700; }
.e1-row__price del { margin-left: 5px; font-size: 12px; font-weight: 500; color: var(--e1-muted); }

/* ---- News (owl #newsArticle) ------------------------------------------- */
.e1-news .owl-carousel .owl-stage-outer { padding: 8px 0 12px; margin: -8px 0 0; }
.e1-news .owl-carousel .owl-stage { display: flex; }
.e1-post { display: flex; flex-direction: column; height: 100%; border-radius: 22px; background: var(--e1-card); box-shadow: inset 0 0 0 1px var(--e1-line), var(--e1-shadow); overflow: hidden; transition: transform .25s var(--e1-ease), box-shadow .25s; }
.e1-post:hover { transform: translateY(-4px); box-shadow: var(--e1-ring); }
.e1-post__thumb { position: relative; display: block; aspect-ratio: 4 / 3; background: var(--e1-tint); overflow: hidden; }
.e1-post__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--e1-ease); }
.e1-post:hover .e1-post__thumb img { transform: scale(1.05); }
.e1-post__date { position: absolute; left: 14px; top: 14px; padding: 6px 10px; border-radius: 8px; background: rgba(11, 18, 32, .78); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; backdrop-filter: blur(6px); }
.e1-post__body { display: flex; flex-direction: column; gap: 8px; padding: 18px 20px 20px; }
.e1-post__tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--e1-blue); }
.e1-post__title { font-size: 17px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.e1-post__text { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--e1-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.e1-post__more { margin-top: auto; padding-top: 6px; font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.e1-post__more i { font-size: 11px; transition: transform .2s; }
.e1-post:hover .e1-post__more i { transform: translateX(4px); }

/* ---- Gallery ------------------------------------------------------------- */
.e1-shot { position: relative; display: block; aspect-ratio: 1; border-radius: 18px; background: var(--e1-tint); overflow: hidden; isolation: isolate; }
.e1-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--e1-ease); }
.e1-shot:hover img { transform: scale(1.06); }
.e1-shot::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11, 18, 32, .7) 100%); opacity: .9; }
.e1-shot__cap { position: absolute; left: 14px; bottom: 14px; padding: 7px 11px; border-radius: 999px; background: rgba(255, 255, 255, .92); color: var(--e1-navy); font-size: 12px; font-weight: 700; z-index: 1; }
.e1-gallery .swiper-pagination { position: static; display: flex; justify-content: center; gap: 6px; margin-top: 18px; }
.e1-gallery .swiper-pagination-bullet { width: 8px; height: 8px; margin: 0 !important; border-radius: 999px; background: var(--e1-ink); opacity: .2; transition: width .25s, opacity .25s, background .25s; }
.e1-gallery .swiper-pagination-bullet-active { width: 24px; opacity: 1; background: var(--e1-blue); }

/* ---- Subscribe ----------------------------------------------------------- */
.e1-subscribe { padding: clamp(36px, 5vw, 72px) 0; }
.e1-subscribe__grid { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: center; }
@media (min-width: 992px) { .e1-subscribe__grid { grid-template-columns: 1.15fr 1fr; gap: 48px; } }
.e1-subscribe__title { font-size: clamp(26px, 3.2vw, 42px); line-height: 1.06; color: #fff; margin-top: 12px; }
.e1-subscribe__form { display: flex; gap: 8px; padding: 6px; border-radius: 14px; background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18); backdrop-filter: blur(8px); transition: box-shadow .2s; }
.e1-subscribe__form:focus-within { box-shadow: inset 0 0 0 1px var(--e1-cyan), 0 0 0 4px color-mix(in srgb, var(--e1-cyan) 25%, transparent); }
.e1-subscribe__input { flex: 1; min-width: 0; padding: 12px 16px; border: 0; border-radius: 10px !important; background: transparent; color: #fff; font: inherit; font-size: 15px; outline: 0; }
.e1-subscribe__input::placeholder { color: rgba(219, 231, 255, .6); }
.e1-subscribe__hint { display: block; margin: 12px 0 0 6px; font-size: 12.5px; color: rgba(219, 231, 255, .6); }
@media (max-width: 480px) { .e1-subscribe__form { flex-direction: column; } .e1-subscribe__form .e1-btn { width: 100%; } }

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 991.98px) {
    .e1-hero__item { min-height: 0; padding: 40px 0 70px; }
    .e1-hero__grid { grid-template-columns: 1fr; gap: 26px; text-align: center; }
    .e1-hero__desc { margin-left: auto; margin-right: auto; }
    .e1-hero__actions { justify-content: center; }
    .e1-hero__media { min-height: 0; }
    .e1-hero__img { max-height: 320px; }
    .e1-hero__counter { display: none; }
    .e1-hero #sliderOne.owl-carousel .owl-dots { left: 50%; right: auto; transform: translateX(-50%); bottom: 24px; }
    .e1-hero #sliderOne.owl-carousel .owl-nav { display: none; }
    .e1-tile { min-height: 220px; }
}
@media (max-width: 575.98px) {
    .e1-head { margin-bottom: 18px; }
    .e1-seg li { padding: 8px 12px; font-size: 12.5px; }
    .e1-card__body { padding: 12px 12px 14px; }
    .e1-card__name { font-size: 13.5px; }
    .e1-tile__copy { padding: 22px; }
    .e1-spot__slide { min-height: 0; }
}
