@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --font-head: 'Baloo 2', cursive;
    --font-body: 'Poppins', sans-serif;
}

/* Global Font Reset */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
}

html,
body,
p,
span,
div,
input,
select,
textarea,
section,
article {
    font-family: var(--font-body);
}

body {
    font-family: var(--font-body);
    color: #1E293B;
    background-color: white;
    -webkit-font-smoothing: antialiased;
}

.lisbon-toys p,
.lisbon-toys span,
.lisbon-toys input,
.lisbon-toys textarea,
.lisbon-toys select {
    font-family: var(--font-body) !important;
}

.lisbon-toys h1,
.lisbon-toys h2,
.lisbon-toys h3,
.lisbon-toys h4,
.lisbon-toys h5,
.lisbon-toys h6 {
    font-family: 'Baloo 2', cursive !important;
    line-height: 1.15;
    font-weight: 800;
    color: #1E293B;
}

.lisbon-toys nav a,
.lisbon-toys .lt-logo,
.lisbon-toys .lt-nav__link,
.lisbon-toys .lt-action-btn,
.lisbon-toys .lt-mobile-nav__link,
.lisbon-toys .lt-footer h4,
.lisbon-toys label {
    font-family: var(--font-head);
    font-weight: 700;
}

/* ════════════════════════════════════════════════════
   SOFT PREMIUM CARDS
   ════════════════════════════════════════════════════ */
.lisbon-toys .toy-card {
    background: white;
    border-radius: 3.5rem;
    padding: 1.5rem;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.lisbon-toys .toy-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 40px 80px rgba(44, 62, 80, 0.08);
}

/* ════════════════════════════════════════════════════
   WOOCOMMERCE OVERRIDES
   ════════════════════════════════════════════════════ */
.lisbon-toys .woocommerce ul.products li.product {
    background: white;
    border-radius: 3.5rem;
    padding: 2.5rem;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    text-align: center;
    transition: all 0.4s ease;
}

.lisbon-toys .woocommerce ul.products li.product:hover {
    box-shadow: 0 40px 60px rgba(56, 189, 248, 0.12);
}

.lisbon-toys .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-head) !important;
    font-weight: 800;
    font-size: 1.4rem;
    margin: 1.5rem 0 0.5rem 0;
    color: #1E293B;
    line-height: 1.3;
}

.lisbon-toys .woocommerce a.button,
.lisbon-toys .btn-premium {
    font-family: var(--font-head) !important;
    background-color: #2C3E50 !important;
    color: white !important;
    border-radius: 1.5rem !important;
    padding: 1rem 2rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 20px rgba(44, 62, 80, 0.2) !important;
    transition: all 0.3s ease !important;
}

.lisbon-toys .woocommerce a.button:hover {
    background-color: #38BDF8 !important;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.3) !important;
}

/* ════════════════════════════════════════════════════
   HERO ANIMATIONS
   ════════════════════════════════════════════════════ */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lisbon-toys .animate-hero-up {
    animation: slideUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* ════════════════════════════════════════════════════
   SWIPER PAGINATION (PREMIUM)
   ════════════════════════════════════════════════════ */
.heroSwiper .swiper-pagination {
    bottom: 2.5rem !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.75rem !important;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #E2E8F0 !important;
    opacity: 1 !important;
    border-radius: 999px !important;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) !important;
    border: 2.5px solid #fff !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
    margin: 0 !important;
}

.heroSwiper .swiper-pagination-bullet-active {
    width: 45px !important;
    background: #4B9FFF !important;
    box-shadow: 0 8px 20px rgba(75, 159, 255, 0.3) !important;
}

/* ════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════ */
.lt-sticky-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* ─── Topbar ── */
.lt-topbar {
    background: #1A1A2E;
    color: rgba(255, 255, 255, 0.85);
    height: 2.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.lt-topbar__track {
    display: inline-flex;
    align-items: center;
    gap: 3.5rem;
    white-space: nowrap;
    animation: lt-topbar-scroll 50s linear infinite;
}

@keyframes lt-topbar-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

.lt-topbar__item {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ─── Header Main ── */
.lt-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.lt-sticky-wrap.is-scrolled .lt-topbar {
    height: 0;
}

.lt-sticky-wrap.is-scrolled .lt-header {
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.09);
}

.lt-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5rem;
    height: 72px;
}

/* ─── Logo ── */
.lt-logo {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
}

.lt-logo__main {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 900;
    color: #1A1A2E;
}

.lt-logo__accent {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 900;
    color: #4B9FFF;
    font-style: italic;
}

/* ─── Search ── */
.lt-search {
    flex: 1;
    max-width: 360px;
    margin: 0 1.5rem;
}

.lt-search form {
    display: flex;
    align-items: center;
    background: #F8FAFC;
    border: 2px solid #F1F5F9;
    border-radius: 999px;
    padding: 0.35rem 0.5rem 0.35rem 1.25rem;
    gap: 0.5rem;
    transition: all 0.3s;
}

.lt-search form:focus-within {
    border-color: #4B9FFF;
    background: #fff;
    box-shadow: 0 10px 25px rgba(75, 159, 255, 0.08);
}

.lt-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    outline: none;
    color: #1A1A2E;
}

.lt-search .search-submit,
.lt-search button[type="submit"] {
    background: #1A1A2E !important;
    color: white !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 0.5rem 1.25rem !important;
    font-family: 'Baloo 2', cursive !important;
    font-weight: 800 !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.lt-search .search-submit:hover,
.lt-search button[type="submit"]:hover {
    background: #4B9FFF !important;
    transform: scale(1.05);
}

/* ─── Nav ── */
.lt-nav {
    display: flex;
    gap: 0.5rem;
}

.lt-nav__link {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #4A4A6A;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    transition: all 0.25s ease;
}

.lt-nav__link:hover {
    background: #F0F5FF;
    color: #4B9FFF;
}

.lt-nav__link--new {
    color: #3ECFA0;
}

.lt-nav__link--sale {
    color: #FF6FAD;
}

/* ─── Actions ── */
.lt-header__actions {
    display: flex;
    gap: 0.5rem;
}

.lt-action-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
}

.lt-action-btn--ghost {
    background: #F5F7FA;
    color: #4A4A6A;
}

.lt-action-btn--cart {
    background: #1A1A2E;
    color: white;
}

.lt-cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #FF6FAD;
    color: white;
    font-size: 0.6rem;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* ─── Mobile Toggle ── */
.lt-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: #F8FAFC;
    border-radius: 14px;
    cursor: pointer;
    padding: 12px;
    border: 1.5px solid #F1F5F9;
    transition: all 0.3s;
    position: relative;
    z-index: 1010;
}

.lt-mobile-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #1A1A2E;
    border-radius: 99px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.lt-mobile-toggle.is-open span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.lt-mobile-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.lt-mobile-toggle.is-open span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* ─── Mobile Menu ── */
.lt-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    padding: 75px 2.5rem 2rem;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    visibility: hidden;
}

.lt-mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.lt-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lt-mobile-nav__link {
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 800;
    color: #1A1A2E;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.lt-mobile-menu.is-open .lt-mobile-nav__link {
    opacity: 1;
    transform: translateY(0);
}

.lt-mobile-menu.is-open .lt-mobile-nav__link:nth-child(1) {
    transition-delay: 0.1s;
}

.lt-mobile-menu.is-open .lt-mobile-nav__link:nth-child(2) {
    transition-delay: 0.2s;
}

.lt-mobile-menu.is-open .lt-mobile-nav__link:nth-child(3) {
    transition-delay: 0.3s;
}

.lt-mobile-menu.is-open .lt-mobile-nav__link:nth-child(4) {
    transition-delay: 0.4s;
}

.lt-mobile-menu.is-open .lt-mobile-nav__link:nth-child(5) {
    transition-delay: 0.5s;
}

.lt-mobile-menu.is-open .lt-mobile-nav__link:nth-child(6) {
    transition-delay: 0.6s;
}

/* ─── Responsive Queries ── */
@media (max-width: 1024px) {
    .lt-nav {
        display: none;
    }

    .lt-mobile-toggle {
        display: flex;
    }

    .lt-header__inner {
        padding: 0 1.5rem;
    }

    .lt-search {
        max-width: 320px;
        margin: 0 1rem;
    }
}

@media (max-width: 768px) {
    .lt-action-btn__label {
        display: none;
    }

    .lt-action-btn {
        padding: 0.6rem;
    }

    .lt-search {
        display: none;
    }

    .lt-logo__main,
    .lt-logo__accent {
        font-size: 1.35rem;
    }
}

.lt-mobile-search form {
    background: #F8FAFC !important;
    border: 2px solid #F1F5F9 !important;
    border-radius: 999px !important;
    padding: 0.35rem 0.5rem 0.35rem 1.5rem !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lt-mobile-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    color: #1A1A2E !important;
}

.lt-mobile-search .search-submit,
.lt-mobile-search button[type="submit"] {
    background: #1A1A2E !important;
    color: white !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 0.65rem 1.5rem !important;
    font-family: 'Baloo 2', cursive !important;
    font-weight: 800 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
}

/* ─── Spacer ── */
.lt-header-spacer {
    height: 112px;
}

@media (max-width: 640px) {
    .lt-header-spacer {
        height: 96px;
    }
}

/* ════════════════════════════════════════════════════
   11. SINGLE PRODUCT PAGE (BENTO STYLE)
   ════════════════════════════════════════════════════ */
.lt-product-page {
    background: #FAFBFE;
}

.lt-product-page .woocommerce-product-gallery {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    background: white;
    border-radius: 3rem;
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.lt-product-page .woocommerce-product-gallery .woocommerce-product-gallery__trigger,
.lt-product-page .woocommerce-product-gallery .flex-control-nav {
    display: none !important;
}

#product-main-view img {
    max-height: 500px;
    width: auto;
    margin: 0 auto;
}

.lt-thumb-switcher {
    cursor: pointer;
    transition: all 0.3s ease;
}

.lt-thumb-switcher img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.lt-cart-actions .cart {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.lt-cart-actions .quantity {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 0.25rem;
    border-radius: 999px;
    border: 2px solid #F1F5F9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.lt-qty-btn {
    width: 38px;
    height: 38px;
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: 50%;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.25rem;
    color: #1E293B;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lt-qty-btn:hover {
    background: #4B9FFF;
    color: #fff;
    border-color: #4B9FFF;
    transform: scale(1.1);
}

.lt-cart-actions .quantity input {
    width: 45px;
    background: transparent;
    border: none;
    text-align: center;
    font-weight: 900 !important;
    color: #1E293B !important;
    font-family: var(--font-head);
    font-size: 1.3rem !important;
    outline: none !important;
}

.lt-cart-actions button.single_add_to_cart_button {
    flex: 1;
    min-width: 160px;
    background: #1A1A2E;
    color: white;
    padding: 1.1rem 2rem;
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(26, 26, 46, 0.1);
    transition: all 0.3s ease;
}

.lt-cart-actions button.single_add_to_cart_button:hover {
    background: #4B9FFF;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(75, 159, 255, 0.2);
}

/* --- Variatons --- */
.variations_form {
    margin-bottom: 0 !important;
}

.variations_form .variations {
    width: 100% !important;
    margin-bottom: 0 !important;
    border: none;
}

.variations_form .variations td {
    display: block;
    padding: 0 !important;
    border: none;
}

.variations_form .variations label {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.7rem;
    color: #94A3B8;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    display: block;
    letter-spacing: 0.05em;
}

.variations_form .variations select {
    width: 100% !important;
    padding: 0.65rem 1.25rem !important;
    border-radius: 1rem !important;
    border: 2px solid #F1F5F9 !important;
    background: #fff !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    color: #1E293B !important;
    cursor: pointer;
    outline: none !important;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    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='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 0.8rem;
}

.variations_form .variations select:focus {
    border-color: #4B9FFF !important;
    box-shadow: 0 0 15px rgba(75, 159, 255, 0.08);
    background-color: #fff !important;
}

.reset_variations {
    display: none !important;
    font-size: 0.65rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    color: #FF6FAD !important;
    margin-top: 0.35rem !important;
    text-decoration: underline !important;
    transition: all 0.2s;
}

/* Only show reset when WooCommerce decides it should be visible */
.variations_form .reset_variations[style*="display: inline"],
.variations_form .reset_variations[style*="visibility: visible"] {
    display: inline-block !important;
}

.reset_variations:hover {
    color: #1A1A2E !important;
}

/* --- Tabs Pill Style --- */
.lt-tab-btn {
    padding: 0.65rem 1.75rem !important;
    border-radius: 999px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    background: #F8FAFC !important;
    border: 3px solid transparent !important;
    font-family: 'Baloo 2', cursive !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-size: 0.85rem !important;
    color: #64748B !important;
    display: inline-flex !important;
    align-items: center !important;
    cursor: pointer !important;
}

.lt-tab-btn.active {
    background: #FF6FAD !important;
    color: white !important;
    box-shadow: 0 15px 30px rgba(255, 111, 173, 0.25) !important;
    transform: translateY(-2px);
    opacity: 1 !important;
}

.lt-tab-btn:hover:not(.active) {
    background: #F1F5F9 !important;
    border-color: #E2E8F0 !important;
    transform: translateY(-1px);
    color: #1E293B !important;
}

.lt-tab-content.hidden {
    display: none !important;
}

.lt-tab-content.active {
    display: block !important;
    animation: fadeIn 0.5s ease-out;
}

/* --- Tab Content Styling (Product Story) --- */
.lt-tab-content .prose h2,
.lt-tab-content .prose h3 {
    font-family: 'Baloo 2', cursive !important;
    font-weight: 800;
    color: #1A1A2E;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lt-tab-content .prose p {
    margin-bottom: 1.5rem;
    color: #475569;
}

/* --- Additional Info Table (Specs) --- */
.woocommerce-product-attributes.shop_attributes {
    border: none !important;
    width: 100% !important;
    margin: 0 !important;
}

.woocommerce-product-attributes.shop_attributes tr {
    border-bottom: 1px solid #F1F5F9 !important;
}

.woocommerce-product-attributes.shop_attributes tr:last-child {
    border-bottom: none !important;
}

.woocommerce-product-attributes.shop_attributes th,
.woocommerce-product-attributes.shop_attributes td {
    padding: 1rem 0 !important;
    text-align: left !important;
    border: none !important;
    font-size: 0.9rem !important;
}

.woocommerce-product-attributes.shop_attributes th {
    width: 180px !important;
    color: #94A3B8 !important;
    font-family: var(--font-head) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.woocommerce-product-attributes.shop_attributes td {
    color: #1E293B !important;
    font-weight: 600 !important;
}

.woocommerce-product-attributes.shop_attributes p {
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

/* Global Button Styling — Baloo 2 */
button,
.button,
.woocommerce-button,
.alt-button,
.lt-qty-btn,
.single_add_to_cart_button,
.reset_variations,
.submit {
    font-family: 'Baloo 2', cursive !important;
    letter-spacing: 0.02em !important;
}

/* --- Reviews Beautification --- */
.lt-reviews-box h2.woocommerce-Reviews-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.5rem;
    color: #1E293B;
    margin-bottom: 2rem;
    font-style: italic;
}

.commentlist {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.commentlist li.review {
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    border: 1px solid #F1F5F9;
}

.commentlist li.review .avatar {
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.commentlist li.review .description {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.6;
    margin-top: 0.5rem;
}

#review_form_wrapper {
    background: #fff;
    padding: 0;
}

#review_form .comment-reply-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    color: #1A1A2E;
    margin-bottom: 1.5rem;
    display: block;
}

#review_form textarea,
#review_form input[type="text"],
#review_form input[type="email"] {
    width: 100%;
    background: #F1F5F9;
    border: 2px solid transparent;
    border-radius: 1.25rem;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s;
}

#review_form textarea:focus,
#review_form input:focus {
    background: #fff;
    border-color: #4B9FFF;
    box-shadow: 0 10px 20px rgba(75, 159, 255, 0.05);
}

#review_form .submit {
    background: #1A1A2E !important;
    color: white !important;
    padding: 0.75rem 2rem !important;
    border-radius: 999px !important;
    font-family: var(--font-head) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    border: none !important;
    cursor: pointer !important;
    width: 100%;
    margin-top: 1rem;
}

#review_form .submit:hover {
    background: #4B9FFF !important;
}

/* --- Related Products Section --- */
.related.products h2 {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 3.5rem;
    color: #1A1A2E;
    text-align: center;
    letter-spacing: -0.02em;
    font-style: italic;
}

.related.products .products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
}

/* Hide WooCommerce default clearfix */
.related.products .products::before,
.related.products .products::after {
    display: none !important;
}

/* ════════════════════════════════════════════════════
   13. SHOP SIDEBAR & WIDGETS (PREMIUM & BLOCK-READY)
   ════════════════════════════════════════════════════ */

.lt-shop-sidebar {
    padding-top: 1rem;
}

/* Base Widget / Block Wrapper Styling */
.lt-custom-sidebar-inner .lt-widget,
.lt-custom-sidebar-inner .wp-block-woocommerce-filter-wrapper,
.lt-custom-sidebar-inner .wc-block-product-categories,
.lt-custom-sidebar-inner .wc-block-price-filter,
.lt-custom-sidebar-inner .wc-block-attribute-filter,
.lt-custom-sidebar-inner .wc-block-stock-filter,
.lt-custom-sidebar-inner .wc-block-active-filters {
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    border-radius: 2.5rem !important;
    padding: 2.5rem !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02) !important;
    margin-bottom: 2rem !important;
    transition: all 0.5s ease !important;
    overflow: hidden !important;
    position: relative !important;
}

.lt-custom-sidebar-inner>*:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(75, 159, 255, 0.08) !important;
    border-color: rgba(75, 159, 255, 0.2) !important;
}

/* Titles Styling (Classic & Blocks) */
.lt-custom-sidebar-inner .lt-widget-title,
.lt-custom-sidebar-inner .wc-block-product-categories__title,
.lt-custom-sidebar-inner .wc-block-price-filter__title,
.lt-custom-sidebar-inner .wc-block-attribute-filter__title,
.lt-custom-sidebar-inner .wc-block-stock-filter__title,
.lt-custom-sidebar-inner .wc-block-active-filters__title {
    font-family: var(--font-head) !important;
    font-size: 1.15rem !important;
    font-weight: 900 !important;
    color: #1E293B !important;
    margin-bottom: 2rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
}

/* Title Icons */
.lt-custom-sidebar-inner .wc-block-product-categories__title::before,
.lt-custom-sidebar-inner .widget_product_categories .lt-widget-title::before {
    content: '🏷️';
    font-size: 1.25rem;
}

.lt-custom-sidebar-inner .wc-block-price-filter__title::before,
.lt-custom-sidebar-inner .widget_price_filter .lt-widget-title::before {
    content: '💰';
    font-size: 1.25rem;
}

/* Active Filters / Clear Filters Button */
.lt-custom-sidebar-inner .wc-block-active-filters__clear-all {
    width: 100% !important;
    background: #1E293B !important;
    color: #fff !important;
    padding: 1rem !important;
    border-radius: 1.25rem !important;
    font-family: var(--font-head) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 0.85rem !important;
    margin-top: 1rem !important;
}

.lt-custom-sidebar-inner .wc-block-active-filters__clear-all:hover {
    background: #4B9FFF !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(75, 159, 255, 0.2) !important;
}

/* Category List & Block Checkboxes */
.lt-custom-sidebar-inner .wc-block-product-categories-list,
.lt-custom-sidebar-inner .wc-block-components-checkbox-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.lt-custom-sidebar-inner .wc-block-product-categories-list-item,
.lt-custom-sidebar-inner .wc-block-components-checkbox-list-item {
    margin-bottom: 0.5rem !important;
    padding: 0.85rem 1.25rem !important;
    border-radius: 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #475569 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: #F8FAFC !important;
    cursor: pointer !important;
}

.lt-custom-sidebar-inner .wc-block-product-categories-list-item:hover,
.lt-custom-sidebar-inner .wc-block-components-checkbox-list-item:hover {
    background: #4B9FFF !important;
    color: #fff !important;
    transform: translateX(8px);
}

/* Price Slider (Blocks Version) */
.lt-custom-sidebar-inner .wc-block-price-filter__range-input-wrapper {
    margin-top: 1.5rem !important;
}

.lt-custom-sidebar-inner .wc-block-price-filter__range-input {
    background: #F1F5F9 !important;
    height: 12px !important;
    border-radius: 999px !important;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .lt-shop-sidebar {
        order: -1;
        margin-bottom: 3rem;
    }

    .lt-custom-sidebar-inner>* {
        padding: 1.5rem !important;
        border-radius: 2rem !important;
    }
}

/* ════════════════════════════════════════════════════
   12. SHOP ARCHIVE PAGE
   ════════════════════════════════════════════════════ */

.lt-shop-header {
    background: #F8FAFC;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* --- Controls (Sort & Count) --- */
.lt-shop-controls .woocommerce-result-count {
    margin: 0 !important;
    font-family: var(--font-head) !important;
    font-weight: 800 !important;
    color: #94A3B8 !important;
    font-size: 0.65rem !important;
}

.lt-shop-controls select.orderby {
    border: 2px solid #F1F5F9 !important;
    border-radius: 999px !important;
    padding: 0.65rem 1.5rem !important;
    font-family: var(--font-head) !important;
    font-weight: 800 !important;
    font-size: 0.75rem !important;
    color: #1A1A2E !important;
    background: #fff !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    cursor: pointer !important;
    outline: none !important;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    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='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 0.8rem !important;
    padding-right: 3rem !important;
}

.lt-shop-controls select.orderby:focus {
    border-color: #4B9FFF !important;
    box-shadow: 0 10px 25px rgba(75, 159, 255, 0.08) !important;
}

/* --- Breadcrumbs --- */
.lt-breadcrumb-row .woocommerce-breadcrumb {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: #94A3B8;
    margin: 0;
}

.lt-breadcrumb-row .woocommerce-breadcrumb a {
    color: #4B9FFF;
    text-decoration: none;
    transition: color 0.3s;
}

.lt-breadcrumb-row .woocommerce-breadcrumb a:hover {
    color: #1A1A2E;
}

/* --- Pagination --- */
.woocommerce-pagination {
    text-align: center !important;
    padding-bottom: 2rem;
    width: 100%;
    overflow: visible !important;
}

.woocommerce-pagination ul.page-numbers {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem !important;
    border: none !important;
    padding: 1rem 1rem !important;
    /* Increased vertical padding to prevent clipping */
    margin: 0 auto !important;
    max-width: 100%;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.woocommerce-pagination ul.page-numbers::-webkit-scrollbar {
    display: none;
}

.woocommerce-pagination ul.page-numbers li {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0;
    overflow: visible !important;
}

.woocommerce-pagination ul.page-numbers li .page-numbers {
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #fff !important;
    border: 2px solid #F1F5F9 !important;
    border-radius: 999px !important;
    font-family: var(--font-head) !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    color: #1A1A2E !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
    position: relative;
    z-index: 1;
}

.woocommerce-pagination ul.page-numbers li span.current {
    background: #1A1A2E !important;
    border-color: #1A1A2E !important;
    color: #fff !important;
    box-shadow: 0 8px 16px rgba(26, 26, 46, 0.15) !important;
    z-index: 2;
}

.woocommerce-pagination ul.page-numbers li a.page-numbers:hover {
    background: #4B9FFF !important;
    border-color: #4B9FFF !important;
    color: #fff !important;
    transform: scale(1.1) translateY(-3px);
    /* Scale instead of just translate to avoid clipping issues */
    box-shadow: 0 10px 20px rgba(75, 159, 255, 0.2) !important;
    z-index: 3;
}

.woocommerce-pagination ul.page-numbers li .next,
.woocommerce-pagination ul.page-numbers li .prev {
    width: auto !important;
    padding: 0 1.5rem !important;
}

/* Responsive Grid Overrides for Archive */
.lt-shop-archive .products::before,
.lt-shop-archive .products::after {
    display: none !important;
}

@media (max-width: 640px) {
    .lt-shop-header {
        padding: 4rem 1rem !important;
    }

    .lt-shop-header h1 {
        font-size: 2.5rem !important;
    }

    .lt-shop-controls {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
    }

    .lt-shop-controls .woocommerce-result-count {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem !important;
    }

    .lt-shop-controls select.orderby {
        width: 100% !important;
    }
}

@media (max-width: 1024px) {
    .related.products .products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    .related.products h2 {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 640px) {
    .related.products .products {
        gap: 1rem !important;
    }

    .related.products h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}

.shadow-glow {
    box-shadow: 0 20px 50px rgba(75, 159, 255, 0.05);
}

/* --- Product Meta (SKU, Category) --- */
.product_meta {
    margin-top: 1.25rem !important;
    padding-top: 1rem !important;
    border-top: 1.5px dashed #F1F5F9 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
}

.product_meta span {
    font-size: 0.65rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #94A3B8 !important;
    background: #F8FAFC !important;
    padding: 0.35rem 0.85rem !important;
    border-radius: 999px !important;
    border: 1px solid #F1F5F9 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
}

.product_meta span a {
    color: #4B9FFF !important;
    text-decoration: none !important;
}

.product_meta span a:hover {
    color: #1E293B !important;
}

.product_meta .sku {
    color: #1E293B !important;
}

@media (max-width: 1024px) {
    .lt-product-page .lg\:sticky {
        position: static !important;
    }
}

@media (max-width: 768px) {
    .lt-tab-btn span.text-xl {
        font-size: 1rem;
    }

    .lt-product-page .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 640px) {
    .lt-product-page .woocommerce-product-gallery {
        border-radius: 2rem;
        padding: 1.5rem;
    }

    #product-main-view {
        border-width: 8px;
        border-radius: 2rem;
    }

    .lt-product-page h1 {
        font-size: 1.75rem !important;
    }

    .lt-product-page .price .woocommerce-Price-amount {
        font-size: 1.5rem !important;
    }

    .lt-tab-btn {
        gap: 0.5rem;
    }

    .lt-tab-btn .w-10 {
        width: 32px;
        height: 32px;
    }

    .lt-tab-btn span.text-xl {
        font-size: 0.9rem;
    }

    .lt-reviews-box {
        padding: 1.5rem !important;
        border-radius: 2rem !important;
    }
}

/* Fix for related products clearing */
.related.products .products::before {
    display: none !important;
}

.related.products .products::after {
    display: none !important;
}

/* ════════════════════════════════════════════════════
   14. PRODUCT CARD VARIATIONS
   ════════════════════════════════════════════════════ */

.lt-variation-select {
    font-family: var(--font-head);
    letter-spacing: 0.02em;
}

.lt-variation-select:focus {
    background: #fff !important;
    border-color: #4B9FFF !important;
    box-shadow: 0 5px 15px rgba(75, 159, 255, 0.1);
}

/* ════════════════════════════════════════════════════
   15. CART PAGE
   ════════════════════════════════════════════════════ */

/* Qty Input */
.lt-cart-page .quantity input[type="number"] {
    font-family: var(--font-head) !important;
    font-weight: 900 !important;
    text-align: center !important;
    border: none !important;
    width: 3rem !important;
    outline: none !important;
    background: transparent !important;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
    font-size: 0.9rem !important;
    padding: 0.5rem 0 !important;
}

.lt-cart-page .quantity input::-webkit-outer-spin-button,
.lt-cart-page .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
}

.lt-qty-stepper {
    display: inline-flex;
    align-items: center;
}

/* WooCommerce Checkout CTA Button */
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-cart a.checkout-button {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    padding: 1.1rem 2rem !important;
    background: #1E293B !important;
    color: #fff !important;
    border-radius: 1.25rem !important;
    font-family: var(--font-head) !important;
    font-weight: 900 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart a.checkout-button:hover {
    background: #4B9FFF !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 20px 40px rgba(75, 159, 255, 0.3) !important;
}

/* WooCommerce Global Notices */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    border-radius: 1.5rem !important;
    border: none !important;
    padding: 1.25rem 3.5rem !important;
    font-family: var(--font-head) !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    margin-bottom: 2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1.5rem !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
    list-style: none !important;
}

/* Success Message (Cart Updated, etc) */
.woocommerce-message {
    background: #DCFCE7 !important;
    /* Mint */
    color: #166534 !important;
    border-left: 6px solid #22C55E !important;
}

.woocommerce-message::before {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

/* Error Message */
.woocommerce-error {
    background: #FEE2E2 !important;
    /* Rose */
    color: #991B1B !important;
    border-left: 6px solid #EF4444 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.woocommerce-error li {
    margin-left: 0 !important;
}

.woocommerce-error::before {
    content: "❌";
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Info Message */
.woocommerce-info {
    background: #DBEAFE !important;
    /* Sky */
    color: #1E40AF !important;
    border-left: 6px solid #3B82F6 !important;
}

.woocommerce-info::before {
    content: "ℹ️";
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

/* "View Cart" button inside message */
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
    background: #1E293B !important;
    color: #fff !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: 999px !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    font-weight: 900 !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.woocommerce-message .button:hover,
.woocommerce-info .button:hover {
    background: #3B82F6 !important;
    transform: scale(1.05);
}

/* Remove link styling */
.lt-remove-btn {
    display: flex !important;
}

/* Shipping Calculator */
.woocommerce-cart .shipping-calculator-button {
    font-family: var(--font-head) !important;
    font-weight: 700 !important;
    color: #4B9FFF !important;
    font-size: 0.8rem !important;
    text-decoration: underline !important;
}

/* ════════════════════════════════════════════════════
   16. PRODUCT DETAIL — ENHANCEMENTS
   ════════════════════════════════════════════════════ */

/* Stock status pill */
.lt-product-page .stock {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    padding: 0.4rem 1rem !important;
    border-radius: 999px !important;
    font-family: var(--font-head) !important;
    font-weight: 800 !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
}

.lt-product-page .in-stock {
    background: #D1FAE5 !important;
    color: #065F46 !important;
}

.lt-product-page .out-of-stock {
    background: #FEE2E2 !important;
    color: #991B1B !important;
}

/* Price large */
.lt-product-page .price .woocommerce-Price-amount {
    font-family: var(--font-head) !important;
    font-weight: 900 !important;
    color: #3B82F6 !important;
}

/* ATC button enhancement */
.lt-cart-actions .single_add_to_cart_button.button {
    background: #1E293B !important;
    color: #fff !important;
    font-family: var(--font-head) !important;
    font-weight: 900 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    border-radius: 1.25rem !important;
    padding: 1rem 2rem !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
}

.lt-cart-actions .single_add_to_cart_button.button:hover {
    background: #4B9FFF !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 20px 40px rgba(75, 159, 255, 0.3) !important;
}

/* Variation dropdowns on product page */
.lt-product-page .variations select {
    border: 2px solid #E2E8F0 !important;
    border-radius: 1rem !important;
    padding: 0.75rem 1.25rem !important;
    font-family: var(--font-head) !important;
    font-weight: 700 !important;
    color: #1E293B !important;
    background: #F8FAFC !important;
    outline: none !important;
    transition: border-color 0.3s ease !important;
    width: 100% !important;
}

.lt-product-page .variations select:focus {
    border-color: #4B9FFF !important;
    background: #fff !important;
    box-shadow: 0 5px 20px rgba(75, 159, 255, 0.1) !important;
}

/* ════════════════════════════════════════════════════
   17. SHOP PAGE — SORT BAR
   ════════════════════════════════════════════════════ */

.lt-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.lt-shop-toolbar .woocommerce-result-count {
    font-family: var(--font-head) !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    color: #94A3B8 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
}

.lt-shop-toolbar .woocommerce-ordering select {
    border: 2px solid #E2E8F0 !important;
    border-radius: 1rem !important;
    padding: 0.6rem 1rem !important;
    font-family: var(--font-head) !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    color: #1E293B !important;
    background: #fff !important;
    outline: none !important;
    cursor: pointer !important;
    transition: border-color 0.3s ease !important;
}

.lt-shop-toolbar .woocommerce-ordering select:focus {
    border-color: #4B9FFF !important;
}

/* ════════════════════════════════════════════════════
   18. CHECKOUT PAGE
   ════════════════════════════════════════════════════ */

.lt-checkout-page .woocommerce-billing-fields__field-wrapper,
.lt-checkout-page .woocommerce-shipping-fields__field-wrapper,
.lt-checkout-page .woocommerce-additional-fields__field-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 -0.625rem !important;
}

.lt-checkout-page .form-row {
    padding: 0 0.625rem !important;
    margin-bottom: 1.25rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@media (min-width: 769px) {

    .lt-checkout-page .form-row-first,
    .lt-checkout-page .form-row-last {
        width: 50% !important;
    }
}

.lt-checkout-page .form-row label {
    font-family: var(--font-head) !important;
    font-weight: 800 !important;
    font-size: 0.85rem !important;
    color: #64748B !important;
    margin-bottom: 0.6rem !important;
    margin-left: 0.5rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.lt-checkout-page .form-row input.input-text,
.lt-checkout-page .form-row select,
.lt-checkout-page .form-row textarea {
    background: #F8FAFC !important;
    border: 2px solid #F1F5F9 !important;
    border-radius: 1.5rem !important;
    padding: 1.1rem 1.5rem !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    color: #1E293B !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    width: 100% !important;
}

/* Coupon section in sidebar */
.lt-checkout-coupon-wrap {
    background: #EFF6FF;
    border-radius: 2rem;
    padding: 1.25rem 1.5rem;
    border: 2px dashed #BFDBFE;
    margin-bottom: 1.5rem;
}

.lt-checkout-coupon-wrap .woocommerce-info {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    font-size: 0.9rem !important;
    border: none !important;
    color: #1E3A8A !important;
    display: block !important;
}

.lt-checkout-coupon-wrap .woocommerce-info::before {
    display: none !important;
}

.lt-checkout-coupon-wrap .showcoupon {
    color: #3B82F6 !important;
    font-weight: 900 !important;
    text-decoration: underline !important;
    margin-left: 0.25rem;
}

.checkout_coupon {
    margin-top: 1rem !important;
    padding: 1.25rem !important;
    background: #fff !important;
    border-radius: 1.5rem !important;
    border: 1px solid #E2E8F0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
}

.checkout_coupon .form-row {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.checkout_coupon .button {
    width: 100% !important;
    background: #1E293B !important;
    color: #fff !important;
    border-radius: 1rem !important;
    padding: 0.8rem !important;
    font-family: var(--font-head) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

/* Scoped Mobile Optimizations for Checkout Only */
@media (max-width: 768px) {
    .lt-checkout-page .container { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
    .lt-checkout-page .grid { gap: 1rem !important; }
}

.lt-checkout-page .form-row input.input-text:focus,
.lt-checkout-page .form-row select:focus,
.lt-checkout-page .form-row textarea:focus {
    background: #fff !important;
    border-color: #3B82F6 !important;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.1) !important;
}

/* Payment Section */
.lt-checkout-page #payment {
    background: #F8FAFC !important;
    border-radius: 2.5rem !important;
    padding: 1.5rem !important;
    border: 2px solid #F1F5F9 !important;
    margin-top: 1.5rem !important;
}

.lt-checkout-page #payment ul.payment_methods {
    border-bottom: 2px solid #F1F5F9 !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 1rem !important;
    padding-left: 0 !important; /* Remove default list padding */
}

.lt-checkout-page #payment ul.payment_methods li {
    background: #fff !important;
    border-radius: 1.25rem !important;
    padding: 0 !important; /* User requested removal of child padding */
    margin-bottom: 0.75rem !important;
    border: 2px solid #F1F5F9 !important;
    transition: all 0.3s ease !important;
    list-style: none !important;
}

.lt-checkout-page #payment ul.payment_methods li input[type="radio"] {
    margin-right: 1rem !important;
}

.lt-checkout-page #payment ul.payment_methods li label {
    font-family: var(--font-head) !important;
    font-weight: 900 !important;
    color: #1E293B !important;
    cursor: pointer !important;
    font-size: 0.95rem !important;
}

.lt-checkout-page #payment .payment_box {
    background: #F1F5F9 !important;
    border-radius: 0.75rem !important;
    padding: 0 !important; /* User requested removal of child padding */
    margin-top: 1rem !important;
    font-size: 0.85rem !important;
    color: #475569 !important;
    font-weight: 500 !important;
}

.lt-checkout-page #payment .payment_box::before {
    display: none !important;
}

/* Place Order Button */
.lt-checkout-page #place_order {
    width: 100% !important;
    background: #1E293B !important;
    color: #fff !important;
    border-radius: 1.25rem !important;
    padding: 1.25rem !important;
    font-family: var(--font-head) !important;
    font-weight: 900 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(30, 41, 59, 0.2) !important;
    margin-top: 1rem !important;
    cursor: pointer !important;
}

.lt-checkout-page #place_order:hover {
    background: #3B82F6 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3) !important;
}

/* Select2 Overrides */
.lt-checkout-page .select2-container--default .select2-selection--single {
    background-color: #F8FAFC !important;
    border: 2px solid #F1F5F9 !important;
    border-radius: 1.25rem !important;
    height: auto !important;
    padding: 0.75rem 1.25rem !important;
}

.lt-checkout-page .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #1E293B !important;
    font-weight: 600 !important;
    font-family: var(--font-body) !important;
}

.lt-checkout-page .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 1.25rem !important;
}

/* Ship to different address */
.lt-checkout-page #ship-to-different-address {
    margin: 2rem 0 !important;
    padding: 1.5rem !important;
    background: #E0F2FE !important;
    border-radius: 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}

.lt-checkout-page #ship-to-different-address label {
    font-family: var(--font-head) !important;
    font-weight: 900 !important;
    color: #0369A1 !important;
    margin: 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-size: 1rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    cursor: pointer !important;
}

.lt-checkout-page #ship-to-different-address input {
    width: 1.25rem !important;
    height: 1.25rem !important;
    border-radius: 0.5rem !important;
}

/* WooCommerce Notices on Checkout */
.lt-checkout-page .woocommerce-notice,
.lt-checkout-page .woocommerce-NoticeGroup {
    margin-bottom: 2.5rem !important;
}

/* Table styling for mobile */
@media (max-width: 640px) {
    .lt-checkout-page .lt-checkout-card {
        padding: 1.5rem !important;
        border-radius: 2rem !important;
    }

    .lt-checkout-page .lt-order-review-card {
        padding: 1.5rem !important;
        border-radius: 2.5rem !important;
    }

    .lt-checkout-page h1 {
        font-size: 2rem !important;
    }
}

/* ════════════════════════════════════════════════════
   MARQUEE PILLS SECTION
   ════════════════════════════════════════════════════ */
.marquee-container {
    overflow: hidden !important;
    white-space: nowrap !important;
    position: relative !important;
    width: 100% !important;
}

.marquee-content {
    display: inline-flex !important;
    animation: marquee-scroll 60s linear infinite !important;
    gap: 2rem !important;
    align-items: center !important;
    padding: 1rem 0 !important;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-pill {
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    padding: 0.75rem 1.75rem !important;
    background: #F8FAFC !important;
    border: 2px solid #F1F5F9 !important;
    border-radius: 999px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    cursor: default !important;
    flex-shrink: 0 !important;
}

.marquee-pill:hover {
    background: #fff !important;
    border-color: #4B9FFF !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(75, 159, 255, 0.12) !important;
}

.marquee-icon {
    font-size: 1.5rem !important;
    line-height: 1 !important;
}

.marquee-pill span:not(.marquee-icon):not(.marquee-dot) {
    font-family: var(--font-head) !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    color: #1E293B !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.marquee-dot {
    width: 8px !important;
    height: 8px !important;
    background: #4B9FFF !important;
    border-radius: 50% !important;
    margin-left: 0.5rem !important;
}

/* Related Products Mobile Fix */
@media (max-width: 768px) {
    .related.products ul.products {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        padding: 0 !important;
    }
    .related.products ul.products li.product {
        width: 100% !important;
        margin: 0 !important;
    }
}