/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9fafb;
    color: #374151;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

button {
    cursor: pointer;
    background: none;
    border: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background-color: #0A0B2E;
    background-image: radial-gradient(circle at top right, rgba(91, 79, 229, 0.15) 0%, transparent 40%), 
                      radial-gradient(circle at bottom left, rgba(91, 79, 229, 0.1) 0%, transparent 40%);
    position: relative;
    color: white;
    padding: 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 20px);
    pointer-events: none;
}

.hero-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.hero-content {
    flex: 1 1 400px;
}

.hero-badge {
    display: inline-block;
    background-color: #ffffff;
    color: #1f2937;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subheading {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin: -8px 0 18px;
    max-width: 560px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #d1d5db;
    margin-bottom: 15px;
}

.hero-desc {
    color: #d1d5db;
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #5B4FE5;
    color: white;
}

.btn-primary:hover {
    background-color: #4c42c7;
}

.btn-secondary {
    background-color: #6B63ED;
    color: white;
}

.btn-secondary:hover {
    background-color: #5B4FE5;
}

.hero-image {
    flex: 1 1 400px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-slider {
    min-height: 540px;
    overflow: hidden;
    position: relative;
}

.hero-slide {
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: translate3d(56px, 0, 0);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
    z-index: 1;
}

.hero-slider.is-backward .hero-slide {
    transform: translate3d(-56px, 0, 0);
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    transform: translate3d(0, 0, 0);
    z-index: 2;
}

.hero-slide .hero-inner {
    min-height: 540px;
    padding-bottom: 54px;
    padding-top: 54px;
}

.hero-slide .hero-desc:last-of-type {
    margin-bottom: 0;
}

.hero-slider-arrow {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    width: 44px;
    z-index: 5;
}

.hero-slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.38);
}

.hero-slider-prev {
    left: max(34px, calc((100vw - 1320px) / 2));
}

.hero-slider-next {
    right: max(34px, calc((100vw - 1320px) / 2));
}

.hero-slider-dots {
    align-items: center;
    bottom: 24px;
    display: flex;
    gap: 10px;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 5;
}

.hero-slider-dot {
    background-color: rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    height: 9px;
    transition: background-color 0.2s ease, width 0.2s ease;
    width: 9px;
}

.hero-slider-dot.is-active {
    background-color: #ffffff;
    width: 28px;
}

/* Category Sections */
.category-section {
    padding: 60px 0 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.cat-badge {
    display: inline-block;
    background-color: #EEF2FF;
    color: #5B4FE5;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1b41;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    overflow: hidden;
    min-width: 0;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-header {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.bg-color-1 { background-color: #5A737E; }
.bg-color-2 { background-color: #8E486D; }
.bg-color-3 { background-color: #9E4646; }
.bg-color-4 { background-color: #8A4570; }
.bg-color-5 { background-color: #348B96; }
.bg-color-6 { background-color: #D82F5C; }
.bg-color-7 { background-color: #851C8E; }

.icon-box {
    background-color: #ffffff;
    width: 80px;
    height: 56px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.icon-box i {
    font-size: 24px;
    color: #374151;
}

.card:hover .icon-box {
    transform: scale(1.05);
}

.home-product-image-link {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

.home-product-image {
    display: block;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: transform 0.3s ease;
    width: 100%;
}

.card:hover .home-product-image {
    transform: scale(1.04);
}

.card-body {
    padding: 20px;
    flex-grow: 1;
}

.card-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1b41;
    margin-bottom: 12px;
    cursor: pointer;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: anywhere;
}

.card-title:hover {
    color: #5B4FE5;
}

.category-section .card-title a {
    color: #1a1b41;
    display: inline;
    text-decoration: none;
}

.category-section .card-title a:hover {
    color: #5B4FE5;
}

.card-price {
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
}

.card-price span {
    color: #9ca3af;
    font-weight: 400;
}

.card-footer {
    padding: 12px 20px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.action-btns {
    display: flex;
    gap: 15px;
}

.action-btns button {
    color: #9ca3af;
    font-size: 16px;
    transition: color 0.2s ease;
}

.action-btns button:hover:first-child { color: #ef4444; }
.action-btns button:hover:last-child { color: #5B4FE5; }

.action-btns button:first-child,
.product-detail-wishlist {
    display: none !important;
}

.download-stats {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
}

.download-stats i {
    font-size: 10px;
}

.home .category-section .download-stats,
.front-page .category-section .download-stats {
    display: none;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-size: 16px;
}

/* Pages */
.page-main {
    background-color: #f9fafb;
}

.page-content-wrap {
    margin: 0;
}

/* WooCommerce Archive */
.woocommerce-archive {
    background-color: #f9fafb;
}

.shop-hero {
    background-color: #0A0B2E;
    background-image: radial-gradient(circle at top right, rgba(91, 79, 229, 0.16) 0%, transparent 42%),
                      radial-gradient(circle at bottom left, rgba(52, 139, 150, 0.16) 0%, transparent 38%);
    color: #ffffff;
    overflow: hidden;
    padding: 74px 0 88px;
    position: relative;
}

.shop-hero::before {
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 20px);
    bottom: 0;
    content: '';
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
}

.shop-hero-inner {
    position: relative;
    z-index: 1;
}

.shop-hero-content {
    max-width: 760px;
    min-width: 0;
}

.shop-hero-desc {
    color: #d1d5db;
    font-size: 15px;
    margin-top: 18px;
    max-width: 680px;
}

.shop-hero-desc p {
    margin: 0;
}

.shop-products-section {
    padding: 48px 0 70px;
}

.product-category-search {
    margin: -8px 0 24px;
}

.product-category-search-inner {
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    display: flex;
    gap: 12px;
    padding: 12px;
}

.product-category-search-inner i {
    color: #6B63ED;
    flex: 0 0 auto;
    font-size: 16px;
    margin-left: 4px;
}

.product-category-search input[type="search"] {
    background-color: transparent;
    border: 0;
    color: #1f2937;
    flex: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    min-height: 42px;
    min-width: 0;
    outline: none;
}

.product-category-search input[type="search"]::placeholder {
    color: #9ca3af;
}

.product-category-search button,
.product-category-search-clear {
    align-items: center;
    border-radius: 6px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
}

.product-category-search button {
    background-color: #5B4FE5;
    color: #ffffff;
}

.product-category-search button:hover {
    background-color: #4c42c7;
}

.product-category-search-clear {
    background-color: #EEF2FF;
    color: #5B4FE5;
}

.woocommerce-notices-wrapper {
    margin-bottom: 20px;
}

.woocommerce .woocommerce-result-count {
    color: #6b7280;
    float: none;
    font-size: 13px;
    margin: 0;
}

.woocommerce .woocommerce-ordering {
    float: none;
    margin: 0;
    max-width: 100%;
}

.woocommerce .woocommerce-ordering select {
    appearance: none;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #374151;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    min-height: 42px;
    max-width: 100%;
    padding: 0 38px 0 14px;
}

.woocommerce .woocommerce-before-shop-loop,
.woocommerce .woocommerce-result-count + .woocommerce-ordering {
    display: flex;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    display: inline-flex;
    align-items: center;
}

.shop-products-section .woocommerce-before-shop-loop,
.woocommerce .woocommerce-before-shop-loop {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    content: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    clear: none;
    float: none;
    margin: 0;
    width: 100%;
}

.product-card {
    height: 100%;
    min-width: 0;
}

.product-card-link {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}

.product-card .card-header {
    min-height: 145px;
    position: relative;
}

.archive-product-image {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.product-sale-badge {
    background-color: #ffffff;
    border-radius: 4px;
    color: #5B4FE5;
    font-size: 11px;
    font-weight: 700;
    left: 14px;
    letter-spacing: 0.4px;
    padding: 4px 9px;
    position: absolute;
    text-transform: uppercase;
    top: 14px;
}

.product-card-category,
.product-card-category a {
    color: #6B63ED;
    font-size: 11px;
    font-weight: 600;
}

.product-card-category {
    display: block;
    margin-bottom: 8px;
}

.product-card .card-title {
    font-size: 14px;
    line-height: 1.45;
    min-height: 40px;
}

.product-card .card-price {
    margin: 0;
    overflow-wrap: anywhere;
}

.product-card .card-price del {
    color: #9ca3af;
    margin-right: 6px;
}

.product-card .card-price ins {
    color: #1a1b41;
    text-decoration: none;
}

.product-icon-btn,
.product-card .add_to_cart_button,
.product-card .added_to_cart {
    align-items: center;
    color: #9ca3af;
    display: inline-flex;
    font-size: 16px;
    justify-content: center;
    min-height: 24px;
    min-width: 24px;
    padding: 0;
    width: 24px;
    transition: color 0.2s ease;
}

.product-icon-btn:hover {
    color: #5B4FE5;
}

.product-card .add_to_cart_button {
    font-size: 0;
}

.product-card .add_to_cart_button::before {
    content: '\f07a';
    font-family: 'Font Awesome 6 Free';
    font-size: 16px;
    font-weight: 900;
}

.product-card .add_to_cart_button.added::before {
    content: '\f00c';
}

.product-card .added_to_cart {
    display: none;
}

.product-card .add_to_cart_button:hover {
    color: #5B4FE5;
}

.woocommerce nav.woocommerce-pagination {
    margin-top: 34px;
    text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
    border: 0;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #374151;
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    height: 38px;
    justify-content: center;
    min-width: 38px;
    padding: 0 12px;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
    background-color: #5B4FE5;
    border-color: #5B4FE5;
    color: #ffffff;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #374151;
    list-style: none;
    margin: 0 0 24px;
    padding: 16px 18px;
}

.woocommerce-info::before,
.woocommerce-message::before,
.woocommerce-error::before {
    content: none;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background-color: #5B4FE5;
    border-radius: 6px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 18px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: #4c42c7;
    color: #ffffff;
}

.woocommerce .product-card .add_to_cart_button,
.woocommerce .product-card .added_to_cart {
    background: transparent;
    border-radius: 0;
    color: #9ca3af;
    font-size: 0;
    min-height: 24px;
    min-width: 24px;
    padding: 0;
    width: 24px;
}

.woocommerce .product-card .add_to_cart_button:hover,
.woocommerce .product-card .added_to_cart:hover {
    background: transparent;
    color: #5B4FE5;
}

/* WooCommerce Pages */
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content,
.woocommerce-order-pay .entry-content {
    margin: 0 auto;
    max-width: 1200px;
    padding: 56px 20px 72px;
    width: 100%;
}

.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title,
.woocommerce-account .entry-title,
.woocommerce-order-pay .entry-title {
    color: #1a1b41;
    font-size: 34px;
    line-height: 1.2;
    margin: 0 auto;
    max-width: 1200px;
    padding: 48px 20px 0;
}

.woocommerce form,
.woocommerce table.shop_table,
.woocommerce .cart_totals,
.woocommerce .woocommerce-checkout-review-order,
.woocommerce .woocommerce-customer-details address,
.woocommerce .woocommerce-order-details,
.woocommerce .woocommerce-MyAccount-content,
.woocommerce .woocommerce-MyAccount-navigation,
.woocommerce .woocommerce-order {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.woocommerce form {
    padding: 24px;
}

.woocommerce form .form-row {
    margin: 0 0 16px;
    padding: 0;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
    float: none;
    width: 100%;
}

.woocommerce form .form-row label {
    color: #1f2937;
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 7px;
}

.woocommerce form .required {
    color: #D82F5C;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.woocommerce .select2-container .select2-selection--single {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #374151;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    min-height: 44px;
    outline: none;
    padding: 10px 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.woocommerce textarea {
    min-height: 120px;
    resize: vertical;
}

.woocommerce input.input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus,
.woocommerce .select2-container--open .select2-selection--single {
    border-color: #5B4FE5;
    box-shadow: 0 0 0 3px rgba(91, 79, 229, 0.14);
}

.woocommerce .select2-container {
    width: 100% !important;
}

.woocommerce .select2-container .select2-selection--single {
    align-items: center;
    display: flex;
    height: 44px;
}

.woocommerce .select2-container .select2-selection__rendered {
    color: #374151;
    line-height: 1.4;
    padding-left: 0;
}

.woocommerce .select2-container .select2-selection__arrow {
    height: 42px;
}

.woocommerce form h3,
.woocommerce .cart_totals h2,
.woocommerce .woocommerce-order-details__title,
.woocommerce .woocommerce-column__title,
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    color: #1a1b41;
    font-size: 22px;
    line-height: 1.3;
    margin: 0 0 18px;
}

.woocommerce table.shop_table {
    border-collapse: separate;
    border-spacing: 0;
    margin: 0 0 24px;
    overflow: hidden;
    width: 100%;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-bottom: 1px solid #eef2f7;
    color: #374151;
    font-size: 14px;
    padding: 16px;
    text-align: left;
    vertical-align: middle;
}

.woocommerce table.shop_table th {
    background-color: #f8fafc;
    color: #1f2937;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.woocommerce table.shop_table tr:last-child td,
.woocommerce table.shop_table tfoot tr:last-child th,
.woocommerce table.shop_table tfoot tr:last-child td {
    border-bottom: 0;
}

.woocommerce table.shop_table a {
    color: #1a1b41;
    font-weight: 600;
}

.woocommerce table.shop_table a:hover {
    color: #5B4FE5;
}

.woocommerce-cart table.cart img {
    border-radius: 6px;
    height: auto;
    width: 64px;
}

.woocommerce-cart table.cart .product-remove a {
    align-items: center;
    background-color: #fef2f2;
    border-radius: 999px;
    color: #dc2626;
    display: inline-flex;
    font-size: 18px;
    height: 28px;
    justify-content: center;
    line-height: 1;
    width: 28px;
}

.woocommerce-cart table.cart td.actions {
    background-color: #ffffff;
}

.woocommerce-cart table.cart td.actions .coupon {
    display: flex;
    gap: 10px;
    max-width: 520px;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
    margin: 0;
    width: 100%;
}

.woocommerce .quantity .qty {
    max-width: 86px;
    text-align: center;
}

.woocommerce .cart-collaterals {
    display: flex;
    justify-content: flex-end;
    margin-top: 26px;
}

.woocommerce .cart-collaterals .cart_totals {
    float: none;
    padding: 24px;
    width: min(100%, 440px);
}

.woocommerce .cart_totals table.shop_table {
    border: 0;
    box-shadow: none;
    margin-bottom: 18px;
}

.woocommerce .cart_totals table.shop_table th,
.woocommerce .cart_totals table.shop_table td {
    padding-left: 0;
    padding-right: 0;
}

.woocommerce .wc-proceed-to-checkout {
    padding: 0;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce #place_order {
    display: flex;
    font-size: 15px;
    justify-content: center;
    margin: 0;
    padding: 14px 20px;
    width: 100%;
}

.woocommerce-checkout form.checkout {
    background: transparent;
    border: 0;
    box-shadow: none;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    padding: 0;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
    min-width: 0;
}

.woocommerce-checkout #customer_details {
    display: grid;
    gap: 24px;
    grid-column: 1;
    grid-row: 1 / span 2;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
    grid-column: 2;
}

.woocommerce-checkout .col2-set,
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2,
.woocommerce .col2-set,
.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 {
    float: none;
    width: 100%;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    padding: 24px;
}

.woocommerce-checkout #order_review_heading {
    align-self: start;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    margin: 0 0 -28px;
    padding: 24px 24px 0;
}

.woocommerce-checkout .woocommerce-checkout-review-order {
    align-self: start;
    padding: 24px;
}

.woocommerce-checkout-review-order table.shop_table {
    border: 0;
    box-shadow: none;
}

.woocommerce-checkout #payment {
    background-color: #f8fafc;
    border-radius: 8px;
    margin-top: 20px;
    padding: 16px;
}

.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid #e5e7eb;
    list-style: none;
    margin: 0 0 16px;
    padding: 0 0 16px;
}

.woocommerce-checkout #payment ul.payment_methods li {
    color: #374151;
    font-size: 14px;
    margin-bottom: 10px;
}

.woocommerce-checkout #payment div.payment_box {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #6b7280;
    font-size: 13px;
    margin: 10px 0;
    padding: 14px;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 16px;
}

.woocommerce-order {
    padding: 28px;
}

.woocommerce-order .woocommerce-thankyou-order-received {
    background-color: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    color: #166534;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 22px;
    padding: 18px;
}

.woocommerce ul.order_details {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.woocommerce ul.order_details li {
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #6b7280;
    float: none;
    font-size: 12px;
    margin: 0;
    padding: 14px;
    text-transform: uppercase;
}

.woocommerce ul.order_details li strong {
    color: #1a1b41;
    display: block;
    font-size: 14px;
    margin-top: 6px;
    text-transform: none;
}

.woocommerce .woocommerce-customer-details address {
    font-style: normal;
    line-height: 1.7;
    padding: 20px;
}

.woocommerce-account .woocommerce {
    display: grid;
    gap: 28px;
    grid-template-columns: 260px minmax(0, 1fr);
}

.woocommerce-account .woocommerce-notices-wrapper,
.woocommerce-account .woocommerce > h2,
.woocommerce-account .woocommerce > form.login,
.woocommerce-account .woocommerce > form.register,
.woocommerce-account .woocommerce > form.lost_reset_password,
.woocommerce-account .woocommerce > .u-columns {
    grid-column: 1 / -1;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    align-self: start;
    padding: 12px;
}

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

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    border-radius: 6px;
    color: #374151;
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 14px;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
    background-color: #EEF2FF;
    color: #5B4FE5;
}

.woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    padding: 24px;
    width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-content p {
    color: #4b5563;
    margin-bottom: 14px;
}

.woocommerce-account .u-columns {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
    min-width: 0;
}

.woocommerce-account .u-column1 h2,
.woocommerce-account .u-column2 h2,
.woocommerce-account form.lost_reset_password h2 {
    color: #1a1b41;
    font-size: 24px;
    margin-bottom: 16px;
}

.woocommerce-account form.login,
.woocommerce-account form.register,
.woocommerce-account form.lost_reset_password,
.woocommerce form.woocommerce-form-login {
    margin: 0;
}

.woocommerce-account form.lost_reset_password {
    margin: 0 auto;
    max-width: 620px;
}

.woocommerce .woocommerce-form-login__rememberme {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    margin: 0 0 16px;
}

.woocommerce .woocommerce-LostPassword {
    font-size: 13px;
    margin: 14px 0 0;
}

.woocommerce .woocommerce-MyAccount-downloads-file,
.woocommerce .woocommerce-button,
.woocommerce table.my_account_orders .button {
    display: inline-flex;
    justify-content: center;
    margin: 2px;
    white-space: nowrap;
}

.woocommerce-order-pay form#order_review {
    margin: 0 auto;
    max-width: 760px;
}

.woocommerce-order-pay #payment {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
}

/* My Account Modern Layout */
.woocommerce .col2-set::after, .woocommerce .col2-set::before, .woocommerce-page .col2-set::after, .woocommerce-page .col2-set::before {
    content: unset !important;
    display: none !important;
}
.woocommerce-account .entry-title {
    background-color: #0A0B2E;
    background-image: radial-gradient(circle at top right, rgba(91, 79, 229, 0.16) 0%, transparent 38%),
                      radial-gradient(circle at bottom left, rgba(52, 139, 150, 0.14) 0%, transparent 38%);
    color: #ffffff;
    max-width: none;
    padding: 54px max(20px, calc((100vw - 1200px) / 2 + 20px)) 54px;
}

.woocommerce-account .entry-content {
    padding-top: 48px;
}

.woocommerce-account .entry-content > .woocommerce {
    align-items: start;
    display: grid !important;
    gap: 28px;
    grid-template-columns: 280px minmax(0, 1fr);
    margin: 0 auto;
    max-width: 1120px;
    width: 100%;
}

.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after {
    content: none !important;
    display: none !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    align-self: start;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
    float: none !important;
    grid-column: 1;
    margin: 0 !important;
    padding: 14px;
    position: sticky;
    top: 24px;
    width: 100% !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
    float: none !important;
    grid-column: 2;
    margin: 0 !important;
    min-height: 320px;
    padding: 30px;
    width: 100% !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: grid;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    align-items: center;
    border-radius: 6px;
    color: #1f2937;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    gap: 10px;
    min-height: 44px;
    padding: 11px 12px;
}

.woocommerce-account .woocommerce-MyAccount-navigation a::before {
    color: #6B63ED;
    display: inline-flex;
    font-family: 'Font Awesome 6 Free';
    font-size: 14px;
    font-weight: 900;
    justify-content: center;
    width: 18px;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--dashboard a::before {
    content: '\f015';
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--orders a::before {
    content: '\f291';
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--downloads a::before {
    content: '\f019';
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-address a::before {
    content: '\f3c5';
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-account a::before {
    content: '\f2bd';
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a::before {
    content: '\f2f5';
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
    background-color: #EEF2FF;
    color: #5B4FE5;
}

.woocommerce-account .woocommerce-MyAccount-content p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 16px;
    max-width: 760px;
}

.woocommerce-account .woocommerce-MyAccount-content p:first-child {
    background-color: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #1a1b41;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 18px;
}

.woocommerce-account .woocommerce-MyAccount-content a {
    color: #5B4FE5;
    font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-content table.shop_table {
    box-shadow: none;
    margin-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info {
    margin-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info .button,
.woocommerce-account .woocommerce-MyAccount-content a.button,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button,
.woocommerce-account .woocommerce-MyAccount-content table.my_account_orders .button {
    align-items: center;
    background-color: #5B4FE5;
    border-radius: 6px;
    color: #ffffff !important;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    line-height: 1.2;
    min-height: 40px;
    min-width: 120px;
    padding: 12px 18px;
    text-align: center;
    text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info .button:hover,
.woocommerce-account .woocommerce-MyAccount-content a.button:hover,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button:hover,
.woocommerce-account .woocommerce-MyAccount-content table.my_account_orders .button:hover {
    background-color: #4c42c7;
    color: #ffffff !important;
}

.woocommerce-account .woocommerce-Addresses,
.woocommerce-account .woocommerce-address-fields,
.woocommerce-account form.edit-account {
    margin-top: 8px;
}

/* My Account Login/Register */
.woocommerce-account:not(.logged-in) .entry-content > .woocommerce,
.woocommerce-account .entry-content > .woocommerce:has(.u-columns) {
    display: block !important;
    max-width: 1120px;
}

.woocommerce-account .woocommerce > h2 {
    color: #1a1b41;
    font-size: 26px;
    line-height: 1.3;
    margin: 0 0 18px;
}

.woocommerce-account .woocommerce > .u-columns {
    align-items: start;
    display: grid !important;
    gap: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    width: 100%;
}

.woocommerce-account .woocommerce > .u-columns .u-column1,
.woocommerce-account .woocommerce > .u-columns .u-column2 {
    background-color: transparent;
    float: none !important;
    margin: 0 !important;
    min-width: 0;
    width: 100% !important;
}

.woocommerce-account .woocommerce > .u-columns .u-column1 > h2,
.woocommerce-account .woocommerce > .u-columns .u-column2 > h2 {
    color: #1a1b41;
    font-size: 26px;
    line-height: 1.3;
    margin: 0 0 18px;
}

.woocommerce-account .woocommerce > .u-columns form.login,
.woocommerce-account .woocommerce > .u-columns form.register {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
    margin: 0;
    min-height: 100%;
    padding: 28px;
}

.woocommerce-account .woocommerce-form-login .form-row:last-of-type {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.woocommerce-account .woocommerce-form-login .woocommerce-form-login__rememberme {
    margin: 0;
    order: 2;
}

.woocommerce-account .woocommerce-form-login button.button {
    order: 1;
}

.woocommerce-account .woocommerce-LostPassword {
    clear: both;
    width: 100%;
}

/* WooCommerce Cart and Checkout Blocks */
.woocommerce-cart .wp-block-woocommerce-cart,
.woocommerce-checkout .wp-block-woocommerce-checkout {
    margin: 0;
}

.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title {
    background-color: #0A0B2E;
    background-image: radial-gradient(circle at top right, rgba(91, 79, 229, 0.16) 0%, transparent 38%),
                      radial-gradient(circle at bottom left, rgba(52, 139, 150, 0.14) 0%, transparent 38%);
    color: #ffffff;
    max-width: none;
    padding: 54px max(20px, calc((100vw - 1200px) / 2 + 20px)) 54px;
}

.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content {
    margin-top: 0;
}

.wc-block-cart,
.wc-block-checkout {
    color: #374151;
    font-family: 'Poppins', sans-serif;
}

.wc-block-cart__main,
.wc-block-checkout__main {
    padding-right: 28px;
}

.wc-block-cart__sidebar,
.wc-block-checkout__sidebar {
    padding-left: 0;
}

.wc-block-cart-items,
.wc-block-components-sidebar,
.wc-block-components-main,
.wc-block-components-address-form,
.wc-block-checkout__shipping-method,
.wc-block-checkout__payment-method,
.wc-block-checkout__order-notes,
.wc-block-checkout__terms,
.wc-block-components-order-summary,
.wc-block-components-totals-coupon,
.wc-block-components-panel {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.wc-block-components-main {
    padding: 24px;
}

.wc-block-components-sidebar {
    padding: 24px;
}

.wc-block-components-title,
.wc-block-cart__totals-title,
.wc-block-components-checkout-step__title,
.wc-block-components-order-summary__button-text {
    color: #1a1b41;
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
}

.wc-block-components-checkout-step {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    margin: 0 0 22px;
    padding: 24px;
}

.wc-block-components-checkout-step__heading {
    margin: 0 0 18px;
}

.wc-block-components-checkout-step__container::after {
    border-left-color: #e5e7eb;
}

.wc-block-cart-items {
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 24px;
    overflow: hidden;
}

.wc-block-cart-items thead th {
    background-color: #f8fafc;
    color: #1f2937;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 14px 16px;
    text-transform: uppercase;
}

.wc-block-cart-items .wc-block-cart-items__row {
    border-bottom: 1px solid #eef2f7;
}

.wc-block-cart-items .wc-block-cart-items__row:last-child {
    border-bottom: 0;
}

.wc-block-cart-items .wc-block-cart-item__image img,
.wc-block-components-order-summary-item__image img {
    border-radius: 8px;
}

.wc-block-cart-item__wrap,
.wc-block-components-order-summary-item__description {
    min-width: 0;
}

.wc-block-cart-item__product,
.wc-block-components-product-name {
    color: #1a1b41;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.wc-block-cart-item__prices,
.wc-block-cart-item__total,
.wc-block-components-product-price,
.wc-block-components-totals-item__value {
    color: #1f2937;
    font-weight: 700;
}

.wc-block-components-product-metadata,
.wc-block-components-product-metadata__description,
.wc-block-cart-item__remove-link,
.wc-block-components-totals-item__description {
    color: #6b7280;
    font-size: 13px;
}

.wc-block-cart-item__remove-link {
    color: #dc2626;
    font-weight: 600;
    text-decoration: none;
}

.wc-block-components-quantity-selector {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    min-height: 38px;
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
    color: #1f2937;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.wc-block-components-quantity-selector button {
    color: #5B4FE5;
    min-width: 34px;
}

.wc-block-components-sidebar-layout .wc-block-components-main {
    width: 65%;
}

.wc-block-components-sidebar-layout .wc-block-components-sidebar {
    width: 35%;
}

.wc-block-components-totals-wrapper {
    border-top: 1px solid #eef2f7;
    padding: 16px 0;
}

.wc-block-components-sidebar .wc-block-components-totals-wrapper:first-child {
    border-top: 0;
    padding-top: 0;
}

.wc-block-components-totals-item {
    color: #374151;
    font-size: 14px;
    padding: 6px 0;
}

.wc-block-components-totals-footer-item {
    border-top: 1px solid #e5e7eb;
    margin-top: 8px;
    padding-top: 18px;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    color: #1a1b41;
    font-size: 18px;
    font-weight: 800;
}

.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wc-block-components-totals-coupon__button {
    background-color: #5B4FE5;
    border: 0;
    border-radius: 6px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    min-height: 46px;
    padding: 12px 18px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover,
.wc-block-components-totals-coupon__button:hover {
    background-color: #4c42c7;
    color: #ffffff;
    transform: translateY(-1px);
}

.wc-block-components-button__text {
    color: inherit;
}

.wc-block-components-totals-coupon {
    box-shadow: none;
    margin-top: 18px;
    padding: 16px;
}

.wc-block-components-totals-coupon__form {
    align-items: stretch;
    display: flex;
    gap: 10px;
}

.wc-block-components-text-input input,
.wc-block-components-textarea,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-form .wc-block-components-text-input input[type=email],
.wc-block-components-form .wc-block-components-text-input input[type=tel],
.wc-block-components-form .wc-block-components-text-input input[type=text],
.wc-block-components-form .wc-block-components-text-input input[type=url] {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #374151;
    font-family: 'Poppins', sans-serif;
    min-height: 46px;
}

.wc-block-components-text-input input:focus,
.wc-block-components-textarea:focus,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus {
    border-color: #5B4FE5;
    box-shadow: 0 0 0 3px rgba(91, 79, 229, 0.14);
    outline: none;
}

.wc-block-components-text-input label,
.wc-block-components-checkbox label,
.wc-block-components-radio-control__label,
.wc-block-components-address-card__address-section,
.wc-block-components-checkout-step__description {
    color: #4b5563;
    font-family: 'Poppins', sans-serif;
}

.wc-block-components-radio-control,
.wc-block-components-address-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.wc-block-components-radio-control__option,
.wc-block-components-address-card {
    padding: 14px;
}

.wc-block-components-radio-control__option-checked {
    background-color: #EEF2FF;
}

.wc-block-components-order-summary {
    box-shadow: none;
    margin-bottom: 18px;
    overflow: hidden;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item {
    border-bottom: 1px solid #eef2f7;
    padding: 16px;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item:last-child {
    border-bottom: 0;
}

.wc-block-components-notice-banner {
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 18px;
}

.wp-block-woocommerce-empty-cart-block {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    margin: 0 auto;
    max-width: min(1120px, calc(100vw - 40px));
    overflow: hidden;
    padding: 0;
    text-align: center;
    width: 100%;
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title,
.wp-block-woocommerce-empty-cart-block .with-empty-cart-icon {
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: #1a1b41;
    display: flex;
    flex-direction: column;
    font-size: 0;
    font-weight: 700;
    gap: 16px;
    line-height: 1.3;
    margin: 0;
    padding: 58px 24px 20px;
    position: relative;
}

.wp-block-woocommerce-empty-cart-block .with-empty-cart-icon::before {
    align-items: center;
    background-color: #0A0B2E;
    border-radius: 999px;
    box-shadow: 0 16px 32px rgba(10, 11, 46, 0.18);
    color: #ffffff;
    content: '\f07a' !important;
    display: inline-flex;
    font-family: 'Font Awesome 6 Free';
    font-size: 30px;
    font-weight: 900;
    height: 76px;
    justify-content: center;
    line-height: 1;
    margin-bottom: 2px;
    width: 76px;
}

.wp-block-woocommerce-empty-cart-block .with-empty-cart-icon::after {
    color: #6b7280;
    content: 'Your cart is empty right now. Browse our latest apps and add your favorites to get started.';
    display: block;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    max-width: 520px;
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title {
    font-size: 24px;
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title svg,
.wp-block-woocommerce-empty-cart-block .with-empty-cart-icon svg {
    display: none !important;
}

.wp-block-woocommerce-empty-cart-block hr,
.wp-block-woocommerce-empty-cart-block .wp-block-separator {
    background-color: #e5e7eb;
    border: 0;
    height: 1px;
    margin: 20px auto 0;
    max-width: 92%;
}

.wp-block-woocommerce-empty-cart-block > h2:not(.wc-block-cart__empty-cart__title),
.wp-block-woocommerce-empty-cart-block .wp-block-heading:not(.wc-block-cart__empty-cart__title) {
    color: #1a1b41;
    font-size: 26px;
    line-height: 1.3;
    margin: 38px 0 22px;
    padding: 0 20px;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid,
.wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-new {
    padding: 0 20px 42px;
    width: 100%;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__products,
.wp-block-woocommerce-empty-cart-block .wc-block-grid.has-4-columns .wc-block-grid__products,
.wp-block-woocommerce-empty-cart-block .wc-block-grid.has-3-columns .wc-block-grid__products,
.wp-block-woocommerce-empty-cart-block .wc-block-grid.has-2-columns .wc-block-grid__products {
    display: grid !important;
    gap: 22px;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product,
.wp-block-woocommerce-empty-cart-block .wc-block-grid.has-4-columns .wc-block-grid__product,
.wp-block-woocommerce-empty-cart-block .wc-block-grid.has-3-columns .wc-block-grid__product,
.wp-block-woocommerce-empty-cart-block .wc-block-grid.has-2-columns .wc-block-grid__product {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    flex: none !important;
    flex-direction: column;
    list-style: none;
    margin: 0 !important;
    max-width: none !important;
    min-width: 0;
    overflow: hidden;
    padding: 0 !important;
    text-align: left;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    width: 100% !important;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product:hover {
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image {
    background-color: #f3f6f8;
    margin: 0 !important;
    padding: 28px;
    width: 100%;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image img {
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title {
    color: #1a1b41;
    display: -webkit-box;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    margin: 16px 16px 8px;
    min-height: 40px;
    overflow: hidden;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title a {
    color: inherit;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price {
    color: #4b5563;
    font-size: 13px;
    font-weight: 600;
    margin: 0 16px 16px;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart {
    margin: auto 16px 16px;
}

.wp-block-woocommerce-empty-cart-block .wp-block-button__link,
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link {
    background-color: #5B4FE5;
    border-radius: 6px;
    color: #ffffff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    min-height: 40px;
    padding: 11px 14px;
    width: 100%;
}

.wp-block-woocommerce-empty-cart-block .wp-block-button__link:hover,
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link:hover {
    background-color: #4c42c7;
    color: #ffffff;
}

.tax-product_cat .download-stats {
    display: none;
}

/* Product Detail */
.single-product-page {
    background-color: #f5f7fb;
}

.product-detail-hero {
    padding: 48px 0 54px;
}

.product-detail-heading {
    margin-bottom: 74px;
}

.product-detail-heading h1 {
    color: #1a1b66;
    font-size: 40px;
    line-height: 1.15;
    margin: 0 0 14px;
}

.product-detail-breadcrumb {
    align-items: center;
    color: #1a1b66;
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 12px;
}

.product-detail-breadcrumb a {
    color: #5B4FE5;
    font-weight: 500;
}

.product-detail-main {
    align-items: center;
    display: grid;
    gap: 24px;
    grid-template-columns: 240px minmax(0, 1fr) minmax(170px, auto);
}

.product-detail-image {
    align-items: center;
    display: flex;
    height: 202px;
    justify-content: center;
    overflow: hidden;
    padding: 34px;
    width: 240px;
}

.product-detail-image img {
    background-color: #ffffff;
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.25);
    display: block;
    height: auto;
    max-height: 118px;
    object-fit: contain;
    width: 128px;
}

.product-detail-placeholder {
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.25);
    color: #374151;
    display: flex;
    font-size: 46px;
    height: 84px;
    justify-content: center;
    width: 128px;
}

.product-detail-summary {
    min-width: 0;
}

.product-detail-category {
    color: #5B4FE5;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-detail-title {
    color: #1a1b66;
    font-size: 28px;
    line-height: 1.25;
    margin: 0 0 16px;
    overflow-wrap: anywhere;
}

.product-detail-side {
    align-self: center;
    display: grid;
    gap: 16px;
    justify-items: end;
}

.product-detail-price {
    color: #1a1b66;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
}

.product-detail-price del {
    color: #9ca3af;
    display: block;
    font-size: 16px;
    font-weight: 500;
}

.product-detail-price ins {
    color: #1a1b66;
    text-decoration: none;
}

.product-detail-wishlist {
    align-items: center;
    color: #2c238f;
    display: inline-flex;
    font-size: 26px;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.product-detail-cart form.cart,
.product-detail-cart form.variations_form {
    align-items: flex-start;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.product-detail-cart table.variations {
    border: 0;
    box-shadow: none;
    margin: 0;
    width: auto;
}

.product-detail-cart table.variations tbody,
.product-detail-cart table.variations tr,
.product-detail-cart table.variations th,
.product-detail-cart table.variations td {
    border: 0;
    display: block;
    padding: 0;
}

.product-detail-cart table.variations .label {
    display: none;
}

.product-detail-cart table.variations select,
.product-detail-cart .variations select,
.product-detail-cart form.cart select {
    appearance: none;
    background-color: #ffffff;
    border: 1px solid #1a1b66;
    border-radius: 5px;
    color: #1a1b66;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    min-height: 38px;
    min-width: 96px;
    padding: 0 34px 0 16px;
}

.product-detail-cart table.variations .value {
    position: relative;
}

.product-detail-cart table.variations .value::after {
    color: #1a1b66;
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-size: 10px;
    font-weight: 900;
    pointer-events: none;
    position: absolute;
    right: 13px;
    top: 13px;
}

.product-detail-cart .reset_variations {
    color: #5B4FE5;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    margin: 8px 0 0;
}

.product-detail-cart .single_variation_wrap,
.product-detail-cart .woocommerce-variation-add-to-cart {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-detail-cart .woocommerce-variation {
    flex-basis: 100%;
}

.product-detail-cart .woocommerce-variation-price {
    color: #1a1b66;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-detail-cart .quantity {
    display: none;
}

.product-detail-cart .single_add_to_cart_button {
    background-color: #1a1b66;
    border-radius: 5px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    min-height: 38px;
    padding: 9px 22px;
}

.product-detail-cart .single_add_to_cart_button:hover {
    background-color: #11144f;
    color: #ffffff;
}

.product-detail-cart .stock {
    color: #6b7280;
    flex-basis: 100%;
    font-size: 13px;
    margin: 8px 0 0;
}

.product-detail-tabs-section {
    padding: 10px 0 72px;
}

.product-detail-tabs-container {
    margin: 0 auto;
    max-width: 100%;
    padding: 0 32px;
    width: 100%;
}

.single-product-detail .woocommerce-tabs {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.single-product-detail .woocommerce-tabs ul.tabs {
    background-color: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0 20px;
    text-align: center;
}

.single-product-detail .woocommerce-tabs ul.tabs li {
    margin: 0;
}

.single-product-detail .woocommerce-tabs ul.tabs li a {
    border-bottom: 3px solid transparent;
    color: #4b5563;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    padding: 18px 18px 15px;
    min-width: 160px;
}

.single-product-detail .woocommerce-tabs ul.tabs li.active a {
    border-bottom-color: #5B4FE5;
    color: #1a1b66;
}

.single-product-detail .woocommerce-Tabs-panel {
    color: #374151;
    font-size: 15px;
    line-height: 1.8;
    padding: 28px;
}

.single-product-detail .woocommerce-Tabs-panel h2 {
    color: #1a1b66;
    font-size: 24px;
    margin: 0 0 16px;
}

.single-product-detail .woocommerce-Tabs-panel p {
    margin: 0 0 14px;
}

.module-information-content ul,
.module-information-content ol {
    margin: 0 0 16px 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-grid,
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        gap: 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-title {
        font-size: 36px;
    }
    .woocommerce-checkout form.checkout,
    .woocommerce-account .woocommerce,
    .woocommerce-account .entry-content > .woocommerce {
        grid-template-columns: 1fr;
    }
    .product-detail-heading {
        margin-bottom: 44px;
    }
    .product-detail-main {
        align-items: start;
        grid-template-columns: 220px minmax(0, 1fr);
    }
    .product-detail-image {
        height: 190px;
        width: 220px;
    }
    .product-detail-side {
        grid-column: 2;
        justify-items: start;
    }
    .product-detail-price {
        text-align: left;
    }
    .wc-block-cart__main,
    .wc-block-checkout__main {
        padding-right: 0;
    }
    .wc-block-components-sidebar-layout {
        display: block;
    }
    .wc-block-components-sidebar-layout .wc-block-components-main,
    .wc-block-components-sidebar-layout .wc-block-components-sidebar {
        width: 100%;
    }
    .wc-block-components-sidebar {
        margin-top: 24px;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation {
        overflow-x: auto;
        position: static;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        display: flex;
        gap: 8px;
        min-width: max-content;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation a {
        white-space: nowrap;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .hero-section {
        padding: 0;
    }
    .hero-slider,
    .hero-slide .hero-inner {
        min-height: auto;
    }
    .hero-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .hero-slide {
        transform: translate3d(28px, 0, 0);
    }
    .hero-slider.is-backward .hero-slide {
        transform: translate3d(-28px, 0, 0);
    }
    .hero-slide.is-active {
        transform: translate3d(0, 0, 0);
    }
    .hero-slide .hero-inner {
        padding-bottom: 76px;
        padding-top: 46px;
    }
    .hero-desc {
        margin: 0 auto 16px auto;
    }
    .hero-subheading {
        font-size: 17px;
        margin: -4px auto 14px;
    }
    .hero-image {
        flex: 0 1 auto;
        width: min(100%, 460px);
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-slider-arrow {
        bottom: 24px;
        height: 38px;
        top: auto;
        transform: none;
        width: 38px;
    }
    .hero-slider-prev {
        left: 24px;
    }
    .hero-slider-next {
        right: 24px;
    }
    .hero-slider-dots {
        bottom: 30px;
    }
    .shop-hero {
        padding: 54px 0 66px;
    }
    .shop-products-section {
        padding: 34px 0 54px;
    }
    .product-category-search {
        margin: -4px 0 20px;
    }
    .product-category-search-inner {
        align-items: stretch;
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px;
    }
    .product-category-search-inner i {
        align-self: center;
        margin-left: 2px;
    }
    .product-category-search input[type="search"] {
        flex: 1 1 calc(100% - 34px);
        min-height: 44px;
    }
    .product-category-search button,
    .product-category-search-clear {
        flex: 1 1 140px;
        min-height: 44px;
        padding: 0 14px;
    }
    .shop-products-section .woocommerce-before-shop-loop,
    .woocommerce .woocommerce-before-shop-loop {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
    .woocommerce .woocommerce-result-count,
    .woocommerce .woocommerce-ordering,
    .woocommerce .woocommerce-ordering select {
        width: 100%;
    }
    .card-header {
        height: 145px;
    }
    .woocommerce ul.products[class*=columns-] li.product,
    .woocommerce-page ul.products[class*=columns-] li.product {
        width: 100% !important;
    }
    .woocommerce-cart .entry-content,
    .woocommerce-checkout .entry-content,
    .woocommerce-account .entry-content,
    .woocommerce-order-pay .entry-content {
        padding: 34px 16px 54px;
    }
    .woocommerce-cart .entry-title,
    .woocommerce-checkout .entry-title,
    .woocommerce-account .entry-title,
    .woocommerce-order-pay .entry-title {
        font-size: 28px;
        padding: 34px 16px 0;
    }
    .woocommerce-account .entry-title {
        padding: 42px 16px;
    }
    .product-detail-hero {
        padding: 38px 0 44px;
    }
    .product-detail-heading h1 {
        font-size: 32px;
    }
    .product-detail-main {
        grid-template-columns: 1fr;
    }
    .product-detail-image {
        height: auto;
        max-width: 340px;
        min-height: 220px;
        width: 100%;
    }
    .product-detail-summary,
    .product-detail-side {
        grid-column: auto;
    }
    .product-detail-side {
        justify-items: start;
    }
    .product-detail-title {
        font-size: 25px;
    }
    .product-detail-price {
        font-size: 24px;
    }
    .product-detail-cart form.cart,
    .product-detail-cart form.variations_form,
    .product-detail-cart .woocommerce-variation-add-to-cart {
        width: 100%;
    }
    .product-detail-cart table.variations,
    .product-detail-cart table.variations tbody,
    .product-detail-cart table.variations tr,
    .product-detail-cart table.variations td,
    .product-detail-cart table.variations select,
    .product-detail-cart .single_add_to_cart_button {
        width: 100%;
    }
    .single-product-detail .woocommerce-tabs ul.tabs {
        padding: 0 12px;
    }
    .single-product-detail .woocommerce-tabs ul.tabs li a {
        padding: 15px 12px 12px;
    }
    .single-product-detail .woocommerce-Tabs-panel {
        padding: 22px;
    }
    .woocommerce-cart .entry-title,
    .woocommerce-checkout .entry-title {
        padding: 42px 16px 42px;
    }
    .woocommerce form,
    .woocommerce .cart_totals,
    .woocommerce-checkout .col2-set .col-1,
    .woocommerce-checkout .col2-set .col-2,
    .woocommerce-checkout .woocommerce-checkout-review-order,
    .woocommerce-account .woocommerce-MyAccount-content,
    .woocommerce-order,
    .woocommerce-order-pay #payment {
        padding: 18px;
    }
    .woocommerce table.shop_table {
        border: 0;
        box-shadow: none;
    }
    .woocommerce table.shop_table thead {
        display: none;
    }
    .woocommerce table.shop_table tbody,
    .woocommerce table.shop_table tfoot,
    .woocommerce table.shop_table tr,
    .woocommerce table.shop_table td,
    .woocommerce table.shop_table th {
        display: block;
        width: 100%;
    }
    .woocommerce table.shop_table tr {
        background-color: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
        margin-bottom: 14px;
        overflow: hidden;
    }
    .woocommerce table.shop_table td,
    .woocommerce table.shop_table th {
        align-items: center;
        border-bottom: 1px solid #eef2f7;
        display: flex;
        gap: 12px;
        justify-content: space-between;
        min-height: 48px;
        padding: 12px 14px;
        text-align: right;
    }
    .woocommerce table.shop_table td::before {
        color: #6b7280;
        content: attr(data-title);
        flex: 0 0 auto;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-align: left;
        text-transform: uppercase;
    }
    .woocommerce table.shop_table .product-thumbnail,
    .woocommerce table.shop_table .product-remove,
    .woocommerce table.shop_table td.actions {
        display: block;
        text-align: left;
    }
    .woocommerce table.shop_table .product-thumbnail::before,
    .woocommerce table.shop_table .product-remove::before,
    .woocommerce table.shop_table td.actions::before {
        content: none;
    }
    .woocommerce-cart table.cart td.actions .coupon {
        flex-direction: column;
        max-width: none;
    }
    .woocommerce-cart table.cart td.actions .button,
    .woocommerce-cart table.cart td.actions .coupon .button {
        width: 100%;
    }
    .woocommerce .cart-collaterals {
        display: block;
    }
    .woocommerce .cart-collaterals .cart_totals {
        width: 100%;
    }
    .woocommerce-checkout #order_review_heading {
        border-bottom: 1px solid #e5e7eb;
        border-radius: 8px;
        grid-column: auto;
        margin: 0;
        padding: 18px;
    }
    .woocommerce-checkout #customer_details,
    .woocommerce-checkout #order_review {
        grid-column: auto;
        grid-row: auto;
    }
    .woocommerce-account .u-columns {
        grid-template-columns: 1fr;
    }
    .woocommerce-account .woocommerce > .u-columns {
        gap: 22px;
        grid-template-columns: 1fr;
    }
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-info {
        align-items: stretch;
        flex-direction: column;
    }
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-info .button,
    .woocommerce-account .woocommerce-MyAccount-content a.button,
    .woocommerce-account .woocommerce-MyAccount-content .woocommerce-button {
        width: 100%;
    }
    .woocommerce ul.order_details {
        grid-template-columns: 1fr;
    }
    .wc-block-components-main,
    .wc-block-components-sidebar,
    .wc-block-components-checkout-step {
        padding: 18px;
    }
    .wc-block-components-title,
    .wc-block-cart__totals-title,
    .wc-block-components-checkout-step__title,
    .wc-block-components-order-summary__button-text {
        font-size: 19px;
    }
    .wc-block-cart-items {
        background: transparent;
        border: 0;
        box-shadow: none;
    }
    .wc-block-cart-items thead {
        display: none;
    }
    .wc-block-cart-items,
    .wc-block-cart-items tbody,
    .wc-block-cart-items tr,
    .wc-block-cart-items td {
        display: block;
        width: 100%;
    }
    .wc-block-cart-items .wc-block-cart-items__row {
        background-color: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
        margin-bottom: 14px;
        padding: 16px;
    }
    .wc-block-cart-items .wc-block-cart-item__image {
        display: inline-block;
        padding: 0 14px 0 0;
        vertical-align: top;
        width: 86px;
    }
    .wc-block-cart-items .wc-block-cart-item__product {
        display: inline-block;
        padding: 0;
        vertical-align: top;
        width: calc(100% - 96px);
    }
    .wc-block-cart-items .wc-block-cart-item__total {
        align-items: center;
        border-top: 1px solid #eef2f7;
        display: flex;
        justify-content: space-between;
        margin-top: 14px;
        padding: 14px 0 0;
        text-align: left;
    }
    .wc-block-cart-items .wc-block-cart-item__total::before {
        color: #6b7280;
        content: 'Subtotal';
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }
    .wc-block-components-totals-coupon__form {
        flex-direction: column;
    }
    .wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .wp-block-woocommerce-empty-cart-block .wc-block-grid.has-4-columns .wc-block-grid__products,
    .wp-block-woocommerce-empty-cart-block .wc-block-grid.has-3-columns .wc-block-grid__products,
    .wp-block-woocommerce-empty-cart-block .wc-block-grid.has-2-columns .wc-block-grid__products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 14px;
    }
    .product-grid,
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        gap: 18px;
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 28px;
        line-height: 1.25;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .shop-hero {
        padding: 42px 0 52px;
    }
    .shop-hero-desc {
        font-size: 14px;
    }
    .card-body {
        padding: 16px;
    }
    .card-footer {
        padding: 12px 16px;
    }
    .woocommerce nav.woocommerce-pagination ul li a,
    .woocommerce nav.woocommerce-pagination ul li span {
        height: 34px;
        min-width: 34px;
        padding: 0 10px;
    }
    .woocommerce-cart .entry-content,
    .woocommerce-checkout .entry-content,
    .woocommerce-account .entry-content,
    .woocommerce-order-pay .entry-content {
        padding-left: 14px;
        padding-right: 14px;
    }
    .woocommerce-cart .entry-title,
    .woocommerce-checkout .entry-title,
    .woocommerce-account .entry-title,
    .woocommerce-order-pay .entry-title {
        font-size: 25px;
        padding-left: 14px;
        padding-right: 14px;
    }
    .woocommerce-account .entry-content > .woocommerce {
        gap: 18px;
    }
    .product-detail-heading {
        margin-bottom: 30px;
    }
    .product-detail-heading h1 {
        font-size: 28px;
    }
    .product-detail-breadcrumb {
        gap: 8px;
    }
    .product-detail-image {
        min-height: 190px;
        padding: 28px;
    }
    .product-detail-title {
        font-size: 22px;
    }
    .product-detail-price {
        font-size: 22px;
        white-space: normal;
    }
    .product-detail-tabs-section {
        padding-bottom: 52px;
    }
    .single-product-detail .woocommerce-tabs ul.tabs {
        display: grid;
        grid-template-columns: 1fr;
        padding: 0;
    }
    .single-product-detail .woocommerce-tabs ul.tabs li a {
        border-bottom: 1px solid #e5e7eb;
        justify-content: center;
        width: 100%;
    }
    .single-product-detail .woocommerce-tabs ul.tabs li.active a {
        background-color: #EEF2FF;
        border-bottom-color: #5B4FE5;
    }
    .single-product-detail .woocommerce-Tabs-panel {
        padding: 18px;
    }
    .woocommerce-account .woocommerce > .u-columns form.login,
    .woocommerce-account .woocommerce > .u-columns form.register {
        padding: 18px;
    }
    .woocommerce-account .woocommerce > .u-columns .u-column1 > h2,
    .woocommerce-account .woocommerce > .u-columns .u-column2 > h2 {
        font-size: 22px;
    }
    .woocommerce-account .woocommerce-form-login .form-row:last-of-type {
        align-items: stretch;
        flex-direction: column;
    }
    .woocommerce-account .woocommerce-form-login button.button {
        width: 100%;
    }
    .woocommerce-cart .entry-title,
    .woocommerce-checkout .entry-title {
        padding-top: 36px;
        padding-bottom: 36px;
    }
    .woocommerce form,
    .woocommerce .cart_totals,
    .woocommerce-checkout .col2-set .col-1,
    .woocommerce-checkout .col2-set .col-2,
    .woocommerce-checkout .woocommerce-checkout-review-order,
    .woocommerce-account .woocommerce-MyAccount-content,
    .woocommerce-order,
    .woocommerce-order-pay #payment {
        padding: 16px;
    }
    .woocommerce form h3,
    .woocommerce .cart_totals h2,
    .woocommerce .woocommerce-order-details__title,
    .woocommerce .woocommerce-column__title,
    .woocommerce-MyAccount-content h2,
    .woocommerce-MyAccount-content h3 {
        font-size: 19px;
    }
    .woocommerce table.shop_table td,
    .woocommerce table.shop_table th {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        text-align: left;
    }
    .woocommerce table.shop_table td.actions {
        gap: 12px;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation {
        padding: 10px;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-width: 0;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation li {
        min-width: 0;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation a {
        font-size: 13px;
        min-height: 40px;
        padding: 10px 12px;
        white-space: normal;
    }
    .woocommerce .woocommerce-button,
    .woocommerce table.my_account_orders .button,
    .woocommerce .woocommerce-MyAccount-downloads-file {
        width: 100%;
    }
    .wc-block-components-main,
    .wc-block-components-sidebar,
    .wc-block-components-checkout-step,
    .wc-block-components-totals-coupon {
        padding: 16px;
    }
    .wc-block-cart-items .wc-block-cart-items__row {
        padding: 14px;
    }
    .wc-block-cart-items .wc-block-cart-item__image {
        display: block;
        margin-bottom: 12px;
        padding: 0;
        width: 76px;
    }
    .wc-block-cart-items .wc-block-cart-item__product {
        display: block;
        width: 100%;
    }
    .wc-block-components-button,
    .wc-block-cart__submit-button,
    .wc-block-components-checkout-place-order-button,
    .wc-block-components-totals-coupon__button {
        width: 100%;
    }
    .wc-block-components-product-name {
        font-size: 14px;
    }
    .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
    .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
        font-size: 16px;
    }
    .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title,
    .wp-block-woocommerce-empty-cart-block .with-empty-cart-icon {
        padding: 40px 16px 14px;
    }
    .wp-block-woocommerce-empty-cart-block .with-empty-cart-icon::before {
        font-size: 24px;
        height: 64px;
        width: 64px;
    }
    .wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title {
        font-size: 21px;
    }
    .wp-block-woocommerce-empty-cart-block .with-empty-cart-icon::after {
        font-size: 14px;
    }
    .wp-block-woocommerce-empty-cart-block > h2:not(.wc-block-cart__empty-cart__title),
    .wp-block-woocommerce-empty-cart-block .wp-block-heading:not(.wc-block-cart__empty-cart__title) {
        font-size: 22px;
        margin: 24px 0 18px;
    }
    .wp-block-woocommerce-empty-cart-block .wc-block-grid,
    .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-new {
        padding: 0 14px 24px;
    }
    .wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
        gap: 16px;
        grid-template-columns: 1fr !important;
    }
    .wp-block-woocommerce-empty-cart-block .wc-block-grid.has-4-columns .wc-block-grid__products,
    .wp-block-woocommerce-empty-cart-block .wc-block-grid.has-3-columns .wc-block-grid__products,
    .wp-block-woocommerce-empty-cart-block .wc-block-grid.has-2-columns .wc-block-grid__products {
        grid-template-columns: 1fr !important;
    }
    .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image {
        padding: 22px;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 25px;
    }
    .hero-badge {
        white-space: normal;
    }
    .card-header {
        height: 128px;
    }
    .icon-box {
        height: 50px;
        width: 70px;
    }
}


@media (max-width: 580px) {
	
	body .product-detail-tabs-container {
		 padding: 0 20px !important ;
	}
.product-detail-tabs-container  .container row {
		padding: 0 10px !important ;
		margin-bottom: 20px !important
	}
	.product-detail-tabs-container > .container.mt32:first-child {
    padding: 0 !important;
}
	body .single-product-detail .woocommerce-Tabs-panel  padding: 0 !important;
}
