#wc-stripe-express-checkout-element{
    display: none !important;
}


/* Header & Footer ===================== */
.devszon-ecom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.devszon-ecom-header {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.devszon-ecom-header-top {
    background-color: #2c3e50;
    color: #fff;
    padding: 8px 0;
}

.devszon-ecom-header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.devszon-ecom-header-top-links {
    display: flex;
    gap: 20px;
}

.devszon-ecom-header-top-link {
    color: #ecf0f1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.devszon-ecom-header-top-link:hover {
    color: #6d28d9;
}

.devszon-ecom-header-main {
    padding: 15px 0;
}

.devszon-ecom-header-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.devszon-ecom-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.devszon-ecom-logo img {
    height: 40px;
}
.devszon-ecom-logo-icon {
    font-size: 28px;
    color: #e74c3c;
    margin-right: 10px;
}

.devszon-ecom-logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
}

.devszon-ecom-logo-text span {
    color: #e74c3c;
}

.devszon-ecom-search-container {
    flex: 0 1 500px;
    margin: 0 30px;
    position: relative;
}

.devszon-ecom-search-form {
    display: flex;
}

.devszon-ecom-search-input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #6d28d9;
    border-radius: 30px 0 0 30px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.devszon-ecom-search-input:focus {
    border-color: #e74c3c;
}

.devszon-ecom-search-button {
    background-color: #6d28d9;
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.devszon-ecom-search-button:hover {
    background-color: #2980b9;
}

.devszon-ecom-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.devszon-ecom-header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
    position: relative;
    transition: color 0.3s;
}

.devszon-ecom-header-action:hover {
    color: #e74c3c;
}

.devszon-ecom-header-action-icon {
    font-size: 22px;
    margin-bottom: 5px;
}

.devszon-ecom-header-action-text {
    font-size: 14px;
    font-weight: 600;
}

.devszon-ecom-cart-count {
    position: absolute;
    top: -8px;
    right: 10px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.devszon-ecom-header-bottom {
    background-color: #34495e;
    padding: 12px 0;
}

/* Live Search */
.devszon-live-search-box{
    position: absolute;
    width: 100%;
    background: #fff;
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    top: 55px;
}

.devszon-live-results{
    list-style: none;
    margin: 0;
    padding: 0;
}

.devszon-live-item{
    border-bottom: 1px solid #eee;
}

.devszon-live-item a{
    display: flex;
    gap: 10px;
    padding: 8px;
    text-decoration: none;
    align-items: center;
}

.devszon-live-item img{
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.devszon-live-title{
    flex: 1;
    font-size: 14px;
    color: #222;
}

.devszon-live-price{
    font-weight: bold;
}

.devszon-ecom-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.devszon-ecom-nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.devszon-ecom-nav-link.menu-item-has-children {
    position: relative;
}
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s ease;
    z-index: 999;
}
.sub-menu > li > a {
    display: block;
    padding: 10px 14px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.sub-menu > li:last-child > a {
    border-bottom: none;
}
.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sub-menu > li > a:hover {
    background: #f5f5f5;
}
.devszon-ecom-nav-link {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.devszon-ecom-nav-link:hover {
    color: #3498db;
}

.devszon-ecom-nav-link.active {
    color: #3498db;
}

.devszon-ecom-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #6d28d9;
}

.devszon-ecom-nav-offer {
    color: #f1c40f;
    font-weight: 600;
    font-size: 15px;
}

/* Mobile Menu Toggle */
.devszon-ecom-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
}

/* Footer Styles */
.devszon-ecom-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    margin-top: auto;
}

.devszon-ecom-footer-top {
    padding: 50px 0 30px;
}

.devszon-ecom-footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.devszon-ecom-footer-column-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.devszon-ecom-footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #e74c3c;
}

.devszon-ecom-footer-links {
    list-style: none;
}

.devszon-ecom-footer-link {
    margin-bottom: 12px;
}

.devszon-ecom-footer-link a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.devszon-ecom-footer-link a:hover {
    color: #3498db;
    padding-left: 5px;
}

.devszon-ecom-footer-about {
    color: #bdc3c7;
    margin-bottom: 20px;
    line-height: 1.7;
}

.devszon-ecom-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.devszon-ecom-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #34495e;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.devszon-ecom-footer-social-link:hover {
    background-color: #ffff;
    transform: translateY(-3px);
}

/* .devszon-ecom-newsletter-form {
    display: flex;
    margin-top: 20px;
}

.devszon-ecom-newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 3px 0 0 3px;
    font-size: 14px;
    outline: none;
}

.devszon-ecom-newsletter-button {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.devszon-ecom-newsletter-button:hover {
    background-color: #c0392b;
} */

.devszon-ecom-footer-bottom {
    background-color: #1a252f;
    padding: 20px 0;
    text-align: center;
}

.devszon-ecom-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.devszon-ecom-copyright {
    color: #95a5a6;
    font-size: 15px;
}

.devszon-ecom-payment-methods {
    display: flex;
    gap: 10px;
}

.devszon-ecom-payment-icon {
    font-size: 28px;
    color: #95a5a6;
}

/* Main content for demo */
.devszon-ecom-main-content {
    padding: 40px 0;
    flex: 1;
}

.devszon-ecom-page-title {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.devszon-ecom-page-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #7f8c8d;
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .devszon-ecom-footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .devszon-ecom-search-container {
        flex: 0 1 400px;
    }
}

@media (max-width: 768px) {
    .devszon-ecom-header-main-content {
        flex-wrap: wrap;
    }
    
    .devszon-ecom-search-container {
        order: 3;
        flex: 0 0 100%;
        margin: 20px 0 0;
    }
    
    .devszon-ecom-nav-links {
        display: none;
    }
    
    .devszon-ecom-nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #34495e;
        padding: 20px;
        z-index: 100;
        gap: 15px;
    }
    
    .devszon-ecom-menu-toggle {
        display: block;
    }
    
    .devszon-ecom-nav {
        justify-content: flex-start;
    }
    
    .devszon-ecom-nav-offer {
        margin-left: auto;
        font-size: 14px;
    }
    
    .devszon-ecom-footer-content {
        grid-template-columns: 1fr;
    }
    
    .devszon-ecom-footer-bottom-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .devszon-ecom-header-top-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .devszon-ecom-header-actions {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .devszon-ecom-header-actions {
        gap: 10px;
    }
    
    .devszon-ecom-header-action-text {
        font-size: 12px;
    }
    
    .devszon-ecom-logo-text {
        font-size: 22px;
    }
    
    .devszon-ecom-page-title {
        font-size: 26px;
    }

    .gutters-5.lg-no-gutters.row-cols-2.row-cols-lg-1 div {
        max-width: 100% !important;
    }
}

/* Single Product ===================== */
.single-product-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.single-product-wrapper p.cart-empty-message {
    padding: 20px;
    color: red;
}
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #7c3aed;
    --accent-color: #06b6d4;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --border-radius: 12px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    
    --primary: #F77B0B;
    --hov-primary: #E56F0E;
    --soft-primary: rgba(247, 123, 11, 0.15);
    --secondary: #8f97ab;
    --success: #0abb75;
    --danger: #ef486a;
    --light: #f2f3f8;
    --dark: #111723;
    --white: #fff;
}

.breadcrumb-section {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.woocommerce-breadcrumb {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.woocommerce-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    border-radius: 6px;
}

.woocommerce-breadcrumb a:hover {
    color: var(--primary-dark);
    background: var(--bg-light);
}

.woocommerce-breadcrumb a::after {
    content: '/';
    color: var(--text-light);
}

.product-main-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.product-images-section {
    position: sticky;
    top: 30px;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.gallery-thumb {
    aspect-ratio: 1;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-white);
    position: relative;
}

.gallery-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(99, 102, 241, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-thumb:hover::before,
.gallery-thumb.active::before {
    opacity: 1;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

.product-main-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #f9fafb 100%);
    box-shadow: var(--shadow-lg);
    border: 1px solid #2563eb;
}

.main-product-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.zoom-icon:hover {
    background: var(--bg-white);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}
/* Product Details Section hot, related ans tab */
.product-details-section {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.product-tabs-section {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-bottom: 50px;
    padding: 20px;
}

/* Tabs Styling */
.product-tabs-section .woocommerce-tabs {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-tabs-section .tabs.wc-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 25px;
    list-style: none;
    padding: 0;
}

.product-tabs-section .tabs.wc-tabs li {
    flex: 1;
}

.product-tabs-section .tabs.wc-tabs li a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
}

.product-tabs-section .tabs.wc-tabs li a:hover {
    color: #1a1a1a;
    background: #f9f9f9;
}

.product-tabs-section .tabs.wc-tabs li.active a {
    color: #6d28d9;
    background: #fff5f5;
    border-bottom: 3px solid #6d28d9;
}

.product-tabs-section .woocommerce-Tabs-panel {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-tabs-section .woocommerce-Tabs-panel h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.product-tabs-section .woocommerce-Tabs-panel p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* Additional Info Table */
.product-tabs-section .woocommerce-product-attributes {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.product-tabs-section .woocommerce-product-attributes tr {
    border-bottom: 1px solid #f0f0f0;
}

.product-tabs-section .woocommerce-product-attributes th,
.product-tabs-section .woocommerce-product-attributes td {
    padding: 12px 15px;
    text-align: left;
}

.product-tabs-section .woocommerce-product-attributes th {
    font-weight: 600;
    color: #1a1a1a;
    width: 40%;
}

.product-tabs-section .woocommerce-product-attributes td {
    color: #666;
}

/* Hot Products Sidebar */
.product-tabs-section .hot-products-sidebar {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.product-tabs-section .hot-products-sidebar h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-tabs-section .hot-products-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-tabs-section .hot-product-item {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.product-tabs-section .hot-product-item:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.product-tabs-section .hot-product-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.product-tabs-section .hot-product-content {
    flex: 1;
    min-width: 0;
}

.product-tabs-section .hot-product-title {
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: #1a1a1a;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-tabs-section .hot-product-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #6d28d9;
}

.product-tabs-section .hot-product-price del {
    font-size: 0.75rem;
    color: #999;
    margin-right: 5px;
}

.product-tabs-section .hot-sale-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #6d28d9;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
}

/* Bottom Related Products */
.related-products-section {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.related-products-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.related-products-section .products {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.related-products-section .product {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    padding: 10px;
}

.related-products-section .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.related-products-section .woocommerce-LoopProduct-link {
    text-decoration: none;
    display: block;
    position: relative;
}

.related-products-section .product img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-products-section .product:hover img {
    transform: scale(1.1);
}

.related-products-section .onsale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #6d28d9;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.related-products-section .woocommerce-loop-product__title {
    font-size: 0.95rem;
    padding: 15px 15px 10px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
}

.related-products-section .price {
    padding: 0 15px 15px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #6d28d9;
    display: block;
}

.related-products-section .price del {
    font-size: 0.85rem;
    color: #999;
    margin-right: 8px;
}

.related-products-section .add_to_cart_button {
    width: 100%;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    border-radius: 0;
}

.related-products-section .add_to_cart_button:hover {
    background: #6d28d9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-tabs-section {
        grid-template-columns: 1fr 300px;
        gap: 20px;
    }

    .related-products-section .products {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .product-tabs-section {
        grid-template-columns: 1fr;
    }

    .product-tabs-section .hot-products-sidebar {
        position: static;
    }

    .product-tabs-section .hot-products-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-tabs-section .hot-product-item {
        flex-direction: column;
        text-align: center;
    }

    .product-tabs-section .hot-product-item img {
        width: 100%;
        height: 120px;
    }

    .product-tabs-section .tabs.wc-tabs {
        flex-wrap: wrap;
    }

    .product-tabs-section .tabs.wc-tabs li {
        flex: 1 1 100%;
    }

    .product-tabs-section .woocommerce-tabs {
        padding: 20px;
    }

    .related-products-section {
        padding: 25px 15px;
    }

    .related-products-section .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .related-products-section h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .product-tabs-section .hot-products-list {
        grid-template-columns: 1fr;
    }

    .related-products-section .products {
        grid-template-columns: 1fr;
    }

    .product-tabs-section .tabs.wc-tabs li a {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}
@media (max-width: 768px) {
    .product-add-to-cart form.cart {
        display: flex;
    }
    .product-add-to-cart .single_add_to_cart_button, .product-add-to-cart .button.alt {
        width: 60%;
    }
    .woocommerce-breadcrumb {
        font-size: 10px;
    }
    .product-add-to-cart form.cart {
        display: grid;
        justify-content: center;
    }
    .product-add-to-cart .quantity {
        display: inline !important;
    }
    .product-add-to-cart .button.alt{
        margin-left: 0 !important;
    }
}
@media ((max-width: 480px)) {
    .woocommerce-breadcrumb {
        font-size: 10px;
    }
    .product-add-to-cart form.cart {
        display: grid;
        justify-content: center;
    }
    .product-add-to-cart .quantity {
        display: inline !important;
    }
    .product-add-to-cart .button.alt{
        margin-left: 0 !important;
    }
}

/* ===== Product Info Section ===== */
.product-info-section {
    padding: 30px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.product-categories {
    margin-bottom: 16px;
}

.product-categories a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.product-categories a:hover {
    background: rgba(124, 58, 237, 0.2);
    transform: translateY(-1px);
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin: 20px 0;
}

.product-price {
    font-size: 36px;
    font-weight: 800;
    color: #702cdd;
    display: flex;
    align-items: center;
    gap: 12px;
}
.sony-ecommerce-deliver-date {
    display: flex;
    gap: 10px;
}
span.discount-percent {
    font-size: 12px;
    background: #702cdd;
    color: #ffffff;
    padding: 2px 15px;
    border-radius: 4px 20px 4px 20px;
}
span.free-shipping-text {
    font-size: 12px;
    background: #f5a623;
    color: #ffffff;
    padding: 2px 15px;
    border-radius: 20px 4px 20px 4px;
}
.product-price del {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0.7;
}

.product-short-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
    padding: 20px 0;
}
p.stock.in-stock{
    margin-bottom: 20px;
}
.sony-ecommerce-date-single-delivery {
    margin-top: 20px;
}

/* ===== Add to Cart ===== */
.product-add-to-cart {
    margin-bottom: 35px;
}

.product-add-to-cart .quantity {
    display: inline-flex;
    align-items: center;
    margin-right: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.product-add-to-cart .qty {
    width: 80px;
    height: 48px;
    border-radius: 10px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-white);
}

.product-add-to-cart .single_add_to_cart_button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-add-to-cart .single_add_to_cart_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.product-add-to-cart .single_add_to_cart_button:hover::before {
    left: 100%;
}

.product-add-to-cart .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.product-add-to-cart .button.alt {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6d28d9 100%);
    margin-left: 12px;
    padding: 15px 30px;
}

.product-add-to-cart .button.alt:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

/* ===== Product Meta ===== */
.product-meta {
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 10px;
}

.product-meta span {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product-meta strong {
    color: var(--text-primary);
    font-weight: 600;
    min-width: 100px;
}

.product-meta a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.product-meta a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== Product Tabs ===== */
.product-tabs-section {
    margin: 60px 0;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.woocommerce-tabs {
    border: none;
}

.woocommerce-tabs ul.tabs {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    padding: 0;
    margin: 0;
    background: var(--bg-light);
}

.woocommerce-tabs ul.tabs li {
    margin: 0;
    border: none;
    border-radius: 0;
    background: none;
    position: relative;
    list-style: none;
}

.woocommerce-tabs ul.tabs li a {
    padding: 20px 30px;
    font-weight: 600;
    color: var(--text-secondary);
    display: block;
    transition: var(--transition);
}

.woocommerce-tabs ul.tabs li.active a {
    color: var(--primary-color);
}

.woocommerce-tabs ul.tabs li.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.woocommerce-tabs .panel {
    padding: 40px;
}

.woocommerce-tabs .panel h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-primary);
}


/* ===== Related Products ===== */
.related-products-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.related-products-section h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-align: center;
}

.related.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* ===== Loading Animation ===== */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* ===== Badges & Labels ===== */
.sale-badge,
.new-badge,
.outofstock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.sale-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.new-badge {
    background: linear-gradient(135deg, var(--accent-color) 0%, #0891b2 100%);
}

.outofstock-badge {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

/* ===== Tooltips ===== */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: var(--text-primary);
    color: white;
    font-size: 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    pointer-events: none;
    margin-bottom: 8px;
}

[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--text-primary);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .product-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-images-section {
        position: static;
    }
    
    .checkout-form-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .single-product-wrapper {
        padding: 20px 15px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(6, 1fr);
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .gallery-thumb {
        min-width: 80px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-price {
        font-size: 28px;
    }
    
    .product-info-section {
        padding: 20px;
    }
    
    .product-add-to-cart {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .product-add-to-cart .quantity {
        margin-right: 0;
        align-self: flex-start;
    }
    
    .checkout-section-wrapper {
        margin: 50px 0;
    }
    
    .checkout-form-wrapper {
        padding: 20px;
    }
    
    .woocommerce-tabs ul.tabs {
        flex-wrap: wrap;
    }
    
    .woocommerce-tabs ul.tabs li {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
    
    .woocommerce-tabs .panel {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .product-price {
        font-size: 24px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .product-add-to-cart .single_add_to_cart_button,
    .product-add-to-cart .button.alt {
        width: 100%;
        text-align: center;
    }
    
    .payment-section,
    .billing-details-section,
    .order-review-section {
        padding: 20px;
    }
}

/* ===== Print Styles ===== */
@media print {
    .zoom-icon,
    .product-add-to-cart,
    .checkout-section-wrapper,
    .related-products-section {
        display: none !important;
    }
    
    .product-main-content {
        display: block !important;
    }
    
    .product-info-section {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* ===== Dark Mode Support ===== */
/* @media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #f9fafb;
        --text-secondary: #d1d5db;
        --text-light: #9ca3af;
        --bg-light: #1f2937;
        --bg-white: #111827;
        --border-color: #374151;
    }
    
    .product-info-section,
    .checkout-container,
    .product-tabs-section,
    .payment_methods li,
    .order-review-section,
    .billing-details-section {
        background: var(--bg-white);
        border-color: var(--border-color);
    }
    
    .woocommerce-checkout input[type="text"],
    .woocommerce-checkout input[type="email"],
    .woocommerce-checkout input[type="tel"],
    .woocommerce-checkout select,
    .woocommerce-checkout textarea {
        background: #1f2937;
        color: var(--text-primary);
        border-color: #374151;
    }
    
    .product-main-image {
        background: #1f2937;
    }
    
    .zoom-icon {
        background: rgba(31, 41, 55, 0.9);
        border-color: #374151;
    }
} */
.checkout.woocommerce-checkout input[type="text"]{
    border: 1px solid #ccc;
}


/* // Shop page ===================== */
.sony-ecommerce-container {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.sony-ecommerce-sidebar {
    width: 280px;
    background: #dddddd;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 20px;
}
.sony-ecommerce-add-btn {
    position: relative;
    height: 40px;
    border: 2px solid #c1c1c1;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    color: #333;
    align-items: center;
    margin-top: 8px;
    padding: 5px 10px;
    width: 100%;
}
.sony-ecommerce-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e5e5;
}

.sony-ecommerce-filter-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sony-ecommerce-filter-icon {
    font-size: 18px;
}

.sony-ecommerce-reset-btn {
    background: none;
    border: none;
    color: #702cdd;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.sony-ecommerce-reset-btn:hover {
    color: #8b4513;
}
p.return-to-shop {
    text-align: center;
}
/* Filter Section */
.sony-ecommerce-filter-section {
    margin-bottom: 28px;
}

.sony-ecommerce-filter-section-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Price Range */
.sony-ecommerce-price-range {
    padding: 4px 0;
}

.sony-ecommerce-price-inputs {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.sony-ecommerce-price-input-wrapper {
    flex: 1;
}

.sony-ecommerce-price-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
    display: block;
    font-weight: 500;
}

.sony-ecommerce-price-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    color: #1a1a1a;
    transition: all 0.2s;
}

.sony-ecommerce-price-input:focus {
    outline: none;
    border-color: #702cdd;
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.sony-ecommerce-price-slider {
    margin: 20px 0 12px;
}

.sony-ecommerce-slider {
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #702cdd 0%, #702cdd 50%, #e5e5e5 50%, #e5e5e5 100%);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.sony-ecommerce-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #702cdd;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
}

.sony-ecommerce-slider::-webkit-slider-thumb:hover {
    background: #8b4513;
    transform: scale(1.1);
}

.sony-ecommerce-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #702cdd;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
}

.sony-ecommerce-price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.sony-ecommerce-price-value {
    color: #702cdd;
    font-weight: 600;
}

/* Categories */
.sony-ecommerce-category-list, .sony-ecommerce-brand-list {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 4px;
}

.sony-ecommerce-category-list::-webkit-scrollbar, .sony-ecommerce-brand-list::-webkit-scrollbar {
    width: 6px;
}

.sony-ecommerce-category-list::-webkit-scrollbar-track, .sony-ecommerce-brand-list::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.sony-ecommerce-category-list::-webkit-scrollbar-thumb, .sony-ecommerce-brand-list::-webkit-scrollbar-thumb {
    background: #702cdd;
    border-radius: 3px;
}

.sony-ecommerce-checkbox-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.sony-ecommerce-checkbox-wrapper:hover {
    background-color: #f8f7f4;
}

.sony-ecommerce-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    margin-right: 12px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s;
}

.sony-ecommerce-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 18px;
    height: 18px;
    margin: 0;
}

.sony-ecommerce-checkbox input:checked + .sony-ecommerce-checkbox-custom {
    background-color: #702cdd;
    border-color: #702cdd;
}

.sony-ecommerce-checkbox input:checked + .sony-ecommerce-checkbox-custom::after {
    opacity: 1;
}

.sony-ecommerce-checkbox-custom {
    width: 15px;
    height: 15px;
    border: 2px solid #aaaaaa;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: relative;
    left: -14px;
}

.sony-ecommerce-checkbox-custom::after {
    content: '✓';
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s;
}

.sony-ecommerce-category-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    cursor: pointer;
}

.sony-ecommerce-category-name {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
}

.sony-ecommerce-category-count {
    font-size: 12px;
    color: #666;
    background-color: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
}



/* Product Grid */
.sony-ecommerce-product-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.sony-ecommerce-hidden {
    display: none !important;
}

.sony-ecommerce-results-count {
    grid-column: 1 / -1;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    font-size: 16px;
}

.sony-ecommerce-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.sony-ecommerce-no-results-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.sony-ecommerce-no-results-title {
    margin-bottom: 10px;
    color: #333;
}

.sony-ecommerce-no-results-text {
    color: #666;
}

.sony-ecommerce-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.sony-ecommerce-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.sony-ecommerce-product-card.sony-ecommerce-hidden {
    display: none;
}

.sony-ecommerce-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sony-ecommerce-no-results-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.sony-ecommerce-no-results-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.sony-ecommerce-no-results-text {
    font-size: 16px;
    color: #666;
}

.sony-ecommerce-results-count {
    grid-column: 1 / -1;
    padding: 16px 0;
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.sony-ecommerce-results-number {
    color: #702cdd;
    font-weight: 700;
}

.sony-ecommerce-product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-color: #f8f7f4;
    overflow: hidden;
}

.sony-ecommerce-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.sony-ecommerce-product-card:hover .sony-ecommerce-product-image {
    transform: scale(1.05);
}

.sony-ecommerce-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #dc2626;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.sony-ecommerce-product-info {
    padding: 10px;
}

.sony-ecommerce-product-title {
    font-size: 15px;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 8px;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.sony-ecommerce-product-title:hover {
    color: #702cdd;
}

.sony-ecommerce-product-price-wrapper {
    align-items: center;
    margin-bottom: 10px;
}

.sony-ecommerce-product-price {
    font-size: 15px;
    font-weight: 700;
    color: #dc2626;
}

.sony-ecommerce-product-old-price {
    font-size: 16px;
    color: #666;
    text-decoration: line-through;
}

.sony-ecommerce-product-rating-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.sony-ecommerce-product-rating-text {
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 600;
}

.sony-ecommerce-product-seller-icon {
    font-size: 14px;
}

.sony-ecommerce-product-thumbnails {
    display: flex;
    gap: 8px;
    padding: 0 12px 12px;
}

.sony-ecommerce-product-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e5e5e5;
    cursor: pointer;
    transition: border-color 0.2s;
}

.sony-ecommerce-product-thumbnail:hover {
    border-color: #702cdd;
}

.sony-ecommerce-product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sony-ecommerce-product-grid .woocommerce-pagination {
    margin: 40px;
    display: flex;
    justify-content: center;
}

.sony-ecommerce-product-grid .woocommerce-pagination .page-numbers {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.sony-ecommerce-product-grid .woocommerce-pagination .page-numbers li {
    display: inline-flex;
}

.sony-ecommerce-product-grid .woocommerce-pagination .page-numbers a,
.sony-ecommerce-product-grid .woocommerce-pagination .page-numbers span {
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sony-ecommerce-product-grid .woocommerce-pagination .page-numbers a:hover {
    background-color: #111;
    color: #fff;
    border-color: #111;
}
.sony-ecommerce-product-grid .woocommerce-pagination .page-numbers .current {
    background-color: #111;
    color: #fff;
    border-color: #111;
    cursor: default;
}

.sony-ecommerce-product-grid .woocommerce-pagination .page-numbers .next,
.sony-ecommerce-product-grid .woocommerce-pagination .page-numbers .prev {
    font-size: 18px;
    line-height: 1;
}
@media (max-width: 1024px) {
    .sony-ecommerce-product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}
@media (max-width: 767px) {
    .sony-ecommerce-product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

}

@media (max-width: 576px) {
    .sony-ecommerce-product-grid .woocommerce-pagination .page-numbers a,
    .sony-ecommerce-product-grid .woocommerce-pagination .page-numbers span {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .sony-ecommerce-sidebar {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .sony-ecommerce-container {
        flex-direction: column;
    }

    .sony-ecommerce-sidebar {
        width: 100%;
        position: static;
    }

    .sony-ecommerce-category-list, .sony-ecommerce-brand-list {
        display: flex;
        flex-direction: row;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        scrollbar-width: none; /* Firefox */
    }

    .sony-ecommerce-category-list::-webkit-scrollbar, .sony-ecommerce-brand-list::-webkit-scrollbar {
        display: none;
    }

    .sony-ecommerce-category-item {
        flex: 0 0 auto;
        min-width: 140px;

        scroll-snap-align: start;
    }
    .sony-ecommerce-category-item label {
        width: 100%;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        padding: 10px;
        background: #fff;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        white-space: nowrap;
    }
    .sony-ecommerce-sidebar{
        padding: 0 24px;
    }
    .sony-ecommerce-checkbox-wrapper input[type="checkbox"], .sony-ecommerce-checkbox-custom {
        position: absolute;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    .sony-ecommerce-filter-header, .sony-ecommerce-filter-section {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .sony-ecommerce-price-slider {
        margin: 0;
    }
    .sony-ecommerce-price-inputs {
        gap: 5px;
        margin-bottom: 0;
    }
    .sony-ecommerce-results-count, .sony-ecommerce-results-count{
        padding: 0;
        margin: 0;
    }
    .sony-ecommerce-container{
        gap: 0;
    }
    .sony-ecommerce-product-grid{
        padding: 0 20px;
    }
    .sony-ecommerce-category-item label:has(input:checked) {
        background-color: #c7c7c7;
    }
    .sony-ecommerce-price-input{
        padding: 5px;
    }
}
@media ((max-width: 480px)) {
    .sony-ecommerce-filter-header, .sony-ecommerce-filter-section {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .sony-ecommerce-price-slider {
        margin: 0;
    }
    .sony-ecommerce-price-inputs {
        gap: 5px;
        margin-bottom: 0;
    }
    .sony-ecommerce-results-count, .sony-ecommerce-results-count{
        padding: 0;
        margin: 0;
    }
    .sony-ecommerce-container{
        gap: 0;
    }
    .sony-ecommerce-product-grid{
        padding: 0 20px;
    }
    .sony-ecommerce-category-item label:has(input:checked) {
        background-color: #c7c7c7;
    }
    .sony-ecommerce-price-input{
        padding: 5px;
    }
}

/* Cart page ===================== */
.custom-cart-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
}

.cart-title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 40px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

/* Empty Cart State */
.cart-empty {
    text-align: center;
    padding: 80px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cart-empty p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.cart-empty .button {
    display: inline-block;
    padding: 14px 32px;
    background: #702cdd;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #702cdd;
}

.cart-empty .button:hover {
    background: #005a87;
    border-color: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.2);
}

/* Cart Layout */
.cart-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Cart Items Container */
.cart-items {
    flex: 2;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Individual Cart Item */
.woocommerce-cart-form .cart-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    transition: background-color 0.2s ease;
    padding: 15px !important;
}

.cart-item:hover {
    background-color: #fafafa;
}

.cart-item:last-child {
    border-bottom: none;
}

/* Product Thumbnail */
.cart-thumb {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-thumb a:hover img {
    transform: scale(1.05);
}

/* Product Info */
.cart-info {
    flex: 1;
    min-width: 0;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.product-name a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-name a:hover {
    color: #702cdd;
}

/* Product Variations */
.wc-item-meta {
    list-style: none;
    margin: 8px 0;
    padding: 0;
    font-size: 14px;
    color: #666;
}

.wc-item-meta li {
    margin: 2px 0;
}

/* Price */
.cart-info .price {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 12px 0;
}

/* Remove Link */
.cart-info .remove {
    display: inline-block;
    color: #dc3545;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 4px;
    background: #ffeaea;
    transition: all 0.2s ease;
}

.cart-info .remove:hover {
    background: #fdd;
    color: #b02a37;
}

/* Quantity Input */
.cart-qty {
    min-width: 120px;
}

.cart-qty .quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty .qty {
    width: 70px;
    height: 44px;
    padding: 0 12px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: border-color 0.2s ease;
}

.cart-qty .qty:focus {
    outline: none;
    border-color: #702cdd;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

/* Subtotal */
.cart-subtotal {
    min-width: 100px;
    text-align: right;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    padding-left: 20px;
}

/* Cart Summary */
.cart-summary {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 20px;
}

.cart-summary h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

/* Cart Totals Table */
.cart-summary .cart_totals {
    width: 100%;
}

.cart-summary table {
    width: 100%;
    border-collapse: collapse;
}

.cart-summary tr {
    border-bottom: 1px solid #f0f0f0;
}

.cart-summary th,
.cart-summary td {
    padding: 12px 0;
    text-align: left;
    vertical-align: middle;
}

.cart-summary th {
    font-weight: 500;
    color: #666;
    font-size: 14px;
}

.cart-summary td {
    font-weight: 500;
    text-align: right;
    font-size: 16px;
}

.cart-summary .order-total th,
.cart-summary .order-total td {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 16px 0;
}

.cart-summary .order-total {
    border-top: 2px solid #f0f0f0;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #f0f0f0;
}

.cart-actions .button {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-actions .button[name="update_cart"] {
    background: #f8f9fa;
    color: #666;
    border-color: #e0e0e0;
}

.cart-actions .button[name="update_cart"]:hover {
    background: #e9ecef;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cart-actions .button.alt {
    background: #702cdd;
    color: white;
    border-color: #702cdd;
}

.cart-actions .button.alt:hover {
    background: #218838;
    border-color: #1e7e34;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

/* Coupons & Shipping */
.shipping-calculator-button {
    color: #702cdd;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.shipping-calculator-button:hover {
    text-decoration: underline;
}

/* Form Elements */
.wc-proceed-to-checkout {
    margin-top: 24px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .cart-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .cart-items,
    .cart-summary {
        width: 100%;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        position: relative;
        padding: 20px;
    }
    
    .cart-thumb {
        width: 80px;
        height: 80px;
    }
    
    .cart-qty {
        align-self: flex-start;
    }
    
    .cart-subtotal {
        position: absolute;
        top: 20px;
        right: 20px;
        padding-left: 0;
    }
    
    .cart-info .remove {
        position: absolute;
        bottom: 20px;
        right: 20px;
    }
    
    .cart-summary {
        padding: 24px;
    }
    
    .cart-actions .button {
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .custom-cart-wrapper {
        padding: 20px 15px;
    }
    
    .cart-title {
        font-size: 24px;
        padding-bottom: 15px;
    }
    
    .cart-empty {
        padding: 60px 15px;
    }
    
    .cart-empty .button {
        padding: 12px 24px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-item {
    animation: fadeIn 0.3s ease-out;
}

/* Focus States for Accessibility */
.button:focus,
.qty:focus,
.remove:focus {
    outline: 2px solid #702cdd;
    outline-offset: 2px;
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .custom-cart-wrapper {
        color: #e0e0e0;
    }
    
    .cart-title,
    .product-name a,
    .cart-info .price,
    .cart-subtotal {
        color: #ffffff;
    }
    
    .cart-items,
    .cart-summary {
        background: #2d2d2d;
        box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    }
    
    .cart-item {
        border-bottom-color: #404040;
    }
    
    .cart-item:hover {
        background-color: #3a3a3a;
    }
    
    .cart-summary h3 {
        color: #ffffff;
        border-bottom-color: #404040;
    }
    
    .cart-summary tr {
        border-bottom-color: #404040;
    }
}

/* Checkout page ===================== */
/* .checkout.woocommerce-checkout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
} */
.woocommerce-additional-fields__field-wrapper textarea{
	width: 100%;
}
/* Checkout Heading */
.woocommerce-checkout h1 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 40px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    text-align: center;
}

/* Checkout Columns Layout */
.checkout-columns {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Left Column - Customer Details */
.checkout-left {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Right Column - Order Review */
.checkout-right {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 20px;
}

.checkout-right h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

/* Form Sections */
.woocommerce-billing-fields,
.woocommerce-shipping-fields {
    margin-bottom: 40px;
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
#ship-to-different-address {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

#ship-to-different-address {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: none;
}

/* Form Labels */
.woocommerce-form-row label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.woocommerce-form-row label.required::after {
    content: " *";
    color: #dc3545;
}

/* Form Inputs */
.woocommerce-form-row input,
.woocommerce-form-row select,
.woocommerce-form-row textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: #333;
    background: white;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.woocommerce-form-row input:focus,
.woocommerce-form-row select:focus,
.woocommerce-form-row textarea:focus {
    outline: none;
    border-color: #702cdd;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.woocommerce-form-row input.error,
.woocommerce-form-row select.error,
.woocommerce-form-row textarea.error {
    border-color: #dc3545;
    background: #fffafa;
}

.woocommerce-form-row input.error:focus,
.woocommerce-form-row select.error:focus,
.woocommerce-form-row textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Form Rows */
.woocommerce-form-row {
    margin-bottom: 24px;
    position: relative;
}

.form-row-first,
.form-row-last {
    width: calc(50% - 12px);
    float: left;
}

.form-row-first {
    margin-right: 24px;
}

.form-row-wide {
    clear: both;
}

/* Clear floats */
.woocommerce-form-row::after {
    content: "";
    display: table;
    clear: both;
}

/* Select2 Dropdowns */
.select2-container--default .select2-selection--single {
    height: 48px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px;
    padding: 0 16px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
}

/* Checkbox & Radio */
.woocommerce-form__input-checkbox,
.woocommerce-form__input-radio {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
}

.woocommerce-form__label-for-checkbox,
.woocommerce-form__label-for-radio {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

/* Order Review Table */
#order_review_heading {
    display: none;
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 24px 0;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 12px 0;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.woocommerce-checkout-review-order-table th {
    font-weight: 500;
    color: #666;
    font-size: 14px;
}

.woocommerce-checkout-review-order-table td {
    text-align: right;
    font-weight: 500;
    font-size: 16px;
}

.woocommerce-checkout-review-order-table .product-name {
    text-align: left;
    font-weight: 500;
}

.woocommerce-checkout-review-order-table .product-quantity {
    font-weight: normal;
    color: #666;
    margin-left: 4px;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 16px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: none;
}

/* Cart Item in Order Review */
.cart_item {
    padding: 16px 0;
}

.cart_item img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    margin-right: 12px;
    vertical-align: middle;
}

/* Payment Methods */
#payment {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
}

#payment .wc_payment_methods {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
}

#payment .wc_payment_method {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

#payment .wc_payment_method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

#payment .payment_box {
    background: white;
    padding: 16px;
    border-radius: 6px;
    margin-top: 12px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
}

#payment .payment_box p {
    margin: 0;
}

#payment ul.payment_methods {
    list-style: none;
    margin: 0;
    padding: 0;
}

#payment div.form-row {
    margin: 0;
}

/* Terms and Conditions */
.woocommerce-terms-and-conditions-wrapper {
    margin: 24px 0;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
}

.woocommerce-terms-and-conditions {
    max-height: 200px;
    overflow-y: auto;
    padding: 16px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    margin-bottom: 16px;
}

/* Place Order Button */
#place_order {
    display: block;
    width: 100%;
    padding: 18px 32px;
    background: #702cdd;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

#place_order:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

#place_order:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Coupon Code */
.woocommerce-form-coupon-toggle {
    margin-bottom: 24px;
}

.woocommerce-info {
    background: #d1ecf1;
    color: #0c5460;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #bee5eb;
    margin-bottom: 16px;
}

.woocommerce-info a {
    color: #702cdd;
    font-weight: 500;
}

.woocommerce-form-coupon {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .checkout-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .checkout-left,
    .checkout-right {
        width: 100%;
    }
    
    .checkout-right {
        position: static;
    }
}

@media (max-width: 768px) {
    .woocommerce-checkout {
        padding: 20px 15px;
    }
    
    .woocommerce-checkout h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .checkout-left,
    .checkout-right {
        padding: 24px;
    }
    
    .form-row-first,
    .form-row-last {
        width: 100%;
        float: none;
        margin-right: 0;
    }
    
    .checkout-right h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .woocommerce-checkout h1 {
        font-size: 24px;
        padding-bottom: 15px;
    }
    
    .checkout-left,
    .checkout-right {
        padding: 20px;
    }
    
    #place_order {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .woocommerce-checkout-review-order-table th,
    .woocommerce-checkout-review-order-table td {
        font-size: 14px;
        padding: 8px 0;
    }
}

/* Error Messages */
.woocommerce-error {
    background: #f8d7da;
    color: #721c24;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    margin-bottom: 24px;
    list-style: none;
}

.woocommerce-error li {
    margin: 8px 0;
    padding-left: 24px;
    position: relative;
}

.woocommerce-error li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 0;
}

/* Success Messages */
.woocommerce-message {
    background: #d4edda;
    color: #155724;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin-bottom: 24px;
}

/* Loading State */
.blockUI.blockOverlay {
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 12px !important;
}

.blockUI.blockOverlay:before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #702cdd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -20px 0 0 -20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .woocommerce-checkout {
        color: #e0e0e0;
    }
    
    .woocommerce-checkout h1,
    .checkout-right h3,
    .woocommerce-billing-fields h3,
    .woocommerce-shipping-fields h3 {
        color: #ffffff;
        border-bottom-color: #404040;
    }
    
    .checkout-left,
    .checkout-right,
    #payment .payment_box,
    .woocommerce-terms-and-conditions {
        background: #2d2d2d;
        border-color: #404040;
        box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    }
    
    .woocommerce-form-row input,
    .woocommerce-form-row select,
    .woocommerce-form-row textarea {
        background: #3a3a3a;
        border-color: #404040;
        color: #e0e0e0;
    }
    
    .woocommerce-form-row input:focus,
    .woocommerce-form-row select:focus,
    .woocommerce-form-row textarea:focus {
        border-color: #702cdd;
        box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.2);
    }
    
    #payment,
    .woocommerce-terms-and-conditions-wrapper,
    .woocommerce-form-coupon {
        background: #3a3a3a;
    }
    
    .woocommerce-checkout-review-order-table th,
    .woocommerce-checkout-review-order-table td {
        border-bottom-color: #404040;
        color: #e0e0e0;
    }
    
    .woocommerce-checkout-review-order-table .order-total th,
    .woocommerce-checkout-review-order-table .order-total td {
        border-top-color: #404040;
        color: #ffffff;
    }
}

/* Accessibility */
.woocommerce-form-row input:focus,
.woocommerce-form-row select:focus,
.woocommerce-form-row textarea:focus,
#place_order:focus {
    outline: 2px solid #702cdd;
    outline-offset: 2px;
}

/* Smooth Transitions */
.woocommerce-form-row,
#payment,
.cart_item {
    transition: all 0.3s ease;
}


/* MyAccount page ===================== */
.custom-myaccount-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
}

/* Account Header */
.account-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.account-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.account-welcome {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Account Layout */
.account-layout {
    display: flex;
    gap: 40px;
    min-height: 600px;
}

/* Navigation */
.account-navigation {
    flex: 0 0 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.devszon-ecom-nav ul#navLinks {
    margin: 0;
}
/* WooCommerce Navigation Override */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.woocommerce-MyAccount-navigation ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-bottom: 8px;
    border-left: 4px solid transparent;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    background: #f8f9fa;
    color: #702cdd;
    border-left-color: #702cdd;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    background: #702cdd;
    color: white;
    border-left-color: #005a87;
}

.woocommerce-MyAccount-navigation ul li a svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Custom Navigation Icons */
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a svg {
    stroke-width: 1.5;
}

/* Logout Link */
.account-logout {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.logout-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #dc3545;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.logout-link:hover {
    background: #ffeaea;
    border-left-color: #dc3545;
}

.logout-link svg {
    width: 20px;
    height: 20px;
}

/* Content Area */
.account-content-wrapper {
    flex: 1;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

.account-content {
    padding: 40px;
    min-height: 100%;
}

/* WooCommerce Content Override */
.woocommerce-MyAccount-content {
    width: 100%;
}

/* Dashboard */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 30px 0;
}

/* Orders Table */
.woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.woocommerce-orders-table thead {
    background: #f8f9fa;
}

.woocommerce-orders-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #555;
    border-bottom: 2px solid #eee;
}

.woocommerce-orders-table td {
    padding: 16px;
    border-bottom: 1px solid #eee;
}

.woocommerce-orders-table tbody tr:hover {
    background: #f8f9fa;
}

/* Order Status */
.order-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.order-status-completed {
    background: #d4edda;
    color: #155724;
}

.order-status-processing {
    background: #cce5ff;
    color: #004085;
}

.order-status-on-hold {
    background: #fff3cd;
    color: #856404;
}

.order-status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

/* Addresses */
.woocommerce-Address {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.woocommerce-Address-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.woocommerce-Address-title h3 {
    margin: 0;
}

.edit {
    color: #702cdd;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.edit:hover {
    text-decoration: underline;
}

/* Forms */
.woocommerce-EditAccountForm,
.woocommerce-address-fields {
    max-width: 600px;
}

.woocommerce-form-row {
    margin-bottom: 25px;
}

.woocommerce-form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.woocommerce-form-row input[type="text"],
.woocommerce-form-row input[type="email"],
.woocommerce-form-row input[type="password"],
.woocommerce-form-row input[type="tel"],
.woocommerce-form-row textarea,
.woocommerce-form-row select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.woocommerce-form-row input:focus,
.woocommerce-form-row textarea:focus,
.woocommerce-form-row select:focus {
    outline: none;
    border-color: #702cdd;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.woocommerce-Button {
    background: #702cdd;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.woocommerce-Button:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.2);
}

/* Login Page Styles */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    padding: 40px 0;
}

.login-container {
    width: 100%;
    max-width: 480px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    overflow: hidden;
}

.login-header {
    background: linear-gradient(135deg, #702cdd 0%, #005a87 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.login-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: white;
}

.login-header p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.login-form-wrapper {
    padding: 40px;
}

/* Login Form Override */
.woocommerce-form-login {
    margin: auto;
}

.woocommerce-form-login h2 {
    display: none;
}

.woocommerce-form-login .woocommerce-form-row {
    margin-bottom: 20px;
}

.woocommerce-form-login .woocommerce-form-row label {
    font-size: 14px;
}

.woocommerce-form-login .woocommerce-LostPassword {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.woocommerce-form-login .woocommerce-LostPassword a {
    color: #702cdd;
    text-decoration: none;
}

.woocommerce-form-login .woocommerce-LostPassword a:hover {
    text-decoration: underline;
}

.login-footer {
    padding: 20px 40px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 15px;
    color: #666;
}

.login-footer a {
    color: #702cdd;
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .account-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .account-navigation {
        width: 100%;
        flex: none;
    }
    
    .account-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .custom-myaccount-wrapper {
        padding: 20px 15px;
    }
    
    .account-title {
        font-size: 28px;
    }
    
    .account-navigation {
        padding: 20px;
    }
    
    .account-content {
        padding: 25px;
    }
    
    .login-container {
        max-width: 100%;
    }
    
    .login-header,
    .login-form-wrapper {
        padding: 30px 25px;
    }
    
    .woocommerce-orders-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .account-title {
        font-size: 24px;
    }
    
    .woocommerce-MyAccount-navigation ul li a {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .account-content {
        padding: 20px;
    }
    
    .login-header h2 {
        font-size: 24px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .custom-myaccount-wrapper {
        color: #e0e0e0;
    }
    
    .account-title,
    .account-content h2,
    .account-content h3 {
        color: #ffffff;
    }
    
    .account-navigation,
    .account-content-wrapper,
    .login-container {
        background: #2d2d2d;
        box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    }
    
    .woocommerce-MyAccount-navigation ul li a {
        color: #b0b0b0;
    }
    
    .woocommerce-MyAccount-navigation ul li a:hover {
        background: #3a3a3a;
        color: #702cdd;
    }
    
    .woocommerce-MyAccount-navigation ul li.is-active a {
        background: #702cdd;
        color: white;
    }
    
    .logout-link {
        color: #ff6b6b;
    }
    
    .logout-link:hover {
        background: #3a3a3a;
    }
    
    .woocommerce-form-row input,
    .woocommerce-form-row textarea,
    .woocommerce-form-row select {
        background: #3a3a3a;
        border-color: #404040;
        color: #e0e0e0;
    }
    
    .woocommerce-orders-table th {
        background: #3a3a3a;
        color: #b0b0b0;
        border-color: #404040;
    }
    
    .woocommerce-orders-table td {
        border-color: #404040;
    }
    
    .woocommerce-orders-table tbody tr:hover {
        background: #3a3a3a;
    }
    
    .login-header {
        background: linear-gradient(135deg, #005a87 0%, #003d5c 100%);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.account-navigation,
.account-content-wrapper,
.login-container {
    animation: fadeIn 0.5s ease-out;
}

/* Loading States */
.woocommerce-MyAccount-content .woocommerce-Message {
    padding: 20px;
    background: #d4edda;
    color: #155724;
    border-radius: 8px;
    margin: 20px 0;
}

.woocommerce-MyAccount-content .woocommerce-error {
    padding: 20px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 8px;
    margin: 20px 0;
}


/* Thankyou page ===================== */
.thank-you-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
}

/* Header */
.thank-you-wrapper h1 {
    font-size: 48px;
    font-weight: 700;
    color: #702cdd;
    margin: 0 0 20px 0;
    position: relative;
    padding-bottom: 20px;
}

.thank-you-wrapper h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #702cdd, #20c997);
    border-radius: 2px;
}

/* Success Icon */
.thank-you-wrapper .thank-you-icon {
    font-size: 80px;
    color: #702cdd;
    margin: 30px 0;
    animation: thank-you-bounce 1s ease;
}

/* Success Message */
.thank-you-wrapper .thank-you-message {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Failed Order State */
.thank-you-wrapper .thank-you-failed {
    background: #fff5f5;
    border: 2px solid #fecaca;
    border-radius: 12px;
    padding: 40px;
    margin: 30px 0;
}

.thank-you-wrapper .thank-you-failed p {
    font-size: 18px;
    color: #dc2626;
    margin: 0 0 25px 0;
    font-weight: 500;
}

/* Order Details */
.thank-you-wrapper .thank-you-order-details {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    text-align: left;
}

.thank-you-wrapper .thank-you-details-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    text-align: center;
}

.thank-you-wrapper .thank-you-details-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.thank-you-wrapper .thank-you-detail-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #702cdd;
}

.thank-you-wrapper .thank-you-detail-item strong {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.thank-you-wrapper .thank-you-detail-value {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Payment Info */
.thank-you-wrapper .thank-you-payment-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

/* Actions */
.thank-you-wrapper .thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.thank-you-wrapper .thank-you-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.thank-you-wrapper .thank-you-button-primary {
    background: #702cdd;
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.thank-you-wrapper .thank-you-button-primary:hover {
    background: #218838;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.thank-you-wrapper .thank-you-button-secondary {
    background: white;
    color: #495057;
    border-color: #dee2e6;
}

.thank-you-wrapper .thank-you-button-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.thank-you-wrapper .thank-you-button svg {
    width: 20px;
    height: 20px;
}

/* Order Status Badge */
.thank-you-wrapper .thank-you-status {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 20px 0;
}

.thank-you-wrapper .thank-you-status-success {
    background: #d4edda;
    color: #155724;
}

.thank-you-wrapper .thank-you-status-failed {
    background: #f8d7da;
    color: #721c24;
}

/* WooCommerce Overrides within parent */
.thank-you-wrapper .woocommerce-order {
    width: 100%;
}

.thank-you-wrapper .woocommerce-thankyou-order-received {
    font-size: 20px;
    color: #702cdd;
    margin-bottom: 30px;
}

.thank-you-wrapper .woocommerce-order-overview {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.thank-you-wrapper .woocommerce-order-overview li {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    min-width: 200px;
}

.thank-you-wrapper .woocommerce-order-overview .woocommerce-order-overview__order {
    border-top: 4px solid #702cdd;
}

.thank-you-wrapper .woocommerce-order-overview .woocommerce-order-overview__date {
    border-top: 4px solid #702cdd;
}

.thank-you-wrapper .woocommerce-order-overview .woocommerce-order-overview__total {
    border-top: 4px solid #ffc107;
}

.thank-you-wrapper .woocommerce-order-overview .woocommerce-order-overview__payment-method {
    border-top: 4px solid #6f42c1;
}

.thank-you-wrapper .woocommerce-order-overview strong {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

/* Order Details Table */
.thank-you-wrapper .woocommerce-order-details {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.thank-you-wrapper .woocommerce-order-details__title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    text-align: center;
}

.thank-you-wrapper .order_details {
    width: 100%;
    border-collapse: collapse;
}

.thank-you-wrapper .order_details thead {
    background: #f8f9fa;
}

.thank-you-wrapper .order_details th {
    padding: 18px;
    text-align: left;
    font-weight: 600;
    color: #555;
    border-bottom: 2px solid #e9ecef;
}

.thank-you-wrapper .order_details td {
    padding: 18px;
    border-bottom: 1px solid #e9ecef;
}

.thank-you-wrapper .order_details tbody tr:hover {
    background: #f8f9fa;
}

/* Customer Details */
.thank-you-wrapper .woocommerce-customer-details {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.thank-you-wrapper .woocommerce-customer-details h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    text-align: center;
}

.thank-you-wrapper .woocommerce-customer-details address {
    font-style: normal;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .thank-you-wrapper {
        padding: 40px 15px;
    }
    
    .thank-you-wrapper h1 {
        font-size: 36px;
    }
    
    .thank-you-wrapper .thank-you-icon {
        font-size: 60px;
    }
    
    .thank-you-wrapper .thank-you-message {
        font-size: 18px;
    }
    
    .thank-you-wrapper .thank-you-details-list {
        grid-template-columns: 1fr;
    }
    
    .thank-you-wrapper .thank-you-order-details,
    .thank-you-wrapper .woocommerce-order-details,
    .thank-you-wrapper .woocommerce-customer-details {
        padding: 30px 20px;
    }
    
    .thank-you-wrapper .thank-you-actions {
        flex-direction: column;
    }
    
    .thank-you-wrapper .thank-you-button {
        width: 100%;
        justify-content: center;
    }
    
    .thank-you-wrapper .woocommerce-order-overview {
        flex-direction: column;
    }
    
    .thank-you-wrapper .order_details {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .thank-you-wrapper h1 {
        font-size: 28px;
    }
    
    .thank-you-wrapper .thank-you-message {
        font-size: 16px;
    }
    
    .thank-you-wrapper .thank-you-order-details,
    .thank-you-wrapper .woocommerce-order-details,
    .thank-you-wrapper .woocommerce-customer-details {
        padding: 25px 15px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .thank-you-wrapper {
        color: #e0e0e0;
    }
    
    .thank-you-wrapper h1 {
        color: #4ade80;
    }
    
    .thank-you-wrapper h1::after {
        background: linear-gradient(90deg, #4ade80, #34d399);
    }
    
    .thank-you-wrapper .thank-you-icon {
        color: #4ade80;
    }
    
    .thank-you-wrapper .thank-you-message {
        color: #b0b0b0;
    }
    
    .thank-you-wrapper .thank-you-order-details,
    .thank-you-wrapper .woocommerce-order-details,
    .thank-you-wrapper .woocommerce-customer-details {
        background: #2d2d2d;
        box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    }
    
    .thank-you-wrapper .thank-you-detail-item {
        background: #3a3a3a;
    }
    
    .thank-you-wrapper .thank-you-detail-item strong {
        color: #a0a0a0;
    }
    
    .thank-you-wrapper .thank-you-detail-value {
        color: #ffffff;
    }
    
    .thank-you-wrapper .thank-you-status-success {
        background: #064e3b;
        color: #a7f3d0;
    }
    
    .thank-you-wrapper .woocommerce-order-overview li {
        background: #3a3a3a;
    }
    
    .thank-you-wrapper .woocommerce-customer-details address {
        background: #3a3a3a;
        color: #b0b0b0;
    }
    
    .thank-you-wrapper .thank-you-button-secondary {
        background: #3a3a3a;
        color: #e0e0e0;
        border-color: #404040;
    }
    
    .thank-you-wrapper .thank-you-button-secondary:hover {
        background: #4a4a4a;
    }
}

/* Animations */
@keyframes thank-you-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes thank-you-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you-wrapper .thank-you-message,
.thank-you-wrapper .thank-you-order-details,
.thank-you-wrapper .woocommerce-order-details,
.thank-you-wrapper .woocommerce-customer-details {
    animation: thank-you-fade-in 0.6s ease-out;
}

/* Success Checkmark Animation */
.thank-you-wrapper .thank-you-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
}

.thank-you-wrapper .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #702cdd;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.thank-you-wrapper .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

/* Print Styles */
@media print {
    .thank-you-wrapper {
        padding: 20px;
        max-width: 100%;
    }
    
    .thank-you-wrapper .thank-you-actions {
        display: none;
    }
    
    .thank-you-wrapper .thank-you-order-details,
    .thank-you-wrapper .woocommerce-order-details,
    .thank-you-wrapper .woocommerce-customer-details {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}


/* Login page ===================== */
.woocommerce-form-login {
    max-width: 600px;
    padding: 40px 20px;
}

/* Form Row Styling */
.woocommerce-form-login .woocommerce-form-row {
    margin-bottom: 24px;
    position: relative;
}

.woocommerce-form-login .woocommerce-form-row--wide {
    width: 100%;
}

/* Labels */
.woocommerce-form-login label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}

.woocommerce-form-login .required {
    color: #dc3545;
    font-weight: 700;
}

.woocommerce-form-login .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Input Fields */
.woocommerce-form-login .woocommerce-Input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.woocommerce-form-login .woocommerce-Input--text {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.woocommerce-form-login .input-text:focus {
    outline: none;
    border-color: #702cdd;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.woocommerce-form-login .input-text::placeholder {
    color: #adb5bd;
    opacity: 1;
}

/* Password Input Container */
.woocommerce-form-login .password-input {
    position: relative;
    display: block;
}

/* Show Password Button */
.woocommerce-form-login .show-password-input {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #666;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.woocommerce-form-login .show-password-input:hover {
    color: #702cdd;
    background-color: #f8f9fa;
}

.woocommerce-form-login .show-password-input:active {
    transform: translateY(-50%) scale(0.95);
}

.woocommerce-form-login .show-password-input::after {
    content: '👁️';
    font-size: 16px;
}

.woocommerce-form-login .show-password-input.display-password::after {
    content: '🙈';
}

/* Remember Me Checkbox */
.woocommerce-form-login .woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
}

.woocommerce-form-login .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.woocommerce-form-login .woocommerce-form__input-checkbox {
    width: 18px;
    height: 18px;
    margin: 0 10px 0 0;
    cursor: pointer;
    accent-color: #702cdd;
    border-radius: 4px;
}

.woocommerce-form-login .woocommerce-form__input-checkbox:checked {
    background-color: #702cdd;
}

.woocommerce-form-login .woocommerce-form-login__rememberme span {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* Submit Button */
.woocommerce-form-login .woocommerce-button {
    display: block;
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    border: 2px solid transparent;
    border-radius: 8px;
    background-color: #702cdd;
    color: #fff;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.woocommerce-form-login .woocommerce-button:hover {
    background-color: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.2);
}

.woocommerce-form-login .woocommerce-button:active {
    transform: translateY(0);
}

.woocommerce-form-login .woocommerce-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.3);
}

/* Lost Password Link */
.woocommerce-form-login .woocommerce-LostPassword {
    margin-top: 20px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.woocommerce-form-login .lost_password a {
    font-size: 14px;
    color: #702cdd;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.woocommerce-form-login .lost_password a:hover {
    color: #005a87;
    text-decoration: underline;
}

/* Hidden Fields */
.woocommerce-form-login input[type="hidden"] {
    display: none;
}

/* Form Validation States */
.woocommerce-form-login .woocommerce-Input.woocommerce-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.woocommerce-form-login .woocommerce-Input.woocommerce-valid {
    border-color: #702cdd;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Form Row Layout */
.woocommerce-form-login .form-row {
    margin-bottom: 20px;
    display: block;
}

.woocommerce-form-login .form-row-wide {
    width: 100%;
}
.woocommerce h2{
    text-align: center;
}
/* Responsive Design */
@media (max-width: 768px) {
    .woocommerce-form-login .woocommerce-form-row {
        margin-bottom: 20px;
    }
    
    .woocommerce-form-login .woocommerce-Input {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .woocommerce-form-login .woocommerce-button {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .woocommerce-form-login .woocommerce-form-login__rememberme {
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .woocommerce-form-login .woocommerce-form-row {
        margin-bottom: 16px;
    }
    
    .woocommerce-form-login label {
        font-size: 13px;
    }
    
    .woocommerce-form-login .woocommerce-Input {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .woocommerce-form-login .show-password-input {
        padding: 6px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .woocommerce-form-login label {
        color: #e0e0e0;
    }
    
    .woocommerce-form-login .woocommerce-Input {
        background-color: #2d2d2d;
        border-color: #404040;
        color: #e0e0e0;
    }
    
    .woocommerce-form-login .input-text::placeholder {
        color: #777;
    }
    
    .woocommerce-form-login .input-text:focus {
        border-color: #702cdd;
        box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.3);
    }
    
    .woocommerce-form-login .show-password-input {
        color: #aaa;
        background-color: transparent;
    }
    
    .woocommerce-form-login .show-password-input:hover {
        color: #702cdd;
        background-color: #3a3a3a;
    }
    
    .woocommerce-form-login .woocommerce-form-login__rememberme span {
        color: #b0b0b0;
    }
    
    .woocommerce-form-login .woocommerce-form__input-checkbox {
        background-color: #3a3a3a;
        border-color: #555;
    }
    
    .woocommerce-form-login .woocommerce-button:hover {
        background-color: #005a87;
    }
    
    .woocommerce-form-login .lost_password a {
        color: #4dabf7;
    }
    
    .woocommerce-form-login .lost_password a:hover {
        color: #339af0;
    }
    
    .woocommerce-form-login .woocommerce-LostPassword {
        border-top-color: #404040;
    }
}

/* Accessibility Improvements */
.woocommerce-form-login .woocommerce-Input:focus-visible {
    outline: 2px solid #702cdd;
    outline-offset: 2px;
}

.woocommerce-form-login .show-password-input:focus-visible {
    outline: 2px solid #702cdd;
    outline-offset: 2px;
}

.woocommerce-form-login .woocommerce-form__input-checkbox:focus-visible {
    outline: 2px solid #702cdd;
    outline-offset: 2px;
}

.woocommerce-form-login .woocommerce-button:focus-visible {
    outline: 2px solid #702cdd;
    outline-offset: 2px;
}

/* Loading State */
.woocommerce-form-login.is-submitting .woocommerce-button {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.woocommerce-form-login.is-submitting .woocommerce-button::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: woocommerce-form-spin 1s linear infinite;
}

@keyframes woocommerce-form-spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* Error Messages */
.woocommerce-form-login .woocommerce-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    list-style: none;
}

.woocommerce-form-login .woocommerce-error li {
    margin: 5px 0;
}

.woocommerce-form-login .woocommerce-error::before {
    content: '⚠️';
    margin-right: 8px;
}

/* Form Field Group Animation */
.woocommerce-form-login .woocommerce-form-row {
    animation: woocommerce-form-slide-in 0.3s ease-out;
    animation-fill-mode: both;
}

.woocommerce-form-login .woocommerce-form-row:nth-child(1) {
    animation-delay: 0.1s;
}

.woocommerce-form-login .woocommerce-form-row:nth-child(2) {
    animation-delay: 0.2s;
}

.woocommerce-form-login .form-row:last-child {
    animation-delay: 0.3s;
}

@keyframes woocommerce-form-slide-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Single page review tab page ===================== */
#tab-reviews {
    padding: 30px 0;
}

#reviews {
    max-width: 900px;
    margin: 0 auto;
}

.woocommerce-Reviews-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.woocommerce-Reviews .commentlist {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.woocommerce-Reviews .commentlist li {
    margin-bottom: 25px;
}
.comment_container {
    display: flex;
    gap: 15px;
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
}

.comment_container .avatar {
    border-radius: 50%;
    flex-shrink: 0;
}

.comment-text {
    flex: 1;
}

.comment-text .meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.comment-text .woocommerce-review__author {
    font-weight: 600;
    color: #222;
}

.comment-text .star-rating {
    margin-bottom: 6px;
}

.star-rating {
    color: #f5a623;
}

.comment-text .description {
    font-size: 15px;
    color: #333;
}
#review_form_wrapper {
    margin-top: 40px;
    background: #fdfdfd;
    padding: 25px;
    border-radius: 8px;
}

#reply-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.comment-form p {
    margin-bottom: 15px;
}

.comment-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.comment-form textarea {
    min-height: 120px;
}

.comment-form-rating .stars a {
    font-size: 18px;
    margin-right: 4px;
    color: #ccc;
}

.comment-form-rating .stars a:hover,
.comment-form-rating .stars a.active {
    color: #f5a623;
}
.comment-form .submit {
    background: #000;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.comment-form .submit:hover {
    background: #222;
}

@media (max-width: 768px) {
    .comment_container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Front/Home page related,sale,... products carousel ===================== */
.bw-carousel-section {
    margin-bottom: 2rem;
}

.bw-carousel-container {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bw-carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.bw-carousel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    position: relative;
    padding-bottom: 0.5rem;
}

.bw-carousel-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #6d28d9;
}

.bw-carousel-nav {
    display: flex;
    gap: 10px;
}

.bw-carousel-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: #666;
}

.bw-carousel-btn:hover {
    background: #6d28d9;
    border-color: #6d28d9;
    color: white;
}

.bw-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f5f5f5;
}

.bw-carousel-btn:disabled:hover {
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #666;
}

.bw-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.bw-carousel-track {
    display: flex;
    gap: 15px;
    transition: transform 0.4s ease;
}

.bw-carousel-item {
    flex: 0 0 auto;
    width: calc(16.666% - 12.5px); /* 6 items */
}

.bw-product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bw-product-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.bw-product-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background: #f9f9f9;
}

.bw-product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bw-product-card:hover .bw-product-image-wrapper img {
    transform: scale(1.1);
}

.bw-sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #6d28d9;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bw-product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.bw-product-card:hover .bw-product-actions {
    opacity: 1;
    transform: translateX(0);
}

.bw-action-btn {
    width: 36px;
    height: 36px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    color: #666;
    position: relative;
}

.bw-action-btn:hover {
    background: #ff4444;
    color: white;
    transform: scale(1.1);
}
.bw-product-image-wrapper .bw-action-btn img {
    top: 8px !important;
    left: 8px !important;
}
.bw-product-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bw-product-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bw-product-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bw-product-title a:hover {
    color: #6d28d9;
}

.bw-product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff4444;
    margin-top: auto;
}

.bw-product-price del {
    font-size: 0.85rem;
    color: #999;
    margin-right: 8px;
    font-weight: 400;
}

/* Responsive Breakpoints */
@media (max-width: 1400px) {
    .bw-carousel-item {
        width: calc(20% - 12px); /* 5 items */
    }
}

@media (max-width: 1200px) {
    .bw-carousel-item {
        width: calc(25% - 11.25px); /* 4 items */
    }
}

@media (max-width: 992px) {
    .bw-carousel-item {
        width: calc(33.333% - 10px); /* 3 items */
    }

    .bw-carousel-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .bw-carousel-item {
        width: calc(50% - 7.5px); /* 2 items */
    }

    .bw-carousel-container {
        padding: 1rem;
    }

    .bw-carousel-title {
        font-size: 1.2rem;
    }

    .bw-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .bw-product-actions {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .bw-carousel-item {
        width: calc(50% - 7.5px); /* 2 items on mobile */
    }

    .bw-product-content {
        padding: 12px;
    }

    .bw-product-title {
        font-size: 0.85rem;
    }

    .bw-product-price {
        font-size: 1rem;
    }
}

/* Default desktop layout stays the same */
.gutters-5.row-cols-2.row-cols-lg-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}
@media (max-width: 768px) {
    .gutters-5.row-cols-2.row-cols-lg-1 {
        grid-template-columns: repeat(2, 1fr);
    }
    .row-cols-2>* {
        max-width: 100% !important;
    }
    .slick-slide img {
        width: 100% !important;
        height: auto !important;
    }
    .slick-slide {
        padding: 0 !important;
    }
}


/* From style.css page ===================== */
/* Fly and search results */
.sony-ecommerce-flying-item {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    font-size: 22px;
    transition: all 0.8s ease-in-out;
}
/* Text Utilities */
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-truncate-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.text-reset {
    color: inherit !important;
}

.text-primary { color: var(--primary) !important; }
.text-white { color: #fff !important; }

/* Font Weight */
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }

/* Font Size */
.fs-12 { font-size: 0.75rem !important; }
.fs-13 { font-size: 0.8125rem !important; }
.fs-14 { font-size: 0.875rem !important; }
.fs-15 { font-size: 0.9375rem !important; }
.fs-16 { font-size: 1rem !important; }

/* Line Height */
.lh-1-4 { line-height: 1.4 !important; }

/* Display */
.d-block { display: block !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-none { display: none !important; }

/* Flexbox */
.align-items-center { align-items: center !important; }
.align-items-baseline { align-items: baseline !important; }
.justify-content-space-between { justify-content: space-between !important; }

/* Spacing */
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: 0.25rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mr-3 { margin-right: 1rem !important; }
.ml-auto { margin-left: auto !important; }

.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }

/* Borders */
.border { border: 1px solid #e2e5ec !important; }
.border-light { border: 1px solid var(--light) !important; }
.border-bottom { border-bottom: 1px solid #e2e5ec !important; }
.rounded { border-radius: 0.25rem !important; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; }

/* Background */
.bg-white { background-color: #fff !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-soft-primary { background-color: var(--soft-primary) !important; }

/* Opacity */
.opacity-50 { opacity: 0.5 !important; }
.opacity-60 { opacity: 0.6 !important; }
.opacity-70 { opacity: 0.7 !important; }

/* Position */
.position-relative { position: relative !important; }
.position-static { position: static !important; }
.absolute-top-right {
    position: absolute;
    top: 0;
    right: 0;
}

/* Width & Height */
.h-35px { height: 35px !important; }
.h-60px { height: 60px !important; }
.h-140px { height: 140px !important; }
.h-210px { height: 210px !important; }

/* Transitions */
.has-transition {
    transition: all 0.3s ease;
}

/* Hover Effects */
.hov-shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

/* Container */
.container {
    width: 100%;
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 1500px) {
    .container {
        max-width: 1400px !important;
    }
}
.col,
[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Lists */
.list-unstyled {
    padding-left: 0;
    list-style: none;
}

/* Category Menu */
.aiz-category-menu {
    background-color: #fff;
    border-radius: 0.25rem;
}

.all-category {
    position: relative;
}

.categories {
    overflow: auto;
}

.no-scrollbar::-webkit-scrollbar {
    width: 0;
}

.category-nav-element {
    position: relative;
}

.cat-image {
    margin-right: 0.5rem;
}

.cat-name {
    display: inline-block;
}

.sub-cat-menu {
    position: absolute;
}

.c-preloader {
    text-align: center;
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Card Columns */
.card-columns {
    column-count: 2;
}

.card {
    border: 1px solid #ebedf2;
    margin-bottom: 1rem;
}

.card.shadow-none {
    box-shadow: none !important;
}

.card.border-0 {
    border: 0 !important;
}

/* Image Utilities */
.img-fit {
    max-height: 100%;
    width: 100%;
    object-fit: cover;
}

.lazyloaded {
    opacity: 1;
}

/* Slick Carousel */
.slick-slider {
    position: relative;
}

.slick-list {
    overflow: hidden;
}

.slick-track {
    display: flex;
}

.slick-slide {
    outline: none;
}

.slick-arrow {
    position: absolute;
    z-index: 10;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    padding: 0;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.slick-dots button {
    font-size: 0;
    border: 0;
    background: #ddd;
    padding: 5px;
    cursor: pointer;
}

.slick-active button {
    background: var(--primary);
}

/* Badge */
.badge-custom {
    display: inline-block;
    padding: 3px;
    font-size: 11px;
    border-radius: 0 50em 50em 0;
    color: #ff0000;
    font-weight: 600;
    line-height: 26px;
    position: absolute;
    background: #fff;
    z-index: 1;
    top: 0px;
    box-shadow: 2px 1px 6px 2px rgba(0, 0, 0, 0.1);
}

.badge-custom .box {
    height: 26px;
    width: 26px;
    background: #ff0000;
    color: #fff;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
}

.badge-success {
    background-color: var(--success);
    color: #fff;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 11px;
}

/* Product Card */
.aiz-card-box {
    overflow: hidden;
    transition: all 0.3s ease;
}

.aiz-p-hov-icon a {
    display: block;
    height: 32px;
    width: 32px;
    line-height: 32px;
    border-radius: 50%;
    text-align: center;
    background: #fff;
    margin-top: 5px;
    margin-right: 5px;
    color: #333;
    font-size: 15px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.aiz-p-hov-icon a:hover {
    background: var(--primary);
    color: #fff;
}

/* Rating */
.rating i {
    color: #c3c3c5;
    font-size: 1rem;
    letter-spacing: -1px;
}

.rating i.active {
    color: #ffa707;
}

.rating-sm i {
    font-size: 0.8125rem;
}

/* Button */
.btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-sm {
    padding: 0.416rem 1rem;
    font-size: 0.8125rem;
}

/* Responsive Grid */
@media (min-width: 576px) {
    .container { max-width: 540px; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
}

@media (min-width: 768px) {
    .container { max-width: 720px; }
    .col-md { flex: 1 1 0%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .h-md-210px { height: 210px !important; }
}

@media (min-width: 992px) {
    .container { max-width: 960px; }
    .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .d-lg-block { display: block !important; }
    .h-lg-80px { height: 80px !important; }
    .h-lg-400px { height: 400px !important; }
}

@media (min-width: 1200px) {
    .container { max-width: 1140px; }
}

/* Utility Classes for Specific Elements */
.minw-0 { min-width: 0; }
.mw-100 { max-width: 100% !important; }
.overflow-hidden { overflow: hidden !important; }
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }

/* Row Columns */
.row-cols-1 > * { flex: 0 0 100%; max-width: 100%; }
.row-cols-2 > * { flex: 0 0 50%; max-width: 50%; }
.row-cols-4 > * { flex: 0 0 25%; max-width: 25%; }

@media (min-width: 768px) {
    .row-cols-md-3 > * { flex: 0 0 33.333333%; max-width: 33.333333%; }
}

@media (min-width: 992px) {
    .row-cols-lg-4 > * { flex: 0 0 25%; max-width: 25%; }
    .row-cols-lg-6 > * { flex: 0 0 16.666667%; max-width: 16.666667%; }
}

/* Custom Scrollbar */
.c-scrollbar-light::-webkit-scrollbar {
    width: 4px;
}

.c-scrollbar-light::-webkit-scrollbar-thumb {
    background: rgba(24, 28, 41, 0.1);
    border-radius: 3px;
}

/* Hover Container */
.hov-container .hov-box {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.hov-container:hover .hov-box {
    visibility: visible;
    opacity: 1;
}



/* Parent list item positioning */
.category-nav-element {
    position: relative;
}

/* default hidden */
.category-nav-element .sub-cat-menu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 280px;
    max-width: 520px;
    background: #fff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: all .2s ease-in-out;
    white-space: normal;
    overflow: hidden;
}

/* show on hover */
.category-nav-element:hover > .sub-cat-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* FIX WRAP PROBLEM – override Bootstrap card-columns */
.sub-cat-menu .card-columns {
    column-count: unset !important;
    column-gap: 0 !important;

    display: flex !important;
    flex-wrap: wrap !important;
}

/* child cards wrap */
.sub-cat-menu .card {
    width: 50%;
    box-sizing: border-box;
}

/* mobile responsive */
@media (max-width: 992px) {
    .category-nav-element .sub-cat-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        max-width: 100%;
        box-shadow: none;
    }

    .sub-cat-menu .card {
        width: 100%;
    }
}

/* Hero section hover Sub-category menu styles */
.aiz-category-menu .category-nav-element:hover .sub-cat-menu {
    display: block;
}
ul.list-unstyled.mb-0.row.gutters-5 li {
    padding: 2px !important;
}
.aiz-category-menu .sub-cat-menu {
    display: none;
    position: absolute;
    width: calc(100% - 25%);
    left: calc(25% - 10px);
    height: calc(100% + 20px);
    overflow: hidden;
    top: 0;
    z-index: 9;
    background-color: #fff;
    overflow-y: auto;
}
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}
.c-scrollbar-light, .uppy-Dashboard-files, .bootstrap-select .dropdown-menu .inner {
    scrollbar-color: rgba(24, 28, 41, 0.08);
    scrollbar-width: thin;
}
.p-4 {
    padding: 1.5rem !important;
}
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}
.rounded {
    border-radius: .25rem !important;
}


/* Slick slider css */
.aiz-carousel {
    position: relative;
    /* max-width: 791px; */
    margin: 0 auto;
}

.slick-list {
    overflow: hidden;
    position: relative;
}

.slick-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slick-slide {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.slick-slide.slick-active {
    opacity: 1;
}

.carousel-box {
    padding: 0 10px;
}

.carousel-box img {
    width: 100%;
    height: 315px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.slick-arrow:hover {
    background: rgba(255,255,255,1);
}

.slick-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.slick-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    list-style: none;
}

.slick-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: transparent;
    cursor: pointer;
    font-size: 0;
    transition: all 0.3s;
}

.slick-dots .slick-active button {
    background: #333;
    border-color: #333;
    transform: scale(1.2);
}

.rounded {
    border-radius: 8px;
}

.shadow-sm {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.overflow-hidden {
    overflow: hidden;
}






/* New carousel section style */
.bw-carousel-section .bw-carousel-box .badge-custom {
    background-color: #6d28d9;
    color: #fff;
    padding: 3px 6px;
    font-size: 12px;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.bw-carousel-section .aiz-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.bw-carousel-section .bw-carousel-box img {
    height: 180px;
    object-fit: contain;
}
.bw-aiz-carousel.gutters-10.half-outside-arrow {
    display: flex;
}

/* Checkout page ===================== */
.woocommerce-billing-fields__field-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.checkout.woocommerce-checkout .form-row {
    display: grid;
}
.woocommerce-billing-fields__field-wrapper .form-row {
    width: 100%;
}

.woocommerce-billing-fields__field-wrapper input,
.woocommerce-billing-fields__field-wrapper select,
.woocommerce-billing-fields__field-wrapper textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
}

.woocommerce-billing-fields__field-wrapper label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

@media (max-width: 992px) {
    .woocommerce-billing-fields__field-wrapper {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .woocommerce .checkout {
        padding: 0 12px;
    }

    .woocommerce-billing-fields__field-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .woocommerce-billing-fields__field-wrapper label {
        font-size: 13px;
    }

    .woocommerce-billing-fields__field-wrapper input,
    .woocommerce-billing-fields__field-wrapper select,
    .woocommerce-billing-fields__field-wrapper textarea {
        padding: 9px 10px;
    }
}

@media (max-width: 480px) {
    .woocommerce .checkout {
        padding: 0 8px;
    }

    .woocommerce-billing-fields__field-wrapper {
        gap: 10px;
    }
}



/* Cart page ===================== */

