/*
Theme Name: ShopMax
Theme URI: https://example.com/shopmax
Author: Your Name
Author URI: https://example.com
Description: A universal e-commerce WordPress theme with WooCommerce support, Amazon/eBay style design for selling clothing, shoes, and accessories.
Version: 1.15.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shopmax
Tags: e-commerce, woocommerce, shop, store, responsive, custom-colors, custom-logo
*/

/* ========== CSS Variables ========== */
:root {
    --primary-color: #131921;
    --primary-light: #232f3e;
    --accent-color: #febd69;
    --accent-hover: #f3a847;
    --link-color: #007185;
    --link-hover: #c7511f;
    --price-color: #b12704;
    --sale-color: #cc0c39;
    --success-color: #067d62;
    --rating-color: #de7921;
    --dark-bg: #131921;
    --light-bg: #eaeded;
    --card-bg: #ffffff;
    --text-dark: #0f1111;
    --text-light: #565959;
    --text-muted: #888888;
    --white: #ffffff;
    --border-color: #ddd;
    --border-light: #f0f0f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 2px 5px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 15px rgba(0,0,0,0.15);
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.2s ease;
}

/* ========== Reset & Base ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: "Amazon Ember", Arial, sans-serif, 'Microsoft YaHei', '微软雅黑';
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

a {
    text-decoration: none;
    color: var(--link-color);
    transition: var(--transition);
}

a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(to bottom, #f7dfa5, #f0c14b);
    color: var(--text-dark);
    border: 1px solid #a88734;
}

.btn-primary:hover {
    background: linear-gradient(to bottom, #f5d78e, #eeb933);
    text-decoration: none;
}

.btn-cart {
    background: #ffd814;
    color: var(--text-dark);
    border: 1px solid #fcd200;
    border-radius: 20px;
}

.btn-cart:hover {
    background: #f7ca00;
}

.btn-buy {
    background: #ffa41c;
    color: var(--text-dark);
    border: 1px solid #ff8f00;
    border-radius: 20px;
}

.btn-buy:hover {
    background: #fa8900;
}


/* ========== Header - Amazon Style ========== */
.site-header {
    background: var(--dark-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Top Bar */
.header-top-bar {
    background: var(--primary-light);
    padding: 8px 0;
    font-size: 12px;
    color: var(--white);
    border-bottom: 1px solid #3a4553;
}

.header-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-bar a {
    color: var(--white);
    margin: 0 12px;
}

.header-top-bar a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Main Header */
.header-main {
    padding: 10px 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Logo */
.site-logo {
    flex-shrink: 0;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
}

.site-logo:hover {
    border-color: var(--white);
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--white);
}

.site-logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.site-logo .logo-suffix {
    color: var(--accent-color);
    font-size: 12px;
}

/* Delivery Location */
.deliver-to {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--white);
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.deliver-to:hover {
    border-color: var(--white);
}

.deliver-to .icon {
    font-size: 20px;
}

.deliver-to .text {
    font-size: 12px;
    color: #ccc;
}

.deliver-to .location {
    font-size: 14px;
    font-weight: 700;
}

/* Search Bar - Amazon Style */
.header-search {
    flex: 1;
    max-width: 800px;
}

.search-form {
    display: flex;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
}

.search-category {
    background: var(--light-bg);
    border: none;
    padding: 0 12px;
    font-size: 12px;
    color: var(--text-dark);
    border-right: 1px solid var(--border-color);
    cursor: pointer;
    min-width: 60px;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 15px;
    min-width: 0;
}

.search-form button {
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    padding: 0 18px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 20px;
}

.search-form button:hover {
    background: var(--accent-hover);
}

.search-form:focus-within {
    box-shadow: 0 0 0 3px var(--accent-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-action {
    display: flex;
    flex-direction: column;
    padding: 8px 10px;
    color: var(--white);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
}

.header-action:hover {
    border-color: var(--white);
    text-decoration: none;
    color: var(--white);
}

.header-action .label {
    font-size: 12px;
    color: #ccc;
}

.header-action .value {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

/* Cart */
.header-cart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    position: relative;
}

.header-cart .cart-icon {
    font-size: 32px;
    position: relative;
}

.header-cart .cart-count {
    position: absolute;
    top: -5px;
    right: 15px;
    background: var(--accent-color);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 700;
    padding: 0 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

.header-cart .cart-text {
    font-size: 14px;
    font-weight: 700;
}


/* ========== Navigation Bar ========== */
.nav-bar {
    background: var(--primary-light);
    padding: 0;
}

.nav-bar .container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 12px;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    background: none;
}

.nav-menu-toggle:hover {
    border-color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li a {
    display: block;
    padding: 10px 12px;
    color: var(--white);
    font-size: 14px;
    border: 1px solid transparent;
}

.nav-menu li a:hover {
    border-color: var(--white);
    text-decoration: none;
}

.nav-menu li.highlight a {
    color: var(--accent-color);
    font-weight: 700;
}

/* ========== Hero Carousel ========== */
.hero-section {
    position: relative;
    background: linear-gradient(to bottom, var(--primary-light) 0%, var(--primary-light) 50%, var(--light-bg) 50%, var(--light-bg) 100%);
}

.hero-carousel {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--light-bg), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    padding: 40px;
    color: var(--white);
}

.hero-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 100px;
    background: rgba(255,255,255,0.8);
    border: none;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    transition: var(--transition);
}

.hero-nav:hover {
    background: var(--white);
}

.hero-nav.prev { left: 0; }
.hero-nav.next { right: 0; }

/* ========== Category Cards Grid ========== */
.category-cards-section {
    margin-top: -100px;
    position: relative;
    z-index: 5;
    padding-bottom: 20px;
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.category-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.category-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.category-card-item {
    text-align: center;
}

.category-card-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 5px;
}

.category-card-item span {
    font-size: 12px;
    color: var(--text-dark);
}

.category-card .see-more {
    font-size: 13px;
    color: var(--link-color);
}

.category-card .see-more:hover {
    color: var(--link-hover);
}

/* Category Icon */
.category-icon {
    width: 100%;
    height: 80px;
    background: #f7f8f8;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 5px;
}

.category-card-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 5px;
}

/* Promo Banner */
.promo-banner {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.promo-banner.dark {
    background: linear-gradient(135deg, #232f3e, #37475a);
    color: #fff;
}

.promo-banner.light {
    background: linear-gradient(135deg, #febd69, #f3a847);
    color: #232f3e;
}

/* Product Placeholder */
.product-placeholder {
    width: 100%;
    height: 180px;
    background: #f7f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

/* Single Image Category Card */
.category-card.single-image .card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}


/* ========== Products Section ========== */
.products-section {
    padding: 20px 0;
    background: var(--light-bg);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-dark);
}

.section-header .view-all {
    font-size: 14px;
    color: var(--link-color);
}

/* Product Carousel */
.products-carousel {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.products-carousel-inner {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-carousel-inner::-webkit-scrollbar {
    display: none;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 100px;
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    box-shadow: var(--shadow-lg);
}

.carousel-nav.prev { left: 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.carousel-nav.next { right: 0; border-radius: var(--radius-sm) 0 0 var(--radius-sm); }

/* Product Card - Amazon Style */
.product-card {
    flex: 0 0 220px;
    background: var(--card-bg);
    padding: 15px;
    text-align: left;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow);
}

.product-image {
    position: relative;
    margin-bottom: 10px;
    text-align: center;
}

.product-image img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.02);
}

.product-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--sale-color);
    color: var(--white);
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 700;
}

.product-badge.deal {
    background: var(--sale-color);
}

.product-badge.bestseller {
    background: #e47911;
}

.product-badge.choice {
    background: var(--primary-light);
}

.product-info h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-info h3 a {
    color: var(--text-dark);
}

.product-info h3 a:hover {
    color: var(--link-hover);
}

/* Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.stars {
    color: var(--rating-color);
    font-size: 14px;
    letter-spacing: -1px;
}

.rating-count {
    color: var(--link-color);
    font-size: 13px;
}

.rating-count:hover {
    color: var(--link-hover);
}

/* Price */
.product-price {
    margin-bottom: 8px;
}

.price-current {
    font-size: 21px;
    font-weight: 400;
    color: var(--text-dark);
}

.price-current .symbol {
    font-size: 13px;
    vertical-align: top;
}

.price-current .decimal {
    font-size: 13px;
    vertical-align: top;
}

.price-original {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 5px;
}

.price-discount {
    color: var(--sale-color);
    font-size: 14px;
    font-weight: 500;
}

/* Delivery Info */
.delivery-info {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.delivery-info .free-delivery {
    color: var(--text-dark);
}

.delivery-info .prime {
    color: var(--link-color);
    font-weight: 700;
}

/* Stock Status */
.stock-status {
    font-size: 12px;
    margin-bottom: 8px;
}

.stock-status.in-stock {
    color: var(--success-color);
}

.stock-status.low-stock {
    color: var(--link-hover);
}


/* ========== Products Grid ========== */
.products-grid-section {
    padding: 20px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.products-grid .product-card {
    flex: none;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.products-grid .product-card:hover {
    box-shadow: var(--shadow-lg);
}

/* ========== Deal Section ========== */
.deals-section {
    padding: 20px 0;
}

.deals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.deals-header h2 {
    font-size: 21px;
    font-weight: 700;
}

.deals-tabs {
    display: flex;
    gap: 20px;
}

.deals-tabs a {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 14px;
    border-bottom: 3px solid transparent;
}

.deals-tabs a:hover,
.deals-tabs a.active {
    color: var(--link-hover);
    border-bottom-color: var(--link-hover);
    text-decoration: none;
}

.deal-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.deal-card .deal-image {
    position: relative;
    padding: 20px;
    background: var(--light-bg);
}

.deal-card .deal-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.deal-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--sale-color);
    color: var(--white);
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
}

.deal-timer {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 8px 12px;
    font-size: 13px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.deal-timer .time {
    font-weight: 700;
    color: var(--accent-color);
}

.deal-info {
    padding: 15px;
}

.deal-progress {
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    margin-bottom: 10px;
    overflow: hidden;
}

.deal-progress-bar {
    height: 100%;
    background: linear-gradient(to right, #c7511f, #e47911);
    border-radius: 3px;
}

.deal-claimed {
    font-size: 12px;
    color: var(--sale-color);
    margin-bottom: 10px;
}

/* ========== Features Bar ========== */
.features-bar {
    background: var(--card-bg);
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item .icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.feature-item p {
    font-size: 12px;
    color: var(--text-light);
}


/* ========== Footer - Amazon Style ========== */
.back-to-top {
    display: block;
    background: var(--primary-light);
    color: var(--white);
    text-align: center;
    padding: 15px;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.back-to-top:hover {
    background: #37475a;
    text-decoration: none;
    color: var(--white);
}

.site-footer {
    background: var(--dark-bg);
    color: var(--white);
}

.footer-main {
    padding: 40px 0;
    border-bottom: 1px solid #3a4553;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-widget h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #ddd;
    font-size: 14px;
}

.footer-widget ul li a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-middle {
    padding: 25px 0;
    border-bottom: 1px solid #3a4553;
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-locale {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-locale select,
.footer-locale button {
    background: transparent;
    border: 1px solid #848484;
    color: #ccc;
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    cursor: pointer;
}

.footer-locale select:hover,
.footer-locale button:hover {
    border-color: #aaa;
}

.footer-bottom {
    background: var(--primary-light);
    padding: 30px 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #ddd;
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    color: #999;
    font-size: 12px;
}

/* ========== Sidebar Filters ========== */
.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    padding: 20px 0;
}

.shop-sidebar {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    height: fit-content;
}

.filter-section {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.filter-section ul li {
    margin-bottom: 8px;
}

.filter-section ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.filter-section ul li a:hover {
    color: var(--link-hover);
}

.filter-section .checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
}

.price-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-range input {
    width: 70px;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.price-range button {
    padding: 8px 15px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* Star Rating Filter */
.star-filter {
    display: flex;
    align-items: center;
    gap: 5px;
}

.star-filter .stars {
    color: var(--rating-color);
}

.star-filter span {
    color: var(--link-color);
    font-size: 13px;
}


/* ========== WooCommerce Overrides ========== */
.woocommerce-content {
    padding: 20px 0;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.woocommerce ul.products li.product {
    background: var(--card-bg);
    padding: 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin: 0;
    width: auto;
    float: none;
}

.woocommerce ul.products li.product:hover {
    box-shadow: var(--shadow-lg);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px;
    font-weight: 400;
    padding: 0;
    margin-bottom: 8px;
}

.woocommerce ul.products li.product .price {
    color: var(--text-dark);
    font-size: 18px;
}

.woocommerce ul.products li.product .price del {
    color: var(--text-light);
    font-size: 13px;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    font-weight: 400;
}

.woocommerce ul.products li.product .onsale {
    background: var(--sale-color);
    color: var(--white);
    border-radius: 0;
    min-height: auto;
    min-width: auto;
    padding: 3px 8px;
    font-size: 12px;
    line-height: 1.5;
    top: 10px;
    left: 10px;
    right: auto;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button {
    background: #ffd814 !important;
    color: var(--text-dark) !important;
    border: 1px solid #fcd200 !important;
    border-radius: 20px !important;
    font-weight: 500;
    padding: 10px 20px;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background: #f7ca00 !important;
}

.woocommerce .star-rating {
    color: var(--rating-color);
}

/* Single Product */
.woocommerce div.product {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius);
}

.woocommerce div.product .product_title {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
}

.woocommerce div.product p.price {
    font-size: 28px;
    color: var(--price-color);
}

/* Cart */
.woocommerce-cart .woocommerce {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius);
}

.woocommerce table.shop_table {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}

.woocommerce table.shop_table th {
    background: var(--light-bg);
}

/* Checkout */
.woocommerce-checkout .woocommerce {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(254, 189, 105, 0.3);
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
    .category-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .header-main .container {
        flex-wrap: wrap;
    }
    
    .header-search {
        order: 10;
        width: 100%;
        max-width: none;
        margin-top: 10px;
    }
    
    .category-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 13px;
    }
    
    .deliver-to {
        display: none;
    }
    
    .header-action .label {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-slide {
        height: 250px;
    }
    
    .category-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .category-cards-section {
        margin-top: -50px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        flex: 0 0 160px;
    }
    
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
}


/* ========== Auth Page Styles ========== */
.shopmax-auth-page {
    min-height: 100vh;
    background: var(--light-bg);
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.auth-container {
    width: 100%;
    max-width: 400px;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
}

.auth-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.auth-tab {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.auth-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--accent-color);
}

.auth-header h1 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(254, 189, 105, 0.3);
}

.forgot-password {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: var(--link-color);
}

.btn-auth {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-signin {
    background: linear-gradient(to bottom, #f7dfa5, #f0c14b);
    color: var(--text-dark);
    border: 1px solid #a88734;
}

.btn-signin:hover {
    background: linear-gradient(to bottom, #f5d78e, #eeb933);
}

.btn-create,
.btn-signin-alt {
    background: var(--light-bg);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-create:hover,
.btn-signin-alt:hover {
    background: #e7e9ec;
}

.btn-register {
    background: linear-gradient(to bottom, #f7dfa5, #f0c14b);
    color: var(--text-dark);
    border: 1px solid #a88734;
}

.remember-me label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    cursor: pointer;
}

.auth-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    background: var(--card-bg);
    padding: 0 15px;
    position: relative;
    color: var(--text-light);
    font-size: 13px;
}

.auth-benefits {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.auth-benefits h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.auth-benefits ul {
    font-size: 13px;
    color: var(--text-light);
}

.auth-benefits li {
    margin-bottom: 5px;
}

.terms-notice {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 15px;
}

.terms-notice a {
    color: var(--link-color);
}

.password-hint {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
}

.form-info {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}


/* ========== Single Product Page Styles ========== */
.shopmax-single-product {
    background: var(--light-bg);
    padding: 20px 0 40px;
}

.shopmax-single-product .breadcrumb {
    padding: 10px 0 20px;
    font-size: 13px;
    color: var(--text-light);
}

.shopmax-single-product .breadcrumb a {
    color: var(--link-color);
}

.shopmax-single-product .breadcrumb span {
    margin: 0 5px;
}

.product-main {
    display: grid;
    grid-template-columns: 450px 1fr 300px;
    gap: 30px;
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--radius);
}

/* Product Gallery */
.product-gallery {
    display: flex;
    gap: 15px;
}

.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 60px;
}

.gallery-thumbnails .thumb {
    width: 60px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
}

.gallery-thumbnails .thumb:hover,
.gallery-thumbnails .thumb.active {
    border-color: var(--accent-color);
}

.gallery-thumbnails .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-main {
    flex: 1;
    position: relative;
}

.gallery-main .sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--sale-color);
    color: #fff;
    padding: 5px 12px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    z-index: 5;
}

.gallery-main .main-image {
    text-align: center;
}

.gallery-main .main-image img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
}

.image-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.image-actions button {
    width: 36px;
    height: 36px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.image-actions button:hover {
    background: var(--light-bg);
}

/* Product Info */
.product-info {
    padding-right: 20px;
}

.product-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-brand {
    font-size: 14px;
    color: var(--link-color);
    margin-bottom: 10px;
}

.product-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.product-rating-row .rating-value {
    color: var(--link-color);
    font-weight: 600;
}

.product-rating-row .stars {
    color: var(--rating-color);
}

.product-rating-row .separator {
    color: var(--border-color);
}

.bestseller-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.bestseller-badge .badge {
    background: #e47911;
    color: #fff;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
}

.bestseller-badge .category {
    font-size: 13px;
    color: var(--text-light);
}

.divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 15px 0;
}

/* Price Section */
.product-price-section {
    margin-bottom: 20px;
}

.price-deal .deal-badge {
    background: #cc0c39;
    color: #fff;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 8px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.price-current {
    color: var(--price-color);
}

.price-current .symbol {
    font-size: 14px;
    vertical-align: top;
}

.price-current .amount {
    font-size: 28px;
    font-weight: 400;
}

.price-was {
    font-size: 14px;
    color: var(--text-light);
}

.price-was .original {
    text-decoration: line-through;
}

.price-note {
    font-size: 14px;
    color: var(--link-color);
    margin-top: 5px;
}

/* Product Highlights */
.product-highlights {
    margin-top: 20px;
}

.product-highlights h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-highlights ul {
    padding-left: 20px;
}

.product-highlights li {
    margin-bottom: 8px;
    font-size: 14px;
    list-style: disc;
}


/* Buy Box */
.product-buy-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    height: fit-content;
}

.buybox-price {
    margin-bottom: 15px;
}

.buybox-price .price-label {
    font-size: 14px;
    color: var(--text-light);
}

.buybox-price .price-value {
    font-size: 18px;
    color: var(--price-color);
    font-weight: 500;
}

.buybox-delivery {
    margin-bottom: 15px;
    font-size: 14px;
}

.buybox-delivery .free-delivery {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.buybox-delivery .fastest-delivery {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.buybox-delivery .deliver-to {
    color: var(--link-color);
}

.buybox-stock {
    margin-bottom: 15px;
}

.buybox-stock .in-stock {
    color: var(--success-color);
    font-size: 18px;
}

.buybox-stock .low-stock {
    display: block;
    color: var(--sale-color);
    font-size: 13px;
    margin-top: 5px;
}

.buybox-stock .out-of-stock {
    color: var(--sale-color);
    font-size: 16px;
}

.buybox-quantity {
    margin-bottom: 15px;
}

.buybox-quantity label {
    font-size: 14px;
    margin-right: 10px;
}

.qty-select {
    padding: 8px 30px 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--light-bg);
    font-size: 14px;
    cursor: pointer;
}

.btn-add-to-cart {
    width: 100%;
    padding: 12px;
    background: #ffd814;
    border: 1px solid #fcd200;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: var(--transition);
}

.btn-add-to-cart:hover {
    background: #f7ca00;
}

.btn-buy-now {
    display: block;
    width: 100%;
    padding: 12px;
    background: #ffa41c;
    border: 1px solid #ff8f00;
    border-radius: 20px;
    font-size: 14px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 15px;
    transition: var(--transition);
}

.btn-buy-now:hover {
    background: #fa8900;
    text-decoration: none;
}

.buybox-secure {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.buybox-seller {
    font-size: 13px;
    margin-bottom: 15px;
}

.buybox-seller p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.buybox-seller .label {
    color: var(--text-light);
}

.buybox-seller .value {
    color: var(--link-color);
}

.buybox-gift {
    margin-bottom: 15px;
}

.buybox-gift label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.btn-wishlist {
    width: 100%;
    padding: 10px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-wishlist:hover {
    background: #e7e9ec;
}

/* Product Details Tabs */
.product-details-section {
    background: var(--card-bg);
    margin-top: 30px;
    padding: 25px;
    border-radius: var(--radius);
}

.details-tabs {
    display: flex;
    gap: 5px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--text-dark);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--accent-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.product-description {
    font-size: 14px;
    line-height: 1.8;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr:nth-child(even) {
    background: var(--light-bg);
}

.specs-table th,
.specs-table td {
    padding: 12px 15px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.specs-table th {
    width: 200px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Related Products */
.related-products-section {
    margin-top: 30px;
}

.related-products-section h2 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Responsive Single Product */
@media (max-width: 1200px) {
    .product-main {
        grid-template-columns: 400px 1fr;
    }
    
    .product-buy-box {
        grid-column: 1 / -1;
        max-width: 350px;
    }
}

@media (max-width: 992px) {
    .product-main {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        flex-direction: column-reverse;
    }
    
    .gallery-thumbnails {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }
    
    .product-buy-box {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 20px;
    }
    
    .price-current .amount {
        font-size: 24px;
    }
    
    .details-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
}


/* ========== Cart Page Styles ========== */
.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.woocommerce-cart .shop_table {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
}

.woocommerce-cart .shop_table th {
    background: var(--light-bg);
    padding: 15px;
    font-weight: 600;
}

.woocommerce-cart .shop_table td {
    padding: 20px 15px;
    vertical-align: middle;
}

.woocommerce-cart .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.woocommerce-cart .product-name a {
    color: var(--link-color);
    font-weight: 500;
}

.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal {
    font-weight: 600;
}

.woocommerce-cart .quantity .qty {
    width: 60px;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    text-align: center;
}

.woocommerce-cart .cart_totals {
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--radius);
    margin-top: 20px;
}

.woocommerce-cart .cart_totals h2 {
    font-size: 18px;
    margin-bottom: 20px;
}

.woocommerce-cart .cart_totals table {
    width: 100%;
}

.woocommerce-cart .cart_totals th,
.woocommerce-cart .cart_totals td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: #ffa41c;
    border: 1px solid #ff8f00;
    border-radius: 20px;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
    background: #fa8900;
    text-decoration: none;
}

/* ========== Checkout Page Styles ========== */
.woocommerce-checkout .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.woocommerce-checkout .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--radius);
}

.woocommerce-checkout h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.woocommerce-checkout .form-row {
    margin-bottom: 15px;
}

.woocommerce-checkout .form-row label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(254, 189, 105, 0.3);
}

.woocommerce-checkout #order_review_heading {
    margin-top: 30px;
}

.woocommerce-checkout .woocommerce-checkout-review-order {
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--radius);
    margin-top: 20px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
    width: 100%;
    margin-bottom: 20px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.woocommerce-checkout .woocommerce-checkout-payment {
    background: var(--light-bg);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 20px;
}

.woocommerce-checkout .wc_payment_methods {
    margin-bottom: 20px;
}

.woocommerce-checkout .wc_payment_method {
    padding: 15px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
}

.woocommerce-checkout .wc_payment_method label {
    font-weight: 500;
    cursor: pointer;
}

.woocommerce-checkout #place_order {
    width: 100%;
    padding: 15px;
    background: #ffd814;
    border: 1px solid #fcd200;
    border-radius: 20px;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.woocommerce-checkout #place_order:hover {
    background: #f7ca00;
}

/* ========== Order Confirmation ========== */
.woocommerce-order-received .woocommerce {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.woocommerce-order-received .woocommerce-thankyou-order-received {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}

.woocommerce-order-received .woocommerce-order-details {
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

/* ========== My Account Page ========== */
.woocommerce-account .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 250px;
    float: left;
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    border-bottom: 1px solid var(--border-color);
}

.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
    border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.woocommerce-account .woocommerce-MyAccount-navigation li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    background: var(--light-bg);
    color: var(--link-color);
    text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-content {
    margin-left: 280px;
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--radius);
    min-height: 400px;
}

@media (max-width: 768px) {
    .woocommerce-checkout .col2-set {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-account .woocommerce-MyAccount-navigation {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }
    
    .woocommerce-account .woocommerce-MyAccount-content {
        margin-left: 0;
    }
}
