/* ==============================================================
   Sizzzlingo Landing Page
   ============================================================== */

.sz-page {
    --sz-navy: #101d37;
    --sz-navy-light: #1d2d4c;
    --sz-orange: #ff681c;
    --sz-orange-dark: #e84f0e;
    --sz-blue-light: #eaf7ff;
    --sz-cream: #fff9f1;
    --sz-white: #ffffff;
    --sz-text: #13213b;
    --sz-muted: #6c7484;
    --sz-border: #e8edf2;
    --sz-shadow: 0 18px 50px rgba(16, 29, 55, 0.09);

    background: #fff;
    color: var(--sz-text);
    overflow: hidden;
}

.sz-page *,
.sz-page *::before,
.sz-page *::after {
    box-sizing: border-box;
}

.sz-page a {
    text-decoration: none;
}

.sz-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

/* ==============================================================
   Shared heading
   ============================================================== */

.sz-section {
    padding: 92px 0;
}

.sz-section-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.sz-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--sz-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.sz-section-heading h2,
.sz-benefits-content h2 {
    margin: 0 0 14px;
    color: var(--sz-navy);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.sz-section-heading p,
.sz-benefits-intro {
    margin: 0;
    color: var(--sz-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* ==============================================================
   Buttons
   ============================================================== */

.sz-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 24px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.sz-button:hover {
    transform: translateY(-2px);
}

.sz-button-primary {
    background: linear-gradient(135deg,
            var(--sz-orange),
            #ff8709);
    color: #fff;
    box-shadow: 0 12px 28px rgba(255, 104, 28, 0.26);
}

.sz-button-primary:hover {
    background: linear-gradient(135deg,
            var(--sz-orange-dark),
            var(--sz-orange));
    color: #fff;
}

.sz-button-outline {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    backdrop-filter: blur(8px);
}

.sz-button-outline:hover {
    border-color: #fff;
    background: #fff;
    color: var(--sz-navy);
}

.sz-button-light {
    background: #fff;
    color: var(--sz-navy);
}

.sz-button-light:hover {
    color: var(--sz-orange-dark);
}

.sz-button-dark-outline {
    border-color: rgba(255, 255, 255, 0.42);
    color: #fff;
}

.sz-button-dark-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* ==============================================================
   Hero with background video
   ============================================================== */

.sz-hero {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    min-height: clamp(680px, 78vh, 810px);
    overflow: hidden;
    isolation: isolate;
    background: #071225;
}

/*
|--------------------------------------------------------------------------
| Background video
|--------------------------------------------------------------------------
*/

.sz-hero-background {
    position: absolute;
    z-index: -3;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

/*
|--------------------------------------------------------------------------
| Dark overlay
|--------------------------------------------------------------------------
*/

.sz-hero-overlay {
    position: absolute;
    z-index: -2;
    inset: 0;
    background: linear-gradient(90deg, rgb(4 11 24 / 0%) 0%, rgb(5 13 28 / 52%) 45%, rgb(4 11 24 / 0%) 100%), linear-gradient(0deg, rgba(3, 9, 20, 0.35), rgba(3, 9, 20, 0.2));
}

/*
 * Slight central glow so text stays readable
 * without making the whole video too dark.
 */
.sz-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(15, 24, 39, 0.05) 0%,
            rgba(4, 11, 24, 0.16) 48%,
            rgba(4, 11, 24, 0.35) 100%);
    pointer-events: none;
}

/*
|--------------------------------------------------------------------------
| Center content
|--------------------------------------------------------------------------
*/

.sz-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1080px;
    padding: 95px 0 120px;
    text-align: center;
}

/*
|--------------------------------------------------------------------------
| Top partner pill
|--------------------------------------------------------------------------
*/

.sz-partner-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: fit-content;
    margin: 0 auto 25px;
    padding: 8px 17px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sz-partner-pill i {
    color: var(--sz-orange);
}

/*
|--------------------------------------------------------------------------
| Main heading
|--------------------------------------------------------------------------
*/

.sz-hero h1 {
    width: 100%;
    max-width: 1060px;
    margin: 0;
    color: #fff;
    font-size: clamp(52px, 5vw, 78px);
    font-weight: 850;
    line-height: 0.98;
    letter-spacing: -3px;
    text-align: center;
    text-wrap: balance;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.sz-hero h1 span {
    color: var(--sz-orange);
}

/*
|--------------------------------------------------------------------------
| Description
|--------------------------------------------------------------------------
*/

.sz-hero-description {
    width: 100%;
    max-width: 720px;
    margin: 27px auto 30px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    text-align: center;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.32);
}

/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
*/

.sz-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
    width: 100%;
}

.sz-hero-actions .sz-button {
    min-height: 51px;
    padding-inline: 26px;
}

.sz-hero-actions .sz-button-primary {
    min-width: 172px;
}

.sz-hero-actions .sz-button-outline {
    min-width: 255px;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.11);
}

/*
|--------------------------------------------------------------------------
| Trust points
|--------------------------------------------------------------------------
*/

.sz-hero-points {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 28px;
    width: 100%;
    margin-top: 31px;
}

.sz-hero-points span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.87);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.sz-hero-points i {
    color: var(--sz-orange);
    font-size: 13px;
}

/*
|--------------------------------------------------------------------------
| Featured-partner badge — bottom left
|--------------------------------------------------------------------------
*/

.sz-halal-badge {
    position: absolute;
    z-index: 5;
    bottom: 20px;
    left: clamp(20px, 2vw, 34px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 7px 16px 7px 8px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sz-halal-badge img {
    display: block;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: contain;
}

.sz-halal-badge span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.sz-halal-badge small {
    margin-bottom: 2px;
    color: #7b8492;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.sz-halal-badge strong {
    color: var(--sz-navy);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
}

/* ==============================================================
   Trust strip
   ============================================================== */

.sz-trust-strip {
    background: var(--sz-blue-light);
    border-bottom: 1px solid #dcebf4;
}

.sz-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sz-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 72px;
    padding: 14px 8px;
    color: var(--sz-navy);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.sz-trust-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #fff;
    color: var(--sz-navy);
}

/* ==============================================================
   Why choose
   ============================================================== */

.sz-why-section {
    background: #fff;
}

.sz-featured-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: fit-content;
    margin: -15px auto 32px;
    padding: 8px 19px 8px 8px;
    border: 1px solid var(--sz-border);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(16, 29, 55, 0.08);
    color: var(--sz-navy);
    font-size: 12px;
    font-weight: 700;
}

.sz-featured-partner img {
    border-radius: 50%;
    object-fit: contain;
}

.sz-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.sz-reason-card {
    min-height: 205px;
    padding: 25px;
    border: 1px solid var(--sz-border);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 9px 30px rgba(16, 29, 55, 0.055);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.sz-reason-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 104, 28, 0.24);
    box-shadow: var(--sz-shadow);
}

.sz-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    margin-bottom: 19px;
    border-radius: 15px;
    background: var(--sz-blue-light);
    color: var(--sz-navy);
    font-size: 18px;
}

.sz-reason-card h3 {
    margin: 0 0 8px;
    color: var(--sz-navy);
    font-size: 17px;
    font-weight: 800;
}

.sz-reason-card p {
    margin: 0;
    color: var(--sz-muted);
    font-size: 13px;
    line-height: 1.65;
}

/* ==============================================================
   Steps
   ============================================================== */

.sz-steps-section {
    background: var(--sz-blue-light);
}

.sz-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.sz-step-card {
    position: relative;
    min-height: 215px;
    padding: 33px 20px 24px;
    border: 1px solid rgba(16, 29, 55, 0.05);
    border-radius: 17px;
    background: #fff;
    text-align: center;
    box-shadow: 0 11px 30px rgba(16, 29, 55, 0.07);
}

.sz-step-label {
    position: absolute;
    top: -10px;
    left: 50%;
    padding: 5px 13px;
    border-radius: 999px;
    background: var(--sz-orange);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.sz-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 61px;
    height: 61px;
    margin-bottom: 19px;
    border-radius: 50%;
    background: var(--sz-navy);
    color: #fff;
    font-size: 21px;
}

.sz-step-card h3 {
    margin: 0 0 8px;
    color: var(--sz-navy);
    font-size: 17px;
    font-weight: 800;
}

.sz-step-card p {
    margin: 0;
    color: var(--sz-muted);
    font-size: 12px;
    line-height: 1.55;
}

/* ==============================================================
   Dynamic collections
   ============================================================== */

.sz-collections-section {
    background: #fff;
}

.sz-collections-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.sz-collection-card {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid var(--sz-border);
    border-radius: 19px;
    background: #fff;
    color: var(--sz-navy);
    box-shadow: 0 10px 35px rgba(16, 29, 55, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.sz-collection-card:hover {
    transform: translateY(-7px);
    color: var(--sz-navy);
    box-shadow: 0 23px 50px rgba(16, 29, 55, 0.14);
}

.sz-collection-image {
    position: relative;
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
    background: #f3f3f3;
}

.sz-collection-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 50%;
    background: linear-gradient(0deg,
            rgba(10, 20, 38, 0.23),
            transparent);
}

.sz-collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.sz-collection-card:hover .sz-collection-image img {
    transform: scale(1.06);
}

.sz-collection-content {
    position: relative;
    min-height: 105px;
    padding: 20px 58px 19px 20px;
}

.sz-collection-content h3 {
    margin: 0 0 6px;
    color: var(--sz-navy);
    font-size: 17px;
    font-weight: 800;
}

.sz-collection-content p {
    margin: 0;
    color: var(--sz-muted);
    font-size: 12px;
    line-height: 1.55;
}

.sz-collection-arrow {
    position: absolute;
    top: 50%;
    right: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff2ea;
    color: var(--sz-orange);
    transform: translateY(-50%);
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.sz-collection-card:hover .sz-collection-arrow {
    background: var(--sz-orange);
    color: #fff;
}

.sz-api-message {
    max-width: 720px;
    margin: 0 auto;
    padding: 50px 25px;
    border: 1px solid var(--sz-border);
    border-radius: 20px;
    background: var(--sz-cream);
    text-align: center;
}

.sz-api-message>i {
    margin-bottom: 17px;
    color: var(--sz-orange);
    font-size: 38px;
}

.sz-api-message h3 {
    margin: 0 0 10px;
    color: var(--sz-navy);
    font-size: 24px;
    font-weight: 800;
}

.sz-api-message p {
    max-width: 500px;
    margin: 0 auto 23px;
    color: var(--sz-muted);
}

/* ==============================================================
   Benefits
   ============================================================== */

.sz-benefits-section {
    background: var(--sz-cream);
}

.sz-benefits-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    align-items: center;
    gap: 75px;
}

.sz-benefits-image {
    position: relative;
}

.sz-benefits-video {
    display: block;
    width: 100%;
    height: 650px;
    border-radius: 24px;
    object-fit: cover;
    object-position: center;
    background: var(--sz-navy);
    box-shadow: var(--sz-shadow);
}

.sz-image-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 17px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--sz-navy);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.sz-image-badge i {
    color: var(--sz-orange);
}

.sz-benefits-content h2 {
    max-width: 540px;
}

.sz-benefits-intro {
    max-width: 590px;
    margin-bottom: 25px;
}

.sz-benefits-list {
    display: grid;
    gap: 10px;
    margin: 0 0 27px;
    padding: 0;
    list-style: none;
}

.sz-benefits-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 43px;
    padding: 9px 15px;
    border: 1px solid #eee7dd;
    border-radius: 999px;
    background: #fff;
    color: var(--sz-navy);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(16, 29, 55, 0.04);
}

.sz-benefits-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff0e7;
    color: var(--sz-orange);
    font-size: 10px;
}

/* ==============================================================
   Comparison
   ============================================================== */

.sz-comparison-section {
    background: #fff;
}

.sz-table-wrapper {
    max-width: 970px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--sz-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--sz-shadow);
}

.sz-comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.sz-comparison-table th,
.sz-comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--sz-border);
    color: var(--sz-navy);
    font-size: 13px;
    text-align: center;
}

.sz-comparison-table th:first-child,
.sz-comparison-table td:first-child {
    width: 38%;
    text-align: left;
    font-weight: 800;
}

.sz-comparison-table th {
    font-size: 13px;
    font-weight: 800;
}

.sz-comparison-table tr:last-child td {
    border-bottom: 0;
}

.sz-highlight-column {
    background: var(--sz-navy);
    color: #fff !important;
}

.sz-comparison-table th.sz-highlight-column {
    display: table-cell;
}

.sz-comparison-table th.sz-highlight-column img {
    display: block;
    width: 38px;
    height: 38px;
    margin: 0 auto 5px;
    border-radius: 50%;
    object-fit: contain;
}

.sz-highlight-column i {
    color: var(--sz-orange);
}

.sz-table-yes {
    color: var(--sz-orange);
}

.sz-table-no {
    color: #aab1bc;
}

/* ==============================================================
   Testimonials
   ============================================================== */

.sz-testimonials-section {
    background: var(--sz-blue-light);
}

.sz-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.sz-testimonial-card {
    padding: 26px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 32px rgba(16, 29, 55, 0.07);
}

.sz-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: #ffaf15;
    font-size: 13px;
}

.sz-testimonial-card>p {
    min-height: 93px;
    margin: 0 0 20px;
    color: var(--sz-navy);
    font-size: 14px;
    line-height: 1.65;
}

.sz-customer {
    display: flex;
    align-items: center;
    gap: 11px;
}

.sz-customer>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--sz-orange),
            #ffaf16);
    color: #fff;
    font-weight: 800;
}

.sz-customer div {
    display: flex;
    flex-direction: column;
}

.sz-customer strong {
    color: var(--sz-navy);
    font-size: 13px;
}

.sz-customer small {
    color: var(--sz-muted);
    font-size: 11px;
}

/* ==============================================================
   FAQ
   ============================================================== */

.sz-faq-section {
    background: #fff;
}

.sz-faq-list {
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--sz-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 13px 40px rgba(16, 29, 55, 0.07);
}

.sz-faq-item {
    border-bottom: 1px solid var(--sz-border);
}

.sz-faq-item:last-child {
    border-bottom: 0;
}

.sz-faq-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 23px;
    border: 0;
    background: #fff;
    color: var(--sz-navy);
    font-size: 14px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.sz-faq-button i {
    color: var(--sz-muted);
    font-size: 12px;
    transition: transform 0.25s ease;
}

.sz-faq-button[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.sz-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.sz-faq-answer>p {
    overflow: hidden;
    margin: 0;
    padding: 0 23px;
    color: var(--sz-muted);
    font-size: 13px;
    line-height: 1.7;
    transition: padding 0.3s ease;
}

.sz-faq-answer.is-open {
    grid-template-rows: 1fr;
}

.sz-faq-answer.is-open>p {
    padding: 0 23px 20px;
}

/* ==============================================================
   Final CTA
   ============================================================== */

.sz-final-cta-section {
    padding-top: 55px;
    padding-bottom: 85px;
    background: #fff;
}

.sz-final-cta {
    max-width: 950px;
    margin: 0 auto;
    padding: 55px 30px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0,
            rgba(255, 104, 28, 0.2),
            transparent 37%),
        var(--sz-navy);
    color: #fff;
    text-align: center;
}

.sz-final-cta>img {
    width: 74px;
    height: 74px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
}

.sz-final-cta h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: -1px;
}

.sz-final-cta>p {
    max-width: 600px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
}

.sz-final-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.sz-final-cta>small {
    display: block;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

/* ==============================================================
   Brands
   ============================================================== */

.sz-brands-section {
    padding-top: 60px;
    text-align: center;
    border-top: 1px solid var(--sz-border);
}

.sz-brand-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 740px;
    margin: -19px auto 28px;
}

.sz-brand-chips span {
    padding: 8px 21px;
    border-radius: 999px;
    background: var(--sz-blue-light);
    color: var(--sz-navy);
    font-size: 12px;
    font-weight: 700;
}

/* ==============================================================
   Tablet
   ============================================================== */

@media (max-width: 991px) {
    .sz-section {
        padding: 75px 0;
    }

    .sz-hero {
        min-height: 700px;
    }

    .sz-hero-background {
        object-position: center center;
    }

    .sz-hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(4, 11, 24, 0.72),
                rgba(4, 11, 24, 0.62));
    }

    .sz-hero-inner {
        max-width: 900px;
        padding: 85px 0 115px;
    }

    .sz-hero h1 {
        max-width: 860px;
        font-size: clamp(48px, 7vw, 68px);
        letter-spacing: -2.4px;
    }

    .sz-hero-description {
        max-width: 680px;
        font-size: 17px;
    }

    .sz-trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sz-reasons-grid,
    .sz-collections-grid,
    .sz-testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sz-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 30px;
    }

    .sz-benefits-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .sz-benefits-image {
        max-width: 680px;
        margin-inline: auto;
    }

    .sz-benefits-video {
        height: 500px;
    }
}

/* ==============================================================
   Mobile
   ============================================================== */

@media (max-width: 767px) {
    .sz-container {
        width: min(100% - 30px, 1180px);
    }

    .sz-section {
        padding: 63px 0;
    }

    .sz-section-heading {
        margin-bottom: 34px;
    }

    .sz-section-heading h2,
    .sz-benefits-content h2 {
        font-size: 31px;
        letter-spacing: -0.8px;
    }

    .sz-section-heading p,
    .sz-benefits-intro {
        font-size: 14px;
        line-height: 1.6;
    }

    .sz-hero {
        min-height: 730px;
        place-items: center;
    }

    .sz-hero-background {
        object-position: 58% center;
    }

    .sz-hero-overlay {
        background:
            linear-gradient(0deg,
                rgba(4, 11, 24, 0.9) 0%,
                rgba(4, 11, 24, 0.66) 55%,
                rgba(4, 11, 24, 0.6) 100%);
    }

    .sz-hero-inner {
        justify-content: center;
        max-width: 100%;
        padding: 72px 0 130px;
        text-align: center;
    }

    .sz-partner-pill {
        max-width: calc(100vw - 42px);
        margin-bottom: 21px;
        padding: 8px 14px;
        font-size: 10px;
        text-align: center;
    }

    .sz-hero h1 {
        max-width: 600px;
        font-size: clamp(39px, 11vw, 51px);
        line-height: 1;
        letter-spacing: -1.8px;
    }

    .sz-hero-description {
        max-width: 520px;
        margin: 22px auto 26px;
        font-size: 15px;
        line-height: 1.55;
    }

    .sz-hero-actions {
        flex-direction: column;
        align-items: center;
        width: min(100%, 360px);
    }

    .sz-hero-actions .sz-button {
        width: 100%;
    }

    .sz-hero-points {
        justify-content: center;
        gap: 12px 16px;
        margin-top: 25px;
    }

    .sz-hero-points span {
        font-size: 10px;
    }

    .sz-halal-badge {
        bottom: 18px;
        left: 18px;
        padding: 6px 13px 6px 7px;
    }

    .sz-halal-badge img {
        flex-basis: 37px;
        width: 37px;
        height: 37px;
    }

    .sz-halal-badge small {
        font-size: 8px;
    }

    .sz-halal-badge strong {
        font-size: 11px;
    }

    .sz-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 8px 0;
    }

    .sz-trust-item {
        min-height: 52px;
        justify-content: flex-start;
        padding: 8px 4px;
        font-size: 10px;
    }

    .sz-reasons-grid,
    .sz-steps-grid,
    .sz-collections-grid,
    .sz-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .sz-reason-card {
        min-height: auto;
    }

    .sz-step-card {
        min-height: 190px;
    }

    .sz-collection-card {
        border-radius: 16px;
    }

    .sz-collection-image {
        aspect-ratio: 1.55 / 1;
    }

    .sz-benefits-grid {
        gap: 36px;
    }

    .sz-benefits-video {
        height: 440px;
        border-radius: 18px;
    }

    .sz-benefits-list li {
        border-radius: 15px;
    }

    .sz-table-wrapper {
        overflow-x: auto;
        border-radius: 17px;
    }

    .sz-comparison-table {
        min-width: 670px;
    }

    .sz-comparison-table th,
    .sz-comparison-table td {
        padding: 16px;
        font-size: 12px;
    }

    .sz-testimonial-card>p {
        min-height: auto;
    }

    .sz-faq-button {
        padding: 18px;
        font-size: 13px;
    }

    .sz-faq-answer>p {
        padding-inline: 18px;
    }

    .sz-faq-answer.is-open>p {
        padding: 0 18px 18px;
    }

    .sz-final-cta {
        padding: 42px 20px;
        border-radius: 19px;
    }

    .sz-final-actions {
        flex-direction: column;
    }

    .sz-final-actions .sz-button {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .sz-benefits-video {
        height: 380px;
    }

    .sz-hero {
        min-height: 750px;
    }

    .sz-hero-inner {
        padding-bottom: 125px;
    }

    .sz-hero h1 {
        font-size: 38px;
        letter-spacing: -1.4px;
    }

    .sz-hero-points {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .sz-halal-badge {
        right: auto;
        left: 15px;
        max-width: calc(100% - 30px);
    }

    .sz-collection-content {
        padding-right: 54px;
    }
}


/* single collection css start  */
.sizzlingo-collection-page {
    padding: 50px 0;
    background: #fffaf5;
}

.collection-header {
    margin-bottom: 45px;
    text-align: center;
}

.collection-header h1 {
    margin: 20px 0 12px;
    font-size: 42px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.product-card {
    padding: 18px;
    border: 1px solid #eee1d7;
    border-radius: 18px;
    background: #ffffff;
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 14px;
}

.product-card h2 {
    margin: 18px 0 10px;
    color: #222;
    font-size: 21px;
}

.product-price {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 16px 0;
}

.product-price strong {
    color: #e76f1e;
    font-size: 20px;
}

.view-product-button {
    display: inline-flex;
    padding: 11px 18px;
    border-radius: 9px;
    background: #ec741f;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .collection-header h1 {
        font-size: 34px;
    }
}

/* single collection css end  */


/* pagination css start  */
/* ==============================================================
   Collections pagination
   ============================================================== */

.sz-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 45px;
}

.sz-pagination-pages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.sz-pagination-link,
.sz-pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid var(--sz-border);
    background: #fff;
    color: var(--sz-navy);
    font-size: 13px;
    font-weight: 800;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.sz-pagination-link {
    gap: 8px;
    padding: 10px 17px;
    border-radius: 999px;
}

.sz-pagination-number {
    width: 42px;
    padding: 8px;
    border-radius: 50%;
}

.sz-pagination-link:hover,
.sz-pagination-number:hover {
    border-color: var(--sz-orange);
    color: var(--sz-orange);
    transform: translateY(-2px);
}

.sz-pagination-number.is-active {
    border-color: var(--sz-orange);
    background: var(--sz-orange);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 104, 28, 0.22);
}

.sz-pagination-link.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.sz-pagination-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 25px;
    color: var(--sz-muted);
}

.sz-pagination-summary {
    margin: 14px 0 0;
    color: var(--sz-muted);
    font-size: 12px;
    text-align: center;
}

@media (max-width: 767px) {
    .sz-pagination {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 35px;
    }

    .sz-pagination-pages {
        order: -1;
        flex: 0 0 100%;
    }

    .sz-pagination-link {
        flex: 1;
        max-width: 155px;
    }

    .sz-pagination-number {
        width: 38px;
        min-height: 38px;
    }
}

@media (max-width: 420px) {
    .sz-pagination-number {
        width: 35px;
        min-height: 35px;
        font-size: 12px;
    }
}

/* pagination css end */



/* =========================================================
   SIZZLINGO PREMIUM OFFER BANNER
========================================================= */

.sz-campaign-section {
    padding: 92px 0px 92px 0px;
    background: #ffffff;
}

.sz-campaign-banner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 45px;
    min-height: 525px;
    padding: 60px 65px;
    overflow: hidden;
    background:
        linear-gradient(125deg,
            #a91f12 0%,
            #c63215 35%,
            #e64a19 67%,
            #f47b43 100%);
    border-radius: 30px;
    box-shadow: 0 26px 60px rgba(173, 46, 18, 0.19);
    isolation: isolate;
}

/* Decorative background */

.sz-campaign-banner::before {
    content: "";
    position: absolute;
    top: -170px;
    left: 42%;
    z-index: -2;
    width: 330px;
    height: 760px;
    background: rgba(255, 255, 255, 0.06);
    transform: rotate(19deg);
}

.sz-campaign-banner::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -235px;
    z-index: -2;
    width: 430px;
    height: 430px;
    border: 75px solid rgba(255, 194, 119, 0.16);
    border-radius: 50%;
}

.sz-campaign-circle {
    position: absolute;
    z-index: -1;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.sz-circle-one {
    top: -95px;
    left: -80px;
    width: 235px;
    height: 235px;
    background: rgba(103, 14, 8, 0.19);
}

.sz-circle-two {
    top: 80px;
    right: 85px;
    width: 85px;
    height: 85px;
    background: rgba(255, 203, 139, 0.22);
}

.sz-circle-three {
    bottom: 48px;
    left: 48%;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.11);
}

.sz-campaign-glow {
    position: absolute;
    top: 50%;
    right: 18%;
    z-index: -1;
    width: 340px;
    height: 340px;
    background: rgba(255, 174, 96, 0.23);
    border-radius: 50%;
    filter: blur(20px);
    transform: translateY(-50%);
}

/* Left content */

.sz-campaign-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
}

.sz-campaign-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 7px 15px 7px 8px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.65px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.sz-eyebrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    color: #c23117;
    background: #ffffff;
    border-radius: 50%;
}

.sz-campaign-content h2 {
    max-width: 690px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(45px, 4.4vw, 66px);
    font-weight: 900;
    letter-spacing: -2.5px;
    line-height: 1;
}

.sz-campaign-content h2 span {
    display: block;
    margin-top: 9px;
    color: #ffe2a3;
}

.sz-campaign-content>p {
    max-width: 580px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.7;
}

.sz-campaign-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 29px;
}

.sz-campaign-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sz-campaign-highlight>i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    color: #ffe2a3;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}

.sz-campaign-highlight>span {
    display: flex;
    flex-direction: column;
}

.sz-campaign-highlight strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.sz-campaign-highlight small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 10px;
}

.sz-campaign-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-height: 56px;
    margin-top: 34px;
    padding: 8px 9px 8px 23px;
    color: #af2915;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 14px 28px rgba(90, 18, 8, 0.2);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.sz-campaign-cta span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    color: #ffffff;
    background: linear-gradient(135deg, #c73216, #f16a31);
    border-radius: 11px;
}

.sz-campaign-cta:hover {
    color: #af2915;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 19px 34px rgba(90, 18, 8, 0.28);
}

.sz-campaign-cta:hover span i {
    transform: translateX(3px);
}

.sz-campaign-cta span i {
    transition: transform 0.25s ease;
}

/* Offer area */

.sz-campaign-offer {
    position: relative;
    z-index: 3;
    min-height: 410px;
}

.sz-offer-floating-label {
    position: absolute;
    top: 6px;
    left: 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 16px;
    color: #bd3117;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    background: #fff4ed;
    border-radius: 12px;
    box-shadow: 0 15px 28px rgba(105, 25, 10, 0.17);
    transform: rotate(-5deg);
}

/* Coupon ticket */

.sz-ticket-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(100%, 425px);
    padding: 31px 32px 29px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.99),
            rgba(255, 247, 241, 0.97));
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 26px;
    box-shadow: 0 28px 55px rgba(97, 25, 10, 0.27);
    transform: translate(-50%, -50%) rotate(2deg);
}

.sz-ticket-card::before {
    content: "";
    position: absolute;
    inset: 9px;
    pointer-events: none;
    border: 1px solid rgba(205, 68, 31, 0.11);
    border-radius: 19px;
}

.sz-ticket-cut {
    position: absolute;
    left: -15px;
    z-index: 2;
    width: 30px;
    height: 30px;
    background: #dc451b;
    border-radius: 50%;
}

.sz-ticket-cut-top {
    top: 54%;
    transform: translateY(-50%);
}

.sz-ticket-cut-bottom {
    right: -15px;
    left: auto;
    top: 54%;
    transform: translateY(-50%);
}

.sz-ticket-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
}

.sz-ticket-percent {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex: 0 0 92px;
    width: 92px;
    height: 92px;
    padding-top: 20px;
    color: #ffffff;
    background:
        linear-gradient(145deg, #a91f12, #e44919 70%, #f67b40);
    border-radius: 28px 28px 28px 12px;
    box-shadow: 0 15px 28px rgba(194, 48, 19, 0.28);
}

.sz-ticket-percent span {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
}

.sz-ticket-percent small {
    margin: 4px 0 0 2px;
    font-size: 17px;
    font-weight: 900;
}

.sz-ticket-heading {
    min-width: 0;
}

.sz-ticket-heading>span {
    display: block;
    margin-bottom: 5px;
    color: #b36552;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.sz-ticket-heading strong {
    display: block;
    color: #3d211a;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.15;
}

.sz-ticket-heading p {
    margin: 5px 0 0;
    color: #90746c;
    font-size: 12px;
}

.sz-ticket-divider {
    position: relative;
    z-index: 2;
    margin: 25px -32px 22px;
}

.sz-ticket-divider span {
    display: block;
    width: 100%;
    border-top: 1px dashed rgba(190, 73, 40, 0.35);
}

.sz-ticket-code-area {
    position: relative;
    z-index: 2;
    text-align: center;
}

.sz-ticket-code-label {
    display: block;
    margin-bottom: 9px;
    color: #9e7166;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.sz-ticket-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 57px;
    padding: 7px 8px 7px 18px;
    color: #b62f17;
    font-family: inherit;
    background: #fff0e7;
    border: 1px dashed #e07150;
    border-radius: 13px;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.sz-ticket-code strong {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.sz-ticket-copy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    color: #ffffff;
    background: linear-gradient(135deg, #bd2e14, #ee6530);
    border-radius: 10px;
}

.sz-ticket-code:hover {
    transform: translateY(-2px);
    background: #ffe7db;
}

.sz-ticket-code.is-copied {
    color: #ffffff;
    background: #b72d16;
    border-color: #b72d16;
}

.sz-ticket-code.is-copied .sz-ticket-copy-icon {
    color: #b72d16;
    background: #ffffff;
}

.sz-ticket-copy-text {
    display: block;
    margin-top: 8px;
    color: #aa8c83;
    font-size: 9px;
}

/* Mini floating cards */

.sz-offer-mini-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    background: rgba(255, 250, 246, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 15px;
    box-shadow: 0 16px 30px rgba(99, 24, 9, 0.18);
}

.sz-offer-mini-card>span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: #d6411d;
    background: #ffe8dd;
    border-radius: 10px;
}

.sz-offer-mini-card>div {
    display: flex;
    flex-direction: column;
}

.sz-offer-mini-card small {
    color: #ab8e85;
    font-size: 9px;
}

.sz-offer-mini-card strong {
    margin-top: 2px;
    color: #47271f;
    font-size: 12px;
    font-weight: 900;
}

.sz-mini-card-one {
    right: -5px;
    bottom: 27px;
    transform: rotate(-4deg);
}

.sz-mini-card-two {
    bottom: 4px;
    left: -13px;
    transform: rotate(5deg);
}

/* Tablet */

@media (max-width: 1100px) {
    .sz-campaign-banner {
        grid-template-columns: minmax(0, 1fr) 390px;
        gap: 25px;
        padding: 50px 40px;
    }

    .sz-campaign-content h2 {
        font-size: 49px;
    }

    .sz-ticket-card {
        width: 375px;
    }
}

/* Smaller tablet */

@media (max-width: 900px) {
    .sz-campaign-banner {
        grid-template-columns: 1fr;
        padding: 48px 35px;
    }

    .sz-campaign-content {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .sz-campaign-content>p {
        margin-right: auto;
        margin-left: auto;
    }

    .sz-campaign-highlights {
        justify-content: center;
    }

    .sz-campaign-offer {
        width: 100%;
        max-width: 560px;
        min-height: 410px;
        margin: 30px auto 0;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .sz-campaign-section {
        padding: 22px 0;
    }

    .sz-campaign-banner {
        padding: 34px 19px 38px;
        border-radius: 22px;
    }

    .sz-campaign-eyebrow {
        font-size: 9px;
    }

    .sz-campaign-content h2 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .sz-campaign-content>p {
        margin-top: 17px;
        font-size: 14px;
        line-height: 1.6;
    }

    .sz-campaign-highlights {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 13px;
    }

    .sz-campaign-highlight {
        padding: 11px;
        text-align: left;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 12px;
    }

    .sz-campaign-highlight:last-child {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .sz-campaign-cta {
        width: 100%;
        justify-content: space-between;
    }

    .sz-campaign-offer {
        min-height: 395px;
        margin-top: 18px;
    }

    .sz-ticket-card {
        width: calc(100% - 8px);
        padding: 25px 20px;
        transform: translate(-50%, -50%) rotate(1deg);
    }

    .sz-ticket-top {
        gap: 13px;
    }

    .sz-ticket-percent {
        flex-basis: 75px;
        width: 75px;
        height: 75px;
        padding-top: 17px;
        border-radius: 22px 22px 22px 10px;
    }

    .sz-ticket-percent span {
        font-size: 33px;
    }

    .sz-ticket-percent small {
        font-size: 13px;
    }

    .sz-ticket-heading strong {
        font-size: 20px;
    }

    .sz-ticket-divider {
        margin-right: -20px;
        margin-left: -20px;
    }

    .sz-ticket-code strong {
        font-size: 13px;
        letter-spacing: 0.7px;
    }

    .sz-offer-floating-label {
        top: 5px;
        left: 3px;
    }

    .sz-mini-card-one {
        right: -5px;
        bottom: 11px;
    }

    .sz-mini-card-two {
        display: none;
    }
}

@media (max-width: 390px) {
    .sz-campaign-content h2 {
        font-size: 31px;
    }

    .sz-campaign-highlight strong {
        font-size: 11px;
    }

    .sz-campaign-highlight small {
        font-size: 9px;
    }

    .sz-ticket-heading strong {
        font-size: 18px;
    }
}



/* =========================================================
   SIZZLINGO BLOG GRID
========================================================= */

.sz-blog-section {
    padding: 85px 0;
    background: #ffffff;
}

.sz-blog-heading {
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

.sz-blog-heading > span {
    display: block;
    margin-bottom: 7px;
    color: #df4c08;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    line-height: 1.4;
    text-transform: uppercase;
}

.sz-blog-heading h2 {
    margin: 0;
    color: #0d2040;
    font-size: clamp(31px, 4vw, 43px);
    font-weight: 900;
    letter-spacing: -1.4px;
    line-height: 1.12;
}

.sz-blog-heading p {
    max-width: 600px;
    margin: 13px auto 0;
    color: #6c7685;
    font-size: 14px;
    line-height: 1.7;
}

/* Grid */

.sz-blog-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(275px, 305px)
    );
    justify-content: center;
    gap: 24px;
    width: 100%;
}

/* Card */

.sz-blog-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #cfd3d8;
    border-radius: 7px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.sz-blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(218, 74, 5, 0.5);
    box-shadow: 0 14px 30px rgba(19, 35, 58, 0.11);
}

/* Image */

.sz-blog-image {
    display: block;
    width: 100%;
    height: 174px;
    overflow: hidden;
    background: #eeeeee;
}

.sz-blog-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.sz-blog-card:hover .sz-blog-image img {
    transform: scale(1.04);
}

/* Category bar */

.sz-blog-category {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 29px;
    padding: 5px 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    background: #d94b00;
}

/* Card content */

.sz-blog-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 15px 16px;
}

.sz-blog-content h3 {
    margin: 0 0 9px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.25px;
    line-height: 1.28;
}

.sz-blog-content h3 a {
    color: #111111;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sz-blog-content h3 a:hover {
    color: #d94b00;
    text-decoration: none;
}

.sz-blog-content p {
    display: -webkit-box;
    min-height: 66px;
    margin: 0 0 14px;
    overflow: hidden;
    color: #171717;
    font-size: 13px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* Read more button */

.sz-blog-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    margin-top: auto;
    padding: 8px 15px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    background: #d94b00;
    border: 1px solid #d94b00;
    border-radius: 7px;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.sz-blog-read-more:hover {
    color: #ffffff;
    text-decoration: none;
    background: #b93f00;
    border-color: #b93f00;
    transform: translateY(-1px);
}

/* Tablet */

@media (max-width: 991px) {
    .sz-blog-section {
        padding: 70px 0;
    }

    .sz-blog-grid {
        grid-template-columns: repeat(
            2,
            minmax(270px, 305px)
        );
    }
}

/* Mobile */

@media (max-width: 650px) {
    .sz-blog-section {
        padding: 58px 0;
    }

    .sz-blog-heading {
        margin-bottom: 28px;
    }

    .sz-blog-heading h2 {
        font-size: 30px;
    }

    .sz-blog-heading p {
        font-size: 13px;
    }

    .sz-blog-grid {
        grid-template-columns: minmax(0, 360px);
        gap: 20px;
    }

    .sz-blog-image {
        height: 195px;
    }
}

@media (max-width: 400px) {
    .sz-blog-heading h2 {
        font-size: 27px;
    }

    .sz-blog-image {
        height: 180px;
    }

    .sz-blog-content h3 {
        font-size: 17px;
    }
}


/* =========================================================
   Exclusive SizzlinGo Offers
========================================================= */

.szx-exclusive-offers {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(239, 99, 31, 0.13),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #fffaf7 0%,
            #ffffff 100%
        );
}

.szx-exclusive-offers::before {
    content: "";
    position: absolute;
    top: -160px;
    left: -160px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(239, 99, 31, 0.07);
    pointer-events: none;
}

.szx-exclusive-offers__heading {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
}

.szx-exclusive-offers__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #ef631f;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.szx-exclusive-offers__heading h2 {
    margin: 0 0 15px;
    color: #1b1b1b;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 800;
    line-height: 1.12;
}

.szx-exclusive-offers__heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #686868;
    font-size: 17px;
    line-height: 1.7;
}

.szx-offers-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.szx-offer-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(20, 20, 20, 0.07);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.szx-offer-card:hover {
    transform: translateY(-7px);
    border-color: rgba(239, 99, 31, 0.33);
    box-shadow: 0 20px 48px rgba(20, 20, 20, 0.12);
}

.szx-offer-card__header {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 104px;
    padding: 22px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #fff0e7 0%,
        #fff9f5 100%
    );
}

.szx-offer-card__header::after {
    content: "";
    position: absolute;
    top: -45px;
    right: -30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(239, 99, 31, 0.09);
    pointer-events: none;
}

.szx-offer-card__icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 16px;
    color: #ffffff;
    font-size: 23px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
}

.szx-offer-card__icon.is-code {
    background: #1d1d1d;
}

.szx-offer-card__icon.is-deal {
    background: #ef631f;
}

.szx-offer-card__type {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.szx-offer-card__type.is-code {
    background: #1d1d1d;
}

.szx-offer-card__type.is-deal {
    background: #ef631f;
}

.szx-offer-card__body {
    display: flex;
    min-height: 325px;
    flex: 1;
    flex-direction: column;
    padding: 25px 22px 22px;
}

.szx-offer-card__discount {
    margin-bottom: 9px;
    color: #ef631f;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
}

.szx-offer-card__body h3 {
    display: -webkit-box;
    min-height: 55px;
    margin: 0 0 18px;
    overflow: hidden;
    color: #1d1d1d;
    font-size: 18px;
    font-weight: 750;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.szx-offer-card__meta {
    display: flex;
    gap: 9px;
    flex-direction: column;
    margin-bottom: 22px;
    color: #777777;
    font-size: 13px;
    line-height: 1.4;
}

.szx-offer-card__meta span {
    display: flex;
    gap: 8px;
    align-items: center;
}

.szx-offer-card__meta i {
    width: 16px;
    color: #ef631f;
    text-align: center;
}

.szx-offer-card__meta .is-verified {
    color: #318746;
    font-weight: 700;
}

.szx-offer-card__meta .is-verified i {
    color: #318746;
}

.szx-offer-card__action {
    margin-top: auto;
}

.szx-offer-card__action-note {
    display: flex;
    gap: 8px;
    align-items: center;
    min-height: 22px;
    margin-bottom: 14px;
    color: #696969;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.szx-offer-card__action-note i {
    width: 17px;
    color: #ef631f;
    font-size: 14px;
    text-align: center;
}

.szx-offer-card__button {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 49px;
    padding: 12px 17px;
    border: 1px solid #ef631f;
    border-radius: 12px;
    background: #ef631f;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.szx-offer-card__button:hover {
    transform: translateY(-2px);
    border-color: #1d1d1d;
    background: #1d1d1d;
    color: #ffffff;
}

.szx-offer-card__button:disabled {
    cursor: wait;
    opacity: 0.9;
}

.szx-offer-card__button.is-copied,
.szx-offer-card__button.is-copied:hover {
    border-color: #268742;
    background: #268742;
    color: #ffffff;
}

.szx-offer-card__button i {
    transition: transform 0.2s ease;
}

.szx-offer-card__button:hover .fa-arrow-right {
    transform: translateX(4px);
}

.szx-exclusive-offers__footer {
    position: relative;
    z-index: 2;
    margin-top: 42px;
    text-align: center;
}

.szx-view-all-offers {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 27px;
    border: 2px solid #1d1d1d;
    border-radius: 13px;
    background: #1d1d1d;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.szx-view-all-offers:hover {
    transform: translateY(-2px);
    border-color: #ef631f;
    background: #ef631f;
    color: #ffffff;
}

.szx-view-all-offers i {
    transition: transform 0.2s ease;
}

.szx-view-all-offers:hover i {
    transform: translateX(4px);
}

/* Tablet */

@media (max-width: 991px) {
    .szx-exclusive-offers {
        padding: 75px 0;
    }

    .szx-offers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .szx-exclusive-offers {
        padding: 58px 0;
    }

    .szx-exclusive-offers__heading {
        margin-bottom: 32px;
    }

    .szx-exclusive-offers__heading h2 {
        font-size: 32px;
    }

    .szx-exclusive-offers__heading p {
        font-size: 15px;
    }

    .szx-offers-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .szx-offer-card {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        border-radius: 18px;
    }

    .szx-offer-card__header {
        min-height: 92px;
        padding: 18px;
    }

    .szx-offer-card__icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        font-size: 20px;
    }

    .szx-offer-card__body {
        min-height: auto;
        padding: 21px 18px 18px;
    }

    .szx-offer-card__body h3 {
        min-height: auto;
        font-size: 17px;
    }

    .szx-exclusive-offers__footer {
        margin-top: 30px;
    }

    .szx-view-all-offers {
        width: 100%;
        max-width: 420px;
    }
}
