/* ==========================================================
   SHOPKU UI
   PART 1
   FOUNDATION + LAYOUT + HERO
==========================================================*/
/*==============================
    GOOGLE FONT
===============================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
/*==============================
    VARIABLES
===============================*/
:root {
    --primary: #ee4d2d;
    --primary-dark: #d73211;
    --primary-light: #fff3ef;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --text: #222;
    --text-light: #666;
    --muted: #999;
    --bg: #f6f7fb;
    --card: #ffffff;
    --border: #ececec;
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 24px;
    --shadow-sm: 0 3px 10px rgba(0, 0, 0, 0.05);
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 18px 45px rgba(0, 0, 0, 0.12);
    --transition: 0.28s ease;
}
/*==============================
RESET
===============================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}
img {
    width: 100%;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}
ul {
    list-style: none;
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 20px;
}
/*==============================
CONTAINER
===============================*/
.shop-page {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 16px;
}
.shop-page section {
    margin-top: 28px;
}
/*==============================
SECTION TITLE
===============================*/
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.section-header h2 {
    font-size: 22px;
    font-weight: 700;
}
.section-header a {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}
/*==============================
BUTTON
===============================*/
.btn-shop,
.hero-overlay button {
    background: var(--primary);
    color: #fff;
    height: 46px;
    padding: 0 26px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}
.btn-shop:hover,
.hero-overlay button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
/*=================================================
HERO
==================================================*/
.hero-section {
    margin-top: 12px;
}
.hero-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.hero-slider::-webkit-scrollbar {
    display: none;
}
.hero-slide {
    flex: 0 0 100%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: var(--shadow-lg);
}
.hero-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
/*==============================
OVERLAY
===============================*/
.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 70px;
    color: #fff;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.15),
        transparent
    );
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
}
.hero-overlay h2 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    max-width: 520px;
}
.hero-overlay p {
    margin-top: 18px;
    max-width: 500px;
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}
.hero-overlay button {
    margin-top: 30px;
}
/*==============================
DECORATION
===============================*/
.hero-slide::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    right: -150px;
    top: -150px;
    background: rgba(255, 255, 255, 0.08);
}
.hero-slide::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    left: -60px;
    bottom: -60px;
    background: rgba(255, 255, 255, 0.06);
}
/*==============================
ANIMATION
===============================*/
.hero-slide {
    animation: fadeHero 0.6s ease;
}
@keyframes fadeHero {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
/*=================================================
TABLET
==================================================*/
@media (max-width: 991px) {
    .hero-slide img {
        height: 330px;
    }
    .hero-overlay {
        padding: 40px;
    }
    .hero-overlay h2 {
        font-size: 38px;
    }
    .hero-overlay p {
        font-size: 15px;
    }
}
/*=================================================
MOBILE
==================================================*/
@media (max-width: 768px) {
    .shop-page {
        padding: 12px;
    }
    .shop-page section {
        margin-top: 22px;
    }
    .section-header {
        margin-bottom: 14px;
    }
    .section-header h2 {
        font-size: 18px;
    }
    .hero-slide {
        border-radius: 18px;
    }
    .hero-slide img {
        height: 200px;
    }
    .hero-overlay {
        padding: 20px;
        justify-content: flex-end;
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.55)
        );
    }
    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 10px;
    }
    .hero-overlay h2 {
        font-size: 24px;
        max-width: 250px;
    }
    .hero-overlay p {
        display: none;
    }
    .hero-overlay button {
        margin-top: 14px;
        width: 170px;
        height: 40px;
        font-size: 13px;
    }
}
/*=================================================
SMALL MOBILE
==================================================*/
@media (max-width: 480px) {
    .shop-page {
        padding: 10px;
    }
    .hero-slide img {
        height: 180px;
    }
    .hero-overlay {
        padding: 16px;
    }
    .hero-overlay h2 {
        font-size: 21px;
    }
    .hero-overlay button {
        width: 150px;
    }
}
/*==========================================================
SHOPKU UI
PART 2
MINI PROMO + CATEGORY
==========================================================*/
/*==========================================================
PROMO SECTION
==========================================================*/
.promo-section {
    margin-top: 26px;
}
.promo-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.promo-grid::-webkit-scrollbar {
    display: none;
}
.promo-card {
    flex: 0 0 300px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    transition: var(--transition);
    position: relative;
}
.promo-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: 0.4s;
}
.promo-card:hover {
    transform: translateY(-5px);
}
.promo-card:hover img {
    transform: scale(1.05);
}
.promo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.08));
    pointer-events: none;
}
/*==========================================================
CATEGORY
==========================================================*/
.category-section {
    margin-top: 32px;
}
.category-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}
.category-grid::-webkit-scrollbar {
    display: none;
}
.category-item {
    flex: 0 0 82px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    scroll-snap-align: start;
    transition: var(--transition);
    color: var(--text);
}
.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 10px;
    transition: var(--transition);
    border: 1px solid #f2f2f2;
}
.category-item span {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
}
/*==========================================================
CATEGORY EFFECT
==========================================================*/
.category-item:hover .category-icon {
    transform: translateY(-5px);
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow);
}
.category-item:hover {
    color: var(--primary);
}
.category-item:active {
    transform: scale(0.96);
}
.category-item.active .category-icon {
    background: var(--primary);
    color: #fff;
}
.category-item.active span {
    color: var(--primary);
}
/*==========================================================
ANDROID RIPPLE
==========================================================*/
.category-icon {
    position: relative;
    overflow: hidden;
}
.category-icon::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transition: 0.45s;
}
.category-item:active .category-icon::before {
    width: 220px;
    height: 220px;
}
/*==========================================================
SECTION TITLE
==========================================================*/
.category-section .section-header,
.promo-section .section-header {
    margin-bottom: 18px;
}
.category-section .section-header a,
.promo-section .section-header a {
    font-size: 13px;
    font-weight: 700;
}
/*==========================================================
DESKTOP
==========================================================*/
@media (min-width: 992px) {
    .category-grid {
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        gap: 18px;
        overflow: visible;
    }
    .category-item {
        flex: none;
    }
    .promo-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow: visible;
    }
    .promo-card {
        flex: none;
    }
}
/*==========================================================
TABLET
==========================================================*/
@media (max-width: 991px) {
    .promo-card {
        flex: 0 0 260px;
    }
    .category-icon {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }
    .category-item {
        flex: 0 0 78px;
    }
}
/*==========================================================
MOBILE
==========================================================*/
@media (max-width: 768px) {
    .promo-section {
        margin-top: 22px;
    }
    .promo-grid {
        gap: 12px;
    }
    .promo-card {
        flex: 0 0 240px;
        border-radius: 16px;
    }
    .promo-card img {
        height: 120px;
    }
    .category-grid {
        gap: 14px;
    }
    .category-item {
        flex: 0 0 72px;
    }
    .category-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 24px;
        margin-bottom: 8px;
    }
    .category-item span {
        font-size: 11px;
    }
}
/*==========================================================
SMALL MOBILE
==========================================================*/
@media (max-width: 480px) {
    .promo-card {
        flex: 0 0 220px;
    }
    .promo-card img {
        height: 110px;
    }
    .category-item {
        flex: 0 0 68px;
    }
    .category-icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 22px;
    }
    .category-item span {
        font-size: 10px;
    }
}
/*==========================================================
SMOOTH SCROLL
==========================================================*/
.promo-grid,
.category-grid {
    scroll-behavior: smooth;
}
/*==========================================================
FADE IN
==========================================================*/
.promo-card,
.category-item {
    animation: fadeUp 0.5s ease;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
/*==========================================================
SHOPKU UI
PART 3
FLASH SALE
==========================================================*/
/*==========================================================
FLASH SALE
==========================================================*/
.flash-sale {
    margin-top: 34px;
}
.flash-sale .section-header {
    margin-bottom: 18px;
}
.flash-sale .section-header h2 {
    font-weight: 800;
}
.countdown {
    background: linear-gradient(135deg, var(--primary), #ff6b47);
    color: #fff;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
}
/*==========================================================
SCROLL
==========================================================*/
.flash-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}
.flash-scroll::-webkit-scrollbar {
    display: none;
}
/*==========================================================
CARD
==========================================================*/
.flash-product {
    flex: 0 0 220px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f2f2f2;
}
.flash-product:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
/*==========================================================
IMAGE
==========================================================*/
.flash-product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s;
}
.flash-product:hover img {
    transform: scale(1.05);
}
/*==========================================================
DISCOUNT
==========================================================*/
.discount {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 10;
    background: #ff2d2d;
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 5px 12px rgba(255, 0, 0, 0.25);
}
/*==========================================================
WISHLIST
==========================================================*/
.flash-product .wishlist {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
}
.flash-product .wishlist i {
    font-size: 16px;
}
.flash-product .wishlist:hover {
    background: var(--primary);
    color: #fff;
}
.flash-product .wishlist.active {
    background: var(--primary);
    color: #fff;
}
/*==========================================================
BODY
==========================================================*/
.flash-body {
    padding: 14px;
}
.flash-body h5 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    height: 42px;
    overflow: hidden;
    margin-bottom: 10px;
}
/*==========================================================
PRICE
==========================================================*/
.flash-body .price {
    font-size: 22px;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 4px;
}
.flash-body .old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 12px;
    margin-bottom: 10px;
}
/*==========================================================
SOLD
==========================================================*/
.flash-body .sold {
    position: relative;
    font-size: 12px;
    color: #666;
    margin-top: 12px;
    padding-bottom: 12px;
}
/* background bar */
.flash-body .sold::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background: #ededed;
    border-radius: 20px;
}
/* progress */
.flash-body .sold::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 75%;
    height: 8px;
    border-radius: 20px;
    background: linear-gradient(90deg, #ffbe0b, #ff5722);
    z-index: 2;
}
/*==========================================================
FLASH EFFECT
==========================================================*/
.flash-product::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );
    transform: translateX(-120%);
    transition: 0.7s;
    z-index: 5;
    pointer-events: none;
}
.flash-product:hover::before {
    transform: translateX(120%);
}
/*==========================================================
DESKTOP
==========================================================*/
@media (min-width: 1200px) {
    .flash-product {
        flex: 0 0 250px;
    }
    .flash-product img {
        height: 220px;
    }
    .flash-body .price {
        font-size: 24px;
    }
}
/*==========================================================
TABLET
==========================================================*/
@media (max-width: 991px) {
    .flash-product {
        flex: 0 0 200px;
    }
    .flash-product img {
        height: 180px;
    }
}
/*==========================================================
MOBILE
==========================================================*/
@media (max-width: 768px) {
    .flash-sale {
        margin-top: 26px;
    }
    .countdown {
        padding: 8px 12px;
        font-size: 12px;
    }
    .flash-scroll {
        gap: 12px;
    }
    .flash-product {
        flex: 0 0 170px;
        border-radius: 16px;
    }
    .flash-product img {
        height: 160px;
    }
    .flash-body {
        padding: 12px;
    }
    .flash-body h5 {
        font-size: 13px;
        height: 38px;
    }
    .flash-body .price {
        font-size: 18px;
    }
    .flash-product:hover {
        transform: none;
    }
}
/*==========================================================
SMALL MOBILE
==========================================================*/
@media (max-width: 480px) {
    .flash-product {
        flex: 0 0 160px;
    }
    .flash-product img {
        height: 150px;
    }
    .flash-body {
        padding: 10px;
    }
    .flash-body .price {
        font-size: 16px;
    }
    .flash-body .old-price {
        font-size: 11px;
    }
    .flash-body .sold {
        font-size: 11px;
    }
}
/*==========================================================
ANIMATION
==========================================================*/
.flash-product {
    animation: flashFade 0.5s ease;
}
@keyframes flashFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
/*==========================================================
SHOPKU UI
PART 4
PRODUCT GRID
==========================================================*/
/*==========================================================
SECTION
==========================================================*/
.product-section {
    margin-top: 36px;
}
/*==========================================================
GRID
==========================================================*/
.product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}
/*==========================================================
CARD
==========================================================*/
.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    border: 1px solid #f1f1f1;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: #ffd9ce;
}
/*==========================================================
IMAGE
==========================================================*/
.product-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: 0.35s;
}
.product-card:hover img {
    transform: scale(1.05);
}
/*==========================================================
WISHLIST
==========================================================*/
.product-card .wishlist {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transition: 0.25s;
    z-index: 10;
}
.product-card .wishlist:hover {
    background: var(--primary);
    color: #fff;
}
.product-card .wishlist.active {
    background: var(--primary);
    color: #fff;
}
/*==========================================================
BODY
==========================================================*/
.product-body {
    padding: 14px;
}
/*==========================================================
TITLE
==========================================================*/
.product-body h5 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    height: 40px;
    overflow: hidden;
    margin-bottom: 8px;
    transition: 0.25s;
}
.product-card:hover h5 {
    color: var(--primary);
}
/*==========================================================
RATING
==========================================================*/
.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #f59e0b;
    font-size: 12px;
    margin-bottom: 10px;
}
.rating span {
    color: #888;
}
/*==========================================================
PRICE
==========================================================*/
.product-body .price {
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}
/*==========================================================
SOLD
==========================================================*/
.product-body .sold {
    color: #777;
    font-size: 12px;
}
/*==========================================================
BUTTON
==========================================================*/
.product-body button {
    width: 100%;
    height: 42px;
    margin-top: 14px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    transition: 0.25s;
}
.product-body button:hover {
    background: var(--primary-dark);
}
/*==========================================================
SHIMMER
==========================================================*/
.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );
    transform: translateX(-130%);
    transition: 0.7s;
    pointer-events: none;
}
.product-card:hover::before {
    transform: translateX(130%);
}
/*==========================================================
BADGE
==========================================================*/
.product-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    background: #ef4444;
    color: #fff;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    z-index: 12;
}
/*==========================================================
NEW BADGE
==========================================================*/
.product-new {
    background: #22c55e;
}
/*==========================================================
DISCOUNT BADGE
==========================================================*/
.product-discount {
    background: #ef4444;
}
/*==========================================================
FREE SHIPPING
==========================================================*/
.product-shipping {
    display: inline-flex;
    margin-top: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    background: #f0fff5;
    color: #16a34a;
    font-size: 11px;
    font-weight: 700;
}
/*==========================================================
TABLET LARGE
==========================================================*/
@media (max-width: 1400px) {
    .product-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}
/*==========================================================
TABLET
==========================================================*/
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
/*==========================================================
SMALL TABLET
==========================================================*/
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}
/*==========================================================
MOBILE
==========================================================*/
@media (max-width: 768px) {
    .product-section {
        margin-top: 28px;
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .product-card {
        border-radius: 16px;
    }
    .product-body {
        padding: 10px;
    }
    .product-body h5 {
        font-size: 13px;
        height: 36px;
    }
    .product-body .price {
        font-size: 17px;
    }
    .product-body .sold {
        font-size: 11px;
    }
    .product-body button {
        height: 36px;
        font-size: 12px;
        margin-top: 10px;
    }
    .product-card:hover {
        transform: none;
    }
}
/*==========================================================
SMALL MOBILE
==========================================================*/
@media (max-width: 420px) {
    .product-grid {
        gap: 10px;
    }
    .product-body {
        padding: 8px;
    }
    .product-body h5 {
        font-size: 12px;
        height: 34px;
    }
    .product-body .price {
        font-size: 15px;
    }
    .rating {
        font-size: 11px;
    }
    .product-body button {
        height: 34px;
        font-size: 11px;
    }
}
/*==========================================================
SKELETON READY
==========================================================*/
.product-card.loading img {
    background: #ececec;
}
.product-card.loading h5,
.product-card.loading .price,
.product-card.loading .sold {
    background: #ececec;
    color: transparent;
    border-radius: 6px;
}
/*==========================================================
FADE
==========================================================*/
.product-card {
    animation: productFade 0.45s ease;
}
@keyframes productFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
/*==========================================================
SHOPKU UI
PART 5
FOOTER + BRAND + MOBILE NAV
==========================================================*/
/*==========================================================
BRAND
==========================================================*/
.brand-section {
    margin-top: 40px;
}
.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.brand-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 800;
    border: 1px solid #f2f2f2;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.brand-card:hover {
    transform: translateY(-6px);
    color: #fff;
    background: var(--primary);
    box-shadow: var(--shadow-lg);
}
/*==========================================================
FOOTER
==========================================================*/
footer {
    margin-top: 60px;
    background: #fff;
    border-top: 1px solid #ececec;
    border-radius: 24px 24px 0 0;
    padding: 50px 35px 25px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}
.footer-grid h4 {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 700;
}
.footer-grid p {
    color: #666;
    line-height: 1.8;
}
.footer-grid ul {
    padding: 0;
    margin: 0;
}
.footer-grid li {
    margin-bottom: 10px;
    color: #666;
    transition: 0.25s;
    cursor: pointer;
}
.footer-grid li:hover {
    color: var(--primary);
}
.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    color: #999;
    font-size: 14px;
}
/*==========================================================
BOTTOM NAVIGATION
==========================================================*/
.bottom-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 68px;
    background: #fff;
    border-top: 1px solid #ececec;
    display: none;
    justify-content: space-around;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.05);
}
.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #777;
    font-size: 11px;
    transition: 0.25s;
    flex: 1;
}
.bottom-nav i {
    font-size: 22px;
}
.bottom-nav a.active {
    color: var(--primary);
}
/*==========================================================
FLOATING CART
==========================================================*/
.floating-cart {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(238, 77, 45, 0.35);
    z-index: 999;
    transition: 0.25s;
}
.floating-cart:hover {
    transform: translateY(-4px);
}
.floating-cart span {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}
/*==========================================================
BACK TO TOP
==========================================================*/
.back-top {
    position: fixed;
    left: 20px;
    bottom: 90px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}
.back-top.show {
    opacity: 1;
    visibility: visible;
}
.back-top:hover {
    transform: translateY(-4px);
}
/*==========================================================
TOAST
==========================================================*/
.shop-toast {
    position: fixed;
    left: 50%;
    bottom: 90px;
    transform: translateX(-50%) translateY(40px);
    background: #222;
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
    font-size: 14px;
}
.shop-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
/*==========================================================
DARK MODE READY
==========================================================*/
body.dark {
    --bg: #181818;
    --card: #222;
    --text: #f2f2f2;
    --border: #333;
}
body.dark footer {
    background: #222;
}
body.dark .brand-card {
    background: #262626;
    color: #fff;
    border-color: #333;
}
body.dark .bottom-nav {
    background: #222;
    border-color: #333;
}
body.dark .bottom-nav a {
    color: #ccc;
}
body.dark .bottom-nav a.active {
    color: var(--primary);
}
/*==========================================================
TABLET
==========================================================*/
@media (max-width: 992px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
/*==========================================================
MOBILE
==========================================================*/
@media (max-width: 768px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .brand-card {
        padding: 20px;
        font-size: 16px;
    }
    footer {
        margin-top: 40px;
        padding: 30px 18px 90px;
        border-radius: 18px 18px 0 0;
    }
    .footer-grid {
        gap: 28px;
    }
    .bottom-nav {
        display: flex;
    }
    .shop-page {
        padding-bottom: 80px;
    }
    .floating-cart {
        width: 52px;
        height: 52px;
        right: 15px;
        bottom: 82px;
    }
    .back-top {
        width: 46px;
        height: 46px;
        left: 15px;
        bottom: 82px;
    }
    .shop-toast {
        width: 90%;
        text-align: center;
    }
}
/*==========================================================
SMALL MOBILE
==========================================================*/
@media (max-width: 420px) {
    .brand-card {
        font-size: 14px;
        padding: 18px;
    }
    .copyright {
        font-size: 12px;
    }
}
/*=========================================
SCROLL PROGRESS
=========================================*/
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff9f1a);
    z-index: 99999;
    transition: width 0.15s linear;
}
/*=========================================
HEADER BLUR
=========================================*/
.header-blur {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
/*=========================================
FLOATING CART
=========================================*/
.floating-cart.bounce {
    animation: cartBounce 0.45s;
}
@keyframes cartBounce {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.18);
    }
    60% {
        transform: scale(0.92);
    }
    100% {
        transform: scale(1);
    }
}
/*==========================================================
PRODUCT ANIMATION
==========================================================*/
.product-card {
    opacity: 0;
    transform: translateY(30px);
}
.product-show {
    opacity: 1;
    transform: none;
}
/*==========================================================
VIEWPORT
==========================================================*/
.viewport-show {
    animation: viewportFade 0.7s ease;
}
@keyframes viewportFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
/*==========================================================
FAVORITE
==========================================================*/
.favorite-burst {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #ff3d57;
    font-size: 22px;
    animation: favoriteBurst 0.7s forwards;
    pointer-events: none;
}
@keyframes favoriteBurst {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -120px) scale(2);
    }
}
