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

body.woocommerce-cart .entry-header {
    display: none !important;
}

:root {
    --ecom-primary: #fca204;
    --ecom-primary-dark: #e08f00;
    --ecom-primary-light: #fff8e6;
    --ecom-secondary: #ff4444;
    --ecom-success: #16a34a;
    --ecom-danger: #dc2626;
    --ecom-text: #333333;
    --ecom-text-light: #666666;
    --ecom-text-lighter: #b8b8b8;
    --ecom-bg: #ffffff;
    --ecom-bg-light: #f9f9f9;
    --ecom-bg-gray: #f5f5f5;
    --ecom-border: #eeeeee;
    --ecom-border-light: #f0f0f0;
    --ecom-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --ecom-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --ecom-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --ecom-radius: 6px;
    --ecom-radius-lg: 10px;
    --ecom-radius-full: 9999px;
    --ecom-transition: 0.25s ease;
    --ecom-font: 'Raleway', sans-serif;
    --ecom-container: 95%;
    --ecom-space-xs: 4px;
    --ecom-space-sm: 8px;
    --ecom-space-md: 16px;
    --ecom-space-lg: 24px;
    --ecom-space-xl: 32px;
    --ecom-space-2xl: 48px;
    --ecom-space-3xl: 64px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--ecom-font);
    color: var(--ecom-text);
    background: var(--ecom-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--ecom-primary);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--ecom-primary-dark);
}

.ecom-container {
    width: 100%;
}

.ecom-section {
    padding-top: var(--ecom-space-xl);
    padding-bottom: var(--ecom-space-xl);
}

.ecom-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--ecom-space-lg);
    flex-wrap: wrap;
    gap: var(--ecom-space-sm);
    border-bottom: 2px solid var(--ecom-primary);
    padding-bottom: var(--ecom-space-sm);
}

.ecom-section__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ecom-text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--ecom-space-sm);
}

.ecom-section__view-all {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ecom-primary);
    text-decoration: none;
    transition: color var(--ecom-transition);
}

.ecom-section__view-all:hover {
    color: var(--ecom-primary-dark);
}

.ecom-section__footer {
    text-align: center;
    margin-top: var(--ecom-space-lg);
}

.ecom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--ecom-space-sm);
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--ecom-font);
    border: 2px solid transparent;
    border-radius: var(--ecom-radius);
    cursor: pointer;
    transition: all var(--ecom-transition);
    text-decoration: none;
    line-height: 1.4;
    min-height: 42px;
}

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

.ecom-btn--primary:hover,
.ecom-btn--primary:focus {
    background: var(--ecom-primary-dark);
    border-color: var(--ecom-primary-dark);
}

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

.ecom-btn--secondary:hover,
.ecom-btn--secondary:focus {
    background: #cc3333;
    border-color: #cc3333;
}

.ecom-btn--outline {
    background: transparent;
    color: var(--ecom-primary);
    border-color: var(--ecom-primary);
}

.ecom-btn--outline:hover,
.ecom-btn--outline:focus {
    background: var(--ecom-primary);
    color: #fff;
}

.ecom-btn--outline-dark {
    background: #333;
    color: #fff;
    border-color: #333;
}

.ecom-btn--outline-dark:hover,
.ecom-btn--outline-dark:focus {
    background: var(--ecom-primary);
    border-color: var(--ecom-primary);
}

.ecom-btn--disabled {
    background: var(--ecom-bg-gray);
    color: var(--ecom-text-lighter);
    border-color: var(--ecom-border);
    cursor: not-allowed;
    opacity: 0.7;
}

.ecom-btn--sm {
    padding: 6px 14px;
    font-size: 0.8125rem;
    min-height: 36px;
}

.ecom-front-page {
    overflow: hidden;
    margin: 20px 0 0px 0;
}

.ecom-hero-top-wrapper {
    display: flex;
    gap: var(--ecom-space-md);
    align-items: flex-start;
}

.ecom-category-sidebar {
    width: 25%;
    flex-shrink: 0;
    background: var(--ecom-bg);
    border: 1px solid var(--ecom-border);
    border-radius: var(--ecom-radius);
    overflow: hidden;
}

.ecom-category-sidebar__header {
    background: var(--ecom-primary);
    color: #fff;
    padding: 12px 16px;
    font-size: 0.9375rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--ecom-space-sm);
}

.ecom-category-sidebar__header svg {
    width: 20px;
    height: 20px;
}

.ecom-category-sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0;
    min-height: 301px;
    max-height: 350px;
    overflow-y: auto;
}

.ecom-category-sidebar__list::-webkit-scrollbar {
    width: 4px;
}

.ecom-category-sidebar__list::-webkit-scrollbar-thumb {
    background: var(--ecom-border);
    border-radius: 2px;
}

.ecom-category-sidebar__item {
    border-bottom: 1px solid var(--ecom-border-light);
}

.ecom-category-sidebar__item:last-child {
    border-bottom: none;
}

.ecom-category-sidebar__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--ecom-text);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all var(--ecom-transition);
}

.ecom-category-sidebar__link:hover {
    background: var(--ecom-primary-light);
    color: var(--ecom-primary-dark);
    padding-left: 20px;
}

.ecom-category-sidebar__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ecom-primary);
}

.ecom-category-sidebar__icon svg {
    width: 18px;
    height: 18px;
}

.ecom-category-sidebar__name {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ecom-category-sidebar__count {
    font-size: 0.6875rem;
    color: var(--ecom-text-lighter);
    background: var(--ecom-bg-gray);
    padding: 2px 6px;
    border-radius: 10px;
}

.ecom-hero-slider-wrapper {
    flex: 1;
    min-width: 0;
}

.ecom-hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--ecom-radius);
    height: 350px;
}

.ecom-hero-slider__track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.ecom-hero-slider__slide {
    min-width: 100%;
    position: relative;
}

.ecom-hero-slider__link {
    display: block;
}

.ecom-hero-slider__image {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
    border-radius: var(--ecom-radius);
}

.ecom-hero-slider__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--ecom-radius);
}

.ecom-hero-slider__title {
    color: #fff;
    font-size: clamp(1.25rem, 3vw, 2rem);
    text-align: center;
    padding: var(--ecom-space-lg);
}

.ecom-hero-slider__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--ecom-space-sm);
    z-index: 2;
}

.ecom-hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: var(--ecom-radius-full);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--ecom-transition);
}

.ecom-hero-slider__dot.is-active {
    background: var(--ecom-primary);
    width: 24px;
}

.ecom-hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: var(--ecom-radius-full);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all var(--ecom-transition);
    box-shadow: var(--ecom-shadow);
    color: var(--ecom-text);
}

.ecom-hero-slider__arrow:hover {
    background: var(--ecom-primary);
    color: #fff;
}

.ecom-hero-slider__arrow--prev {
    left: 12px;
}

.ecom-hero-slider__arrow--next {
    right: 12px;
}

.ecom-hot-deals {
}

.ecom-hot-deals__countdown {
    display: flex;
    align-items: center;
    gap: var(--ecom-space-sm);
}

.ecom-hot-deals__countdown-label {
    font-size: 0.8125rem;
    color: var(--ecom-text-light);
    white-space: nowrap;
}

.ecom-hot-deals__timer {
    display: flex;
    align-items: center;
    gap: 2px;
}

.ecom-hot-deals__time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--ecom-secondary);
    color: #fff;
    border-radius: var(--ecom-radius);
    padding: 4px 6px;
    min-width: 38px;
}

.ecom-hot-deals__time-value {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.2;
}

.ecom-hot-deals__time-label {
    font-size: 0.5rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.ecom-hot-deals__time-sep {
    font-weight: 700;
    color: var(--ecom-secondary);
    font-size: 1rem;
}

.ecom-hot-deals__carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.ecom-hot-deals__carousel {
    display: flex;
    gap: var(--ecom-space-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: var(--ecom-space-sm) 0;
}

.ecom-hot-deals__carousel::-webkit-scrollbar {
    display: none;
}

.ecom-hot-deals__carousel .ecom-product-card {
    flex: 0 0 calc(25% - 12px);
    min-width: 220px;
    scroll-snap-align: start;
}

.ecom-hot-deals__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: var(--ecom-radius-full);
    background: var(--ecom-bg);
    border: 1px solid var(--ecom-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all var(--ecom-transition);
    box-shadow: var(--ecom-shadow);
    color: var(--ecom-text);
}

.ecom-hot-deals__nav:hover {
    background: var(--ecom-primary);
    color: #fff;
    border-color: var(--ecom-primary);
}

.ecom-hot-deals__nav--prev {
    left: 0;
}

.ecom-hot-deals__nav--next {
    right: 0;
}

.ecom-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--ecom-space-md);
}

.ecom-products-grid--5col {
    grid-template-columns: repeat(2, 1fr);
}

.ecom-product-card {
    background: var(--ecom-bg);
    border-radius: var(--ecom-radius);
    border: 1px solid var(--ecom-border);
    overflow: hidden;
    position: relative;
    transition: all var(--ecom-transition);
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: var(--ecom-space-md);
}

.ecom-product-card:hover {
    box-shadow: var(--ecom-shadow-md);
    border-color: #ddd;
    transform: translateY(-2px);
}

.ecom-product-card__badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1;
}

.ecom-product-card__badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: var(--ecom-radius);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.ecom-product-card__badge--sale {
    background: var(--ecom-secondary);
    color: #fff;
}

.ecom-product-card__badge--new {
    background: var(--ecom-success);
    color: #fff;
}

.ecom-product-card__badge--featured {
    background: var(--ecom-primary);
    color: #fff;
}

.ecom-product-card__badge--out-of-stock {
    background: var(--ecom-text-lighter);
    color: #fff;
}

.ecom-product-card__discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--ecom-secondary);
    color: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
    z-index: 1;
}

.ecom-product-card__discount-badge span {
    font-size: 0.5625rem;
    font-weight: 600;
}

.ecom-product-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ecom-product-card__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: var(--ecom-bg-gray);
    overflow: hidden;
    border-radius: var(--ecom-radius);
    margin-bottom: var(--ecom-space-sm);
}

.ecom-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--ecom-transition);
}

.ecom-product-card__image--hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.ecom-product-card__title {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ecom-text);
    margin: 0 0 var(--ecom-space-xs);
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    height: 57px;
}

.ecom-product-card__price {
    margin-bottom: var(--ecom-space-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.ecom-product-card__price-current {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ecom-primary);
}

.ecom-product-card__price-current del {
    font-size: 0.8125rem;
    color: var(--ecom-text-lighter);
    font-weight: 400;
    margin-right: var(--ecom-space-xs);
}

.ecom-product-card__price-current ins {
    text-decoration: none;
}

.ecom-product-card__price-old {
    text-decoration: line-through;
    color: var(--ecom-text-lighter);
    font-size: 0.8125rem;
    font-weight: 400;
}

.ecom-product-card__price-new {
    font-weight: 700;
    color: var(--ecom-primary);
    font-size: 1.0625rem;
}

.ecom-product-card__price-savings {
    font-size: 0.75rem;
    color: var(--ecom-secondary);
    font-weight: 600;
}

.ecom-product-card__actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.ecom-product-card__btn-cart,
.ecom-product-card__btn-order {
    width: 100%;
    font-size: 0.8125rem;
    padding: 8px 12px;
    font-weight: 600;
    border-radius: var(--ecom-radius);
    cursor: pointer;
    transition: all var(--ecom-transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    font-family: var(--ecom-font);
    border: none;
}

.ecom-product-card__btn-cart {
    background: var(--ecom-primary);
    color: #fff;
    border: 2px solid var(--ecom-primary);
}

.ecom-product-card__btn-cart:hover {
    background: var(--ecom-primary-dark);
    border-color: var(--ecom-primary-dark);
}

.ecom-product-card__btn-order {
    background: #333;
    color: #fff;
    border: 2px solid #333;
}

.ecom-product-card__btn-order:hover {
    background: #555;
    border-color: #555;
}

.ecom-product-card__btn-disabled {
    width: 100%;
    font-size: 0.8125rem;
    padding: 8px 12px;
    font-weight: 600;
    border-radius: var(--ecom-radius);
    background: var(--ecom-bg-gray);
    color: var(--ecom-text-lighter);
    border: 1px solid var(--ecom-border);
    cursor: not-allowed;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecom-product-card.is-out-of-stock .ecom-product-card__image-wrap {
    opacity: 0.6;
}

.ecom-category-products-section {
    padding-top: var(--ecom-space-xl);
    padding-bottom: var(--ecom-space-xl);
}

.ecom-category-products-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--ecom-space-lg);
    padding-bottom: var(--ecom-space-sm);
    border-bottom: 2px solid var(--ecom-primary);
}

.ecom-category-products-section__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ecom-text);
    margin: 0;
    position: relative;
    padding-left: 14px;
}

.ecom-category-products-section__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 4px;
    background: var(--ecom-primary);
    border-radius: 2px;
}

.ecom-category-products-section__view-all {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ecom-primary);
    text-decoration: none;
    transition: color var(--ecom-transition);
    white-space: nowrap;
}

.ecom-category-products-section__view-all:hover {
    color: var(--ecom-primary-dark);
}

.ecom-category-products-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--ecom-space-md);
}

.ecom-trust-badges__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--ecom-space-md);
}

.ecom-trust-badges__item {
    display: flex;
    align-items: center;
    gap: var(--ecom-space-md);
    padding: var(--ecom-space-lg);
    background: var(--ecom-bg);
    border-radius: var(--ecom-radius);
    border: 1px solid var(--ecom-primary);
}

.ecom-trust-badges__icon {
    flex-shrink: 0;
    color: var(--ecom-primary);
    display: flex;
}

.ecom-trust-badges__content {
    min-width: 0;
}

.ecom-trust-badges__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ecom-text);
    margin: 0 0 2px;
}

.ecom-trust-badges__desc {
    font-size: 0.75rem;
    color: var(--ecom-text-light);
    margin: 0;
}

.ecom-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: var(--ecom-radius-full);
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ecom-shadow-lg);
    z-index: 9999;
    text-decoration: none;
    transition: transform var(--ecom-transition);
}

.ecom-whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.ecom-whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.ecom-mobile-category-toggle {
    display: none;
    width: 100%;
    padding: 12px 16px;
    background: var(--ecom-primary);
    color: #fff;
    border: none;
    border-radius: var(--ecom-radius);
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--ecom-font);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: var(--ecom-space-sm);
    margin-bottom: var(--ecom-space-md);
}

.ecom-mobile-category-toggle svg {
    width: 20px;
    height: 20px;
}

.ecom-footer-links {
    background: #222;
    color: #ccc;
    padding: var(--ecom-space-xl) 0;
}

.ecom-footer-links__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--ecom-space-lg);
}

.ecom-footer-links__col h4 {
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 var(--ecom-space-md);
    padding-bottom: var(--ecom-space-sm);
    border-bottom: 2px solid var(--ecom-primary);
    display: inline-block;
}

.ecom-footer-links__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ecom-footer-links__col ul li {
    margin-bottom: 6px;
}

.ecom-footer-links__col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color var(--ecom-transition);
}

.ecom-footer-links__col ul li a:hover {
    color: var(--ecom-primary);
}

.ecom-footer-bar {
    background: #111;
    color: #888;
    text-align: center;
    padding: var(--ecom-space-md);
    font-size: 0.8125rem;
}

#masthead {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    position: sticky !important;
    top: 0;
    z-index: 100;
}

#masthead > .ast-container {
    max-width: 100% !important;
    padding: 0 !important;
}

#ast-desktop-header,
#ast-mobile-header,
.ast-mobile-header-wrap,
.ast-main-header-wrap.main-header-bar-wrap,
.ast-mobile-popup-drawer,
.ast-mobile-popup-content,
.ast-hfb-header .ast-mobile-header-content {
    display: none !important;
}

#masthead .ast-primary-header-bar,
#masthead .ast-main-header-wrap,
#masthead .ast-desktop-header-content,
#masthead .ast-mobile-header-content,
#masthead .site-branding,
#masthead .ast-builder-menu-1,
#masthead .ast-builder-layout-element,
#masthead .ast-header-break-point .ast-mobile-header-wrap {
    display: none !important;
}

#masthead .ecom-top-bar,
#masthead .ecom-main-header,
#masthead .ecom-mobile-search {
    display: block !important;
}

.ast-header-break-point #masthead {
    padding: 0 !important;
}

#colophon {
    display: none !important;
}

.ecom-top-bar {
    background: #1a1a2e;
    color: #ccc;
    font-size: 0.8125rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ecom-top-bar .ecom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.ecom-top-bar__left ul,
.ecom-top-bar__right ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.ecom-top-bar a {
    color: #ccc;
    text-decoration: none;
    transition: color var(--ecom-transition);
}

.ecom-top-bar a:hover {
    color: var(--ecom-primary);
}

.ecom-top-bar span {
    color: #999;
    font-size: 0.75rem;
}

.ecom-top-bar__right a {
    color: #ddd;
}

.ecom-main-header {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid var(--ecom-border);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.ecom-main-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--ecom-space-lg);
}

.ecom-main-header__logo {
    flex-shrink: 0;
    max-width: 180px;
}

.ecom-main-header__logo img {
    max-height: 50px;
    width: auto;
}

.ecom-main-header__logo .ecom-site-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--ecom-primary);
    text-decoration: none;
    white-space: nowrap;
}

.ecom-main-header__search {
    flex: 1;
    max-width: 560px;
}

.ecom-search-form {
    display: flex;
    align-items: center;
    border: 2px solid var(--ecom-primary);
    border-radius: var(--ecom-radius);
    overflow: hidden;
    background: #fff;
    transition: box-shadow var(--ecom-transition);
}

.ecom-search-form:focus-within {
    box-shadow: 0 0 0 3px rgba(252, 162, 4, 0.15);
}

.ecom-search-form__input {
    flex: 1;
    border: none;
    padding: 10px 14px;
    font-size: 0.875rem;
    font-family: var(--ecom-font);
    outline: none;
    background: transparent;
    color: var(--ecom-text);
    min-width: 0;
}

.ecom-search-form__input::placeholder {
    color: var(--ecom-text-lighter);
}

.ecom-search-form__btn {
    background: var(--ecom-primary);
    color: #fff;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--ecom-transition);
    flex-shrink: 0;
}

.ecom-search-form__btn:hover {
    background: var(--ecom-primary-dark);
}

.ecom-main-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.ecom-cart-icon {
    position: relative;
    color: var(--ecom-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--ecom-radius);
    transition: all var(--ecom-transition);
}

.ecom-cart-icon:hover {
    background: var(--ecom-bg-gray);
    color: var(--ecom-primary);
}

.ecom-cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--ecom-primary);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.ecom-mobile-search {
    display: none;
    padding: 10px 0;
    background: var(--ecom-bg-gray);
    border-bottom: 1px solid var(--ecom-border);
}

.ecom-mobile-category-menu {
    position: fixed;
    inset: 0;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.ecom-mobile-category-menu.is-open {
    visibility: visible;
    opacity: 1;
}

.ecom-mobile-category-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.ecom-mobile-category-menu__panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.ecom-mobile-category-menu.is-open .ecom-mobile-category-menu__panel {
    transform: translateX(0);
}

.ecom-mobile-category-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--ecom-border);
    background: var(--ecom-primary);
    color: #fff;
}

.ecom-mobile-category-menu__header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.ecom-mobile-category-menu__close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
}

.ecom-mobile-category-menu__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ecom-mobile-category-menu__nav li {
    border-bottom: 1px solid var(--ecom-border-light);
}

.ecom-mobile-category-menu__nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--ecom-text);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all var(--ecom-transition);
}

.ecom-mobile-category-menu__nav a:hover {
    background: var(--ecom-primary-light);
    color: var(--ecom-primary-dark);
    padding-left: 20px;
}

.ecom-footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 30px 0 20px;
    margin-top: 50px;
}

.ecom-footer .ecom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ecom-footer__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.ecom-footer__links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--ecom-transition);
}

.ecom-footer__links a:hover {
    color: var(--ecom-primary);
}

.ecom-footer__copyright {
    text-align: center;
    font-size: 0.8125rem;
    color: #777;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    width: 100%;
}

.ecom-footer__copyright p {
    margin: 0;
}
