/* ==================== RESET & BASE ==================== */
* { box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--shop-bg);
    color: var(--shop-text);
    line-height: 1.5;
}

a { text-decoration: none; color: inherit; }

/* ==================== HEADER ==================== */
.shop-header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.shop-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.shop-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    color: var(--shop-primary);
    flex-shrink: 0;
}

.shop-logo img {
    max-height: 36px;
}

.shop-search {
    flex: 1;
    position: relative;
    max-width: 600px;
}

.shop-search input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.2s;
}

.shop-search input:focus {
    outline: none;
    border-color: var(--shop-primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.shop-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.shop-header-actions {
    display: flex;
    gap: 8px;
}

.shop-cart-btn, .shop-wa-btn {
    background: var(--shop-bg);
    border: 1px solid #e5e7eb;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--shop-text);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    flex-shrink: 0;
    text-decoration: none;
    font-size: 18px;
}

.shop-cart-btn:hover, .shop-wa-btn:hover {
    background: var(--shop-primary);
    color: white !important;
    border-color: var(--shop-primary);
    text-decoration: none;
}

.shop-cart-btn:hover, .shop-wa-btn:hover {
    background: var(--shop-primary);
    color: white;
    border-color: var(--shop-primary);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--shop-accent);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* ==================== HERO SECTION ==================== */
.shop-hero {
    background: var(--shop-gradient);
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shop-hero.with-banner {
    padding: 0;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-hero.with-banner .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.shop-hero.with-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    z-index: 1;
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
}

.shop-hero h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 12px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.shop-hero p {
    font-size: 16px;
    margin: 0 0 24px;
    opacity: 0.95;
}

.shop-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--shop-primary);
    padding: 12px 32px;
    border-radius: 28px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.shop-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* ==================== SLIDER PRODUK TERBARU ==================== */
.swiper-newest {
    margin-top: -40px;
    padding: 0 16px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 5;
}

.swiper-newest .swiper-slide {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.slide-img {
    aspect-ratio: 4/3;
    background: #f3f4f6;
    background-size: cover;
    background-position: center;
}

.slide-info {
    padding: 12px 14px;
}

.slide-info .slide-badge {
    display: inline-block;
    background: var(--shop-accent);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.slide-info h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.slide-info .slide-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--shop-primary);
}

/* ==================== KATALOG TOOLBAR ==================== */
.shop-toolbar {
    max-width: 1280px;
    margin: 32px auto 16px;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.shop-toolbar-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.shop-toolbar-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.layout-toggle {
    display: flex;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
}

.layout-toggle button {
    background: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s;
}

.layout-toggle button.active {
    background: var(--shop-primary);
    color: white;
}

.layout-toggle button:hover:not(.active) {
    background: #f3f4f6;
}

/* ==================== KATEGORI FILTER ==================== */
.shop-categories {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px 16px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.shop-categories::-webkit-scrollbar {
    height: 4px;
}

.shop-categories::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
}

.cat-chip {
    flex-shrink: 0;
    padding: 6px 16px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.cat-chip:hover {
    border-color: var(--shop-primary);
    color: var(--shop-primary);
}

.cat-chip.active {
    background: var(--shop-primary);
    color: white;
    border-color: var(--shop-primary);
}

/* ==================== GRID PRODUK ==================== */
.shop-grid-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px 32px;
}

/* Mode: Grid (Tokopedia style) */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.product-card-img {
    aspect-ratio: 1;
    background: #f3f4f6;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-card-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: var(--shop-accent);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
}

.product-card-badge-habis {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #dc2626;
    font-size: 14px;
}

.product-card-info {
    padding: 10px;
}

.product-card-name {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 6px;
    color: #1f2937;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}

.product-card-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--shop-primary);
}

.product-card-meta {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Mode: List (Shopee mobile style) */
.shop-grid.list-mode {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shop-grid.list-mode .product-card {
    display: flex;
    gap: 12px;
    padding: 8px;
}

.shop-grid.list-mode .product-card-img {
    width: 100px;
    height: 100px;
    aspect-ratio: 1;
    flex-shrink: 0;
    border-radius: 6px;
}

.shop-grid.list-mode .product-card-info {
    padding: 4px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Mode: Compact (3 kolom mobile) */
.shop-grid.compact-mode {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.shop-grid.compact-mode .product-card-name {
    font-size: 11px;
    min-height: 32px;
}

.shop-grid.compact-mode .product-card-price {
    font-size: 13px;
}

.shop-grid.compact-mode .product-card-info {
    padding: 6px;
}

@media (max-width: 768px) {
    .shop-grid.compact-mode {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==================== EMPTY STATE ==================== */
.shop-empty {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

.shop-empty i {
    font-size: 64px;
    color: #d1d5db;
}

.shop-empty h3 {
    margin: 16px 0 4px;
    color: #6b7280;
}

/* ==================== PAGINATION ==================== */
.shop-pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.shop-pagination a, .shop-pagination span {
    padding: 8px 14px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    color: var(--shop-text);
    text-decoration: none;
    transition: all 0.2s;
}

.shop-pagination a:hover {
    background: var(--shop-primary);
    color: white;
    border-color: var(--shop-primary);
}

.shop-pagination .active {
    background: var(--shop-primary);
    color: white;
    border-color: var(--shop-primary);
    font-weight: 600;
}

.shop-pagination .disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ==================== FLOATING WA BUTTON ==================== */
.float-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: all 0.2s;
    text-decoration: none;
}

.float-wa:hover {
    transform: scale(1.1);
    color: white;
}

/* ==================== FOOTER ==================== */
.shop-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 40px 16px 20px;
    margin-top: 60px;
}

.shop-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
}

@media (max-width: 768px) {
    .shop-footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.shop-footer h4 {
    color: white;
    font-size: 16px;
    margin: 0 0 12px;
    font-weight: 600;
}

.shop-footer p, .shop-footer a {
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 4px;
}

.shop-footer a {
    color: #d1d5db;
    display: block;
    padding: 4px 0;
}

.shop-footer a:hover {
    color: white;
}

.shop-footer-sosmed {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.shop-footer-sosmed a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0;
    color: white;
    transition: all 0.2s;
}

.shop-footer-sosmed a:hover {
    background: var(--shop-primary);
}

.shop-footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: #9ca3af;
}

/* ==================== UTILITIES ==================== */
.section-title {
    font-size: 18px;
    font-weight: 700;
    margin: 32px 0 16px;
    padding: 0 16px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title i {
    color: var(--shop-primary);
}

/* ==================== BREADCRUMB ==================== */
.shop-breadcrumb {
    max-width: 1280px;
    margin: 16px auto;
    padding: 0 16px;
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.shop-breadcrumb a {
    color: var(--shop-primary);
}

.shop-breadcrumb a:hover {
    text-decoration: underline;
}

.shop-breadcrumb .sep {
    color: #d1d5db;
}

/* ==================== DETAIL PRODUK ==================== */
.product-detail {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
}

@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 12px;
    }
}

/* GALERI */
.gallery-main {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.gallery-main .swiper {
    background: #f9fafb;
}

.gallery-main .swiper-slide {
    aspect-ratio: 1;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: zoom-in;
}

.gallery-thumbs {
    margin-top: 8px;
}

.gallery-thumbs .swiper-slide {
    background-size: cover;
    background-position: center;
    aspect-ratio: 1;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s;
}

.gallery-thumbs .swiper-slide-thumb-active {
    border-color: var(--shop-primary);
    opacity: 1;
}

.gallery-thumbs .swiper-slide:hover {
    opacity: 1;
}

/* INFO PRODUK */
.product-info-detail {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    height: fit-content;
}

@media (min-width: 769px) {
    .product-info-detail {
        position: sticky;
        top: 80px;
    }
}

.product-info-detail .product-cat {
    font-size: 12px;
    color: var(--shop-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-info-detail h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
}

.product-info-detail .product-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.product-info-detail .badge-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.product-info-detail .badge-featured {
    background: var(--shop-accent);
    color: white;
}

.product-info-detail .badge-ready {
    background: #d1fae5;
    color: #065f46;
}

.product-info-detail .badge-habis {
    background: #fee2e2;
    color: #991b1b;
}

.product-info-detail .badge-po {
    background: #dbeafe;
    color: #1e40af;
}

.product-info-detail .price-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

.product-info-detail .price-label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info-detail .price-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--shop-primary);
    line-height: 1.2;
    margin-top: 4px;
}

.product-info-detail .price-unit {
    font-size: 14px;
    color: #6b7280;
    margin-left: 4px;
}

/* QTY SELECTOR */
.qty-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
}

.qty-selector label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    overflow: hidden;
}

.qty-control button {
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    color: var(--shop-text);
    font-weight: 600;
    transition: all 0.2s;
}

.qty-control button:hover {
    background: var(--shop-primary);
    color: white;
}

.qty-control input {
    border: none;
    width: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    padding: 4px;
    -moz-appearance: textfield;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* ACTION BUTTONS */
.product-actions-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
}

.btn-shop {
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-wa {
    background: #25d366;
    color: white;
}

.btn-wa:hover {
    background: #20b95a;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-cart {
    background: white;
    color: var(--shop-primary);
    border: 2px solid var(--shop-primary);
}

.btn-cart:hover {
    background: var(--shop-primary);
    color: white;
}

.btn-buy {
    background: var(--shop-gradient);
    color: white;
}

.btn-buy:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-disabled {
    background: #e5e7eb !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

/* SHARE BUTTONS */
.share-section {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.share-label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    flex: 1;
    background: #f3f4f6;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--shop-text);
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s;
}

.share-btn:hover {
    background: var(--shop-primary);
    color: white;
}

.share-btn.wa:hover {
    background: #25d366;
}

.share-btn.fb:hover {
    background: #1877f2;
}

/* DESKRIPSI */
.product-description {
    max-width: 1280px;
    margin: 32px auto 0;
    padding: 0 16px;
}

.description-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.description-card h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.description-card h2 i {
    color: var(--shop-primary);
}

.description-content {
    color: #4b5563;
    line-height: 1.7;
    font-size: 14px;
    white-space: pre-line;
}

.description-empty {
    color: #9ca3af;
    font-style: italic;
}

/* INFO TABLE */
.info-table {
    width: 100%;
    margin-top: 16px;
    font-size: 13px;
}

.info-table tr td {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.info-table tr td:first-child {
    color: #6b7280;
    width: 30%;
}

.info-table tr td:last-child {
    font-weight: 500;
}

/* RELATED PRODUCTS */
.related-products {
    max-width: 1280px;
    margin: 40px auto 0;
    padding: 0 16px;
}

/* ZOOM MODAL */
.zoom-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.zoom-modal.active {
    display: flex;
}

.zoom-modal img {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
}

.zoom-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

/* ==================== TOAST NOTIFICATION (FIXED) ==================== */
.shop-toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    background: #1f2937;
    color: white;
    padding: 12px 20px;
    border-radius: 24px;
    font-size: 13px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    /* default: hidden di bawah layar */
    transform: translateX(-50%) translateY(150px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.shop-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.shop-toast.success {
    background: #10b981;
}

.shop-toast.error {
    background: #ef4444;
}

/* ==================== BADGE ANIMATION ==================== */
@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.cart-badge {
    animation: none;
}

/* Spinner untuk loading */
.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner 0.75s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

.text-primary {
    color: var(--shop-primary) !important;
}