:root {
    --ib-bg: #f5f7ff;
    --ib-paper: #ffffff;
    --ib-ink: #11162b;
    --ib-muted: #68708c;
    --ib-blue: #2140d9;
    --ib-blue-dark: #132da8;
    --ib-accent: #ff614f;
    --ib-line: #e1e7ff;
    --ib-radius: 18px;
    --ib-shadow: 0 20px 50px rgba(11, 31, 96, 0.1);
}

body.illutionz-theme {
    margin: 0;
    background:
        radial-gradient(circle at 20% 0%, #eef2ff 0, #f8f9ff 30%, transparent 50%),
        linear-gradient(180deg, #f9fbff 0%, #f4f7ff 100%);
    color: var(--ib-ink);
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

body.illutionz-theme * {
    box-sizing: border-box;
}

body.illutionz-theme h1,
body.illutionz-theme h2,
body.illutionz-theme h3,
body.illutionz-theme h4 {
    color: var(--ib-ink);
    font-family: "Outfit", "Plus Jakarta Sans", sans-serif;
    letter-spacing: -0.03em;
}

body.illutionz-theme a {
    color: inherit;
    text-decoration: none;
}

.ib-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

.ib-skip-link {
    position: fixed;
    top: -100px;
    left: 10px;
    background: var(--ib-blue);
    color: #fff;
    padding: 8px 12px;
    z-index: 999;
}

.ib-skip-link:focus {
    top: 10px;
}

.ib-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--ib-line);
    background: rgba(250, 252, 255, 0.95);
    backdrop-filter: blur(10px);
}

.ib-header-inner {
    display: flex;
    align-items: center;
    min-height: 78px;
    gap: 24px;
}

.ib-brand {
    display: block;
}

.ib-brand .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.ib-brand .custom-logo {
    max-width: 170px;
    max-height: 96px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.ib-nav {
    margin-left: auto;
}

.ib-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

.ib-nav-links a {
    color: var(--ib-muted);
    font-size: 14px;
    font-weight: 700;
}

.ib-nav-links a:hover,
.ib-nav-links a:focus-visible {
    color: var(--ib-blue);
}

.ib-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ib-header-search {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.ib-header-search input[type="search"] {
    width: min(300px, 28vw);
    border-radius: 999px;
    border: 1px solid var(--ib-line);
    background: #fff;
    color: #2a3358;
    padding: 10px 14px;
    font-size: 13px;
}

.ib-account-link {
    color: var(--ib-muted);
    font-size: 14px;
    font-weight: 700;
}

.ib-cart-toggle {
    position: relative;
    border: 1px solid var(--ib-line);
    background: #fff;
    border-radius: 999px;
    height: 42px;
    min-width: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ib-cart-icon {
    width: 18px;
    height: 18px;
    fill: none;
    color: #1d2c7f;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ib-cart-icon path,
.ib-cart-icon circle {
    stroke: currentColor;
}

.ib-cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    height: 20px;
    min-width: 20px;
    border-radius: 999px;
    background: var(--ib-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.ib-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    border: 1px solid var(--ib-line);
    background: #fff;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
}

.ib-menu-toggle span {
    width: 17px;
    height: 2px;
    background: var(--ib-ink);
    display: block;
}

.ib-content {
    padding-top: 24px;
}

@media (min-width: 992px) {
    body.illutionz-theme .ib-site {
        display: grid;
        grid-template-columns: 300px 1fr;
        grid-template-rows: auto auto;
        min-height: 100vh;
    }

    body.illutionz-theme .ib-header {
        position: sticky;
        top: 0;
        height: 100vh;
        border-right: 1px solid var(--ib-line);
        border-bottom: 0;
        background: rgba(250, 252, 255, 0.98);
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    body.illutionz-theme .ib-header .ib-wrap {
        padding: 0;
    }

    body.illutionz-theme .ib-header-inner {
        min-height: 100vh;
        padding: 22px 18px;
        align-items: stretch;
        justify-content: flex-start;
        gap: 14px;
        flex-direction: column;
    }

    body.illutionz-theme .ib-nav {
        margin-left: 0;
    }

    body.illutionz-theme .ib-nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    body.illutionz-theme .ib-nav-links li {
        width: 100%;
    }

    body.illutionz-theme .ib-nav-links a {
        display: block;
        width: 100%;
        border: 1px solid transparent;
        border-radius: 10px;
        padding: 9px 11px;
    }

    body.illutionz-theme .ib-nav-links a:hover,
    body.illutionz-theme .ib-nav-links a:focus-visible {
        border-color: #d8e2ff;
        background: #edf2ff;
    }

    body.illutionz-theme .ib-header-search {
        margin-left: 0;
    }

    body.illutionz-theme .ib-header-search input[type="search"] {
        width: 100%;
    }

    body.illutionz-theme .ib-header-actions {
        margin-top: auto;
        padding-top: 10px;
        border-top: 1px dashed #dbe3ff;
        justify-content: space-between;
        position: sticky;
        bottom: 10px;
        background: rgba(250, 252, 255, 0.95);
        z-index: 2;
    }

    body.illutionz-theme .ib-content {
        grid-column: 2;
        grid-row: 1;
        padding-top: 0;
        min-width: 0;
        overflow-x: clip;
    }

    body.illutionz-theme .ib-footer {
        grid-column: 2;
        grid-row: 2;
        margin-top: 10px;
    }

    body.illutionz-theme .ib-wrap {
        max-width: 100%;
    }
}

.ib-home {
    padding-bottom: 10px;
}

.ib-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.ib-section-head h1,
.ib-section-head h2 {
    margin: 0;
}

.ib-section-head a {
    color: var(--ib-blue);
    font-size: 14px;
    font-weight: 700;
}

.ib-hero {
    padding: 14px 0 16px;
}

.ib-hero-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 18px;
    align-items: stretch;
}

.ib-hero-promo {
    background: linear-gradient(180deg, #ffe19d 0%, #ffd57f 100%);
    border-radius: 24px;
    padding: 18px;
    display: grid;
    align-content: start;
    gap: 12px;
}

.ib-hero-promo-image {
    display: block;
    border-radius: 18px;
    overflow: hidden;
}

.ib-hero-promo-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.ib-hero-promo h2 {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ib-hero-promo p {
    margin: 0;
    color: var(--ib-accent);
    font-family: "Sora", sans-serif;
    font-size: 44px;
    line-height: 0.95;
    font-weight: 700;
}

.ib-promo-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 800;
    font-size: 16px;
}

.ib-stat-card {
    background: #fff;
    border: 1px solid rgba(18, 39, 122, 0.12);
    border-radius: 16px;
    padding: 14px;
    display: grid;
    gap: 4px;
}

.ib-stat-card strong {
    color: #101424;
    font-family: "Sora", sans-serif;
    font-size: 30px;
    line-height: 1;
}

.ib-stat-card span {
    color: #7180a3;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ib-stat-card--muted {
    background: #f2f7ff;
}

.ib-hero-main {
    display: grid;
    gap: 14px;
}

.ib-hero-heading {
    background: #fff;
    border: 1px solid var(--ib-line);
    border-radius: 20px;
    padding: 22px;
}

.ib-hero-heading span {
    color: var(--ib-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ib-hero-heading h1 {
    margin: 6px 0;
    font-size: clamp(28px, 4vw, 42px);
}

.ib-hero-heading p {
    margin: 0;
    color: var(--ib-muted);
    max-width: 66ch;
}

.ib-hero-banner {
    border-radius: 20px;
    background: linear-gradient(105deg, #3d281f 0%, #4c3226 44%, #2f211a 100%);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 238px;
}

.ib-hero-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ib-hero-banner-copy {
    color: #fff;
    padding: 28px;
    display: grid;
    align-content: center;
    gap: 9px;
}

.ib-hero-banner-copy strong {
    color: #ffd5c5;
    font-size: 16px;
}

.ib-hero-banner-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 3.2vw, 48px);
}

.ib-hero-banner-copy p {
    margin: 0;
    color: #ead7ce;
}

.ib-home-tabs {
    background: #fff;
    border: 1px solid var(--ib-line);
    border-radius: 16px;
    padding: 2px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
}

.ib-home-tabs a {
    text-align: center;
    font-weight: 700;
    color: #1a2448;
    padding: 14px 8px;
    border-radius: 12px;
}

.ib-home-tabs a:hover,
.ib-home-tabs a:focus-visible {
    background: #eff3ff;
}

.ib-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ib-hero-card {
    border-radius: var(--ib-radius);
    background: var(--ib-paper);
    box-shadow: var(--ib-shadow);
    display: grid;
    grid-template-columns: 180px 1fr;
    overflow: hidden;
}

.ib-hero-cover {
    display: block;
    height: 100%;
}

.ib-hero-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ib-hero-info {
    padding: 22px;
}

.ib-hero-info h2 {
    margin: 0 0 8px;
    font-size: 30px;
}

.price {
    color: var(--ib-blue);
    font-weight: 800;
}

del,
.price del {
    color: #a0a6bc;
    font-weight: 600;
    margin-left: 8px;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    border: 0;
    background: var(--ib-blue) !important;
    color: #fff !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 11px 18px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
}

.button.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: #101424 !important;
}

.ib-home-cats,
.ib-home-collection,
.ib-banner {
    padding: 18px 0;
}

.ib-home-columns {
    padding: 12px 0 10px;
}

.ib-home-columns-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ib-compact-list {
    background: #fff;
    border: 1px solid var(--ib-line);
    border-radius: 16px;
    padding: 14px;
}

.ib-compact-list h2 {
    margin: 0 0 12px;
    font-size: 28px;
}

.ib-compact-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
}

.ib-compact-item + .ib-compact-item {
    border-top: 1px solid #edf1ff;
}

.ib-compact-thumb {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.ib-compact-thumb img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.ib-compact-copy {
    display: grid;
    gap: 3px;
}

.ib-compact-copy strong {
    color: #101424;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
}

.ib-compact-copy em {
    color: var(--ib-blue);
    font-style: normal;
    font-weight: 800;
    font-size: 17px;
}

.ib-home-collection + .ib-home-collection {
    padding-top: 4px;
}

.ib-deals-week {
    padding: 14px 0;
}

.ib-deals-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ib-deal-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--ib-line);
    border-radius: 18px;
    padding: 12px;
    align-items: center;
}

.ib-deal-thumb {
    border-radius: 14px;
    overflow: hidden;
}

.ib-deal-thumb img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.ib-deal-copy h3 {
    margin: 0 0 7px;
    font-size: 32px;
}

.ib-deal-copy .button {
    margin-top: 10px;
}

.ib-cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ib-cat-pills a {
    border: 1px solid var(--ib-line);
    background: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    color: var(--ib-muted);
    font-size: 13px;
    font-weight: 700;
}

.ib-product-grid,
.woocommerce ul.products {
    margin: 0;
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.ib-loop-item {
    float: none !important;
    width: auto !important;
    clear: none !important;
}

.ib-shop-results .products {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
    align-items: stretch;
    margin: 0 !important;
    padding: 0 !important;
}

body.illutionz-theme .woocommerce ul.products[class*="columns-"] li.product,
body.illutionz-theme .woocommerce-page ul.products[class*="columns-"] li.product,
body.illutionz-theme .woocommerce ul.products li.product,
body.illutionz-theme .woocommerce-page ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    margin-right: 0 !important;
    float: none !important;
}

body.illutionz-theme .woocommerce ul.products li.product.first,
body.illutionz-theme .woocommerce ul.products li.product.last,
body.illutionz-theme .woocommerce-page ul.products li.product.first,
body.illutionz-theme .woocommerce-page ul.products li.product.last {
    clear: none !important;
}

.ib-loop-body .button,
.ib-loop-actions .button {
    white-space: nowrap;
    width: 100%;
}

.ib-shop-results ul.products li.product,
.ib-shop-results .ib-loop-item {
    width: 100% !important;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ib-shop-results .ib-loop-thumb {
    margin-bottom: 12px;
}

.ib-shop-results .ib-loop-body h2 {
    min-height: 46px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}

.ib-product-card,
.woocommerce ul.products li.product,
.ib-loop-item {
    margin: 0 !important;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--ib-line);
    background: #fff;
}

.ib-product-thumb,
.ib-loop-thumb {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
}

.ib-product-thumb img,
.ib-loop-thumb img,
.woocommerce ul.products li.product a img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    margin: 0 !important;
}

.ib-product-card h3,
.ib-loop-body h2 {
    margin: 0 0 6px;
    font-size: 15px;
}

.ib-product-card .button,
.ib-loop-actions .button {
    margin-top: 8px !important;
    width: 100%;
    text-align: center;
}

.ib-banner-box {
    background: linear-gradient(115deg, #0f2a95 0%, #274ae8 50%, #1d39ca 100%);
    color: #fff;
    border-radius: 22px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ib-banner-box span {
    color: #c9d5ff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.ib-banner-box h2 {
    color: #fff;
    margin: 8px 0 0;
}

.ib-shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
}

.ib-shop-sidebar,
.ib-shop-results {
    background: #fff;
    border: 1px solid var(--ib-line);
    border-radius: var(--ib-radius);
    padding: 20px;
}

.ib-shop-cats {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ib-shop-cats li + li {
    margin-top: 8px;
}

.ib-shop-cats a {
    display: block;
    padding: 8px 10px;
    border-radius: 10px;
    color: var(--ib-muted);
    font-weight: 700;
}

.ib-shop-cats a.is-active,
.ib-shop-cats a:hover {
    background: #edf2ff;
    color: var(--ib-blue);
}

.ib-shop-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
}

.ib-shop-head h1 {
    margin: 0;
}

.woocommerce-account .woocommerce {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 18px;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
    float: none !important;
    width: auto !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
    background: #fff;
    border: 1px solid var(--ib-line);
    border-radius: 16px;
    padding: 16px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li + li {
    margin-top: 6px;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #2b355b;
    font-weight: 700;
    white-space: normal;
    word-break: normal;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
    background: #edf2ff;
    color: var(--ib-blue);
}

.ib-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
    gap: 32px;
    background: #fff;
    border: 1px solid var(--ib-line);
    border-radius: 20px;
    padding: 22px;
}

.ib-single-gallery {
    position: sticky;
    top: 18px;
}

.ib-single-gallery .woocommerce-product-gallery {
    margin-bottom: 0 !important;
}

.ib-single-gallery .woocommerce-product-gallery__wrapper {
    border-radius: 14px;
    overflow: hidden;
}

.ib-single-gallery .woocommerce-product-gallery__image img {
    border-radius: 14px;
}

.ib-single-gallery .flex-control-nav,
.ib-single-gallery .flex-control-thumbs,
.ib-single-gallery ol,
.ib-single-gallery ul {
    list-style: none !important;
    margin: 10px 0 0 !important;
    padding: 0 !important;
}

.ib-single-gallery .flex-control-thumbs {
    display: grid !important;
    gap: 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ib-single-gallery .flex-control-thumbs li {
    margin: 0 !important;
}

.ib-single-gallery .flex-control-thumbs img {
    border-radius: 10px;
    border: 1px solid var(--ib-line);
    opacity: 1;
}

.ib-single-gallery .woocommerce-product-gallery__trigger {
    top: 10px !important;
    right: 10px !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 8px 18px rgba(15, 32, 90, 0.15);
}

.ib-single-summary .product_title {
    margin-top: 0;
    font-size: 42px;
}

.ib-single-summary .price {
    font-size: 28px;
    margin-bottom: 12px;
}

.ib-single-summary .stock {
    color: #18844f !important;
    font-weight: 700;
}

.ib-single-summary form.cart {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.ib-single-summary .quantity .qty {
    border: 1px solid var(--ib-line);
    border-radius: 10px;
    min-height: 46px;
    width: 66px;
    text-align: center;
}

.ib-single-summary .single_add_to_cart_button {
    min-height: 46px;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.ib-single-summary .product_meta {
    border-top: 1px dashed #dbe3ff;
    margin-top: 16px;
    padding-top: 12px;
    font-size: 14px;
    color: #33406d;
    display: grid;
    gap: 6px;
}

.ib-single-summary .product_meta > span {
    display: block;
}

.ib-single-summary .product_meta a {
    color: var(--ib-blue);
}

.ib-single-summary .woocommerce-product-details__short-description {
    color: #313e67;
    font-size: 18px;
    line-height: 1.55;
}

.ib-single-tabs {
    margin-top: 20px;
    background: #fff;
    border: 1px solid var(--ib-line);
    border-radius: 18px;
    padding: 22px;
}

.ib-single-tabs .woocommerce-tabs ul.tabs {
    margin: 0 0 18px !important;
    padding: 0 !important;
    list-style: none !important;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    border: 0 !important;
}

.ib-single-tabs .woocommerce-tabs ul.tabs::before,
.ib-single-tabs .woocommerce-tabs ul.tabs::after {
    display: none !important;
}

.ib-single-tabs .woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    border: 1px solid #d9e3ff !important;
    background: #fff !important;
    border-radius: 999px !important;
    padding: 0 !important;
}

.ib-single-tabs .woocommerce-tabs ul.tabs li::before,
.ib-single-tabs .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.ib-single-tabs .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 10px 16px !important;
    color: #1f2b55 !important;
    font-weight: 700 !important;
}

.ib-single-tabs .woocommerce-tabs ul.tabs li.active {
    background: #edf2ff !important;
    border-color: #cdd9ff !important;
}

.ib-single-tabs .woocommerce-Tabs-panel {
    margin: 0 !important;
    color: #2f3a61;
    font-size: 18px;
    line-height: 1.65;
}

.ib-single-tabs .woocommerce-Tabs-panel h2,
.ib-single-tabs .woocommerce-Tabs-panel h3 {
    font-size: 52px;
    line-height: 1.08;
    margin: 14px 0 10px;
}

.ib-single-tabs .commentlist,
.ib-single-tabs #reviews ol,
.ib-single-tabs #reviews ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ib-cart-page .site-content,
.ib-checkout-page .site-content {
    background: #f6f8ff;
}

.ib-cart-page .col-full,
.ib-checkout-page .col-full {
    max-width: 1200px;
    padding: 0 22px;
}

.ib-cart-page-shell,
.ib-checkout-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(320px, 1fr);
    gap: 18px;
    margin: 14px 0 28px;
}

.ib-cart-page-left,
.ib-checkout-left,
.ib-cart-page-right,
.ib-checkout-right {
    background: #fff;
    border: 1px solid var(--ib-line);
    border-radius: 18px;
    padding: 20px;
}

.ib-cart-title,
.ib-checkout-left h1 {
    margin: 0 0 16px;
    font-size: 34px;
}

.ib-cart-row td {
    vertical-align: middle;
}

.ib-cart-row .product-thumbnail {
    width: 90px;
}

.ib-cart-row .product-thumbnail img {
    border-radius: 10px;
}

.ib-cart-row .product-name a {
    font-weight: 700;
}

.ib-cart-row .product-remove .remove {
    color: var(--ib-muted) !important;
    background: #f2f5ff;
    border-radius: 999px;
    font-size: 12px;
    width: auto;
    height: auto;
    line-height: 1;
    padding: 8px 12px;
}

.ib-cart-page-shell .shop_table {
    border: 0;
}

.ib-cart-page-shell .coupon {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.ib-cart-page-shell .coupon .input-text {
    border-radius: 999px;
    border: 1px solid var(--ib-line);
    padding: 10px 14px;
    width: 180px;
}

.ib-cart-page-right .cart_totals {
    width: 100%;
}

.ib-cart-page-right .cart_totals h2 {
    display: none;
}

.ib-cart-page-right .shop_table {
    border: 0;
}

.ib-cart-page-right .wc-proceed-to-checkout .checkout-button {
    width: 100%;
    text-align: center;
    border-radius: 999px !important;
}

.ib-checkout-form .col2-set,
.ib-checkout-form #customer_details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ib-checkout-form .woocommerce-billing-fields,
.ib-checkout-form .woocommerce-shipping-fields,
.ib-checkout-form .woocommerce-additional-fields {
    background: #f9faff;
    border: 1px solid var(--ib-line);
    border-radius: 14px;
    padding: 14px;
}

.ib-checkout-form label {
    font-size: 13px;
    font-weight: 700;
    color: #24305b;
}

.ib-checkout-form input.input-text,
.ib-checkout-form textarea,
.ib-checkout-form select {
    border-radius: 12px;
    border: 1px solid #dbe2ff;
    background: #fff;
}

.ib-checkout-right h2 {
    margin: 0 0 12px;
}

.ib-checkout-right #order_review {
    background: #f8faff;
    border: 1px solid var(--ib-line);
    border-radius: 14px;
    padding: 12px;
}

.ib-page-main,
.ib-legal-main {
    padding-bottom: 28px;
}

.ib-page-card,
.ib-legal-card {
    background: #fff;
    border: 1px solid var(--ib-line);
    border-radius: 16px;
    padding: 24px;
}

.ib-legal-hero {
    margin-bottom: 14px;
}

.ib-legal-hero span {
    color: var(--ib-blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.ib-legal-hero h1 {
    margin: 10px 0;
}

.ib-legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ib-footer {
    margin-top: 24px;
    border-top: 1px solid var(--ib-line);
    background: #fbfcff;
    padding-top: 28px;
}

.ib-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 24px;
}

.ib-footer h2,
.ib-footer h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

.ib-footer p,
.ib-footer a {
    color: var(--ib-muted);
    font-size: 14px;
}

.ib-footer-links,
.ib-social-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ib-footer-links li + li,
.ib-social-links li + li {
    margin-top: 8px;
}

.ib-newsletter {
    display: flex;
    gap: 8px;
    margin: 10px 0 14px;
}

.ib-newsletter input {
    flex: 1;
    border: 1px solid var(--ib-line);
    border-radius: 999px;
    padding: 10px 12px;
    background: #fff;
    color: #273056;
}

.ib-newsletter button {
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    background: var(--ib-blue);
    color: #fff;
    font-weight: 700;
}

.ib-follow-title {
    margin-top: 2px !important;
}

.ib-footer-bottom {
    border-top: 1px solid var(--ib-line);
    margin-top: 20px;
    padding: 14px 22px 24px;
}

.ib-footer-bottom p {
    margin: 0;
    color: var(--ib-muted);
    font-size: 13px;
}

.ib-cart-drawer-layer {
    position: fixed;
    inset: 0;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
}

.ib-cart-drawer-layer.is-open {
    opacity: 1;
    pointer-events: auto;
}

.ib-cart-backdrop {
    border: 0;
    background: rgba(12, 17, 38, 0.45);
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.ib-cart-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(430px, 92vw);
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 220ms ease;
    display: flex;
    flex-direction: column;
}

.ib-cart-drawer-layer.is-open .ib-cart-drawer {
    transform: translateX(0);
}

.ib-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--ib-line);
    padding: 18px;
}

.ib-cart-header h2 {
    margin: 0;
    font-size: 20px;
}

.ib-cart-close {
    border: 0;
    background: #f1f4ff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

.ib-cart-drawer-content {
    flex: 1;
    overflow: auto;
    padding: 14px 18px;
}

.ib-cart-drawer-content .woocommerce-mini-cart__buttons {
    display: none !important;
}

.ib-cart-footer-actions {
    border-top: 1px solid var(--ib-line);
    display: grid;
    gap: 10px;
    padding: 14px 18px 20px;
}

@media (max-width: 1020px) {
    .ib-product-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ib-hero-grid,
    .ib-hero-shell,
    .ib-home-columns-grid,
    .ib-deals-grid,
    .ib-deal-card,
    .ib-single-layout,
    .ib-cart-page-shell,
    .ib-checkout-shell,
    .ib-checkout-form .col2-set,
    .ib-checkout-form #customer_details,
    .ib-legal-grid,
    .ib-footer-grid,
    .ib-shop-layout {
        grid-template-columns: 1fr;
    }

    .woocommerce-account .woocommerce {
        grid-template-columns: 1fr;
    }

    body.illutionz-theme .ib-site {
        display: block;
    }

    .ib-shop-sidebar {
        order: 2;
    }

    .ib-shop-results .products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .ib-single-gallery {
        position: static;
    }
}

@media (max-width: 1280px) and (min-width: 992px) {
    .ib-shop-results .products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    .ib-shop-results .products {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 760px) {
    .ib-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .ib-nav {
        display: none;
    }

    .ib-nav.is-open {
        display: block;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--ib-line);
        padding: 10px 22px 20px;
    }

    .ib-nav-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .ib-header-actions {
        margin-left: 0;
    }

    .ib-header-search {
        display: none;
    }

    .ib-account-link {
        display: none;
    }

    .ib-product-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ib-hero-card {
        grid-template-columns: 1fr;
    }

    .ib-hero-heading,
    .ib-hero-banner-copy,
    .ib-compact-list {
        padding: 14px;
    }

    .ib-compact-list h2 {
        font-size: 24px;
    }

    .ib-deal-copy h3 {
        font-size: 24px;
    }

    .ib-single-summary .product_title {
        font-size: 34px;
    }

    .ib-single-tabs .woocommerce-Tabs-panel h2,
    .ib-single-tabs .woocommerce-Tabs-panel h3 {
        font-size: 40px;
    }
}
