/*** GENERAL ***/
:root {
    --color-light: #f4f7fb;
    --color-white: #ffffff;
    --color-white-same: #ffffff;
    --color-black: #000000;
    --color-black-same: #000000;
    --color-content: #0f172a;
    --color-content-same: #0f172a;
    --color-muted: #475569;
    --color-muted-same: #475569;
    --color-light-2: #f4f7fb;
    --color-border: #dde6f0e6;
    --color-gray: #dce6f0;
    --blue-50: #eaf2ff;
    --blue-300: #2563eb;
    --blue-500: #1d4ed8;
    --color-green: #15803d;
    --color-green-50: #bbf7d0;
    --color-green-100: #dcfce7;
    --color-gray-light: #e5e7eb;
    --color-gray-50: #f8fafc;
    --color-gray-100: #dde6f0;
    --card-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    --radius-18: 18px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-pill: 999px;
    --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.04);
    --container-width: 880px;
    /*font-family*/
    --font-family-heading: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* Shadows Dark Mode*/
    --shadow-sm-dark: 0 1px 2px 0 rgba(225, 225, 225, 0.08);
    --shadow-md-dark: 0 4px 6px -1px rgba(225, 225, 225, 0.1), 0 2px 4px -1px rgba(225, 225, 225, 0.08);
    --shadow-lg-dark: 0 10px 15px -3px rgba(225, 225, 225, 0.1), 0 4px 6px -2px rgba(225, 225, 225, 0.08);
    --shadow-xl-dark: 0 20px 25px -5px rgba(225, 225, 225, 0.1), 0 10px 10px -5px rgba(225, 225, 225, 0.08);
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;

    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --text: #0f172a;
    --muted: #475569;
    --line: #dde6f0;
    --brand: #2563eb;
    --brand-strong: #1d4ed8;
    --brand-soft: #eaf2ff;
    --good: #0f766e;
    --danger: #b91c1c;
    --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    --radius: 18px;
}

*,
::after,
::before {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0.5px;
    /*line-height: normal;*/
    color: var(--color-black);
    text-transform: none;
}

/*    html[data-bs-theme=dark] body {background-color: #1a182e; .bg-light-gradient {*/
/*    background: linear-gradient(180deg, #0b2241 0%, #383e45 100%);*/
/*}}*/
a,
a:hover,
.decorationNone {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

ul li {
    list-style: none;
}

ul.list-disc li,
ul.list li {
    list-style: disc;
}

img {
    object-fit: scale-down;
    object-position: center;
}

.img-contain {
    object-fit: contain;
    object-position: center;
}

.h-28 {
    min-height: 28px;
    height: 28px;
}

.h-44 {
    min-height: 44px;
    height: 44px;
}

.h-48 {
    min-height: 48px;
    height: 48px;
}

.w-44 {
    min-width: 44px;
    width: 44px;
}

.w-220 {
    min-width: 220px;
    width: 220px;
}

.min-w-fit-content {
    min-width: fit-content !important;
}

.w-fit-content {
    width: fit-content !important;
}

.w-max-content {
    width: max-content !important;
}

textarea {
    resize: none;
}

ul li {
    list-style: none;
}

ul.list li {
    list-style: disc;
}

.cursor-pointer {
    cursor: pointer;
}

.scroll-x {
    overflow-y: hidden;
    overflow-x: auto;
    scrollbar-width: thin;
}

.scroll-y {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
}

.py-0-5 {
    padding: 0.1rem
}

.p-10 {
    padding: 10px;
}

.p-12 {
    padding: 12px;
}

/*==================== BORDER STYLES ==========================*/

/*==================== BUTTON STYLES ==========================*/
.button-style,
input[type=submit].button-style {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 24px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
    cursor: pointer;
    border-radius: 6px;
    border: 1px solid transparent;
    outline: none !important;
    box-shadow: none !important;
}

/*-- small button styles --*/
.button-style.button-sm {
    padding: 5px 15px;
    font-size: 0.875rem;
}

.button-style-1 {
    width: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 100%;
    font-weight: 600;
    color: var(--color-black);
    padding: 6px 8px 6px 20px;
    border: none !important;
    border-radius: 6px;
    height: 44px;
    background: var(--color-first);
    outline: none !important;
    box-shadow: 0 0 1px 4px rgba(0, 0, 0, 0.07) !important;
    transition: all 0.7s;
}

.button-style-1 svg {
    min-width: 34px;
    width: 34px;
    height: 34px;
    padding: 6px;
    fill: var(--color-first);
    background-color: var(--color-white-same);
    border-radius: 100px;
}

/*==================== HEADING STYLES =========================*/
.heading-xxxl,
.heading-xxl,
.heading-xl,
.heading-lg,
.heading-md,
.heading-sm {
    font-family: var(--font-family-heading) !important;
    letter-spacing: 0.35px;
}

.heading-xxxl {
    font-size: 4rem !important;
    line-height: 1.3;
}

.heading-xxl {
    font-size: 3.5rem !important;
    line-height: 1.3;
}

.heading-xl {
    font-size: 3rem !important;
    line-height: 1.3;
}

.heading-lg {
    font-size: 2.5rem !important;
    line-height: 1.3;
}

.heading-lg2 {
    font-size: 2.7rem !important;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.heading-md {
    font-size: 2rem !important;
    line-height: 1.3;
}

.heading-sm {
    font-size: 1.5rem !important;
    line-height: 1.3;
}

p {
    font-size: 1rem;
    line-height: normal;
}

/*==================== FONT FAMILY ============================*/
.font-family-heading {
    font-family: var(--font-family-heading) !important;
}

.font-family-content {
    font-family: var(--font-family) !important;
}

/*==================== FONT SIZE ==============================*/
.text-xxl,
.text-xl,
.text-lg,
.text-md,
.text-sm {
    font-family: var(--font-family) !important;
}

.text-xxl {
    font-size: 1.5rem !important;
    line-height: 1.3;
}

.text-xl {
    font-size: 1.35rem !important;
    line-height: 1.3;
}

.text-lg {
    font-size: 1.25rem !important;
    line-height: 1.2;
}

.text-md {
    font-size: 1rem !important;
    line-height: 1.5 !important;
}

.text-sm {
    font-size: 0.875rem !important;
    line-height: normal;
}

.text-xs {
    font-size: 13px !important;
    line-height: 1.5;
}

/*==================== FONT WIGHT =============================*/
.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

/*==================== INPUT FIELDS STYLES ====================*/
input.form-control,
select.form-select {
    height: 40px;
    background-color: var(--color-white);
    color: var(--color-black);
}

textarea.form-control {
    resize: none;
}

input.form-control:hover,
select.form-select:hover,
textarea.form-control:hover,
input.form-control:focus,
select.form-select:focus,
textarea.form-control:focus {
    border-color: var(--color-black);
    box-shadow: none;
    outline: none;
}

.form-label {
    font-size: 0.85rem;
    color: var(--color-white-same) !important;
    margin-bottom: 4px;
}

.form-required {
    color: red !important;
    font-weight: 600;
}

.input-border {
    border: 1px solid var(--border-color);
    transition: all 0.5s;
}

.input-border:hover,
.input-border:focus,
.input-border.active,
.input-border {
    border-color: var(--color-first);
}

.form-check-input:hover,
.form-check-input:focus {
    box-shadow: none;
}

.form-check-input:checked {
    background-color: var(--color-first);
    border-color: var(--color-first);
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
    border-width: 2px;
}

/*==================== TEXT LIMIT STYLES ======================*/
.text-limit-1,
.text-limit-2,
.text-limit-3,
.text-limit-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.text-limit-1 {
    -webkit-line-clamp: 1;
}

.text-limit-2 {
    -webkit-line-clamp: 2;
}

.text-limit-3 {
    -webkit-line-clamp: 3;
}

.text-limit-4 {
    -webkit-line-clamp: 4;
}

/*==================== BACKGROUND COLOR STYLES ================*/
.bg-light-gradient {
    background: linear-gradient(180deg, #f8fbff 0%, #edf3f9 100%);
}

.bg-color-white {
    background-color: var(--color-white) !important;
}

.bg-color-second {
    background-color: var(--color-second) !important;
}

/* same bg color in light/dark mode --*/
.bg-color-first-same {
    background-color: var(--color-first-same) !important;
}

.bg-color-second-same {
    background-color: var(--color-second-same) !important;
}

.bg-color-black-same {
    background-color: var(--color-black-same) !important;
}

/*==================== COLOR STYLES ===========================*/
.color-muted {
    color: var(--color-muted) !important;
}

.color-content {
    color: var(--color-content) !important;
}

/*==================== SVG COLOR STYLES =======================*/
/*-- svg fill --*/
.svg-fill-first,
.svg-fill-first path {
    fill: var(--color-first) !important;
}

.svg-fill-second,
.svg-fill-second path {
    fill: var(--color-second) !important;
}

.svg-fill-black,
.svg-fill-black path {
    fill: var(--color-black) !important;
}

.svg-fill-white,
.svg-fill-white path {
    fill: var(--color-white) !important;
}

/* svg fill in light/dark mode --*/
.svg-fill-first-same,
.svg-fill-first-same path {
    fill: var(--color-first-same) !important;
}

.svg-fill-second-same,
.svg-fill-second-same path {
    fill: var(--color-second-same) !important;
}

.svg-fill-black-same,
.svg-fill-black-same path {
    fill: var(--color-black-same) !important;
}

.svg-fill-white-same,
.svg-fill-white-same path {
    fill: var(--color-white-same) !important;
}

.svg-fill-content-same,
.svg-fill-content-same path {
    fill: var(--color-content-same) !important;
}

/*-- svg stroke --*/
.svg-stroke-first,
.svg-stroke-first path {
    stroke: var(--color-first) !important;
}

.svg-stroke-second,
.svg-stroke-second path {
    stroke: var(--color-second) !important;
}

.svg-stroke-black,
.svg-stroke-black path {
    stroke: var(--color-black) !important;
}

.svg-stroke-white,
.svg-stroke-white path {
    stroke: var(--color-white) !important;
}

/* svg stroke in light/dark mode --*/
.svg-stroke-first-same,
.svg-stroke-first-same path {
    stroke: var(--color-first-same) !important;
}

.svg-stroke-second-same,
.svg-stroke-second-same path {
    stroke: var(--color-second-same) !important;
}

.svg-stroke-black-same,
.svg-stroke-black-same path {
    stroke: var(--color-black-same) !important;
}

.svg-stroke-white-same,
.svg-stroke-white-same path {
    stroke: var(--color-white-same) !important;
}

.svg-stroke-content-same,
.svg-stroke-content-same path {
    stroke: var(--color-content-same) !important;
}

/*==================== SVG SIZES STYLES =======================*/
.iconSize-8 {
    width: 8px;
    height: 8px;
}

.iconSize-10 {
    width: 10px;
    height: 10px;
}

.iconSize-12 {
    width: 12px;
    height: 12px;
}

.iconSize-14 {
    width: 14px;
    height: 14px;
}

.iconSize-15 {
    width: 15px;
    height: 15px;
}

.iconSize-16 {
    width: 16px;
    height: 16px;
}

.iconSize-18 {
    width: 18px;
    height: 18px;
}

.iconSize-20 {
    width: 20px;
    height: 20px;
}

.iconSize-22 {
    width: 22px;
    height: 22px;
}

.iconSize-24 {
    width: 24px;
    height: 24px;
}

.iconSize-25 {
    width: 25px;
    height: 25px;
}

.iconSize-28 {
    width: 28px;
    height: 28px;
}

.iconSize-30 {
    width: 30px;
    height: 30px;
}

.iconSize-32 {
    width: 32px;
    height: 32px;
}

.iconSize-34 {
    width: 34px;
    height: 34px;
}

.iconSize-35 {
    width: 35px;
    height: 35px;
}

.iconSize-36 {
    width: 36px;
    height: 36px;
}

.iconSize-38 {
    width: 38px;
    height: 38px;
}

.iconSize-40 {
    width: 40px;
    height: 40px;
}

.iconSize-42 {
    width: 42px;
    height: 42px;
}

.iconSize-44 {
    width: 44px;
    height: 44px;
}

.iconSize-45 {
    width: 45px;
    height: 45px;
}

.iconSize-48 {
    width: 48px;
    height: 48px;
}

.iconSize-50 {
    width: 50px;
    height: 50px;
}

.iconSize-80 {
    width: 80px;
    height: 80px;
}

.iconSize-100 {
    min-width: 100px;
    width: 100px;
    min-height: 100px;
    height: 100px;
}

.iconSize-150 {
    min-width: 150px;
    width: 150px;
    min-height: 150px;
    height: 150px;
}

.iconSize-200 {
    min-width: 200px;
    width: 200px;
    min-height: 200px;
    height: 200px;
}

/*==================== MEDIA QUERY ============================*/
.shadow1-xl {
    box-shadow: var(--shadow-xl) !important;
}

.shadow1-lg {
    box-shadow: var(--shadow-lg) !important;
}

.shadow1-md {
    box-shadow: var(--shadow-md) !important;
}

.shadow1-sm {
    box-shadow: var(--shadow-sm) !important;
}

/*html[data-bs-theme="dark"] .shadow1-xl {box-shadow: var(--shadow-xl-dark) !important;}*/
/*html[data-bs-theme="dark"] .shadow1-lg {box-shadow: var(--shadow-lg-dark) !important;}*/
/*html[data-bs-theme="dark"] .shadow1-md {box-shadow: var(--shadow-md-dark) !important;}*/
/*html[data-bs-theme="dark"] .shadow1-sm {box-shadow: var(--shadow-sm-dark) !important;}*/

/*==============common class ================*/
.text-spacing {
    letter-spacing: 0.12em
}

.border-color {
    border-color: var(--color-border) !important;
}

.radius-18 {
    border-radius: var(--radius-18) !important;
}

.card-shadow {
    box-shadow: var(--card-shadow) !important;
}

.bg-color-green-100 {
    background-color: var(--color-green-100) !important;
}

.bg-color-gray-50 {
    background-color: var(--color-gray-50) !important;
}

.border-color-gray-100 {
    border-color: var(--color-gray-100) !important;
}

.border-color-green-50 {
    border-color: var(--color-green-50) !important;
}

.text-color-green {
    color: var(--color-green) !important;
}

.custom-divider {
    background-color: var(--color-border) !important;
    opacity: 1 !important;
    margin-bottom: 0 !important;
}

/*==================== Home page ============================*/
/* body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-weight: 400;
    line-height: 1.65;
} */
header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
}

header .logo img {
    width: 100%;
    max-width: 120px;
}

.main-container {
    padding: 40px 24px 0;
    max-width: 820px;
    margin: 0 auto;
}

.main-container.custom-container {
    max-width: 760px;
}

.hero-card p {
    line-height: 1.6;
}

.category-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-50);
    border-radius: 14px;
}

.category-info h2 {
    margin: 0 0 4px;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.category-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.card-active {
    transition: .3s all ease-in-out;
}

.card-comingsoon {
    opacity: 0.55;
}

.card-active:hover {
    border-color: #93c5fd !important;
}

.step-circle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blue-50);
    color: var(--blue-500);
    font-weight: 800;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer {
    margin-top: 48px;
    padding: 24px 16px;
    background: var(--color-gray);
    border-top: 2px solid #b8cce0;
    text-align: center;
    color: #334155;
    font-size: 0.82rem;
    line-height: 1.6;
}

footer a {
    font-size: 0.82rem;
    color: #334155;
}


.sp-eyebrow {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--blue-300);
    margin-bottom: 10px;
}

.product-kicker {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    color: var(--blue-300);
    margin-bottom: 4px;
}

.product-name {
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--color-content);
    letter-spacing: -0.02em;
    margin: 0;
    font-family: var(--font-family-heading) !important;
    line-height: 1.2;
}

.quick-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.price-tag,
.rating-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid #dde6f0;
    background: #f8fafc;
    font-size: 0.86rem;
    font-weight: 700;
}

.btn-amazon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 8px;
    background: #f59e0b;
    color: #1a1a1a !important;
    border: none;
    text-decoration: none !important;
    transition: background 0.2s;
    margin-top: 6px;
    font-weight: 800;

}

.product-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.price-block {
    text-align: right;
    flex-shrink: 0;
}

.product-summary {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.65;
    margin-bottom: 14px;
    margin-top: 14px;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 16px;
}

.chip {
    font-size: 0.775rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--blue-50);
    color: var(--blue-500);
    border: 1px solid #bfdbfe;
    white-space: nowrap;
}

/* comparison */
.compare-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-18);
    box-shadow: var(--card-shadow);
    padding: 20px 18px;
    height: 100%;
}

.compare-card h3 {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--color-content);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    font-family: var(--font-family-heading) !important;
    line-height: 1.3;
}

.compare-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-card-main .compare-card ul li {
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.5;
    padding: 3px 0;

}

.compare-card ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.compare-card ul li strong {
    /* display: block; */
    font-weight: 700;
    color: var(--color-content);
    font-size: 14px;
    /*text-transform: uppercase;*/
    letter-spacing: 0.05em;
    margin-bottom: 1px;
}

@media (max-width: 767px) {
    .product-top {
        flex-direction: column;
        gap: 6px;
    }
}


/* low intent page */
.top-pick-btn {
    background: #fff;
    color: #0f172a;
    border-color: #dde6f0;
    border-radius: 12px;
    font-size: 0.86rem;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-box {
    margin-top: 14px;
    background: #f8fafc;
    border: 1px solid #dde6f0;
    border-radius: 16px;
    padding: 14px;
}

.detail-box li {
    border-bottom: none;
}

.pros-cons {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.pro-list li::before {
    content: "•";
    position: absolute;
    left: 3px;
    color: var(--color-green);
    font-weight: 900;
}

.con-list li::before {
    content: "•";
    position: absolute;
    left: 3px;
    color: #ef4444;
    font-weight: 900;
}

.pro-list li,
.con-list li {
    font-size: 0.84rem;
    color: var(--color-muted);
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
}

/* Product images */
.product-img {
    width: 100%;
    margin: 0;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    background: #f8fbff;
}

.product-img img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
    padding: 16px;
}

.quick-pick .product-img {
    margin: -16px -16px 14px;
}

.product-card-fast .product-img {
    margin: -16px -16px 14px;
}

.price-block {
    display: grid;
    gap: 4px;
}

.price {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    font-weight: 800;
    margin-left: 6px;
}

.old-price2 {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
    margin-left: 4px;
    font-weight: 700;
}

.rating {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.price-note {
    font-size: 13px;
    font-weight: 500;
    color: #2e7d32;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 14px;
    margin-bottom: 14px;
}

.product-card {
    padding: 0 0 0 0 !important;
    overflow: hidden;
}

.product-body {
    padding: 18px;
}


.header-pill {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 5px 14px;
    border-radius: 999px;
    background: var(--blue-50);
    color: var(--blue-500);
    border: 1px solid #bfdbfe;
    white-space: nowrap;
}

/* Hero */
.sp-eyebrow {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--blue-300);
    margin-bottom: 10px;
}

.sp-h1 {
    line-height: normal !important;
    letter-spacing: 0 !important;
}

.sp-hero-desc {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 22px;
}

.btn-blue-fill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 12px;
    background: var(--blue-300);
    color: var(--color-white-same) !important;
    border: none;
    text-decoration: none !important;
    transition: background 0.2s;
}

.btn-blue-fill:hover {
    background: var(--blue-500);
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 12px;
    background: transparent;
    color: var(--color-content) !important;
    border: 1.5px solid var(--color-border);
    text-decoration: none !important;
    transition: border-color 0.2s, background 0.2s;
}

.btn-secondary-outline:hover {
    border-color: var(--color-gray-100);
    background: var(--color-gray-50);
}

/* Product card */
.product-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-18);
    box-shadow: var(--card-shadow);
    padding: 0;
}

.product-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.product-kicker {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-300);
    margin-bottom: 4px;
}

.product-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-content);
    letter-spacing: -0.02em;
    margin: 0;
    font-family: var(--font-family-heading) !important;
    line-height: 1.2;
}

.price-block {
    text-align: right;
    flex-shrink: 0;
}

.price-val {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-content);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.rating-val {
    display: block;
    font-size: 0.775rem;
    color: var(--color-muted);
    margin-top: 3px;
    font-weight: 500;
}

.product-summary {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

/* chips */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 16px;
}

.chip {
    font-size: 0.775rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--blue-50);
    color: var(--blue-500);
    border: 1px solid #bfdbfe;
    white-space: nowrap;
}

/* detail box */
.sp-detail-box {
    background: var(--color-gray-50);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 15px 17px;
    margin-bottom: 14px;
}

.sp-detail-box p {
    font-size: 0.86rem;
    color: var(--color-muted);
    line-height: 1.65;
    margin: 0;
}

/* pros cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pro-list,
.con-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pro-list li,
.con-list li {
    font-size: 0.84rem;
    color: var(--color-content);
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
}

.pro-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: 900;
    font-size: 20px;
    top: -8px;
}

.con-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 900;
    font-size: 20px;
    top: -8px;
}

/* amazon btn */
.btn-amazon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 12px;
    background: #f59e0b;
    color: #1a1a1a !important;
    border: none;
    text-decoration: none !important;
    transition: background 0.2s;
    margin-top: 6px;
}

.btn-amazon:hover {
    background: #d97706;
}

/* comparison */
.compare-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-18);
    box-shadow: var(--card-shadow);
    padding: 20px 18px;
    height: 100%;
}


/* section label */
.sp-section-eyebrow {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--blue-500);
    margin-bottom: 5px;
}

.sp-section-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-content);
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    font-family: var(--font-family-heading) !important;
}

#products,
#comparison {
    scroll-margin-top: 80px;
}



/*==================== MEDIA QUERY ============================*/
@media screen and (max-width: 1400px) {
    .heading-xxxl {
        font-size: 3.5rem !important;
    }

    .heading-xxl {
        font-size: 3rem !important;
    }

    .heading-xl {
        font-size: 2.5rem !important;
    }

    .heading-lg {
        font-size: 2rem !important;
    }

    .heading-md {
        font-size: 1.5rem !important;
    }

    .heading-sm {
        font-size: 1.1rem !important;
    }

    .text-xxl {
        font-size: 1.35rem !important;
    }

    .text-xl {
        font-size: 1.15rem !important;
    }

    /*deals page*/
    .deals-logos-ul li {
        width: 15%;
    }

    /*deals page end*/
}

@media screen and (max-width: 1024px) {
    .heading-xxxl {
        font-size: 3rem !important;
    }

    .heading-xxl {
        font-size: 2.5rem !important;
    }

    .heading-xl {
        font-size: 2rem !important;
    }

    .heading-lg {
        font-size: 1.6rem !important;
    }

    .heading-md {
        font-size: 1.3rem !important;
    }

    .heading-sm {
        font-size: 1rem !important;
    }

    .text-xxl {
        font-size: 1.25rem !important;
    }

    .text-xl {
        font-size: 1.05rem !important;
    }

    .text-lg {
        font-size: 1.05rem !important;
    }

    .text-sm {
        font-size: 0.8rem !important;
    }
}

@media screen and (max-width: 991px) {
    * {
        font-size: 15px;
    }

    .heading-xxxl {
        font-size: 2.5rem !important;
    }

    .heading-xxl {
        font-size: 2rem !important;
    }

    .heading-xl {
        font-size: 1.7rem !important;
    }

    .heading-lg {
        font-size: 1.5rem !important;
    }
}

@media screen and (max-width: 767px) {
    * {
        font-size: 16px;
    }

    .heading-xxxl {
        font-size: 2.2rem !important;
    }

    .heading-xxl {
        font-size: 1.85rem !important;
    }

    .heading-xl {
        font-size: 1.65rem !important;
    }

    .heading-lg {
        font-size: 1.5rem !important;
    }

    .heading-lg2 {
        font-size: 1.9rem !important;
    }

    .heading-md {
        font-size: 1.2rem !important;
    }

    .heading-sm {
        font-size: 0.85rem !important;
    }

    .text-xxl {
        font-size: 1.1rem !important;
    }

    .text-xl {
        font-size: 1rem !important;
    }

    .text-lg {
        font-size: 1.01rem !important;
    }

    .text-sm {
        font-size: 0.85rem !important;
    }

    .main-container {
        padding: 32px 16px 0;
    }

    .sp-h1 {
        font-size: 1.35rem;
    }

    .product-top {
        flex-direction: column;
        gap: 6px;
    }

    .price-block {
        text-align: left;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-card {
        padding: 18px 16px 16px;
    }

    .w-sm-100 {
        width: 100%;
    }

    .mb-sm-10 {
        margin-bottom: 10px;
    }
}

.discount-price {
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 3px;
    padding: 1px 6px;
    width: fit-content;
    margin-left: auto;
}

.brand-store {
    color: #0D1B3E;
}

.brand-tld {
    color: #5B7FA6;
    font-weight: 700;
}

.header .brand {
    display: flex;
    align-items: end;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    line-height: 1;
}

.header .brand .brand-store,
.header .brand .brand-tld {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    line-height: 1;
}

.sp-detail-box .pro-list .text-sm {
    font-size: 16px !important;
}