.ss-shop-wrap {
    background: #f4f4f4;
    padding: 12px 8px 35px;
    font-family: "Century Gothic", Arial, sans-serif;
}

.ss-shop-wrap * {
    box-sizing: border-box;
}

/* HERO + CAROUSEL */
.ss-hero {
    max-width: 1320px;
    margin: 0 auto 20px;
    background: #060606;
    color: #fff;
    border-radius: 24px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    overflow: hidden;
}

.ss-carousel {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.ss-slide {
    display: none;
    min-height: 520px;
    background: radial-gradient(circle at top left, #2a2a2a, #060606 55%);
    background-size: cover;
    background-position: center;
    padding: 26px;
}

.ss-slide.active {
    display: flex;
    align-items: center;
}

.ss-slide-content {
    max-width: 760px;
    position: relative;
    z-index: 2;
}

.ss-badge {
    display: inline-block;
    background: #ff7a00;
    color: #fff;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 14px;
}

.ss-hero h1 {
    font-size: 31px;
    line-height: 1.1;
    margin: 0 0 12px;
    font-weight: 900;
}

.ss-hero p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 22px;
    color: #f2f2f2;
}

.ss-search {
    background: #fff;
    padding: 6px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
}

.ss-search input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 15px 18px;
    border-radius: 14px;
    font-size: 14px;
}

.ss-search button {
    border: 0;
    background: #ff7a00;
    color: #fff;
    padding: 14px 20px;
    border-radius: 14px;
    font-weight: 900;
    cursor: pointer;
}

.ss-slide-btn {
    display: inline-block;
    margin-top: 20px;
    background: #ff7a00;
    color: #fff;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 900;
}

.ss-slide-btn:hover {
    color: #fff;
    background: #e96f00;
}

.ss-carousel-dots {
    position: absolute;
    left: 26px;
    bottom: 22px;
    display: flex;
    gap: 9px;
    z-index: 5;
}

.ss-carousel-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    opacity: .45;
    cursor: pointer;
    padding: 0;
}

.ss-carousel-dots button.active {
    background: #ff7a00;
    opacity: 1;
}

.ss-hero-card {
    background: #fff;
    color: #111;
    border: 3px solid #ff7a00;
    border-radius: 22px;
    padding: 24px;
    margin: 0 18px 18px;
}

.ss-hero-card h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 900;
}

.ss-hero-card p {
    color: #444;
    margin-bottom: 18px;
    line-height: 1.6;
}

.ss-hero-card a {
    display: inline-block;
    background: #ff7a00;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 900;
}

/* QUICK LINKS */
.ss-quick-links {
    max-width: 1320px;
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.ss-quick-links a {
    background: #fff;
    color: #111;
    text-align: center;
    text-decoration: none;
    border-radius: 16px;
    padding: 14px;
    font-size: 14px;
    font-weight: 900;
    border: 1px solid #eee;
    box-shadow: 0 8px 22px rgba(0,0,0,.05);
    transition: .25s ease;
}

.ss-quick-links a:hover {
    background: #ff7a00;
    color: #fff;
}

/* SECTIONS */
.ss-section {
    max-width: 1320px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.ss-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.ss-section-head h2 {
    margin: 0;
    font-size: 21px;
    font-weight: 900;
    color: #111;
}

.ss-section-head a {
    color: #ff7a00;
    font-weight: 900;
    font-size: 13px;
    text-decoration: none;
}

/* CATEGORIES + STORES */
.ss-category-grid,
.ss-store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.ss-category-card,
.ss-store-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 16px 12px;
    text-align: center;
    text-decoration: none;
    color: #111;
    transition: .25s ease;
}

.ss-category-card:hover,
.ss-store-card:hover {
    transform: translateY(-5px);
    border-color: #ff7a00;
    box-shadow: 0 14px 28px rgba(0,0,0,.1);
}

.ss-category-img,
.ss-store-logo {
    width: 72px;
    height: 72px;
    margin: 0 auto 10px;
    border-radius: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ss-store-logo {
    border-radius: 50%;
    background: #111;
    color: #fff;
}

.ss-category-img img,
.ss-store-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ss-category-img span,
.ss-store-logo span {
    font-size: 28px;
    font-weight: 900;
}

.ss-category-card strong,
.ss-store-card h3 {
    display: block;
    font-size: 14px;
    font-weight: 900;
    color: #111;
    margin: 0;
}

.ss-category-card small,
.ss-store-card p {
    color: #ff7a00;
    font-size: 12px;
    font-weight: 900;
    margin: 4px 0 0;
}

/* PRODUCTS */
.ss-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.ss-product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    transition: .25s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,.04);
}

.ss-product-card:hover {
    transform: translateY(-6px);
    border-color: #ff7a00;
    box-shadow: 0 16px 32px rgba(0,0,0,.12);
}

.ss-product-image {
    display: block;
    position: relative;
    height: 170px;
    background: #f7f7f7;
    overflow: hidden;
}

.ss-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
}

.ss-product-card:hover .ss-product-image img {
    transform: scale(1.05);
}

.ss-sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: #ff7a00;
    color: #fff;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
}

.ss-no-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #777;
}

.ss-product-body {
    padding: 13px;
}

.ss-vendor-line {
    color: #ff7a00;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 6px;
}

.ss-product-title {
    display: block;
    color: #111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
    min-height: 40px;
}

.ss-rating {
    margin-top: 8px;
    color: #ff7a00;
    font-size: 12px;
    display: flex;
    gap: 6px;
    align-items: center;
}

.ss-rating small {
    color: #777;
}

.ss-price {
    margin: 10px 0 14px;
    color: #111;
    font-size: 15px;
    font-weight: 900;
}

.ss-price del {
    color: #888;
    margin-right: 5px;
}

.ss-price ins {
    text-decoration: none;
    color: #ff7a00;
}

.ss-product-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.ss-cart-btn,
.ss-view-btn {
    text-align: center;
    border-radius: 50px !important;
    padding: 11px 12px !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

.ss-cart-btn {
    background: #111 !important;
    color: #fff !important;
}

.ss-cart-btn:hover {
    background: #ff7a00 !important;
    color: #fff !important;
}

.ss-view-btn {
    background: #fff;
    border: 1px solid #ff7a00;
    color: #ff7a00;
}

.ss-view-btn:hover {
    background: #ff7a00;
    color: #fff;
}

.ss-empty,
.ss-shop-alert {
    background: #fff4e8;
    border: 1px solid #ffc98f;
    color: #111;
    border-radius: 14px;
    padding: 15px;
    font-weight: 700;
}

/* TABLET */
@media (min-width: 768px) {
    .ss-hero {
        grid-template-columns: 1fr;
        padding: 0;
        border-radius: 26px;
    }

    .ss-carousel {
        min-height: 430px;
    }

    .ss-slide {
        min-height: 430px;
        padding: 38px;
    }

    .ss-hero h1 {
        font-size: 44px;
    }

    .ss-search {
        flex-direction: row;
        border-radius: 50px;
        gap: 0;
        max-width: 760px;
    }

    .ss-search input {
        border-radius: 50px;
    }

    .ss-search button {
        border-radius: 50px;
        padding: 13px 28px;
    }

    .ss-hero-card {
        margin: 0 24px 24px;
    }

    .ss-quick-links {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }

    .ss-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .ss-product-image {
        height: 220px;
    }

    .ss-product-actions {
        grid-template-columns: 1fr .65fr;
    }

    .ss-section {
        padding: 22px;
    }
}

/* DESKTOP */
@media (min-width: 1100px) {
    .ss-hero {
        grid-template-columns: 1.55fr .75fr;
        align-items: center;
        padding: 38px;
    }

    .ss-carousel {
        min-height: 430px;
    }

    .ss-slide {
        min-height: 430px;
        border-radius: 24px;
    }

    .ss-hero-card {
        margin: 0;
    }

    .ss-category-grid,
    .ss-store-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .ss-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}