/*
 * ShooBaby 2.0 visual layer
 * Loaded after the base Thonem storefront assets so framework behavior remains intact.
 */
:root {
    --sb-purple: #6c5ce7;
    --sb-purple-700: #4c3bc7;
    --sb-purple-100: #eeeaff;
    --sb-purple-50: #f8f6ff;
    --sb-peach: #ff8f70;
    --sb-peach-100: #fff0e9;
    --sb-rose: #ef6d91;
    --sb-mint: #68c9b4;
    --sb-mint-100: #e6f8f4;
    --sb-yellow: #f6c453;
    --sb-blue: #74a7f7;
    --sb-ink: #22213a;
    --sb-muted: #6b687c;
    --sb-line: #e9e6f0;
    --sb-surface: #ffffff;
    --sb-soft: #fbfaff;
    --sb-danger: #d73c62;
    --sb-success: #21856f;
    --sb-shadow-sm: 0 10px 30px rgba(43, 35, 84, .08);
    --sb-shadow-md: 0 24px 70px rgba(54, 41, 111, .14);
    --sb-radius-sm: 14px;
    --sb-radius-md: 24px;
    --sb-radius-lg: 36px;
    --sb-container: 1240px;
    --primary-color: var(--sb-purple);
    --primary-color-dark: var(--sb-purple-700);
}

.shoobaby-theme,
.shoobaby-theme button,
.shoobaby-theme input,
.shoobaby-theme select,
.shoobaby-theme textarea {
    font-family: "Cairo", Tahoma, Arial, sans-serif;
}

html[dir="ltr"] .shoobaby-theme,
html[dir="ltr"] .shoobaby-theme button,
html[dir="ltr"] .shoobaby-theme input,
html[dir="ltr"] .shoobaby-theme select,
html[dir="ltr"] .shoobaby-theme textarea {
    font-family: "Nunito", "Cairo", Arial, sans-serif;
}

.shoobaby-theme {
    margin: 0;
    color: var(--sb-ink);
    background: var(--sb-surface);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.shoobaby-theme *,
.shoobaby-theme *::before,
.shoobaby-theme *::after { box-sizing: border-box; }
.shoobaby-theme img { max-width: 100%; }
.shoobaby-theme a { color: inherit; text-decoration: none; }
.shoobaby-theme ::selection { background: var(--sb-purple); color: #fff; }
.shoobaby-theme :focus-visible { outline: 3px solid rgba(108, 92, 231, .35); outline-offset: 3px; }
.shoobaby-theme .container { width: min(calc(100% - 32px), var(--sb-container)); max-width: var(--sb-container); margin-inline: auto; }
.shoobaby-theme #main-content { min-height: 55vh; }
.shoobaby-theme .text-primary { color: var(--sb-purple) !important; }
.shoobaby-theme .bg-primary { background: var(--sb-purple) !important; }
.shoobaby-theme .section-space-p { padding-top: 72px; padding-bottom: 72px; }
.shoobaby-theme .section-space-mt { margin-top: 72px; }

.sb-skip-link {
    position: fixed;
    z-index: 10050;
    inset-inline-start: 16px;
    top: -100px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--sb-ink);
    color: #fff !important;
}
.sb-skip-link:focus { top: 16px; }

/* Buttons and controls */
.shoobaby-theme .btn,
.shoobaby-theme button.btn,
.shoobaby-theme a.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    padding: 10px 20px;
    font-weight: 800;
    border: 1px solid transparent;
    box-shadow: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.shoobaby-theme .btn-primary,
.shoobaby-theme .button.btn-primary,
.shoobaby-theme button.btn-primary {
    background: var(--sb-purple) !important;
    border-color: var(--sb-purple) !important;
    color: #fff !important;
}
.shoobaby-theme .btn-primary:hover,
.shoobaby-theme .button.btn-primary:hover,
.shoobaby-theme button.btn-primary:hover {
    background: var(--sb-purple-700) !important;
    border-color: var(--sb-purple-700) !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(108, 92, 231, .22);
}
.shoobaby-theme .btn-secondary,
.shoobaby-theme .btn-light,
.shoobaby-theme .btn-outline-secondary {
    background: var(--sb-purple-50) !important;
    border-color: var(--sb-line) !important;
    color: var(--sb-ink) !important;
}
.shoobaby-theme .btn-danger,
.shoobaby-theme .btn-outline-danger:hover { background: var(--sb-danger) !important; border-color: var(--sb-danger) !important; color: #fff !important; }
.shoobaby-theme .form-control,
.shoobaby-theme .form-select,
.shoobaby-theme input[type="text"],
.shoobaby-theme input[type="email"],
.shoobaby-theme input[type="password"],
.shoobaby-theme input[type="tel"],
.shoobaby-theme input[type="search"],
.shoobaby-theme input[type="number"],
.shoobaby-theme textarea,
.shoobaby-theme select {
    min-height: 48px;
    border: 1px solid var(--sb-line);
    border-radius: 13px;
    background: #fff;
    color: var(--sb-ink);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.shoobaby-theme .form-control:focus,
.shoobaby-theme .form-select:focus,
.shoobaby-theme input:focus,
.shoobaby-theme textarea:focus,
.shoobaby-theme select:focus {
    border-color: var(--sb-purple);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, .09);
    outline: 0;
}
.shoobaby-theme .modal-content { border: 0; border-radius: 24px; box-shadow: var(--sb-shadow-md); overflow: hidden; }
.shoobaby-theme .modal-header { border-bottom: 1px solid var(--sb-line); }
.shoobaby-theme .dropdown-menu { border: 1px solid var(--sb-line); border-radius: 16px; padding: 8px; box-shadow: var(--sb-shadow-sm); }
.shoobaby-theme .dropdown-item { border-radius: 10px; padding: 9px 12px; font-weight: 700; }
.shoobaby-theme .dropdown-item:hover { background: var(--sb-purple-50); color: var(--sb-purple); }

/* Header */
.sb-header { position: relative; z-index: 1010; background: rgba(255, 255, 255, .97); border-bottom: 1px solid rgba(233, 230, 240, .85); }
.sb-announcement { background: #241f43; color: #fff; font-size: 13px; }
.sb-announcement__inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.sb-announcement p { margin: 0; color: #fff; }
.sb-announcement__links { display: flex; align-items: center; gap: 20px; color: #e8e4ff; }
.sb-announcement__links button,
.sb-announcement__links a { padding: 0; border: 0; color: inherit; background: transparent; display: inline-flex; align-items: center; gap: 6px; font-size: inherit; }
.sb-announcement__links button:hover,
.sb-announcement__links a:hover { color: #fff; }
.sb-header-main { background: rgba(255,255,255,.97); }
.sb-header-grid { min-height: 90px; display: grid; grid-template-columns: 240px minmax(280px, 1fr) auto; align-items: center; gap: 28px; }
.sb-brand { display: inline-flex; align-items: center; width: 220px; }
.sb-brand img { display: block; width: 220px; height: auto; }
.sb-mobile-menu { display: none !important; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 13px; background: var(--sb-purple-50); color: var(--sb-purple); font-size: 22px; }
.sb-search { height: 52px; display: flex; align-items: center; border: 1px solid var(--sb-line); background: #faf9fd; border-radius: 17px; padding: 5px 6px 5px 14px; transition: .25s ease; }
html[dir="rtl"] .sb-search { padding: 5px 14px 5px 6px; }
.sb-search:focus-within { border-color: var(--sb-purple); background: #fff; box-shadow: 0 0 0 4px rgba(108, 92, 231, .08); }
.sb-search > i { flex: 0 0 auto; color: var(--sb-muted); font-size: 19px; margin-inline: 8px; }
.sb-search input { min-width: 0; flex: 1; height: 42px !important; min-height: 42px !important; border: 0 !important; outline: 0; background: transparent !important; box-shadow: none !important; padding: 0 8px !important; }
.sb-search input::placeholder { color: #8d899c; }
.sb-search button { flex: 0 0 auto; height: 40px; min-width: 76px; border: 0; border-radius: 12px; background: var(--sb-purple); color: #fff; font-weight: 800; }
.sb-search button:hover { background: var(--sb-purple-700); }
.sb-header-actions { display: flex; align-items: center; gap: 3px; }
.sb-action { position: relative; min-width: 58px; min-height: 58px; padding: 6px 9px; border: 0; border-radius: 13px; background: transparent; color: var(--sb-ink); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; font-size: 11px; font-weight: 800; white-space: nowrap; }
.sb-action:hover { background: var(--sb-purple-50); color: var(--sb-purple); }
.sb-action i { font-size: 21px; line-height: 1; }
.sb-language span { min-width: 30px; height: 24px; display: grid; place-items: center; padding-inline: 5px; border: 1.5px solid currentColor; border-radius: 7px; font-family: "Nunito", Arial, sans-serif; font-size: 11px; }
.sb-account-dropdown .dropdown-toggle::after { display: none; }
.sb-cart b { position: absolute; top: 2px; inset-inline-start: 7px; min-width: 20px; height: 20px; padding: 0 4px; display: grid; place-items: center; border-radius: 20px; border: 2px solid #fff; background: var(--sb-rose) !important; color: #fff !important; font-family: "Nunito", Arial, sans-serif; font-size: 10px; line-height: 1; }
.sb-mobile-search-wrap { display: none; }
.sb-main-nav { border-top: 1px solid #f0edf5; background: #fff; }
.sb-main-nav__inner { min-height: 52px; display: flex; align-items: center; gap: 22px; }
.sb-category-trigger { min-height: 38px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 12px; background: var(--sb-purple-50); color: var(--sb-purple); font-size: 13px; font-weight: 900; white-space: nowrap; }
.sb-menu-output { flex: 1; min-width: 0; }
.sb-menu-output > ul,
.sb-menu-output .ec-main-menu > ul { margin: 0; padding: 0; display: flex; align-items: center; justify-content: center; gap: clamp(14px, 1.8vw, 28px); list-style: none; }
.sb-menu-output li { position: relative; list-style: none; }
.sb-menu-output > ul > li > a,
.sb-menu-output .ec-main-menu > ul > li > a { min-height: 50px; display: inline-flex; align-items: center; color: var(--sb-ink); font-size: 14px; font-weight: 800; white-space: nowrap; }
.sb-menu-output > ul > li > a::after,
.sb-menu-output .ec-main-menu > ul > li > a::after { content: ""; position: absolute; inset-inline: 50%; bottom: 6px; height: 2px; border-radius: 3px; background: var(--sb-purple); transition: inset .2s ease; }
.sb-menu-output > ul > li:hover > a,
.sb-menu-output > ul > li.active > a { color: var(--sb-purple); }
.sb-menu-output > ul > li:hover > a::after,
.sb-menu-output > ul > li.active > a::after { inset-inline: 0; }
.sb-menu-output .sub-menu,
.sb-menu-output .mega-menu { border: 1px solid var(--sb-line) !important; border-radius: 18px !important; box-shadow: var(--sb-shadow-md) !important; overflow: hidden; }
.sb-nav-offer { display: inline-flex; align-items: center; gap: 5px; color: #c9365b; font-size: 13px; font-weight: 900; white-space: nowrap; }
.sb-mobile-drawer { background: #fff; }
.sb-mobile-drawer .ec-menu-title { min-height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; border-bottom: 1px solid var(--sb-line); }
.sb-mobile-drawer .ec-menu-title img { width: 170px; }
.sb-mobile-drawer .ec-close { width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 12px; background: var(--sb-purple-50); color: var(--sb-ink); font-size: 26px; }
.sb-mobile-drawer .ec-menu-content { padding: 10px 18px; }
.sb-mobile-drawer .ec-menu-content ul { list-style: none; margin: 0; padding: 0; }
.sb-mobile-drawer .ec-menu-content a { display: flex; align-items: center; justify-content: space-between; min-height: 48px; border-bottom: 1px solid #f0edf5; font-weight: 800; }
.sb-drawer-links { padding: 8px 18px 24px; display: grid; gap: 8px; }
.sb-drawer-links a,
.sb-drawer-links button { min-height: 46px; display: flex; align-items: center; gap: 10px; padding: 9px 13px; border: 0; border-radius: 12px; background: var(--sb-purple-50); color: var(--sb-ink); text-align: start; font-weight: 800; }
.sb-location-modal .modal-header { padding: 20px 22px 14px; background: linear-gradient(135deg, var(--sb-purple-50), var(--sb-peach-100)); }
.sb-location-modal .modal-title { margin: 2px 0 0; color: var(--sb-ink); font-weight: 900; }
.sb-modal-kicker { color: var(--sb-purple); font-size: 12px; font-weight: 900; }
.sb-location-modal .modal-body { padding: 22px; }
.sb-location-modal .modal-body p { color: var(--sb-muted); }
.sb-location-modal .form-label { font-weight: 800; }
.sb-location-modal .btn { margin-top: 14px; }

/* Home foundations */
.sb-section { padding: 88px 0; }
.sb-section-heading { margin-bottom: 36px; }
.sb-section-heading > span,
.sb-kicker { display: inline-block; margin-bottom: 7px; color: var(--sb-purple); font-size: 13px; font-weight: 900; letter-spacing: .02em; }
.sb-section-heading h2,
.sb-journey h2,
.sb-faq h2 { margin: 0; color: var(--sb-ink); font-size: clamp(28px, 3vw, 44px); line-height: 1.25; font-weight: 900; letter-spacing: -.035em; }
.sb-section-heading p { max-width: 650px; margin: 12px 0 0; color: var(--sb-muted); font-size: 16px; }
.sb-section-heading--center { text-align: center; }
.sb-section-heading--center p { margin-inline: auto; }
.sb-section-heading--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 22px; }
.sb-section-heading--split > a { display: inline-flex; align-items: center; gap: 6px; color: var(--sb-purple); font-weight: 900; white-space: nowrap; }
.sb-btn-soft { background: #fff !important; border-color: var(--sb-line) !important; color: var(--sb-ink) !important; box-shadow: var(--sb-shadow-sm) !important; }
.sb-btn-soft:hover { border-color: var(--sb-purple) !important; color: var(--sb-purple) !important; transform: translateY(-1px); }

/* Homepage spotlight */
.sb-hero { position: relative; min-height: 650px; overflow: hidden; background: linear-gradient(125deg, #faf8ff 0%, #f7f4ff 44%, #fff2ec 100%); }
.sb-hero::before { content: ""; position: absolute; inset: 0; opacity: .36; background-image: radial-gradient(rgba(108,92,231,.13) 1.2px, transparent 1.2px); background-size: 26px 26px; -webkit-mask-image: linear-gradient(to left, #000, transparent 62%); mask-image: linear-gradient(to left, #000, transparent 62%); }
html[dir="ltr"] .sb-hero::before { -webkit-mask-image: linear-gradient(to right, #000, transparent 62%); mask-image: linear-gradient(to right, #000, transparent 62%); }
.sb-hero__grid { position: relative; z-index: 2; min-height: 650px; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 50px; padding-top: 54px; padding-bottom: 90px; }
.sb-hero__content { max-width: 590px; }
.sb-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; margin-bottom: 18px; border: 1px solid #e3dcff; border-radius: 999px; background: rgba(255,255,255,.75); color: var(--sb-purple); font-size: 13px; font-weight: 900; }
.sb-hero h1 { margin: 0; color: var(--sb-ink); font-size: clamp(42px, 5.5vw, 72px); line-height: 1.17; font-weight: 900; letter-spacing: -.055em; }
.sb-hero h1 span { color: var(--sb-purple); }
.sb-hero__content > p { max-width: 570px; margin: 22px 0 0; color: var(--sb-muted); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.9; }
.sb-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.sb-hero__actions .btn { min-height: 52px; padding: 12px 22px; }
.sb-hero__trust { margin: 24px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 18px; list-style: none; color: #4e4b62; font-size: 13px; font-weight: 800; }
.sb-hero__trust li { display: flex; align-items: center; gap: 6px; }
.sb-hero__trust i { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--sb-mint-100); color: var(--sb-success); font-size: 10px; }
.sb-hero__visual { position: relative; min-height: 500px; display: grid; place-items: center; }
.sb-hero__blob { position: absolute; border-radius: 50%; filter: blur(1px); }
.sb-hero__blob--one { width: 320px; height: 320px; top: -130px; inset-inline-end: -100px; background: rgba(108,92,231,.09); }
.sb-hero__blob--two { width: 260px; height: 260px; bottom: 50px; inset-inline-start: -130px; background: rgba(255,143,112,.11); }
.sb-rating-card,
.sb-delivery-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.8); border-radius: 17px; background: rgba(255,255,255,.93); color: var(--sb-ink); box-shadow: var(--sb-shadow-sm); backdrop-filter: blur(8px); }
.sb-rating-card { top: 30px; inset-inline-start: -12px; padding: 11px 14px; }
.sb-rating-card > div:last-child { display: grid; }
.sb-rating-card b { font-size: 13px; }
.sb-rating-card span { color: var(--sb-yellow); font-size: 12px; letter-spacing: 1px; }
.sb-avatar-stack { display: flex; direction: ltr; }
.sb-avatar-stack span { width: 34px; height: 34px; margin-inline-start: -9px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; background: var(--sb-peach-100); font-size: 18px; }
.sb-avatar-stack span:first-child { margin-inline-start: 0; }
.sb-delivery-card { bottom: 38px; inset-inline-end: -6px; padding: 12px 15px; border: 0; text-align: start; }
.sb-delivery-card > span { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; background: var(--sb-mint-100); font-size: 22px; }
.sb-delivery-card div { display: grid; }
.sb-delivery-card b { font-size: 13px; }
.sb-delivery-card small { color: var(--sb-muted); font-size: 11px; }
.sb-hero-slider { width: min(100%, 560px); height: 480px; border-radius: 42% 58% 52% 48% / 42% 42% 58% 58%; background: linear-gradient(145deg, #dfd8ff, #ffdcd0); box-shadow: var(--sb-shadow-md); overflow: hidden; }
.sb-hero-slider .swiper-slide { height: 100%; }
.sb-hero-slide-image { width: 100%; height: 100%; object-fit: cover; }
.sb-hero-slider .swiper-pagination-bullet-active { background: var(--sb-purple); }
.sb-baby-illustration { position: relative; width: min(100%, 520px); aspect-ratio: 1 / .94; display: grid; place-items: center; border-radius: 42% 58% 52% 48% / 42% 42% 58% 58%; background: linear-gradient(145deg, #ded7ff, #ffe0d4); box-shadow: var(--sb-shadow-md); }
.sb-baby-illustration::before { content: ""; position: absolute; inset: 8%; border: 2px dashed rgba(108,92,231,.15); border-radius: 50%; }
.sb-illustration-main { position: relative; z-index: 2; width: 68%; min-height: 250px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 34px; border-radius: 38px; background: rgba(255,255,255,.82); box-shadow: 0 18px 50px rgba(64,48,122,.12); text-align: center; transform: rotate(-2deg); }
html[dir="rtl"] .sb-illustration-main { transform: rotate(2deg); }
.sb-illustration-main img { width: min(100%, 320px); }
.sb-illustration-baby { display: grid; place-items: center; width: 84px; height: 84px; margin-top: 12px; border-radius: 50%; background: var(--sb-peach-100); font-size: 54px; }
.sb-illustration-main small { margin-top: 8px; color: var(--sb-rose); font-weight: 900; }
.sb-illustration-orbit { position: absolute; z-index: 3; width: 70px; height: 70px; display: grid; place-items: center; border: 6px solid rgba(255,255,255,.8); border-radius: 22px; background: #fff; box-shadow: var(--sb-shadow-sm); font-size: 34px; animation: sbFloat 4s ease-in-out infinite; }
.sb-orbit-one { top: 12%; inset-inline-end: 7%; }
.sb-orbit-two { bottom: 12%; inset-inline-start: 7%; animation-delay: -.9s; }
.sb-orbit-three { top: 43%; inset-inline-start: 0; animation-delay: -1.8s; }
.sb-wave { position: absolute; z-index: 3; inset-inline: 0; bottom: -1px; height: 75px; }
.sb-wave svg { width: 100%; height: 100%; }
.sb-wave path { fill: #fff; }
@keyframes sbFloat { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-10px) rotate(2deg); } }

/* Categories */
.sb-categories { background: #fff; }
.sb-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sb-category-card { position: relative; min-height: 235px; padding: 22px 20px 20px; border: 1px solid transparent; border-radius: 26px; overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.sb-category-card:hover { transform: translateY(-5px); box-shadow: var(--sb-shadow-sm); border-color: rgba(108,92,231,.12); }
.sb-category-card__art { width: 100px; height: 100px; margin: 0 auto 12px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.68); }
.sb-category-card__art > span { font-size: 50px; line-height: 1; }
.sb-category-image { width: 88px; height: 88px; object-fit: contain; }
.sb-category-card h3 { margin: 0; color: var(--sb-ink); font-size: 17px; font-weight: 900; text-align: center; }
.sb-category-card p { margin: 4px 0 0; color: var(--sb-muted); font-size: 12px; text-align: center; }
.sb-category-card > b { position: absolute; inset-inline-end: 16px; bottom: 13px; color: rgba(34,33,58,.55); font-size: 20px; }
html[dir="ltr"] .sb-category-card > b { transform: scaleX(-1); }
.sb-category-card--lavender { background: #f0edff; }
.sb-category-card--peach { background: #fff0e9; }
.sb-category-card--mint { background: #e7f8f4; }
.sb-category-card--yellow { background: #fff8dc; }
.sb-category-card--blue { background: #eaf2ff; }
.sb-category-card--rose { background: #fff0f5; }

/* Product cards */
.sb-products-section { background: var(--sb-soft); }
.sb-products-section--soft { background: #fff7f3; }
.sb-product-row { margin-inline: -9px; row-gap: 20px; }
.sb-product-column { padding-inline: 9px; margin-bottom: 0 !important; }
.sb-product-card { height: 100%; display: flex; flex-direction: column; border: 1px solid var(--sb-line); border-radius: 23px; background: #fff; overflow: hidden; box-shadow: 0 5px 18px rgba(43,35,84,.04); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.sb-product-card:hover { transform: translateY(-5px); border-color: rgba(108,92,231,.24); box-shadow: var(--sb-shadow-sm); }
.sb-product-media { position: relative; padding: 14px; background: linear-gradient(160deg, #fbfaff, #fff); overflow: hidden; }
.sb-product-image { display: grid; place-items: center; width: 100%; aspect-ratio: 1 / 1; border-radius: 17px; overflow: hidden; background: #fff; }
.sb-product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s ease; }
.sb-product-card:hover .sb-product-image img { transform: scale(1.035); }
.sb-product-badges { position: absolute; z-index: 3; top: 22px; inset-inline-start: 22px; display: flex; flex-wrap: wrap; gap: 5px; }
.sb-badge { min-width: 38px; height: 24px; display: inline-grid; place-items: center; padding: 0 8px; border-radius: 999px; color: #fff; font-size: 10px; font-weight: 900; line-height: 1; }
.sb-badge--new { background: var(--sb-mint); }
.sb-badge--sale { background: var(--sb-rose); }
.sb-product-heart { position: absolute; z-index: 4; top: 20px; inset-inline-end: 20px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--sb-line); border-radius: 50%; background: rgba(255,255,255,.94); color: var(--sb-ink); box-shadow: 0 6px 18px rgba(43,35,84,.08); }
.sb-product-heart:hover { background: var(--sb-rose); border-color: var(--sb-rose); color: #fff; }
.sb-product-quick-actions { position: absolute; z-index: 4; inset-inline-end: 20px; bottom: 20px; display: grid; gap: 7px; opacity: 0; transform: translateX(calc(14px * var(--sb-action-dir, 1))); transition: opacity .2s ease, transform .2s ease; }
html[dir="rtl"] .sb-product-quick-actions { --sb-action-dir: -1; }
.sb-product-card:hover .sb-product-quick-actions { opacity: 1; transform: translateX(0); }
.sb-product-quick-actions button { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--sb-line); border-radius: 11px; background: #fff; color: var(--sb-ink); box-shadow: 0 5px 16px rgba(43,35,84,.08); }
.sb-product-quick-actions button:hover { background: var(--sb-purple); border-color: var(--sb-purple); color: #fff; }
.sb-product-content { flex: 1; display: flex; flex-direction: column; padding: 17px 18px 18px !important; }
.sb-product-category { color: var(--sb-purple); font-size: 11px; font-weight: 900; }
.sb-product-title { margin: 5px 0 8px !important; min-height: 48px; font-size: 15px !important; line-height: 1.55 !important; font-weight: 900 !important; }
.sb-product-title a { color: var(--sb-ink) !important; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sb-product-title a:hover { color: var(--sb-purple) !important; }
.sb-product-meta { min-height: 22px; margin-top: auto; }
.sb-product-rating { display: flex !important; align-items: center; gap: 2px; color: #d9d6e0; }
.sb-product-rating i { font-size: 12px; }
.sb-product-rating i.fill { color: var(--sb-yellow) !important; }
.sb-product-rating small { margin-inline-start: 4px; color: var(--sb-muted); font-size: 10px; }
.sb-product-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; margin-top: 12px; }
.sb-product-price { display: grid !important; gap: 1px; }
.sb-product-price .old-price { color: #9a96aa !important; font-size: 11px !important; text-decoration: line-through; }
.sb-product-price .new-price { color: var(--sb-ink) !important; font-size: 17px !important; font-weight: 900 !important; }
.sb-add-to-cart { min-width: 42px; min-height: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 0 12px; border: 0; border-radius: 13px; background: var(--sb-purple); color: #fff; font-size: 12px; font-weight: 900; }
.sb-add-to-cart:hover { background: var(--sb-purple-700); }
.sb-add-to-cart i { font-size: 17px; }

/* Journey, bundles and benefits */
.sb-journey { position: relative; overflow: hidden; background: #241f43; color: #fff; }
.sb-journey::before { content: ""; position: absolute; width: 500px; height: 500px; inset-inline-end: -170px; top: -250px; border-radius: 50%; background: rgba(108,92,231,.35); }
.sb-journey__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.sb-journey h2 { color: #fff; }
.sb-journey__copy p { margin: 18px 0 24px; color: #d8d3ea; font-size: 16px; }
.sb-journey__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.sb-journey-step { min-height: 190px; padding: 20px 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.07); text-align: center; backdrop-filter: blur(8px); transition: transform .2s ease, background .2s ease; }
.sb-journey-step:hover { transform: translateY(-5px); background: rgba(255,255,255,.11); }
.sb-journey-step > span { font-size: 40px; }
.sb-journey-step b { margin-top: 8px; color: #fff; font-size: 24px; font-family: "Nunito", "Cairo", sans-serif; }
.sb-journey-step small { color: #d8d3ea; font-weight: 700; }
.sb-bundles { background: #fff; }
.sb-bundle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sb-bundle-card { position: relative; min-height: 270px; border-radius: 26px; overflow: hidden; background: var(--sb-purple-50); box-shadow: var(--sb-shadow-sm); }
.sb-bundle-image { width: 100%; height: 100%; min-height: 270px; object-fit: cover; transition: transform .35s ease; }
.sb-bundle-card:hover .sb-bundle-image { transform: scale(1.035); }
.sb-bundle-card > span { position: absolute; inset-inline: 18px; bottom: 16px; min-height: 44px; display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-radius: 13px; background: rgba(255,255,255,.93); color: var(--sb-ink); font-weight: 900; backdrop-filter: blur(8px); }
.sb-offer-banner { background: #fff; padding-top: 0; }
.sb-offer-banner a { display: block; border-radius: 28px; overflow: hidden; box-shadow: var(--sb-shadow-sm); }
.sb-offer-image { width: 100%; max-height: 520px; object-fit: cover; }
.sb-benefits { padding: 34px 0; background: #fff; border-top: 1px solid var(--sb-line); border-bottom: 1px solid var(--sb-line); }
.sb-benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.sb-benefit { min-height: 78px; display: flex; align-items: center; gap: 13px; padding: 10px 22px; border-inline-end: 1px solid var(--sb-line); }
.sb-benefit:last-child { border-inline-end: 0; }
.sb-benefit > span { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border-radius: 15px; background: var(--sb-purple-50); font-size: 25px; }
.sb-benefit div { display: grid; }
.sb-benefit b { color: var(--sb-ink); font-size: 14px; }
.sb-benefit small { color: var(--sb-muted); font-size: 11px; line-height: 1.5; }

/* Reviews, brands and FAQ */
.sb-reviews { background: linear-gradient(180deg, #fff, #faf8ff); }
.sb-review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sb-review-card { min-height: 270px; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--sb-line); border-radius: 24px; background: #fff; box-shadow: var(--sb-shadow-sm); }
.sb-review-stars { color: var(--sb-yellow); letter-spacing: 2px; }
.sb-review-card > p { margin: 18px 0 24px; color: #4f4b61; font-size: 15px; line-height: 1.9; }
.sb-review-card footer { margin-top: auto; display: flex; align-items: center; gap: 11px; }
.sb-review-avatar { width: 52px; height: 52px; flex: 0 0 52px; border-radius: 50%; object-fit: cover; }
.sb-review-avatar--fallback { display: grid; place-items: center; background: var(--sb-peach-100); font-size: 25px; }
.sb-review-card footer div { display: grid; }
.sb-review-card footer b { font-size: 13px; }
.sb-review-card footer small { color: var(--sb-muted); font-size: 11px; }
.sb-brands { background: #fff; padding-top: 62px; }
.sb-brand-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.sb-brand-grid a { min-height: 100px; display: grid; place-items: center; padding: 12px; border: 1px solid var(--sb-line); border-radius: 18px; background: #fff; filter: grayscale(1); opacity: .78; transition: filter .2s ease, opacity .2s ease, transform .2s ease, border-color .2s ease; }
.sb-brand-grid a:hover { filter: none; opacity: 1; transform: translateY(-3px); border-color: rgba(108,92,231,.25); }
.sb-brand-image { max-width: 150px; max-height: 70px; object-fit: contain; }
.sb-faq { background: #fff; }
.sb-faq__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 65px; align-items: start; }
.sb-faq__intro { position: sticky; top: 30px; }
.sb-faq__intro p { margin: 16px 0 22px; color: var(--sb-muted); }
.sb-faq-accordion .accordion-item { margin-bottom: 11px; border: 1px solid var(--sb-line); border-radius: 18px !important; overflow: hidden; background: #fff; }
.sb-faq-accordion .accordion-button { min-height: 64px; padding: 16px 20px; color: var(--sb-ink); background: #fff; box-shadow: none; font-weight: 900; }
.sb-faq-accordion .accordion-button:not(.collapsed) { color: var(--sb-purple); background: var(--sb-purple-50); }
.sb-faq-accordion .accordion-button::after { margin-inline-start: auto; margin-inline-end: 0; }
html[dir="rtl"] .sb-faq-accordion .accordion-button::after { margin-inline-start: 0; margin-inline-end: auto; }
.sb-faq-accordion .accordion-body { padding: 18px 20px 22px; color: var(--sb-muted); line-height: 1.9; }

/* Breadcrumbs and standard page headings */
.shoobaby-theme .ec-breadcrumb { margin: 0; padding: 18px 0; background: var(--sb-purple-50); border-bottom: 1px solid var(--sb-line); }
.shoobaby-theme .ec-breadcrumb .ec-breadcrumb-title { color: var(--sb-ink); font-weight: 900; }
.shoobaby-theme .ec-breadcrumb-list li,
.shoobaby-theme .ec-breadcrumb-list a { color: var(--sb-muted); }
.shoobaby-theme .section-title { margin-bottom: 28px; }
.shoobaby-theme .section-title .ec-bg-title { display: none; }
.shoobaby-theme .section-title .ec-title { margin: 0; color: var(--sb-ink); font-size: clamp(28px, 3vw, 42px); font-weight: 900; }
.shoobaby-theme .section-title .sub-title { margin-top: 8px; color: var(--sb-muted); }

/* Shop listing and filters */
.shoobaby-theme .ec-page-content { background: #fff; }
.shoobaby-theme .shop-cover-image { width: 100%; max-height: 420px; object-fit: cover; border-radius: 26px; box-shadow: var(--sb-shadow-sm); }
.shoobaby-theme .ec-shop-rightside > .ec-pro-list-top { min-height: 70px; align-items: center; margin-bottom: 24px; padding: 12px 14px; border: 1px solid var(--sb-line); border-radius: 18px; background: #fff; box-shadow: 0 8px 25px rgba(43,35,84,.05); }
.shoobaby-theme .ec-gl-btn .btn { width: 42px; height: 42px; min-height: 42px; padding: 0; border: 1px solid var(--sb-line); background: #fff; color: var(--sb-ink); }
.shoobaby-theme .ec-gl-btn .btn.active,
.shoobaby-theme .ec-gl-btn .btn:hover { background: var(--sb-purple) !important; color: #fff !important; border-color: var(--sb-purple) !important; }
.shoobaby-theme .ec-sort-select { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.shoobaby-theme .ec-sort-select .sort-by { color: var(--sb-muted); font-weight: 700; }
.shoobaby-theme .ec-sort-select select { min-width: 190px; min-height: 42px; border-radius: 12px; }
.shoobaby-theme .filter-sidebar { z-index: 1040; }
.shoobaby-theme .ec-sidebar-wrap { border: 1px solid var(--sb-line); border-radius: 22px; background: #fff; box-shadow: var(--sb-shadow-sm); overflow: hidden; }
.shoobaby-theme .ec-sidebar-block { padding: 20px; border-bottom: 1px solid var(--sb-line); }
.shoobaby-theme .ec-sidebar-title { margin: 0; color: var(--sb-ink); font-size: 16px; font-weight: 900; }
.shoobaby-theme .ec-sb-block-content { margin-top: 14px; }
.shoobaby-theme .ec-sidebar-block-item { color: var(--sb-muted); }
.shoobaby-theme .ec-sidebar-block-item a { color: inherit; }
.shoobaby-theme .ec-sidebar-block-item:hover { color: var(--sb-purple); }
.shoobaby-theme .ec-sidebar-heading { padding: 18px 20px; background: var(--sb-purple-50); }
.shoobaby-theme .ec-sidebar-heading h1 { color: var(--sb-ink); font-size: 20px; font-weight: 900; }
.shoobaby-theme .ui-slider .ui-slider-range { background: var(--sb-purple); }
.shoobaby-theme .ui-slider .ui-slider-handle { border-color: var(--sb-purple); background: #fff; }
.shoobaby-theme .ec-pro-pagination { margin-top: 34px; }
.shoobaby-theme .ec-pro-pagination a,
.shoobaby-theme .ec-pro-pagination span { border-radius: 10px; }

/* Product page */
.shoobaby-theme .single-pro-block { padding: 24px; border: 1px solid var(--sb-line); border-radius: 26px; background: #fff; box-shadow: var(--sb-shadow-sm); }
.shoobaby-theme .single-pro-img { border-radius: 20px; overflow: hidden; background: var(--sb-soft); }
.shoobaby-theme .single-pro-img img { width: 100%; object-fit: contain; }
.shoobaby-theme .single-nav-thumb { border: 1px solid var(--sb-line); border-radius: 13px; overflow: hidden; }
.shoobaby-theme .single-nav-thumb.slick-current { border-color: var(--sb-purple); }
.shoobaby-theme .ec-single-title { color: var(--sb-ink) !important; font-size: clamp(25px, 3vw, 38px) !important; line-height: 1.35 !important; font-weight: 900 !important; }
.shoobaby-theme .ec-single-rating-wrap { display: flex; align-items: center; gap: 10px; }
.shoobaby-theme .ec-single-rating i.fill { color: var(--sb-yellow) !important; }
.shoobaby-theme .ec-single-desc { color: var(--sb-muted); line-height: 1.9; }
.shoobaby-theme .ec-single-price .new-price { color: var(--sb-purple) !important; font-size: 28px !important; font-weight: 900 !important; }
.shoobaby-theme .ec-single-price .old-price { color: #9994a7 !important; }
.shoobaby-theme .ec-single-cart { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.shoobaby-theme .ec-single-cart .btn { min-height: 50px; }
.shoobaby-theme .qty-plus-minus,
.shoobaby-theme .cart-qty-plus-minus { border: 1px solid var(--sb-line) !important; border-radius: 13px !important; overflow: hidden; background: #fff; }
.shoobaby-theme .qty-plus-minus input,
.shoobaby-theme .cart-qty-plus-minus input { border: 0 !important; box-shadow: none !important; }
.shoobaby-theme .ec-single-wishlist { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--sb-line); border-radius: 13px; background: var(--sb-purple-50); color: var(--sb-purple); }
.shoobaby-theme .ec-pro-variation-inner { margin-bottom: 15px; }
.shoobaby-theme .ec-pro-variation-size li a,
.shoobaby-theme .ec-pro-variation-content li { border-radius: 10px !important; }
.shoobaby-theme .ec-pro-variation-size li.active a,
.shoobaby-theme .ec-pro-variation-content li.active { border-color: var(--sb-purple) !important; color: var(--sb-purple) !important; }
.shoobaby-theme .ec-single-pro-tab-wrapper { margin-top: 30px; border: 1px solid var(--sb-line); border-radius: 24px; background: #fff; overflow: hidden; }
.shoobaby-theme .ec-single-pro-tab-nav { padding: 8px; border-bottom: 1px solid var(--sb-line); background: var(--sb-soft); }
.shoobaby-theme .ec-single-pro-tab-nav .nav-link { border: 0; border-radius: 11px; color: var(--sb-muted); font-weight: 900; }
.shoobaby-theme .ec-single-pro-tab-nav .nav-link.active { background: var(--sb-purple); color: #fff; }
.shoobaby-theme .ec-single-pro-tab-content { padding: 24px; color: var(--sb-muted); }
.shoobaby-theme .ec-bundle-panel { border: 1px solid var(--sb-line); border-radius: 18px; background: var(--sb-purple-50); }
.shoobaby-theme .ec-bundle-choice { border-radius: 14px; }

/* Cart and checkout */
.shoobaby-theme .ec-cart-content,
.shoobaby-theme .ec-cart-summary,
.shoobaby-theme .ec-checkout-wrap,
.shoobaby-theme .ec-checkout-block,
.shoobaby-theme #order-summary-box { border: 1px solid var(--sb-line) !important; border-radius: 22px !important; background: #fff !important; box-shadow: var(--sb-shadow-sm) !important; overflow: hidden; }
.shoobaby-theme .cart-table-content { border-radius: 20px; overflow: hidden; }
.shoobaby-theme .cart-table-content thead { background: var(--sb-purple-50); }
.shoobaby-theme .cart-table-content th { color: var(--sb-ink); font-weight: 900; border-color: var(--sb-line); }
.shoobaby-theme .cart-table-content td { vertical-align: middle; border-color: var(--sb-line); }
.shoobaby-theme .ec-cart-pro-name a { color: var(--sb-ink); font-weight: 800; }
.shoobaby-theme .ec-cart-pro-name a:hover { color: var(--sb-purple); }
.shoobaby-theme .ec-cart-pro-price,
.shoobaby-theme .ec-cart-pro-subtotal { color: var(--sb-purple); font-weight: 900; }
.shoobaby-theme .ec-cart-pro-remove a { color: var(--sb-danger); }
.shoobaby-theme .ec-cart-summary .ec-sidebar-title,
.shoobaby-theme .ec-checkout-title,
.shoobaby-theme #order-summary-box .ec-sidebar-title { font-size: 20px; font-weight: 900; }
.shoobaby-theme .ec-cart-summary-total { padding-top: 14px; border-top: 1px solid var(--sb-line); }
.shoobaby-theme .ec-coupan-form { display: flex; gap: 8px; }
.shoobaby-theme .cart-notice-banner,
.shoobaby-theme .cart-points-banner { border: 1px solid rgba(108,92,231,.12); border-radius: 18px; background: var(--sb-purple-50); }
.shoobaby-theme .ec-checkout-wrap { padding: 24px; }
.shoobaby-theme .ec-checkout-title { margin-bottom: 18px; color: var(--sb-ink); }
.shoobaby-theme .funky-radio-card .card-content { border-color: var(--sb-line) !important; border-radius: 18px !important; }
.shoobaby-theme .funky-radio-card input:checked + .card-content { border-color: var(--sb-purple) !important; background: var(--sb-purple-50) !important; box-shadow: 0 8px 24px rgba(108,92,231,.12) !important; }
.shoobaby-theme .funky-radio-card .check-icon { background: var(--sb-purple) !important; }
.shoobaby-theme #btn-confirm-checkout { min-height: 54px; }
.shoobaby-theme .sticky-top { top: 24px !important; }

/* Accounts, dashboard and auth */
.shoobaby-theme .ha-auth-page,
.shoobaby-theme .ha-page,
.shoobaby-theme .hero-account { --ha-primary: var(--sb-purple); --ha-primary-dark: var(--sb-purple-700); --ha-ink: var(--sb-ink); --ha-muted: var(--sb-muted); --ha-line: var(--sb-line); --ha-soft: var(--sb-purple-50); }
.shoobaby-theme .ha-auth-story { background: linear-gradient(145deg, #241f43, #4c3bc7) !important; }
.shoobaby-theme .ha-brand-mark { background: var(--sb-purple-100) !important; color: var(--sb-purple) !important; }
.shoobaby-theme .ha-btn--primary,
.shoobaby-theme .ha-btn-primary,
.shoobaby-theme .ha-btn:not(.ha-btn--neutral):not(.ha-btn-light):not(.ha-btn-danger) { background: var(--sb-purple); border-color: var(--sb-purple); color: #fff; }
.shoobaby-theme .ha-card,
.shoobaby-theme .ha-table-wrap,
.shoobaby-theme .ha-form-panel,
.shoobaby-theme .ha-hero { border-color: var(--sb-line); border-radius: 22px; box-shadow: var(--sb-shadow-sm); }
.shoobaby-theme .ha-hero { background: linear-gradient(135deg, var(--sb-purple-50), #fff4ef); }
.shoobaby-theme .ha-title,
.shoobaby-theme .ha-section-title,
.shoobaby-theme .ha-card-title { color: var(--sb-ink); }
.shoobaby-theme .notification-page-wrapper { border: 1px solid var(--sb-line); border-radius: 24px; background: #fff; box-shadow: var(--sb-shadow-sm); overflow: hidden; }
.shoobaby-theme .notification-sidebar { background: var(--sb-soft); border-inline-end: 1px solid var(--sb-line); }
.shoobaby-theme .notification-filters .filter-link.active { background: var(--sb-purple); color: #fff; }

/* Blog */
.shoobaby-theme .modern-blog-card,
.shoobaby-theme .post-content,
.shoobaby-theme .comment-form-box { border: 1px solid var(--sb-line); border-radius: 22px; background: #fff; box-shadow: var(--sb-shadow-sm); overflow: hidden; }
.shoobaby-theme .modern-blog-card .post-title a,
.shoobaby-theme .post-header h1 { color: var(--sb-ink); font-weight: 900; }
.shoobaby-theme .modern-blog-card .post-title a:hover { color: var(--sb-purple); }
.shoobaby-theme .category-badge { background: var(--sb-purple) !important; color: #fff !important; }
.shoobaby-theme .post-excerpt,
.shoobaby-theme .post-content { color: var(--sb-muted); line-height: 1.9; }

/* Footer */
.sb-footer { margin-top: 0 !important; background: #241f43; color: #fff; }
.sb-footer-newsletter { padding: 0 0 22px; background: #fff; }
.sb-newsletter-card { min-height: 145px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 28px 34px; border-radius: 28px; background: linear-gradient(120deg, var(--sb-purple-100), #fff0e9); box-shadow: var(--sb-shadow-sm); }
.sb-newsletter-copy { display: flex; align-items: center; gap: 16px; }
.sb-newsletter-copy > span { width: 58px; height: 58px; flex: 0 0 58px; display: grid; place-items: center; border-radius: 18px; background: #fff; font-size: 30px; }
.sb-newsletter-copy div { display: grid; }
.sb-newsletter-copy b { color: var(--sb-ink); font-size: 20px; }
.sb-newsletter-copy p { margin: 4px 0 0; color: var(--sb-muted); }
.sb-newsletter-form { width: min(100%, 460px); height: 54px; display: flex; align-items: center; padding: 5px; border: 1px solid rgba(108,92,231,.16); border-radius: 16px; background: #fff; }
.sb-newsletter-form input { flex: 1; min-width: 0; height: 42px !important; min-height: 42px !important; border: 0 !important; box-shadow: none !important; background: transparent; padding-inline: 13px; }
.sb-newsletter-form button { height: 42px; display: inline-flex; align-items: center; gap: 7px; padding: 0 18px; border: 0; border-radius: 12px; background: var(--sb-purple); color: #fff; font-weight: 900; white-space: nowrap; }
.sb-footer-main { padding: 70px 0 24px; background: #241f43; }
.sb-footer-grid { display: grid; grid-template-columns: 1.4fr .75fr .9fr 1.1fr; gap: 44px; }
.sb-footer-brand img { width: 220px; filter: brightness(0) invert(1); }
.sb-footer-brand > p { max-width: 390px; margin: 18px 0; color: #cfc9e2; font-size: 14px; }
.sb-footer-social { display: flex; gap: 8px; }
.sb-footer-social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 11px; color: #fff; }
.sb-footer-social a:hover { background: var(--sb-purple); border-color: var(--sb-purple); }
.sb-footer-column h2 { margin: 0 0 16px; color: #fff; font-size: 16px; font-weight: 900; }
.sb-footer-column ul { margin: 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.sb-footer-column li,
.sb-footer-column a { color: #cfc9e2; font-size: 13px; }
.sb-footer-column a:hover { color: #fff; }
.sb-footer-contact li { display: flex; align-items: flex-start; gap: 9px; }
.sb-footer-contact i { margin-top: 5px; color: #bdb4ff; }
.sb-payment-logos { width: 190px; height: auto; margin-top: 18px; filter: brightness(0) invert(1); opacity: .8; }
.sb-footer-menu-output { margin-top: 35px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.sb-footer-menu-output > ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin: 0; padding: 0; list-style: none; }
.sb-footer-menu-output a { color: #cfc9e2; font-size: 12px; }
.sb-footer-bottom { min-height: 70px; margin-top: 18px; padding-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.sb-footer-bottom p { margin: 0; color: #cfc9e2; font-size: 12px; }
.sb-footer-bottom p a { color: #fff; font-weight: 900; }
.sb-footer-bottom div { display: flex; gap: 16px; }
.sb-footer-bottom div a { color: #cfc9e2; font-size: 12px; }

/* Toasts, side panels and utility widgets */
.shoobaby-theme #toast-container > div { border-radius: 14px; box-shadow: var(--sb-shadow-md); }
.shoobaby-theme .ec-side-cart,
.shoobaby-theme .ec-side-cat-overlay { z-index: 1090; }
.shoobaby-theme .ec-side-cart { background: #fff; }
.shoobaby-theme .ec-side-cart .ec-cart-inner { color: var(--sb-ink); }
.shoobaby-theme .ec-style .ec-panel { border-radius: 18px; overflow: hidden; box-shadow: var(--sb-shadow-md); }
.shoobaby-theme .ec-style .ec-header { background: var(--sb-purple); }
.shoobaby-theme .ec-style .ec-button { box-shadow: 0 8px 30px rgba(35,31,67,.22); }
.shoobaby-theme .hero-tracking-consent { border-radius: 18px !important; }
.shoobaby-theme .hero-tracking-consent__accept { background: var(--sb-purple) !important; }

/* RTL and LTR corrections */
html[dir="rtl"] .shoobaby-theme .ms-3 { margin-left: 0 !important; margin-right: 1rem !important; }
html[dir="rtl"] .shoobaby-theme .me-1 { margin-right: 0 !important; margin-left: .25rem !important; }
html[dir="rtl"] .shoobaby-theme .me-2 { margin-right: 0 !important; margin-left: .5rem !important; }
html[dir="rtl"] .shoobaby-theme .text-left { text-align: right !important; }
html[dir="rtl"] .shoobaby-theme .text-right { text-align: left !important; }
html[dir="rtl"] .shoobaby-theme input[type="tel"],
html[dir="rtl"] .shoobaby-theme .ha-phone-ltr { direction: ltr; text-align: left; }
html[dir="ltr"] .shoobaby-theme .sb-category-card > b,
html[dir="ltr"] .shoobaby-theme .sb-bundle-card i { transform: scaleX(-1); }

/* Responsive */
@media (max-width: 1199px) {
    .sb-header-grid { grid-template-columns: 205px minmax(240px, 1fr) auto; gap: 18px; }
    .sb-brand, .sb-brand img { width: 200px; }
    .sb-action { min-width: 52px; padding-inline: 7px; }
    .sb-wishlist { display: none; }
    .sb-category-grid { grid-template-columns: repeat(3, 1fr); }
    .sb-journey__grid { gap: 40px; }
    .sb-journey__steps { grid-template-columns: repeat(2, 1fr); }
    .sb-brand-grid { grid-template-columns: repeat(4, 1fr); }
    .sb-footer-grid { grid-template-columns: 1.2fr .8fr .9fr; }
    .sb-footer-contact { grid-column: span 3; }
    .sb-footer-contact ul { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .shoobaby-theme .container { width: min(calc(100% - 28px), var(--sb-container)); }
    .sb-announcement__links a { display: none; }
    .sb-header-grid { min-height: 76px; grid-template-columns: 44px 1fr auto; gap: 10px; }
    .sb-mobile-menu { display: inline-flex !important; }
    .sb-brand { width: 176px; justify-self: start; }
    .sb-brand img { width: 176px; }
    .sb-header-grid > .sb-search { display: none; }
    .sb-header-actions .sb-language,
    .sb-header-actions .sb-account-dropdown,
    .sb-header-actions > .sb-action:not(.sb-cart),
    .sb-header-actions > a:not(.sb-cart) { display: none; }
    .sb-cart { width: 46px; min-width: 46px; min-height: 46px; background: var(--sb-purple-50); }
    .sb-cart span { display: none; }
    .sb-cart b { top: -4px; inset-inline-start: -2px; }
    .sb-mobile-search-wrap { display: block; padding: 0 0 13px; }
    .sb-search--mobile { height: 48px; }
    .sb-search--mobile button { min-width: 45px; width: 45px; }
    .sb-main-nav { display: none; }
    .sb-hero__grid { min-height: auto; grid-template-columns: 1fr; gap: 34px; padding-top: 48px; padding-bottom: 100px; }
    .sb-hero__content { max-width: 700px; text-align: center; margin-inline: auto; }
    .sb-hero__content > p { margin-inline: auto; }
    .sb-hero__actions,
    .sb-hero__trust { justify-content: center; }
    .sb-hero__visual { min-height: 470px; }
    .sb-baby-illustration,
    .sb-hero-slider { width: min(100%, 500px); }
    .sb-category-grid { grid-template-columns: repeat(3, 1fr); }
    .sb-journey__grid { grid-template-columns: 1fr; }
    .sb-journey__copy { text-align: center; }
    .sb-bundle-grid { grid-template-columns: 1fr 1fr; }
    .sb-bundle-card:last-child:nth-child(odd) { grid-column: span 2; }
    .sb-benefits__grid { grid-template-columns: 1fr 1fr; }
    .sb-benefit:nth-child(2) { border-inline-end: 0; }
    .sb-benefit:nth-child(-n+2) { border-bottom: 1px solid var(--sb-line); }
    .sb-review-grid { grid-template-columns: 1fr 1fr; }
    .sb-review-card:last-child:nth-child(odd) { grid-column: span 2; }
    .sb-faq__grid { grid-template-columns: 1fr; gap: 30px; }
    .sb-faq__intro { position: static; text-align: center; }
    .sb-newsletter-card { flex-direction: column; align-items: stretch; }
    .sb-newsletter-form { width: 100%; }
    .shoobaby-theme .single-pro-block { padding: 18px; }
    .shoobaby-theme .ec-checkout-rightside { margin-top: 24px; }
}

@media (max-width: 767px) {
    .sb-section { padding: 68px 0; }
    .shoobaby-theme .section-space-p { padding-top: 52px; padding-bottom: 52px; }
    .sb-announcement__inner { justify-content: center; text-align: center; }
    .sb-announcement__links { display: none; }
    .sb-hero h1 { font-size: clamp(38px, 11vw, 56px); }
    .sb-hero__visual { min-height: 400px; }
    .sb-baby-illustration { width: min(100%, 420px); }
    .sb-illustration-main { min-height: 210px; padding: 24px; }
    .sb-rating-card { top: 0; inset-inline-start: 0; }
    .sb-delivery-card { bottom: 10px; inset-inline-end: 0; }
    .sb-category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .sb-category-card { min-height: 205px; padding: 16px 13px; border-radius: 21px; }
    .sb-category-card__art { width: 82px; height: 82px; }
    .sb-category-card__art > span { font-size: 42px; }
    .sb-section-heading--split { align-items: flex-start; flex-direction: column; }
    .sb-journey__steps { gap: 10px; }
    .sb-journey-step { min-height: 160px; }
    .sb-bundle-grid { grid-template-columns: 1fr; }
    .sb-bundle-card:last-child:nth-child(odd) { grid-column: auto; }
    .sb-review-grid { grid-template-columns: 1fr; }
    .sb-review-card:last-child:nth-child(odd) { grid-column: auto; }
    .sb-brand-grid { grid-template-columns: repeat(3, 1fr); }
    .sb-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 22px; }
    .sb-footer-brand { grid-column: span 2; }
    .sb-footer-contact { grid-column: span 2; }
    .sb-footer-contact ul { grid-template-columns: 1fr; }
    .sb-footer-bottom { flex-direction: column; justify-content: center; text-align: center; }
    .shoobaby-theme .ec-shop-rightside > .ec-pro-list-top { flex-wrap: wrap; gap: 10px; }
    .shoobaby-theme .ec-sort-select { justify-content: flex-start; width: 100%; }
    .shoobaby-theme .ec-sort-select select { min-width: 0; width: 100%; }
    .shoobaby-theme .cart-table-content table,
    .shoobaby-theme .cart-table-content tbody,
    .shoobaby-theme .cart-table-content tr,
    .shoobaby-theme .cart-table-content td { display: block; width: 100%; }
    .shoobaby-theme .cart-table-content thead { display: none; }
    .shoobaby-theme .cart-table-content tr { margin-bottom: 14px; padding: 14px; border: 1px solid var(--sb-line); border-radius: 16px; }
    .shoobaby-theme .cart-table-content td { padding: 8px 0; border: 0; text-align: start !important; }
}

@media (max-width: 575px) {
    .shoobaby-theme .container { width: min(calc(100% - 22px), var(--sb-container)); }
    .sb-header-grid { grid-template-columns: 42px 1fr 44px; }
    .sb-brand { width: 150px; }
    .sb-brand img { width: 150px; }
    .sb-hero__grid { padding-top: 38px; }
    .sb-eyebrow { font-size: 11px; }
    .sb-hero__actions { display: grid; grid-template-columns: 1fr; }
    .sb-hero__actions .btn { width: 100%; }
    .sb-hero__trust { gap: 9px 13px; font-size: 11px; }
    .sb-hero__visual { min-height: 350px; }
    .sb-illustration-main { width: 75%; min-height: 180px; padding: 20px; border-radius: 28px; }
    .sb-illustration-baby { width: 66px; height: 66px; font-size: 42px; }
    .sb-illustration-orbit { width: 55px; height: 55px; border-width: 4px; border-radius: 17px; font-size: 27px; }
    .sb-rating-card { padding: 8px 10px; transform: scale(.9); transform-origin: top left; }
    html[dir="rtl"] .sb-rating-card { transform-origin: top right; }
    .sb-delivery-card { max-width: 235px; padding: 9px 11px; }
    .sb-delivery-card > span { width: 38px; height: 38px; }
    .sb-delivery-card b { font-size: 11px; }
    .sb-delivery-card small { font-size: 9px; }
    .sb-section-heading h2,
    .sb-journey h2,
    .sb-faq h2 { font-size: 28px; }
    .sb-category-card h3 { font-size: 14px; }
    .sb-category-card p { font-size: 10px; }
    .sb-product-column { padding-inline: 5px; }
    .sb-product-row { margin-inline: -5px; row-gap: 10px; }
    .sb-product-card { border-radius: 18px; }
    .sb-product-media { padding: 8px; }
    .sb-product-image { border-radius: 13px; }
    .sb-product-heart { top: 12px; inset-inline-end: 12px; width: 32px; height: 32px; }
    .sb-product-badges { top: 13px; inset-inline-start: 13px; }
    .sb-badge { min-width: 32px; height: 20px; padding-inline: 6px; font-size: 9px; }
    .sb-product-quick-actions { display: none; }
    .sb-product-content { padding: 12px !important; }
    .sb-product-category { font-size: 9px; }
    .sb-product-title { min-height: 42px; font-size: 12px !important; line-height: 1.55 !important; }
    .sb-product-rating i { font-size: 9px; }
    .sb-product-price .new-price { font-size: 13px !important; }
    .sb-product-price .old-price { font-size: 9px !important; }
    .sb-add-to-cart { width: 36px; min-width: 36px; height: 36px; min-height: 36px; padding: 0; border-radius: 11px; }
    .sb-add-to-cart span { display: none; }
    .sb-journey__steps { grid-template-columns: 1fr 1fr; }
    .sb-benefits__grid { grid-template-columns: 1fr; }
    .sb-benefit { border-inline-end: 0; border-bottom: 1px solid var(--sb-line); }
    .sb-benefit:last-child { border-bottom: 0; }
    .sb-brand-grid { grid-template-columns: repeat(2, 1fr); }
    .sb-newsletter-card { padding: 22px 18px; border-radius: 22px; }
    .sb-newsletter-copy > span { width: 48px; height: 48px; flex-basis: 48px; font-size: 25px; }
    .sb-newsletter-copy b { font-size: 16px; }
    .sb-newsletter-copy p { font-size: 12px; }
    .sb-newsletter-form { height: auto; padding: 0; display: grid; grid-template-columns: 1fr; gap: 8px; border: 0; background: transparent; }
    .sb-newsletter-form input { height: 48px !important; border: 1px solid var(--sb-line) !important; border-radius: 13px; background: #fff !important; }
    .sb-newsletter-form button { height: 46px; justify-content: center; }
    .sb-footer-grid { grid-template-columns: 1fr; }
    .sb-footer-brand,
    .sb-footer-contact { grid-column: auto; }
    .sb-footer-brand img { width: 190px; }
    .shoobaby-theme .single-pro-block { padding: 12px; border-radius: 20px; }
    .shoobaby-theme .ec-single-title { font-size: 24px !important; }
    .shoobaby-theme .ec-single-pro-tab-nav { overflow-x: auto; flex-wrap: nowrap; }
    .shoobaby-theme .ec-single-pro-tab-nav .nav-link { white-space: nowrap; }
    .shoobaby-theme .ec-coupan-form { flex-direction: column; }
}

@media (hover: none) {
    .sb-product-quick-actions { display: none; }
    .sb-product-card:hover,
    .sb-category-card:hover,
    .sb-brand-grid a:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    .shoobaby-theme *,
    .shoobaby-theme *::before,
    .shoobaby-theme *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Dynamic category drawer */
.sb-category-sidebar { background: #fff; box-shadow: var(--sb-shadow-md); }
.sb-category-sidebar .cat-sidebar { height: 100%; overflow-y: auto; }
.sb-sidebar-head { position: sticky; z-index: 2; top: 0; min-height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 13px 18px; border-bottom: 1px solid var(--sb-line); background: rgba(255,255,255,.96); backdrop-filter: blur(8px); }
.sb-sidebar-head img { width: 170px; }
.sb-sidebar-head .ec-close { width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 12px; background: var(--sb-purple-50); color: var(--sb-ink); font-size: 25px; }
.sb-sidebar-body { padding: 18px; }
.sb-sidebar-section + .sb-sidebar-section { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--sb-line); }
.sb-sidebar-section h2 { margin: 0 0 12px; color: var(--sb-ink); font-size: 15px; font-weight: 900; }
.sb-sidebar-list { display: grid; gap: 5px; }
.sb-sidebar-list > a { min-height: 54px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 10px; padding: 6px 9px; border-radius: 13px; color: var(--sb-ink); }
.sb-sidebar-list > a:hover { background: var(--sb-purple-50); color: var(--sb-purple); }
.sb-sidebar-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--sb-soft); font-size: 22px; overflow: hidden; }
.sb-sidebar-icon img { width: 100%; height: 100%; object-fit: contain; }
.sb-sidebar-list b { font-size: 13px; }
.sb-sidebar-brands { display: flex; flex-wrap: wrap; gap: 7px; }
.sb-sidebar-brands a { padding: 7px 10px; border: 1px solid var(--sb-line); border-radius: 999px; color: var(--sb-muted); font-size: 11px; font-weight: 800; }
.sb-sidebar-brands a:hover { border-color: var(--sb-purple); color: var(--sb-purple); }
.sb-sidebar-user { display: flex; align-items: center; gap: 10px; padding: 12px; border-radius: 14px; background: var(--sb-purple-50); }
.sb-sidebar-user > span { font-size: 26px; }
.sb-sidebar-user div { display: grid; }
.sb-sidebar-user small { color: var(--sb-muted); }
.sb-sidebar-user b { color: var(--sb-ink); }
.sb-sidebar-account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.sb-sidebar-account-grid a { min-height: 76px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 9px; border: 1px solid var(--sb-line); border-radius: 13px; text-align: center; }
.sb-sidebar-account-grid a:hover { border-color: var(--sb-purple); background: var(--sb-purple-50); color: var(--sb-purple); }
.sb-sidebar-account-grid i { font-size: 20px; }
.sb-sidebar-account-grid span { font-size: 10px; font-weight: 800; }

/* Quick view */
.sb-quickview-modal { padding: 8px; }
.sb-quickview-modal .qty_close { position: absolute; z-index: 5; top: 16px; inset-inline-end: 16px; }
.sb-quickview-modal .modal-body { padding: 26px; }
.sb-quickview-modal .qty-product-cover { min-height: 320px; display: grid; place-items: center; border-radius: 20px; background: var(--sb-soft); overflow: hidden; }
.sb-quickview-modal .qty-product-cover img { width: 100%; height: 100%; object-fit: contain; }
.sb-quickview-kicker { color: var(--sb-purple); font-size: 12px; font-weight: 900; }
.sb-quickview-modal .ec-quick-title { margin: 6px 0 12px; color: var(--sb-ink); font-size: 28px; line-height: 1.4; font-weight: 900; }
.sb-quickview-modal .ec-quickview-desc { color: var(--sb-muted); line-height: 1.9; }
.sb-quickview-modal .ec-quickview-price .new-price { color: var(--sb-purple); font-size: 24px; font-weight: 900; }
.sb-quickview-modal .ec-quickview-qty { display: flex; align-items: center; gap: 10px; margin-top: 18px; }

/* FAQ and contact pages */
.sb-standalone-faq,
.sb-contact-page { background: #fff; }
.sb-standalone-faq .sb-section-heading h1,
.sb-contact-page .sb-section-heading h1 { margin: 0; color: var(--sb-ink); font-size: clamp(34px, 4vw, 54px); line-height: 1.25; font-weight: 900; letter-spacing: -.04em; }
.sb-faq-page-accordion { max-width: 900px; margin-inline: auto; }
.sb-contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: stretch; }
.sb-contact-form-card,
.sb-contact-info-card { padding: 28px; border: 1px solid var(--sb-line); border-radius: 26px; background: #fff; box-shadow: var(--sb-shadow-sm); }
.sb-contact-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sb-contact-fields label { display: grid; gap: 7px; }
.sb-contact-fields label > span { color: var(--sb-ink); font-size: 12px; font-weight: 900; }
.sb-contact-fields input,
.sb-contact-fields textarea { width: 100%; padding: 11px 14px; }
.sb-contact-message { grid-column: span 2; }
.sb-contact-form-card .btn { margin-top: 18px; }
.sb-contact-info-card { position: relative; overflow: hidden; background: linear-gradient(145deg, #241f43, #4c3bc7); color: #fff; }
.sb-contact-info-card::before { content: ""; position: absolute; width: 260px; height: 260px; top: -130px; inset-inline-end: -90px; border-radius: 50%; background: rgba(255,255,255,.08); }
.sb-contact-info-card h2 { position: relative; margin: 18px 0 8px; color: #fff; font-size: 27px; font-weight: 900; }
.sb-contact-info-card > p { position: relative; color: #d8d3ea; }
.sb-contact-art { position: relative; width: 120px; height: 105px; }
.sb-contact-art span,
.sb-contact-art i,
.sb-contact-art b { position: absolute; display: grid; place-items: center; border-radius: 20px; background: rgba(255,255,255,.12); font-style: normal; font-size: 32px; }
.sb-contact-art span { width: 66px; height: 66px; top: 0; inset-inline-start: 0; }
.sb-contact-art i { width: 48px; height: 48px; top: 10px; inset-inline-end: 0; font-size: 24px; }
.sb-contact-art b { width: 54px; height: 54px; bottom: 0; inset-inline-start: 52px; font-size: 28px; }
.sb-contact-info-card ul { position: relative; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.sb-contact-info-card li { display: flex; align-items: center; gap: 12px; padding: 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.06); }
.sb-contact-info-card li > i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: rgba(255,255,255,.12); color: #fff; }
.sb-contact-info-card li div { display: grid; }
.sb-contact-info-card li small { color: #bbb4d2; }
.sb-contact-info-card li a,
.sb-contact-info-card li span { color: #fff; font-weight: 800; }
.sb-whatsapp-contact { position: relative; width: 100%; margin-top: 18px; background: #fff !important; border-color: #fff !important; color: #241f43 !important; }
@media (max-width: 767px) {
    .sb-contact-grid { grid-template-columns: 1fr; }
    .sb-contact-fields { grid-template-columns: 1fr; }
    .sb-contact-message { grid-column: auto; }
}
