
    :root {
        --primary: #e5484d;
        --primary2: #d93838;
        --dark: #0f172a;
        --text: #334155;
        --muted: #64748B;
        --border: #e2e8f0;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'auto';
    }

    body {
        background: #f8fafc;
        color: var(--text);
    }

    a {
        text-decoration: none;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .section-title {
        font-family: auto !important;
    }

    .sp-container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 30px;
    }

    /* TOP BAR */
    .sp-topbar {
        background: #f1f5f9;
        padding: 9px 0;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid var(--border);
    }

    .sp-topbar .sp-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .sp-topbar-link {
        background: var(--primary);
        color: #fff;
        padding: 4px 14px;
        border-radius: 4px;
        margin-left: 12px;
        font-weight: 700;
        font-size: 12px;
    }

    /* HEADER */
    .sp-header {
        background: #fff;
        padding: 18px 0;
        border-bottom: 1px solid var(--border);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    }

    .sp-header .sp-container {
        display: flex;
        align-items: center;
        gap: 28px;
    }

    .sp-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 22px;
        font-weight: 900;
        color: var(--dark);
        flex-shrink: 0;
    }

    .sp-logo span {
        color: var(--primary);
    }

    .sp-nav {
        display: flex;
        gap: 22px;
        font-weight: 700;
        font-size: 14px;
        flex-shrink: 0;
    }

    .sp-nav a {
        color: var(--text);
        transition: color .2s;
    }

    .sp-nav a:hover,
    .sp-nav a.active {
        color: var(--primary);
    }

    .sp-dropdown {
        position: relative;
        display: inline-block;
    }

    .sp-dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        min-width: 180px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.08);
        border-radius: 8px;
        z-index: 1;
        padding: 8px 0;
        border: 1px solid var(--border);
    }

    .sp-dropdown-content a {
        color: var(--text);
        padding: 10px 20px;
        text-decoration: none;
        display: block;
        transition: all 0.2s;
        font-weight: 600;
    }

    .sp-dropdown-content a:hover {
        background-color: #fef2f2;
        color: var(--primary);
        padding-left: 26px;
    }

    .sp-dropdown:hover .sp-dropdown-content {
        display: block;
    }

    .sp-search {
        flex: 1;
        position: relative;
    }

    .sp-search input {
        width: 100%;
        background: #f8fafc;
        border: 1.5px solid var(--border);
        border-radius: 50px;
        padding: 12px 48px 12px 20px;
        font-size: 14px;
        outline: none;
        transition: all .2s;
    }

    .sp-search input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(229, 72, 77, .1);
    }

    .sp-search button[type="submit"] {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: var(--muted);
        cursor: pointer;
        font-size: 15px;
    }

    .sp-actions {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-left: auto;
        flex-shrink: 0;
    }

    .sp-icon {
        position: relative;
        color: var(--dark);
        font-size: 20px;
        cursor: pointer;
        transition: color .2s;
    }

    .sp-icon:hover {
        color: var(--primary);
    }

    .sp-badge {
        position: absolute;
        top: -6px;
        right: -8px;
        background: var(--primary);
        color: #fff;
        font-size: 10px;
        font-weight: 800;
        width: 17px;
        height: 17px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sp-login {
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: 700;
        color: var(--dark);
        font-size: 14px;
        cursor: pointer;
        white-space: nowrap;
        transition: color .2s;
    }

    .sp-login:hover {
        color: var(--primary);
    }

    .sp-started {
        background: var(--primary);
        color: #fff;
        padding: 11px 22px;
        border-radius: 50px;
        font-weight: 800;
        font-size: 14px;
        white-space: nowrap;
        transition: all .2s;
        box-shadow: 0 4px 14px rgba(229, 72, 77, .3);
    }

    .sp-started:hover {
        background: var(--primary2);
        transform: translateY(-1px);
    }

    /* HERO */
    .sp-hero {
        padding: 26px 0;
    }

    .sp-hero-grid {
        display: grid;
        grid-template-columns: 256px 1fr;
        gap: 22px;
    }

    /* Sidebar */
    .sp-sidebar {
        background: #fff;
        border-radius: 14px;
        border: 1px solid var(--border);
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0, 0, 0, .03);
    }

    .sp-sidebar-head {
        background: var(--primary);
        color: #fff;
        padding: 15px 18px;
        font-weight: 800;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .sp-slink {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 18px;
        color: var(--text);
        font-weight: 600;
        font-size: 14px;
        border-bottom: 1px solid #f1f5f9;
        transition: all .2s;
    }

    .sp-slink:hover {
        background: #fef2f2;
        color: var(--primary);
        padding-left: 24px;
    }

    .sp-slink-inner {
        display: flex;
        align-items: center;
        gap: 11px;
    }

    .sp-slink-inner i {
        color: var(--muted);
        font-size: 15px;
        width: 19px;
        text-align: center;
        transition: color .2s;
    }

    .sp-slink:hover .sp-slink-inner i {
        color: var(--primary);
    }

    .sp-slink:last-child {
        border-bottom: none;
    }

    .sp-viewall-cats {
        display: block;
        padding: 13px 18px;
        text-align: center;
        color: var(--primary);
        font-weight: 800;
        font-size: 16px;
        background: #fff8f8;
        border-top: 1px solid var(--border);
        transition: background .2s;
    }

    .sp-viewall-cats:hover {
        background: #fee2e2;
    }

    /* Hero Slider */
    .sp-slider {
        border-radius: 14px;
        overflow: hidden;
        position: relative;
        height: 440px;
        box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
    }

    .sp-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity .8s ease;
    }

    .sp-slide.active {
        opacity: 1;
        z-index: 2;
    }

    .sp-slide-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .sp-slide.active .sp-slide-img {
        animation: spZoom .7s ease;
    }

    @keyframes spZoom {
        from {
            transform: scale(1.04);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    .sp-slide-1 {
        background: #1e293b;
    }

    .sp-slide-2 {
        background: #0f172a;
    }

    .sp-slide-3 {
        background: #1e293b;
    }

    .sp-dots {
        position: absolute;
        bottom: 18px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }

    .sp-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(0, 0, 0, .2);
        cursor: pointer;
        transition: all .3s;
    }

    .sp-dot.active {
        background: var(--primary);
        transform: scale(1.3);
    }

    /* FEATURES */
    .sp-features {
        padding: 26px 0;
    }

    .sp-features-inner {
        background: #fff;
        border-radius: 14px;
        border: 1px solid var(--border);
        padding: 26px 44px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 18px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, .02);
    }

    .sp-feat {
        display: flex;
        align-items: center;
        gap: 13px;
    }

    .sp-feat-icon {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: #fef2f2;
        color: var(--primary);
        border: 1px solid #fee2e2;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 19px;
        transition: all .3s;
    }

    .sp-feat:hover .sp-feat-icon {
        background: var(--primary);
        color: #fff;
    }

    .sp-feat-text h4 {
        font-size: 16px;
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 2px;
    }

    .sp-feat-text p {
        font-size: 12px;
        color: var(--muted);
        font-weight: 600;
    }

    /* SECTION COMMONS */
    .sp-sec {
        padding: 46px 0;
    }

    .sp-sec-hdr {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 28px;
    }

    .section-title {
        font-size: 24px;
        font-weight: 900;
        color: var(--dark);
    }

    .sp-viewall {
        color: var(--primary);
        font-weight: 800;
        font-size: 14px;
    }

    .sp-viewall:hover {
        text-decoration: underline;
    }

    /* CATEGORIES */
    .sp-cat-grid {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        gap: 18px;
    }

    .sp-cat-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 11px;
        text-decoration: none;
        transition: transform .2s;
    }

    .sp-cat-card:hover {
        transform: translateY(-6px);
    }

    .sp-cat-img {
        width: 100%;
        aspect-ratio: 1;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px;
        overflow: hidden;
    }

    .sp-cat-img img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform .3s;
    }

    .sp-cat-card:hover .sp-cat-img img {
        transform: scale(1.1);
    }

    .sp-cat-name {
        font-size: 12px;
        font-weight: 700;
        color: var(--dark);
        text-align: center;
        line-height: 1.3;
    }

    .cb1 {
        background: #f0fdfa;
    }

    .cb2 {
        background: #f8fafc;
    }

    .cb3 {
        background: #fdf4ff;
    }

    .cb4 {
        background: #fff7ed;
    }

    .cb5 {
        background: #f1f5f9;
    }

    .cb6 {
        background: #fef2f2;
    }

    .cb7 {
        background: #f0fdfa;
    }

    .cb8 {
        background: #faf5ff;
    }

    /* PRODUCTS */
    .sp-prod-tabs {
        display: flex;
        gap: 10px;
        margin-bottom: 28px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sp-tab {
        padding: 9px 22px;
        border-radius: 50px;
        border: 1.5px solid var(--border);
        background: #fff;
        color: var(--text);
        font-weight: 700;
        font-size: 16px;
        cursor: pointer;
        transition: all .2s;
    }

    .sp-tab.active,
    .sp-tab:hover {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
        box-shadow: 0 4px 12px rgba(229, 72, 77, .25);
    }

    .sp-prod-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 18px;
    }

    .sp-prod-card {
        background: #fff;
        border-radius: 14px;
        border: 1px solid var(--border);
        padding: 0;
        display: flex;
        flex-direction: column;
        position: relative;
        transition: all .3s;
        box-shadow: 0 3px 12px rgba(0, 0, 0, .02);
        overflow: hidden;
    }

    .sp-prod-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, .07);
    }

    .sp-pbadge {
        position: absolute;
        top: 14px;
        left: 14px;
        background: var(--primary);
        color: #fff;
        font-size: 10px;
        font-weight: 900;
        padding: 3px 8px;
        border-radius: 5px;
        z-index: 2;
    }

    .sp-pwish {
        position: absolute;
        top: 12px;
        right: 12px;
        color: var(--muted);
        font-size: 17px;
        cursor: pointer;
        z-index: 2;
        transition: all .2s;
        background: #fff;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    }

    .sp-pwish:hover {
        color: var(--primary);
    }

    .sp-pimg {
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
        background: #f8fafc;
        border-radius: 14px 14px 0 0;
        padding: 0px;
        overflow: hidden;
    }

    .sp-pimg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .3s;
    }

    .sp-prod-card:hover .sp-pimg img {
        transform: scale(1.08);
    }

    .sp-ptitle {
        font-size: 15px;
        font-weight: 800;
        color: var(--dark);
        margin: 14px 14px 7px 14px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .sp-pstars {
        color: #f59e0b;
        font-size: 12px;
        margin: 0 14px 10px 14px;
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .sp-pstars span {
        color: var(--muted);
        margin-left: 3px;
        font-size: 11px;
        font-weight: 600;
    }

    .sp-pprice {
        display: flex;
        align-items: baseline;
        gap: 7px;
        margin: auto 14px 16px 14px;
    }

    .sp-price {
        font-size: 17px;
        font-weight: 600;
        color: var(--dark);
    }

    .sp-old-price {
        font-size: 12px;
        color: var(--muted);
        text-decoration: line-through;
    }

    /* PROMOS */
    .sp-promos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .sp-promo {
        border-radius: 18px;
        padding: 38px 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        overflow: hidden;
        position: relative;
        min-height: 220px;
    }

    .sp-promo-1 {
        background: linear-gradient(135deg, #fdf4ff 0%, #f3e8ff 100%);
    }

    .sp-promo-2 {
        background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    }

    .sp-promo-content {
        z-index: 2;
        position: relative;
        max-width: 60%;
    }

    .sp-promo-tag {
        background: rgba(229, 72, 77, .1);
        color: var(--primary);
        padding: 4px 13px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 800;
        display: inline-block;
        margin-bottom: 12px;
        text-transform: uppercase;
    }

    .sp-promo-title {
        font-size: 28px;
        font-weight: 900;
        color: var(--dark);
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .sp-promo-desc {
        font-size: 14px;
        color: var(--muted);
        margin-bottom: 20px;
        font-weight: 600;
    }

    .sp-promo-btn {
        background: var(--primary);
        color: #fff;
        padding: 11px 26px;
        border-radius: 9px;
        font-weight: 800;
        font-size: 16px;
        border: none;
        cursor: pointer;
        transition: all .2s;
    }

    .sp-promo-btn:hover {
        background: var(--primary2);
        transform: translateY(-2px);
    }

    .sp-promo-img {
        position: absolute;
        right: 18px;
        bottom: -8px;
        max-height: 108%;
        max-width: 46%;
        object-fit: contain;
        z-index: 1;
        transition: transform .3s;
    }

    .sp-promo:hover .sp-promo-img {
        transform: scale(1.04);
    }

    /* WHY CHOOSE */
    .sp-why {
        background: #f8fafc;
        padding: 56px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .sp-why-hdr {
        text-align: center;
        margin-bottom: 44px;
    }

    .sp-why-hdr h2 {
        font-size: 30px;
        font-weight: 900;
        color: var(--dark);
    }

    .sp-why-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 18px;
    }

    .sp-why-card {
        text-align: center;
        padding: 26px 14px;
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, .02);
        border: 1px solid var(--border);
        transition: transform .3s;
    }

    .sp-why-card:hover {
        transform: translateY(-6px);
    }

    .sp-why-icon {
        width: 52px;
        height: 52px;
        border-radius: 13px;
        background: #fef2f2;
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin: 0 auto 16px;
        transition: all .3s;
    }

    .sp-why-card:hover .sp-why-icon {
        background: var(--primary);
        color: #fff;
    }

    .sp-why-card h4 {
        font-size: 16px;
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 7px;
    }

    .sp-why-card p {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.6;
    }

    /* TESTIMONIALS */
    .sp-testi-wrap {
        overflow: hidden;
    }

    .sp-testi-track {
        display: flex;
        transition: transform .5s ease;
    }

    .sp-testi-slide {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
        min-width: 100%;
    }

    .sp-testi-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 28px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, .02);
        transition: transform .3s;
    }

    .sp-testi-card:hover {
        transform: translateY(-4px);
    }

    .sp-testi-head {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 18px;
    }

    .sp-testi-av {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary), #f97316);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 900;
        font-size: 16px;
        flex-shrink: 0;
    }

    .sp-testi-info h4 {
        font-size: 15px;
        font-weight: 800;
        color: var(--dark);
    }

    .sp-testi-info p {
        font-size: 12px;
        color: var(--muted);
    }

    .sp-testi-stars {
        color: #f59e0b;
        font-size: 16px;
        margin-left: auto;
        letter-spacing: 1px;
    }

    .sp-testi-quote {
        font-size: 14px;
        color: var(--text);
        line-height: 1.7;
        font-style: italic;
    }

    .sp-testi-arrows {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 22px;
    }

    .sp-tarrow {
        width: 42px;
        height: 42px;
        background: #fff;
        border: 1.5px solid var(--border);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        cursor: pointer;
        font-size: 15px;
        transition: all .2s;
    }

    .sp-tarrow:hover {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }

    /* BLOG */
    .sp-blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }

    .sp-blog-card {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid var(--border);
        transition: all .3s;
        box-shadow: 0 3px 12px rgba(0, 0, 0, .02);
    }

    .sp-blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, .06);
    }

    .sp-blog-img {
        position: relative;
        height: 210px;
        overflow: hidden;
    }

    .sp-blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s;
    }

    .sp-blog-card:hover .sp-blog-img img {
        transform: scale(1.06);
    }

    .sp-blog-cat {
        position: absolute;
        bottom: 14px;
        left: 14px;
        background: var(--primary);
        color: #fff;
        padding: 4px 13px;
        border-radius: 5px;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .sp-blog-body {
        padding: 22px;
    }

    .sp-blog-title {
        font-size: 17px;
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 10px;
        line-height: 1.4;
        transition: color .2s;
    }

    .sp-blog-card:hover .sp-blog-title {
        color: var(--primary);
    }

    .sp-blog-meta {
        font-size: 12px;
        color: var(--muted);
        margin-bottom: 14px;
        font-weight: 600;
    }

    .sp-blog-link {
        color: var(--primary);
        font-weight: 800;
        font-size: 16px;
    }

    .sp-blog-link:hover {
        text-decoration: underline;
    }

    /* NEWSLETTER */
    .sp-nl-box {
        background: #fff;
        border-radius: 22px;
        border: 1px solid var(--border);
        padding: 52px 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 36px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, .02);
    }

    .sp-nl-left {
        display: flex;
        align-items: center;
        gap: 22px;
    }

    .sp-nl-icon {
        width: 74px;
        height: 74px;
        background: #fef2f2;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: var(--primary);
        flex-shrink: 0;
    }

    .sp-nl-text h2 {
        font-size: 26px;
        font-weight: 900;
        color: var(--dark);
        margin-bottom: 6px;
    }

    .sp-nl-text h2 span {
        color: var(--primary);
    }

    .sp-nl-text p {
        color: var(--muted);
        font-size: 14px;
    }

    .sp-nl-form-box {
        width: 430px;
        flex-shrink: 0;
    }

    .sp-nl-form {
        display: flex;
        background: #f8fafc;
        border: 1.5px solid var(--border);
        padding: 5px;
        border-radius: 12px;
        margin-bottom: 8px;
        transition: border-color .2s;
    }

    .sp-nl-form:focus-within {
        border-color: var(--primary);
    }

    .sp-nl-form input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 9px 16px;
        font-size: 14px;
        outline: none;
    }

    .sp-nl-form button {
        background: var(--primary);
        color: #fff;
        border: none;
        padding: 10px 24px;
        border-radius: 9px;
        font-weight: 800;
        font-size: 14px;
        cursor: pointer;
        transition: all .2s;
    }

    .sp-nl-form button:hover {
        background: var(--primary2);
    }

    .sp-nl-hint {
        font-size: 12px;
        color: var(--muted);
        text-align: center;
    }

    /* PRE-FOOTER */
    .sp-prefooter {
        border-top: 1px solid var(--border);
        padding: 36px 0;
        background: #fff;
    }

    .sp-prefooter .sp-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 18px;
    }

    .sp-pf-item {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .sp-pf-icon {
        font-size: 24px;
        color: var(--muted);
    }

    .sp-pf-text h4 {
        font-size: 14px;
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 2px;
    }

    .sp-pf-text p {
        font-size: 18px;
        color: var(--muted);
    }

    /* FOOTER */
    .sp-footer {
        background: #0f172a;
        padding: 64px 0 34px;
        color: #94a3b8;
    }

    .sp-footer-grid {
        display: grid;
        grid-template-columns: 2fr 1.4fr 1.4fr 1.4fr 1.8fr;
        gap: 40px;
        margin-bottom: 46px;
    }

    .sp-flogo {
        font-size: 22px;
        font-weight: 900;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 9px;
        margin-bottom: 16px;
    }

    .sp-flogo span {
        color: var(--primary);
    }

    .sp-fdesc {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 22px;
    }

    .sp-fcontact {
        display: flex;
        flex-direction: column;
        gap: 11px;
        font-size: 16px;
    }

    .sp-fcontact div {
        display: flex;
        align-items: center;
        gap: 9px;
    }

    .sp-fcontact i {
        color: var(--primary);
        font-size: 15px;
    }

    .sp-fsocials {
        display: flex;
        gap: 9px;
        margin-top: 22px;
    }

    .sp-fsoc {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        background: rgba(255, 255, 255, .06);
        color: #94a3b8;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .2s;
        font-size: 14px;
    }

    .sp-fsoc:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-2px);
    }

    .sp-ftitle {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 18px;
    }

    .sp-flinks {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .sp-flinks a {
        color: #94a3b8;
        font-size: 17px;
        transition: color .2s;
    }

    .sp-flinks a:hover {
        color: #fff;
    }

    .sp-fnl-desc {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .sp-fnl-form {
        display: flex;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 9px;
        padding: 4px;
        margin-bottom: 22px;
    }

    .sp-fnl-form input {
        flex: 1;
        background: transparent;
        border: none;
        padding: 9px 13px;
        color: #fff;
        outline: none;
        font-size: 16px;
    }

    .sp-fnl-form input::placeholder {
        color: #475569;
    }

    .sp-fnl-form button {
        background: transparent;
        border: none;
        color: var(--primary);
        padding: 0 13px;
        cursor: pointer;
        font-size: 16px;
        transition: transform .2s;
    }

    .sp-fnl-form button:hover {
        transform: scale(1.15);
    }

    .sp-fbottom {
        border-top: 1px solid rgba(255, 255, 255, .08);
        padding-top: 22px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
    }

    /* === TABLET: 1280px === */
    @media(max-width:1280px) {
        .sp-cat-grid {
            grid-template-columns: repeat(4, 1fr);
        }

        .sp-prod-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .sp-why-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .sp-features-inner {
            padding: 20px 28px;
            gap: 14px;
        }
    }

    /* === TABLET: 1024px === */
    @media(max-width:1024px) {
        .sp-container {
            padding: 0 20px;
        }

        .sp-hero-grid {
            grid-template-columns: 1fr;
        }

        .sp-sidebar {
            display: none;
        }

        .sp-promos {
            grid-template-columns: 1fr;
        }

        .sp-footer-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }

        .sp-footer {
            padding: 44px 0 24px;
        }

        .sp-prod-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .sp-why-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .sp-slider {
            height: 380px;
        }

        .sp-slide-title {
            font-size: 28px;
        }

        .sp-nl-box {
            padding: 36px 36px;
            gap: 24px;
        }

        .sp-nl-form-box {
            width: 360px;
        }
    }

    /* === MOBILE: 768px === */
    @media(max-width:768px) {

        /* Header */
        .sp-container {
            padding: 0 16px;
        }

        .sp-header {
            padding: 12px 0;
        }

        .sp-header .sp-container {
            gap: 12px;
        }

        .sp-nav {
            display: none;
        }

        .sp-search {
            display: none;
        }

        .sp-login {
            display: none;
        }

        .sp-started {
            padding: 9px 16px;
            font-size: 13px;
        }

        .sp-logo {
            font-size: 18px;
        }

        .sp-actions {
            gap: 14px;
        }

        .sp-icon {
            font-size: 18px;
        }

        /* Top Bar */
        .sp-topbar .sp-container {
            flex-direction: column;
            gap: 4px;
            text-align: center;
            font-size: 12px;
        }

        /* Hero */
        .sp-slider {
            height: 300px;
            border-radius: 10px;
        }

        .sp-slide {
            padding: 0;
            flex-direction: row;
            align-items: center;
                padding: 0 0px!important;
        }

        .sp-slide-visual {
            display: flex;
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .sp-slide-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            opacity: 0.35;
        }

        .sp-slide-text {
            position: absolute;
            inset: 0;
            z-index: 2;
            padding: 24px 22px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 100%;
        }

        .sp-slide-tag {
            font-size: 10px;
            padding: 4px 10px;
            margin-bottom: 8px;
        }

        .sp-slide-title {
            font-size: 20px;
            margin-bottom: 10px;
            color: #fff;
            text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
        }

        .sp-slide-title span {
            color: #ffd4d4;
        }

        .sp-slide-desc {
            display: none;
        }

        .sp-slide-btn {
            padding: 10px 18px;
            font-size: 13px;
        }

        .sp-slide-btn-outline {
            display: none;
        }

        /* Features */
        .sp-features {
            padding: 16px 0;
        }

        .sp-features-inner {
            padding: 16px;
            gap: 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            border-radius: 10px;
        }

        .sp-feat {
            padding: 10px 8px;
            border-bottom: 1px solid #f1f5f9;
        }

        .sp-feat:nth-child(odd) {
            border-right: 1px solid #f1f5f9;
        }

        .sp-feat:nth-last-child(-n+2) {
            border-bottom: none;
        }

        .sp-feat-icon {
            width: 38px;
            height: 38px;
            font-size: 15px;
        }

        .sp-feat-text h4 {
            font-size: 12px;
        }

        .sp-feat-text p {
            font-size: 11px;
        }

        /* Categories */
        .sp-sec {
            padding: 28px 0;
        }

        .sp-sec-hdr {
            margin-bottom: 18px;
        }

        .section-title {
            font-size: 18px;
        }

        .sp-cat-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .sp-cat-img {
            padding: 12px;
            border-radius: 12px;
        }

        .sp-cat-name {
            font-size: 11px;
        }

        /* Products */
        .sp-prod-tabs {
            gap: 6px;
        }

        .sp-tab {
            padding: 7px 14px;
            font-size: 12px;
        }

        .sp-prod-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .sp-prod-card {
            padding: 12px;
            border-radius: 12px;
        }

        .sp-pimg {
            height: 130px;
            padding: 0px;
            border-radius: 8px;
        }

        .sp-ptitle {
            font-size: 12px;
            margin-bottom: 5px;
        }

        .sp-pstars {
            font-size: 11px;
            margin-bottom: 7px;
        }

        .sp-price {
            font-size: 15px;
        }

        /* Promos */
        .sp-promos {
            gap: 14px;
        }

        .sp-promo {
            padding: 28px 24px;
            min-height: 180px;
            border-radius: 14px;
        }

        .sp-promo-title {
            font-size: 22px;
        }

        .sp-promo-btn {
            padding: 9px 20px;
            font-size: 12px;
        }

        .sp-promo-img {
            max-height: 90%;
            max-width: 42%;
                    max-height: 104%!important;
        position: absolute!important;
        right: 2px!important;
        }

        /* Why Choose */
        .sp-why {
            padding: 36px 0;
        }

        .sp-why-hdr h2 {
            font-size: 20px;
        }

        .sp-why-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .sp-why-card {
            padding: 20px 10px;
            border-radius: 12px;
        }

        .sp-why-icon {
            width: 44px;
            height: 44px;
            font-size: 18px;
            border-radius: 10px;
        }

        .sp-why-card h4 {
            font-size: 12px;
        }

        .sp-why-card p {
            font-size: 11px;
        }

        /* Testimonials */
        .sp-testi-slide {
            grid-template-columns: 1fr;
        }

        .sp-testi-card {
            padding: 20px;
            border-radius: 14px;
        }

        /* Blog */
        .sp-blog-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .sp-blog-img {
            height: 180px;
        }

        .sp-blog-body {
            padding: 18px;
        }

        .sp-blog-title {
            font-size: 15px;
        }

        /* Newsletter */
        .sp-nl-box {
            flex-direction: column;
            padding: 28px 20px;
            text-align: center;
            border-radius: 16px;
            gap: 20px;
        }

        .sp-nl-left {
            flex-direction: column;
            align-items: center;
        }

        .sp-nl-icon {
            width: 56px;
            height: 56px;
            font-size: 22px;
        }

        .sp-nl-text h2 {
            font-size: 20px;
        }

        .sp-nl-form-box {
            width: 100%;
        }

        /* Pre-footer */
        .sp-prefooter {
            padding: 24px 0;
        }

        .sp-prefooter .sp-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .sp-pf-icon {
            font-size: 20px;
        }

        .sp-pf-text h4 {
            font-size: 13px;
        }

        .sp-pf-text p {
            font-size: 11px;
        }

        /* Footer */
        .sp-footer {
            padding: 36px 0 20px;
        }

        .sp-footer-grid {
            grid-template-columns: 1fr;
            gap: 28px;
            margin-bottom: 28px;
        }

        .sp-ftitle {
            font-size: 14px;
            margin-bottom: 12px;
        }

        .sp-flinks {
            gap: 10px;
        }

        .sp-fbottom {
            flex-direction: column;
            gap: 8px;
            text-align: center;
            font-size: 12px;
        }
    }

    /* === SMALL MOBILE: 480px === */
    @media(max-width:480px) {
        .sp-slider {
            height: 240px;
        }

        .sp-slide-title {
            font-size: 17px;
        }

        .sp-cat-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .sp-cat-img {
            padding: 10px;
        }

        .sp-cat-name {
            font-size: 13px;
        }

        .sp-prod-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .sp-pimg {
            height: 110px;
        }

        .sp-why-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .sp-prefooter .sp-container {
            grid-template-columns: 1fr;
        }

        .sp-actions .sp-started {
            display: none;
        }

        .sp-promo {
            min-height: 160px;
            padding: 22px 18px;
        }

        .sp-promo-title {
            font-size: 20px;
        }

        .sp-promo-img {
            max-width: 57%;
        }
    }

    /* Slider Banner Layout */
    .sp-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity .8s ease;
        display: flex;
        align-items: center;
        padding: 0 60px;
        gap: 40px;
    }

    .sp-slide.active {
        opacity: 1;
        z-index: 2;
    }

    .sp-slide-text {
        flex: 1;
        z-index: 2;
    }

    .sp-slide-visual {
        flex-shrink: 0;
        width: 45%;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        height: 100%;
        padding-bottom: 0;
    }

    .sp-slide-visual img {
        max-height: 88%;
        max-width: 100%;
        object-fit: contain;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
        animation: spFloat 6s ease-in-out infinite;
    }

    @keyframes spFloat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-12px);
        }
    }

    .sp-slide-tag {
        display: inline-block;
        background: rgba(229, 72, 77, 0.1);
        color: var(--primary);
        font-size: 12px;
        font-weight: 800;
        padding: 5px 14px;
        border-radius: 50px;
        margin-bottom: 16px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .sp-slide-title {
        font-size: clamp(28px, 3.5vw, 44px);
        font-weight: 900;
        color: #1e293b;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .sp-slide-title span {
        color: var(--primary);
    }

    .sp-slide-desc {
        font-size: 15px;
        color: #64748b;
        margin-bottom: 28px;
        font-weight: 500;
        line-height: 1.6;
    }

    .sp-slide-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--primary);
        color: #fff;
        padding: 13px 28px;
        border-radius: 10px;
        font-weight: 800;
        font-size: 14px;
        transition: all .2s;
        box-shadow: 0 6px 18px rgba(229, 72, 77, 0.25);
    }

    .sp-slide-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(229, 72, 77, 0.35);
    }

    .sp-slide-btn-outline {
        background: rgba(0, 0, 0, 0.06);
        color: #1e293b;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .sp-slide-btn-outline:hover {
        background: rgba(0, 0, 0, 0.1);
    }

    .sp-slide-1 {
        background: linear-gradient(135deg, #fff5f5 0%, #fdf4ff 50%, #f0f9ff 100%);
    }

    .sp-slide-2 {
        background: linear-gradient(135deg, #eef2ff 0%, #f0fdfa 100%);
    }

    .sp-slide-3 {
        background: linear-gradient(135deg, #f0fdf4 0%, #ecfccb 100%);
    }

    .sp-dots {
        position: absolute;
        bottom: 18px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }

    .sp-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.18);
        cursor: pointer;
        transition: all .3s;
    }

    .sp-dot.active {
        background: var(--primary);
        transform: scale(1.3);
    }
    

    /* === MOBILE NAV === */
    .sp-hamburger {
        display: none;
        background: none;
        border: 1.5px solid var(--border);
        border-radius: 8px;
        width: 38px;
        height: 38px;
        color: var(--dark);
        font-size: 17px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        transition: all .2s;
        flex-shrink: 0;
    }

    .sp-hamburger:hover {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }

    @media(max-width:768px) {
        .sp-hamburger {
            display: flex;
        }
    }

    .sp-mobile-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: #fff;
        z-index: 9999;
        transform: translateX(100%);
        transition: transform .35s cubic-bezier(.4, 0, .2, 1);
        box-shadow: -8px 0 32px rgba(0, 0, 0, .12);
        display: flex;
        flex-direction: column;
    }

    .sp-mobile-nav.open {
        transform: translateX(0);
    }

    .sp-mobile-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 22px;
        border-bottom: 1px solid var(--border);
    }

    .sp-mobile-close {
        background: none;
        border: 1.5px solid var(--border);
        border-radius: 8px;
        width: 36px;
        height: 36px;
        color: var(--dark);
        font-size: 17px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .2s;
    }

    .sp-mobile-close:hover {
        background: #fef2f2;
        color: var(--primary);
        border-color: var(--primary);
    }

    .sp-mobile-links {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 12px 0;
        overflow-y: auto;
    }

    .sp-mobile-links a {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 22px;
        color: var(--dark);
        font-weight: 700;
        font-size: 15px;
        border-bottom: 1px solid #f8fafc;
        transition: all .2s;
    }

    .sp-mobile-links a:hover,
    .sp-mobile-links a:active {
        color: var(--primary);
        background: #fef2f2;
        padding-left: 28px;
    }

    .sp-mobile-links a i {
        width: 20px;
        color: var(--muted);
        font-size: 16px;
    }

    .sp-mobile-links a:hover i {
        color: var(--primary);
    }

    .sp-mobile-dropdown {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #f8fafc;
    }

    .sp-mob-dropbtn {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 22px;
        color: var(--dark);
        font-weight: 700;
        font-size: 15px;
        transition: all .2s;
        border-bottom: none !important;
        text-decoration: none;
    }

    .sp-mob-dropdown-content {
        display: none;
        flex-direction: column;
        background-color: #f8fafc;
        padding: 8px 0;
    }

    .sp-mob-dropdown-content a {
        padding: 12px 22px 12px 56px;
        font-size: 14px;
        border-bottom: none;
        color: var(--muted);
    }

    .sp-mob-dropdown-content a:hover {
        padding-left: 60px;
    }

    .sp-mobile-dropdown.active .sp-mob-dropdown-content {
        display: flex;
    }

    .sp-mobile-dropdown.active .sp-mob-dropbtn .fa-chevron-down {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }
    
    .sp-mobile-dropdown .sp-mob-dropbtn .fa-chevron-down {
        transition: transform 0.3s ease;
    }

    .sp-mobile-footer {
        padding: 16px 22px 22px;
        border-top: 1px solid var(--border);
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* Mobile User Info (logged in) */
    .sp-mob-user-info {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 0 14px;
        border-bottom: 1px solid var(--border);
        margin-bottom: 12px;
    }

    .sp-mob-avatar {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--primary);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 15px;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(229,72,77,0.25);
    }

    .sp-mob-user-name {
        font-size: 14px;
        font-weight: 800;
        color: var(--dark);
        line-height: 1.2;
    }

    .sp-mob-user-email {
        font-size: 11px;
        color: var(--muted);
        margin-top: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 180px;
    }

    /* Mobile Auth Buttons Row */
    .sp-mob-auth-btns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 10px;
    }

    .sp-mob-btn-login,
    .sp-mob-btn-register,
    .sp-mob-btn-profile,
    .sp-mob-btn-logout {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 11px 10px;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.2s;
        cursor: pointer;
    }

    /* Login Button - outlined style */
    .sp-mob-btn-login {
        background: #fff;
        color: var(--primary);
        border: 1.5px solid var(--primary);
    }

    .sp-mob-btn-login:hover {
        background: #fff5f5;
    }

    /* Register Button - filled style */
    .sp-mob-btn-register {
        background: var(--primary);
        color: #fff;
        border: 1.5px solid var(--primary);
        box-shadow: 0 4px 12px rgba(229,72,77,0.25);
    }

    .sp-mob-btn-register:hover {
        background: var(--primary2);
    }

    /* Profile Button (logged in) */
    .sp-mob-btn-profile {
        background: #f1f5f9;
        color: var(--dark);
        border: 1.5px solid var(--border);
    }

    .sp-mob-btn-profile:hover {
        background: #e2e8f0;
    }

    /* Logout Button (logged in) */
    .sp-mob-btn-logout {
        background: #fff5f5;
        color: var(--primary);
        border: 1.5px solid rgba(229,72,77,0.2);
    }

    .sp-mob-btn-logout:hover {
        background: var(--primary);
        color: #fff;
    }

    .sp-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        z-index: 9998;
        opacity: 0;
        pointer-events: none;
        transition: opacity .35s;
        backdrop-filter: blur(4px);
    }

    .sp-overlay.open {
        opacity: 1;
        pointer-events: all;
    }
