/* ByTaika 3DFormCraft – Minimal Apple-style UI */
:root {
    --bg: #ffffff;
    --fg: #0a0a0a;
    --muted: #6b7280;
    --card: #f8f9fb;
    --accent: #111827;
    --border: #e5e7eb;
    --shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

html.dark {
    --bg: #0b0c0e;
    --fg: #f5f7fa;
    --muted: #cbd5e1;
    --card: #111317;
    --accent: #e5e7eb;
    --border: #262a32;
    --shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--fg);
    background: var(--bg);
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

a {
    color: inherit;
    text-decoration: none
}

/* Header */
.bt-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.bt-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 16px
}

.bt-logo {
    font-weight: 700;
    letter-spacing: .2px
}

/* Bootstrap navbar tweaks */
.navbar {
    padding-top: 6px;
    padding-bottom: 6px
}

.navbar-nav {
    gap: .75rem
}

.navbar-nav .nav-link {
    font-size: 13px;
    color: var(--muted);
    padding: .4rem .5rem;
    border-radius: .5rem
}

.navbar-nav .nav-link:hover {
    background: var(--card);
    color: var(--fg)
}

.navbar-brand img.custom-logo {
    height: 30px;
    width: auto
}

/* Legacy nav rules removed in favor of Bootstrap */
.bt-actions {
    display: flex;
    gap: 12px
}

.bt-cart-toggle {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--card)
}

.bt-theme-switch {
    width: 68px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    border-radius: 22px;
    border: 2px solid #ff7a00;
    background: #ff7a00;
    position: relative;
    cursor: pointer
}

.bt-theme-switch i {
    font-size: 16px;
    color: #fff
}

.bt-theme-switch .bt-knob {
    position: absolute;
    top: 50%;
    left: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
    transition: left .22s ease
}

html.dark .bt-theme-switch {
    border-color: #0a0a0a;
    background: #0a0a0a
}

html.dark .bt-theme-switch .bt-knob {
    left: 38px
}

html.dark .bt-theme-switch i {
    color: #fff
}

/* Social icons */
.bt-social {
    display: flex;
    gap: 10px;
    align-items: center
}

.bt-social a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--fg)
}

.bt-social a:hover {
    background: var(--fg);
    color: var(--bg)
}

.bt-icon {
    width: 18px;
    height: 18px;
    display: block
}

.bt-social i {
    font-size: 16px;
    line-height: 1
}

/* Container */
.bt-container {
    max-width: 1200px;
    margin: 36px auto;
    padding: 0 20px
}

.bt-page-header {
    margin-bottom: 24px
}

.bt-page-title {
    font-size: 28px;
    margin: 0 0 6px
}

.bt-page-sub {
    color: var(--muted);
    margin: 0
}

/* Grid & Cards */
.bt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

@media (max-width: 1024px) {
    .bt-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width: 768px) {
    .bt-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 640px) {
    .bt-grid {
        grid-template-columns: 1fr
    }
}

.bt-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: translateY(12px);
    opacity: 0;
    transition: transform .5s ease, opacity .5s ease
}

/* Ensure cards are visible by default on devices where IntersectionObserver may fail */
.bt-card.reveal {
    transform: none;
    opacity: 1
}

.bt-card:hover {
    transform: translateY(0) scale(1.02)
}

.bt-card-media {
    display: block;
    aspect-ratio: 4/3;
    background: #e5e7eb
}

.bt-card-body {
    padding: 14px
}

.bt-card-title {
    font-size: 16px;
    margin: 0 0 6px
}

.bt-card-price {
    color: var(--muted);
    margin-bottom: 12px
}

.bt-add-to-cart {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--fg);
    color: var(--bg);
    border: none
}

.bt-add-to-cart:hover {
    transform: scale(1.03)
}

/* Cart Drawer */
.bt-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .28);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s
}

.bt-cart-drawer {
    position: fixed;
    right: 0;
    top: 40px;
    bottom: 0;
    width: 360px;
    max-width: 100%;
    background: var(--bg);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 60
}

.bt-cart-drawer.open {
    transform: translateX(0)
}

.bt-backdrop.open {
    opacity: 1;
    pointer-events: auto
}

.bt-cart-drawer-inner {
    padding: 16px
}

.bt-cart-title {
    margin: 0 0 12px
}

.bt-cart-close {
    position: absolute;
    right: 8px;
    top: 8px;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1
}

.widget_shopping_cart_content .buttons .button {
    width: 100%;
    margin-top: 8px
}

/* Cart Panel – modern popup styles */
.bt-cart-panel {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 14px
}

.bt-cart-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px
}

.bt-cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.bt-cart-item {
    display: grid;
    grid-template-columns: 84px 1fr auto;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--card);
    padding: 10px
}

.bt-cart-thumb img {
    width: 84px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px
}

.bt-cart-name {
    font-weight: 600;
    margin: 0 0 4px
}

.bt-stock {
    color: #16a34a;
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px
}

.bt-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block
}

.bt-cart-variation {
    color: var(--muted);
    font-size: 12px
}

.bt-cart-actions {
    margin-top: 8px
}

.bt-cart-remove {
    color: var(--muted);
    font-size: 12px;
    text-decoration: none
}

.bt-cart-remove:hover {
    text-decoration: underline
}

.bt-cart-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px
}

.bt-cart-price {
    font-weight: 700
}

.bt-qty {
    display: flex;
    align-items: center;
    gap: 6px
}

.bt-qty-btn {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    color: var(--fg);
    cursor: pointer
}

.bt-qty-btn:hover {
    background: var(--card)
}

.bt-qty-value {
    min-width: 18px;
    text-align: center
}

.bt-totals {
    margin-top: 14px;
    border-top: 1px solid var(--border);
    padding-top: 14px
}

.bt-total-row {
    display: flex;
    justify-content: space-between;
    margin: 6px 0;
    color: var(--muted)
}

.bt-total-row.bt-total {
    color: var(--fg);
    font-weight: 800;
    font-size: 18px
}

.bt-checkout-btn {
    width: 100%;
    margin-top: 12px;
    font-weight: 700;
    text-align: center;
    border-radius: 12px
}

.bt-checkout-btn:hover {
    transform: scale(1.02)
}


/* Toast */
.bt-toast {
    position: fixed;
    right: 16px;
    top: 16px;
    background: var(--fg);
    color: var(--bg);
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .25s, transform .25s;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden
}

.bt-toast.show {
    opacity: 1;
    transform: translateY(0)
}

.bt-toast-message {
    flex: 1;
    font-weight: 600
}

.bt-toast-close {
    background: transparent;
    border: none;
    color: var(--bg);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0 2px
}

.bt-toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: var(--bg)
}

/* WhatsApp Floating */
.bt-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #25D366;
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
    z-index: 70
}

.bt-whatsapp i {
    color: #fff;
    font-size: 28px;
    line-height: 1
}

.bt-whatsapp:hover {
    filter: brightness(1.06)
}

@keyframes bt-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .9
    }

    50% {
        transform: scale(1.6);
        opacity: .3
    }
}

/* My Account */
.woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 16px
}

.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 8px 12px;
    border-radius: 10px;
    background: var(--card);
    border: 1px solid var(--border)
}

/* Checkout payment boxes */
.wc_payment_methods .payment_box {
    overflow: hidden;
    transition: max-height .28s ease;
}

.wc_payment_methods .payment_box:not(.opened) {
    max-height: 0
}

.wc_payment_methods .payment_box.opened {
    max-height: 300px
}

/* Reveal animation */
.reveal.revealed {
    transform: none;
    opacity: 1
}

/* Woo default product list styling for mobile compatibility */
ul.products {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

@media (max-width: 1024px) {
    ul.products {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 640px) {
    ul.products {
        grid-template-columns: 1fr
    }
}

ul.products li.product {
    margin: 0;
    float: none
}

/* Footer */
.bt-footer {
    border-top: 1px solid var(--border);
    padding: 16px 20px;
    background: var(--bg)
}

.bt-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: block
}

.bt-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap
}

.bt-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px
}

.bt-footer-bottom {
    display: none
}

.bt-footer small {
    color: var(--muted);
    margin: 0;
    font-size: 12px
}

.bt-footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 0
}

.bt-footer-links a {
    color: var(--fg);
    text-decoration: none;
    font-size: 13px
}

.bt-footer-links a:hover {
    text-decoration: underline
}

.bt-footer .bt-social .bt-icon {
    width: 22px;
    height: 22px
}

/* Footer logo image at the beginning */
.bt-footer-logo-img {
    height: 32px;
    width: auto;
    display: block
}

/* Footer layout: left stack, right logo */
.bt-footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px
}

.bt-footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto
}

.bt-visa-text {
    font-weight: 700;
    letter-spacing: .6px;
    font-size: 12px;
    color: var(--fg)
}

.bt-mastercard {
    width: 96px;
    height: 48px;
    display: block
}

/* Trust + payments */
.bt-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px 12px
}

.bt-trust-text {
    font-size: 14px
}

.bt-payments {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    flex: 0 0 auto
}

.bt-pay {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 26px;
    padding: 4px 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg)
}

.bt-pay .bt-icon {
    width: 36px;
    height: 20px
}

.bt-pay-visa .bt-pay-text {
    font-weight: 700;
    letter-spacing: .4px;
    font-size: 12px
}

.bt-pay-visa {
    background: #1a3f8c;
    color: #fff;
    border-color: #1a3f8c
}

.bt-pay-visa .bt-pay-text {
    font-weight: 700;
    letter-spacing: .6px
}

.bt-pay-mastercard {
    background: var(--bg)
}

.bt-topbar {
    background: var(--card);
    border-bottom: 1px solid var(--border)
}

.bt-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.bt-icon-btn {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--fg);
    cursor: pointer
}

.bt-icon-btn:hover {
    background: var(--fg);
    color: var(--bg)
}

.bt-icon-btn i {
    font-size: 16px;
    line-height: 1
}

/* .bt-social styles are above */

/* Auth layout */
.bt-auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

@media (max-width: 780px) {
    .bt-auth-grid {
        grid-template-columns: 1fr
    }
}

.bt-auth h2 {
    margin: 0 0 10px
}

.woocommerce-form-row label {
    display: block;
    margin: 6px 0
}

.input-text {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
    color: var(--fg)
}

.button {
    padding: 10px 14px;
    border-radius: 10px;
    border: none;
    background: var(--fg);
    color: var(--bg)
}

/* Contact grid */
.bt-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

@media (max-width: 900px) {
    .bt-contact-grid {
        grid-template-columns: 1fr
    }
}

.bt-contact-form-inner {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 16px
}

.bt-contact-map iframe {
    border-radius: 18px;
    box-shadow: var(--shadow)
}

.bt-footer-columns {
    display: contents
}

/* Footer soft spacing overrides for Bootstrap row/menu */
.bt-footer-row-bs {
    --bs-gutter-x: .75rem;
    --bs-gutter-y: .25rem
}

.bt-footer-menu.nav {
    gap: .75rem
}

.bt-footer-col h4 {
    margin: 0 0 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--muted);
    letter-spacing: .2px
}

.bt-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.bt-footer-col li {
    margin: 6px 0
}

.bt-footer-col a {
    color: var(--fg);
    text-decoration: none
}

.bt-footer-col a:hover {
    text-decoration: underline
}

/* Footer column specific */
.bt-footer-col-1 p {
    margin: 0 0 8px
}

.bt-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0
}

.bt-footer-menu li {
    margin: 0
}

.bt-footer-menu a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px
}

.bt-footer-menu a:hover {
    text-decoration: underline
}

.bt-footer-image {
    max-width: 120px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px
}

.bt-footer-extra h4 {
    margin: 0 0 8px
}

.bt-footer-extra ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.bt-footer-extra li {
    margin: 6px 0
}

.bt-footer-extra a {
    color: var(--fg);
    text-decoration: none
}

.bt-footer-extra a:hover {
    text-decoration: underline
}

/* WooCommerce Shop: clean 5-column product grid */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0
}

.woocommerce ul.products li.product {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent
}

.woocommerce ul.products li.product a {
    display: block;
    position: relative
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: auto;
    border-radius: 12px
}

.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #95C11F;
    color: #fff;
    font-weight: 700;
    box-shadow: var(--shadow);
    text-transform: lowercase
}

/* Hide pagination (we use infinite scroll) */
.woocommerce nav.woocommerce-pagination {
    display: none
}

/* Hide WooCommerce success notice boxes; we use toast instead */
.woocommerce .woocommerce-message {
    display: none !important;
}

/* Responsive fallbacks */
@media (max-width: 1200px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media (max-width: 992px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* Single Product – modern layout */
.bt-single .woocommerce-product-gallery {
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    background: var(--bg);
    padding: 12px
}

.bt-brand {
    color: #e11d48;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .3px;
    margin-bottom: 6px
}

.bt-single-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 12px
}

.bt-meta dl {
    margin: 0
}

.bt-meta-row {
    display: flex;
    gap: 16px;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px solid var(--border)
}

.bt-meta dt {
    width: 140px;
    color: var(--muted);
    font-weight: 600;
    margin: 0
}

.bt-meta dd {
    margin: 0
}

.bt-price {
    font-size: 28px;
    font-weight: 800;
    margin: 16px 0
}

.bt-note {
    color: #e11d48;
    font-size: 12px;
    margin-bottom: 12px
}

.bt-cta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 18px 0
}

.bt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--fg);
    color: var(--bg);
    font-weight: 700
}

.bt-btn-primary {
    background: #e11d48;
    border-color: #e11d48;
    color: #fff
}

.bt-btn-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--fg)
}

.single-product .cart .single_add_to_cart_button {
    border-radius: 999px;
    padding: 12px 18px;
    background: #e11d48;
    border: none;
    color: #fff;
    box-shadow: var(--shadow)
}

.single-product .cart .quantity {
    display: none
}

.bt-footer-columns {
    display: contents
}

/* Footer soft spacing overrides for Bootstrap row/menu */
.bt-footer-row-bs {
    --bs-gutter-x: .75rem;
    --bs-gutter-y: .25rem
}

.bt-footer-menu.nav {
    gap: .75rem
}

.bt-footer-col h4 {
    margin: 0 0 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--muted);
    letter-spacing: .2px
}

.bt-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.bt-footer-col li {
    margin: 6px 0
}

.bt-footer-col a {
    color: var(--fg);
    text-decoration: none
}

.bt-footer-col a:hover {
    text-decoration: underline
}

/* Footer column specific */
.bt-footer-col-1 p {
    margin: 0 0 8px
}

.bt-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0
}

.bt-footer-menu li {
    margin: 0
}

.bt-footer-menu a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px
}

.bt-footer-menu a:hover {
    text-decoration: underline
}

.bt-footer-image {
    max-width: 120px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px
}

.bt-footer-extra h4 {
    margin: 0 0 8px
}

.bt-footer-extra ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.bt-footer-extra li {
    margin: 6px 0
}

.bt-footer-extra a {
    color: var(--fg);
    text-decoration: none
}

.bt-footer-extra a:hover {
    text-decoration: underline
}

/* WooCommerce Shop: clean 5-column product grid */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0
}

.woocommerce ul.products li.product {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent
}

.woocommerce ul.products li.product a {
    display: block;
    position: relative
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: auto;
    border-radius: 12px
}

.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #95C11F;
    color: #fff;
    font-weight: 700;
    box-shadow: var(--shadow);
    text-transform: lowercase
}

/* Hide pagination (we use infinite scroll) */
.woocommerce nav.woocommerce-pagination {
    display: none
}

/* Hide WooCommerce success notice boxes; we use toast instead */
.woocommerce .woocommerce-message {
    display: none !important;
}

/* Responsive fallbacks */
@media (max-width: 1200px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media (max-width: 992px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* Related products */
.bt-related {
    margin-top: 36px
}

.bt-rel-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px
}