@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@700;800&display=swap');

/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
    --c-brand:        #FF6B35;
    --c-brand-hover:  #e85d28;
    --c-brand-light:  #fff1ec;
    --c-navy:         #0f172a;
    --c-ink:          #1e293b;
    --c-muted:        #64748b;
    --c-subtle:       #94a3b8;
    --c-border:       #e2e8f0;
    --c-surface:      #f8fafc;
    --c-white:        #ffffff;
    --c-green:        #16a34a;
    --c-green-light:  #dcfce7;
    --c-red:          #dc2626;
    --c-red-light:    #fee2e2;
    --c-blue:         #2563eb;
    --c-blue-light:   #dbeafe;

    --radius-sm:  6px;
    --radius-md:  10px;
    --radius-lg:  14px;
    --radius-xl:  20px;
    --radius-full: 999px;

    --shadow-xs:  0 1px 2px rgba(15,23,42,.05);
    --shadow-sm:  0 1px 3px rgba(15,23,42,.07), 0 1px 2px rgba(15,23,42,.04);
    --shadow-md:  0 4px 16px rgba(15,23,42,.08), 0 1px 4px rgba(15,23,42,.04);
    --shadow-lg:  0 12px 40px rgba(15,23,42,.1), 0 2px 8px rgba(15,23,42,.04);
    --shadow-brand: 0 4px 16px rgba(255,107,53,.3);

    --ease-out:   cubic-bezier(.16,1,.3,1);
    --ease-in-out: cubic-bezier(.4,0,.2,1);
    --duration:   200ms;
}

/* ─────────────────────────────────────────
   BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

[x-cloak] { display: none !important; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--c-white);
    color: var(--c-ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ─────────────────────────────────────────
   SCROLLBAR
───────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--c-subtle); }

/* ─────────────────────────────────────────
   TICKER
───────────────────────────────────────── */
.ticker-wrap { overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-block; animation: ticker 40s linear infinite; }
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   HERO BACKGROUND
───────────────────────────────────────── */
.hero-bg {
    background: linear-gradient(135deg, #0b1221 0%, #0f172a 55%, #131e30 100%);
}
.grid-dots {
    background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 28px 28px;
}

/* ─────────────────────────────────────────
   SKELETON LOADER
───────────────────────────────────────── */
.sk {
    background: linear-gradient(90deg, var(--c-surface) 25%, var(--c-border) 50%, var(--c-surface) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.6s ease infinite;
    border-radius: var(--radius-md);
}
@keyframes shimmer {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
}

/* ─────────────────────────────────────────
   CARDS (generic)
───────────────────────────────────────── */
.card {
    transition: transform var(--duration) var(--ease-out),
                box-shadow var(--duration) var(--ease-out);
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
.fade-up { animation: fadeUp .5s var(--ease-out) both; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────
   CART PANEL
───────────────────────────────────────── */
.cart-panel { animation: slideIn .28s var(--ease-out); }
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

/* ─────────────────────────────────────────
   TOAST
───────────────────────────────────────── */
.toast-in { animation: toastIn .28s var(--ease-out); }
@keyframes toastIn {
    from { transform: translateY(12px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* ─────────────────────────────────────────
   NAV LINKS
───────────────────────────────────────── */
.navlink { position: relative; padding-bottom: 2px; }
.navlink::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--c-brand);
    border-radius: var(--radius-full);
    transition: width var(--duration) var(--ease-out);
}
.navlink:hover::after { width: 100%; }

/* ─────────────────────────────────────────
   STARS
───────────────────────────────────────── */
.stars { color: #f59e0b; }

/* ─────────────────────────────────────────
   LINE CLAMP
───────────────────────────────────────── */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ─────────────────────────────────────────
   PRIMARY BUTTON (global override)
───────────────────────────────────────── */
a.btn.btn-primary,
button.btn.btn-primary {
    background: var(--c-brand);
    color: var(--c-white);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background var(--duration), box-shadow var(--duration);
    padding: 8px 16px;
}
a.btn.btn-primary:hover,
button.btn.btn-primary:hover {
    background: var(--c-brand-hover);
    box-shadow: var(--shadow-brand);
}

a.btn.btn-secondary,
button.btn.btn-secondary {
    border: 1px solid var(--c-brand);
    color: var(--c-brand);
    padding: 8px 16px;
    line-height: 1.4;
    background: none;
}
a.btn.btn-secondary:hover,
button.btn.btn-secondary:hover {
    background: var(--c-brand);
    color: #fff;
}

/* ─────────────────────────────────────────
   PRODUCT LINKS
───────────────────────────────────────── */
a.product-item-link { color: var(--c-ink); }
a.product-item-link:hover { color: var(--c-brand); }

/* ─────────────────────────────────────────
   CATEGORY VIEW
───────────────────────────────────────── */
div#category-view-container { display: none; }

/* ─────────────────────────────────────────
   TOP NAVIGATION MENU
───────────────────────────────────────── */
.md-top-menu-items {
    display: flex;
    background: var(--c-white);
    gap: 2px;
}

.md-top-menu-items > li { position: relative; }

.md-top-menu-items > li > a {
    display: block;
    padding: 14px 18px;
    color: var(--c-ink);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color var(--duration), background var(--duration);
}

.md-top-menu-items > li:hover > a {
    color: var(--c-brand);
    background: var(--c-brand-light);
}

/* Dropdown */
.submenu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--duration) var(--ease-out),
                transform var(--duration) var(--ease-out),
                visibility var(--duration);
    padding: 6px;
}

.md-top-menu-items li:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 9px 12px;
    color: var(--c-ink);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background var(--duration), color var(--duration);
}

.submenu li a:hover {
    background: var(--c-surface);
    color: var(--c-brand);
}

/* Arrow icon */
.menu-dropdown-icon > .plus {
    position: absolute;
    right: 10px;
    top: 18px;
    font-size: 11px;
    color: var(--c-subtle);
}

/* Active state */
.category-item.active > a { color: var(--c-brand); }

/* ─────────────────────────────────────────
   PRODUCT CATEGORY PAGE — LAYOUT
───────────────────────────────────────── */
.page-products.page-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.page-products .page-main .columns {
    display: grid;
    grid-template-columns: 252px 1fr;
    gap: 2rem;
    align-items: start;
    margin: 0 0 30px;
}

@media (max-width: 767px) {
    .page-products .page-main .columns {
        grid-template-columns: 1fr;
    }
}

/* ── Sidebar ── */
.page-products .page-main .sidebar-main {
    position: sticky;
    top: 1.25rem;
}

.page-products .sidebar-main .block {
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    background: var(--c-white);
    box-shadow: var(--shadow-xs);
}

.page-products .sidebar-main .block-title button {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-ink);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0 0 30px;
}

.page-products .filter-option {
    border-bottom: 1px solid var(--c-surface);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.page-products .filter-option:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-products .filter-options-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 0;
}

.page-products .filter-options-title:hover { color: var(--c-brand); }

.page-products .filter-options-content .items {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
}

.page-products .filter-options-content .items li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    font-size: 13px;
    color: var(--c-muted);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--duration), color var(--duration);
}

.page-products .filter-options-content .items li a:hover {
    background: var(--c-surface);
    color: var(--c-ink);
}

.page-products .filter-options-content .items .count {
    font-size: 12px;
    color: var(--c-subtle);
}

/* ── Toolbar ── */
.page-products .toolbar-products {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.page-products .modes {
    display: flex;
    gap: 10px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 5px;
    background: var(--c-white);
    width: auto;
    border-radius: 5px;
}

.page-products .modes-mode {
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border: none;
    cursor: pointer;
    opacity: .35;
    transition: opacity var(--duration);
    border-radius: 4px;
}

.page-products .modes-mode.active,
.page-products .modes-mode:hover { opacity: 1; }

.page-products .toolbar-sorter {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.page-products .sorter-options,
.page-products .limiter-options {
    font-size: 13px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 6px 10px;
    background: var(--c-white);
    color: var(--c-ink);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 13px;
    padding-right: 28px;
    transition: border-color var(--duration), box-shadow var(--duration);
    font-family: inherit;
}

.page-products .sorter-options:focus,
.page-products .limiter-options:focus {
    outline: none;
    border-color: var(--c-brand);
    box-shadow: 0 0 0 3px rgba(255,107,53,.12);
}

.page-products .sorter-action {
    background: none;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 5px;
    cursor: pointer;
    color: var(--c-muted);
    display: flex;
    align-items: center;
    transition: background var(--duration), color var(--duration);
}

.page-products .sorter-action:hover {
    background: var(--c-surface);
    color: var(--c-ink);
}

.page-products .toolbar-amount {
    font-size: 13px;
    color: var(--c-subtle);
}

.page-products .limiter label {
    font-size: 13px;
    color: var(--c-subtle);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ─────────────────────────────────────────
   PRODUCT GRID
───────────────────────────────────────── */
.page-products .products-grid .products {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(224px, 1fr));
    gap: 1rem;
}

@media (max-width: 1023px) {
    .page-products .products-grid .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 639px) {
    .page-products .products-grid .products {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────
   PRODUCT CARD
───────────────────────────────────────── */
.page-products .product-item {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--duration) var(--ease-out),
                box-shadow var(--duration) var(--ease-out),
                transform var(--duration) var(--ease-out);
    padding: 0;
}

.page-products .product-item:hover {
    border-color: rgba(255,107,53,.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.page-products .product-item-photo {
    display: block;
    background: var(--c-surface);
    text-decoration: none;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    padding: 0;
    margin: 0;
}

.page-products .product-image-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .35s var(--ease-out);
}

.page-products .product-item:hover .product-image-photo {
    transform: scale(1.05);
}

.page-products .product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 4px;
    border-top: 1px solid var(--c-border);
    padding: 15px;
}

/* Product name */
.page-products .product-item-link {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--c-ink);
    text-decoration: none;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--duration);
}

.page-products .product-item:hover .product-item-link {
    color: var(--c-brand);
}

/* Reviews */
.page-products .product-reviews-summary {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 2px 0;
}

/* Short description */
.page-products .product-item-description {
    font-size: 12.5px;
    color: var(--c-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Price ── */
.page-products .pt-1 {
    padding-top: 4px;
    margin-top: auto;
}

.page-products .price-container.price-final_price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
}

.page-products .price-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--c-subtle);
}

.page-products .price-wrapper .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-ink);
    line-height: 1;
}

.page-products .old-price .price {
    font-size: 13px;
    font-weight: 400;
    color: var(--c-border);
    text-decoration: line-through;
}

.page-products .price-wrapper .price-free {
    color: var(--c-green);
    font-size: 1rem;
    font-weight: 700;
}

/* ── Add to cart button ── */
.page-products .btn-primary[data-addto="cart"],
.page-products button[data-addto="cart"] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-white);
    background: var(--c-brand);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--duration), box-shadow var(--duration), transform 120ms;
    white-space: nowrap;
    align-self: flex-start;
    font-family: inherit;
}

.page-products .btn-primary[data-addto="cart"]:hover,
.page-products button[data-addto="cart"]:hover {
    background: var(--c-brand-hover);
    box-shadow: var(--shadow-brand);
}

.page-products .btn-primary[data-addto="cart"]:active,
.page-products button[data-addto="cart"]:active {
    transform: scale(0.97);
}

.page-products .btn-primary[data-addto="cart"]:disabled,
.page-products button[data-addto="cart"]:disabled {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ── Wishlist / Compare icon buttons ── */
.page-products .btn.p-2.rounded-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--c-border);
    background: var(--c-white);
    color: var(--c-subtle);
    cursor: pointer;
    transition: background var(--duration), color var(--duration), border-color var(--duration);
    padding: 0;
}

.page-products .btn.p-2.rounded-full:hover {
    background: var(--c-brand-light);
    color: var(--c-brand);
    border-color: rgba(255,107,53,.3);
}

/* ── Card interactive ── */
.page-products .card-interactive { cursor: pointer; }

/* ── Configure / secondary button ── */
.page-products .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-brand);
    background: var(--c-brand-light);
    border: 1px solid rgba(255,107,53,.25);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: background var(--duration), border-color var(--duration);
    font-family: inherit;
}

.page-products .btn-secondary:hover {
    background: #ffe4d9;
    border-color: rgba(255,107,53,.45);
}

/* ── Compare / wishlist sidebar widgets ── */
.page-products .compare-widget,
.page-products .wishlist-widget { padding: 0 .25rem; }

.page-products .compare-widget h2,
.page-products .wishlist-widget h2 {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--c-ink);
    border-top: 1px solid var(--c-border);
    padding-top: 1.25rem;
    margin-bottom: 1rem;
}

.page-products .compare-widget ul,
.page-products .wishlist-widget ul { list-style: none; padding: 0; margin: 0; }

.page-products .compare-widget li,
.page-products .wishlist-widget li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: .5rem 0;
    border-bottom: 1px solid var(--c-surface);
    font-size: 13px;
    color: var(--c-ink);
}

.page-products .compare-widget li:last-child,
.page-products .wishlist-widget li:last-child { border-bottom: none; }

.page-products .compare-widget li a,
.page-products .wishlist-widget li a {
    color: var(--c-muted);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.45;
    transition: color var(--duration);
}

.page-products .compare-widget li a:hover,
.page-products .wishlist-widget li a:hover { color: var(--c-brand); }

.page-products .compare-widget button[aria-label*="Remove"],
.page-products .wishlist-widget button[class*="ml-auto"] {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--c-subtle);
    padding: 2px;
    border-radius: 4px;
    margin-left: auto;
    transition: color var(--duration);
    flex-shrink: 0;
}

.page-products .compare-widget button[aria-label*="Remove"]:hover,
.page-products .wishlist-widget button[class*="ml-auto"]:hover { color: var(--c-red); }

/* ── Pulse loader ── */
.page-products .product-item.animate-pulse .product-image-photo,
.page-products .animate-pulse { animation: pulse 1.8s ease-in-out infinite; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .4; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — CATEGORY PAGE
───────────────────────────────────────── */
@media (max-width: 767px) {
    .page-products .sidebar-main { position: static; }

    .page-products .toolbar-products {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .page-products .products-grid .products {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem;
    }

    .page-products .product-info { padding: .75rem; }

    .page-products .price-wrapper .price { font-size: 1rem; }
}

@media (max-width: 400px) {
    .page-products .products-grid .products {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────
   BLOG POST VIEW — FULL WIDTH
───────────────────────────────────────── */
body[class*="mpblog-post-view"] .sidebar.sidebar-main { display: none !important; }
body[class*="mpblog-post-view"] .column.main {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}
body[class*="mpblog-post-view"] .columns { display: block !important; }
body[class*="mpblog-post-view"] .post-view-image { display: none; }

/* ─────────────────────────────────────────
   CHECKOUT — INLINE ADDRESS FORM
───────────────────────────────────────── */
[data-dialog-ref-name="checkout.billing-details.address-list.form"],
[data-dialog-ref-name="checkout.shipping-details.address-list.form"] {
    position: static !important;
    inset: auto !important;
    background: transparent !important;
    z-index: auto !important;
}

[data-dialog-ref-name="checkout.billing-details.address-list.form"] > div,
[data-dialog-ref-name="checkout.shipping-details.address-list.form"] > div {
    position: static !important;
    display: block !important;
    inset: auto !important;
    z-index: auto !important;
    align-items: unset !important;
    justify-content: unset !important;
}

[data-dialog-ref-name="checkout.billing-details.address-list.form"] [role="dialog"],
[data-dialog-ref-name="checkout.shipping-details.address-list.form"] [role="dialog"] {
    display: block !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
    background: transparent !important;
    width: 100% !important;
}
#cat-filter-bar a img {
    max-height: 30px;
}
.cat-btn {
    background:#fff;
    border-color:#e2e2e2;
    color:#374151;
}
.cat-btn:hover {
    background:#eff6ff;
    border-color:#bfdbfe;
    color:#374151;
}
.cat-btn.cat-active { 
    background:#eff6ff;
    border-color:#93c5fd;
    color:#374151;
}
.cat-btn .cat-count {
    background:#e5e7eb;
    color:#4b5563;
}
.cat-btn:hover .cat-count {
    background: var(--c-brand);
    color:#fff;
}
.cat-btn.cat-active .cat-count { 
    background:var(--c-brand);
    color:#fff;
}
.columns {
    max-width: 100%;
    padding: 0;
}
div[data-content-type=row][data-appearance=contained] {
    max-width: 100%;
}
.mpblog-post-index .columns{
    max-width: 1280px;
    padding-left: 24px;
    padding-left: 24px;
}
.mpblog-post-view .post-list-content .container {
    padding: 0px;
}
.mpblog-category-view .columns {
    max-width: 1280px;
    padding-left: 24px;
    padding-right: 24px;
}
.catalog-category-view .page-main {
    max-width: 1280px;
    padding-left: 24px;
    padding-right: 24px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}
.page-products .page-main .sidebar-main .block-title span {
    font-size: 24px;
    line-height: normal;
}
.page-products .page-main .sidebar-main .block {
    box-shadow: none;
    margin: 0;
    padding: 0;
    border: none;
}
.page-products .page-main .sidebar-main .filter-content {
    padding: 0;
}
.page-products .page-main .sidebar-main .card {
    border: 1px solid var(--c-border);
    border-radius: 7px;
    padding: 10px 15px;
    transform: unset;
    box-shadow: none;
}
.page-products .page-main .sidebar-main .card .filter-options-title {
    padding: 0;
    color: var(--c-ink);
}
.page-products .page-main .sidebar-main .card .filter-options-title .border {
    border: none;
    padding: 0;
}
.page-products .page-main .sidebar-main .card .filter-options-title .border svg {
    width: 20px;
    height: auto;
}
.page-products .page-main .sidebar-main .filter-content .filter-options-content {
    margin-top: 5px;
    border-top: 1px solid var(--c-border);
    padding-top: 5px;
}
.page-products .modes::before {
    content: "";
    width: 1px;
    background: #b9bbbd;
    height: 22px;
    position: absolute;
}
.page-products .sorter-action svg {
    width: auto;
    height: 22px;
}
.products ul {
    padding: 0;
}
#product-list {
    padding-top: 59px;
}
#cart-drawer {
    padding: 20px;
    width: 450px;
}
.minicart_btn .btn-secondary {
    border: 1px solid;
}
.minicart_btn .btn-secondary:hover {
    border-color: var(--c-brand);
    color: var(--c-brand);
}
.coupon-form.group,
.estimate-shipping-form.group {
    border: 1px solid rgb(209 213 219);
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 14px;
}
.cart-summary-info {
    box-shadow: var(--shadow-lg);
}
.summary_list_icon {
    background: rgb(237 237 255);
    padding: 6px 7px;
    border-radius: 5px;
}
.summary_list_icon svg {
    width: 18px;
}
.product-item-details .price-box .price-excluding-tax:after {
    display: none;
}
.form-select {
    padding: 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
}
.form-input {
    border: 1px solid #d1d5db;
    border-radius: 5px;
    padding: 5px 15px;
}
.minicart-products .price-box .price-excluding-tax:after{
    display: none;
}
.tabular-nums {
    background: var(--c-brand);
}
.pdp-cta-links a {
    color: #000;
    border-bottom: 1px solid;
    padding: 0;
}
.pdp-cta-links{
    margin-bottom: 0;    
}
#shipping-zip-form .field {
    font-size: 14px;
}
.fieldset.estimate .field span {
    color: var(--c-ink);
}
.fieldset.estimate .field .form-select {
    padding-right: 40px;
}
:where(:focus-visible) {
    outline: none;
}
.form-cart {
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border-radius: 14px;
}
.cart-qty button{
    width: 30px;
    height: 40px;
    cursor:pointer;
    background:#fff;
}
.cart-qty input{
    width:60px;
    text-align:center;
    border:0;
    box-shadow: none;
}
.cart-qty button:hover{
    background:#f5f5f5;
}
.form-create-account .card {
    box-shadow: var(--shadow-lg);
}
.form-create-account .field {
    margin-bottom: 16px;
}
.form-create-account .field.choice input {
    border: 1px solid #d1d5db;
    padding: 2px;
    background: none;
}
.form-create-account .field.choice input::after{
    background-color: var(--form-stroke);
}

.form-create-account .field.choice input:checked::after {
    background-color: var(--form-stroke);
}
.hyva_checkout-index-index .page-main {
    width: 1280px;
    padding: 0 24px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
.address-form .field-wrapper {
    margin: 0 0 15px;
    padding: 0 24px;
}
.input-group:focus-within {
    outline: none;
}
.address-form .field-wrapper .field{
    margin: 0;
}
.address-form .field-type-hidden {
    margin: 0;
}
.checkout-card {
    margin: 0 0 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
    border: 1px solid #e5e7eb;
}
.checkout-card .section-title,
.checkout-summary .section-title {
    padding: 14px 24px;
    background: #f1f1f1;
    border-radius: 12px 12px 0 0;
}
#payment-methods {
    padding: 0 24px 24px;
}
#payment-method-option-checkmo {
    border: 1px solid #d1d5db;
}
#payment-methods .form-radio:checked::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
#payment-methods .form-radio {
    position: relative;
    border: 1px solid #d1d5db;
}
#payment-methods .form-radio:checked{
    border-color: #000;
    background: none;
}
.hyva_checkout-index-index .section-item-content {
    display: none;
}
.hyva_checkout-index-index .header-logo {
    padding: 12px 0px;
}
.checkout-summary {
    margin: 0 0 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
    border: 1px solid #e5e7eb;
    align-self: flex-start;
}
.hyva_checkout-index-index .header-logo img {
    max-width: 215px;
}
.hyvacheckoutcartitems,
.hyvaCheckoutCouponCode {
    border: 1px solid rgb(209 213 219);
    padding: 11px 15px;
    border-radius: 10px;
}
.price-summary .total-segments .item {
    padding: 10px 0;
    border-bottom: none;
}
.price-summary .total-segments .grand_total {
    border-top: 1px solid var(--color-slate-300);
}
.price-summary .total-segments {
    margin: 0 24px;
}
.hyvaCheckoutCustomerComment {
    margin: 0 24px 16px;
}
.checkout-summary .checkout-nav {
    margin: 0 24px 24px;
}
.checkout-summary-cart-items-img {
    width: 70px;
}
.checkout-summary-cart-items-content {
    font-size: 14px;
}
.hyva_checkout-index-index .header-right {
    display: none;
}
.address-form .field-wrapper .form-input,
.address-form .field-wrapper .form-select {
    font-size: 14px;
    padding: 7px 15px;
}
.address-form .field-save input {
    border-width: 1px;
}
.minicart-products .price-box .price {
    font-weight: normal;
    font-size: inherit;
}
.minicart-product-cart-options-label::after{
    content: ":";
}
#cart-drawer .minicart-product-cart-options-info {
    margin: 0;
}
.minicart-product-price-name {
    font-size: 14px;
}
.minicart-subtotal-info {
    font-size: 16px;
}
.edit_minicart_product {
    font-size: 14px;
}
.edit_minicart_product svg {
    width: 16px;
}
.deleteItemMiniCart svg {
    width: 14px;
} 
.deleteItemMiniCart svg path {
    stroke: #CC0000;
}
.deleteItemMiniCart span{
    color: #CC0000;
    font-size: 14px;
}
.minicart-subtotal-info dt {
    font-size: 16px;
}
.minicart-subtotal-info dd {
    font-size: 18px;
}
.minicart-products {
    margin-left: -20px;
    margin-right: -20px;
}
.minicart-products-list {
    box-shadow: 0 0 8px rgba(0, 0, 0, .1);
    margin: 0 20px 20px;
    padding: 20px;
    border-radius: 10px;
}
.minicart-items-price-info {
    font-size: 12px;
    gap: 5px;
    margin: 5px 0 0;
}
.minicart-products-content {
    width: calc(100% - 94px);
}
.minicart-products-img {
    width: 78px;
}
.minicart-products-content {
    width: calc(100% - 94px);
}
.minicart-product-cart-options-info .table-row {
    color: #44a770;
}
.hyva_checkout-index-index .page-footer {
    display: none;
}
.account .columns {
    max-width: 1280px;
    padding: 0 24px;
}
.wishlist-widget {
    display: none;
}
.sidebar .account-nav {
    background: #fff;
    box-shadow: var(--shadow-lg);
}
.custom-contact-page .contact-content-wrapper {
    max-width: 1280px;
}
section.pdp-desc-section {
    border-radius: 0px;
}
div.pdp-desc-inner {
    max-width: 1280px;
    padding: 0 24px;
}
.pdp-faq-section .pdp-section-eyebrow {
    display: none;
}
.pdp-faq-inner .pdp-faq-list {
    margin-top: 0;
}
section.pdp-faq-section{
    padding: 0;
    margin: 0;
}
.pdp-faq-item .pdp-faq-icon {
    display: none;
}
.pdp-faq-item .pdp-faq-question::after {
    content: '+';
    font-size: 25px;
    line-height: 1;
}
.pdp-faq-item.open .pdp-faq-question::after{
    content: "-";
}
.pdp-faq-item .pdp-faq-question {
    align-items: center;
}
.pdp-features-grid .pdp-feat-tabs {
    border-right: none;
}
.catalog-product-view .page-main {
    margin-bottom: 60px;
}
.form.form-cart {
    font-size: 14px;
}
.form-cart .price-box .price {
    font-size: 14px;
}
.form-cart .item-options dt.table-cell::after {
    content: ":";
}
.form-cart .item-options dt.table-cell {
    color: #1e293b;
}
.form-cart .item-options dd.table-cell {
    color: #44a770;
}
.form-cart .item-actions .cart-edit-btn svg{
    width: 16px;
}
.form-cart .item-actions .cart-delete-btn svg path{
    stroke: #cc0000;
}
.form-cart .item-actions .cart-delete-btn svg {
    width: 14px;
}
.form-cart .item-actions .cart-delete-btn {
    color: #cc0000;
}
#discount-coupon-form #coupon_code {
    border-radius: 5px 0 0 5px;
    border-right: none;
    height: 100%;
}
#discount-coupon-form .btn-primary {
    margin: 0;
    border-radius: 0 5px 5px 0;
}
#discount-coupon-form {
    margin: 10px 0 5px;
}
.form-cart .actions-toolbar .btn {
    border-radius: 5px;
}
.form-cart .actions-toolbar {
    border-top: 1px solid #d3d3d3;
}
body {
    font-size: 14px;
}
#authentication-popup {
    width: 400px;
}
.minicart-product-cart-options-label:empty {
    display: none;
}
.login-container .card{
    box-shadow: var(--shadow-lg);
}
.login-container .card:hover {
    transform: unset;
}
.login-container .form-input,
.form-create-account .form-input {
    padding: 8px 15px;
}
.form-login button,
.form-create-account button {
    padding: 9px 12px;
}



@media (min-width: 1536px) {
    .mpblog-post-index .columns,
    .mpblog-category-view .columns {
        max-width: 1536px;
        padding-left: 24px;
        padding-right: 24px;
    }   
}


@media (max-width: 1279px){
    body .container {
        max-width: 100%;
    }
}

