.elementor-665 .elementor-element.elementor-element-4a9f56d{--display:flex;}.elementor-665 .elementor-element.elementor-element-4a9f56d.e-con{--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-665 .elementor-element.elementor-element-4a9f56d{--width:67.455%;}}/* Start custom CSS for html, class: .elementor-element-1e32b6e *//* PAGE WRAPPER */
.shop-wrapper {
    font-family: 'Poppins', sans-serif;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    color: #fff;
}

/* TOP BAR */
.top-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}
.top-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.my-account {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.region-select {
    background: #222;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #444;
}

/* MAIN MENU */
.main-menu {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #333;
}
.main-menu a {
    color: #fff;
    margin-right: 16px;
    font-weight: 500;
    text-decoration: none;
}
.menu-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.search-bar {
    padding: 8px 12px;
    border-radius: 6px;
    border: none;
    width: 200px;
}
.cart-icon {
    font-size: 20px;
}

/* HERO BANNER */
.hero-banner {
    background: #444;
    height: 220px;
    margin-top: 30px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-text {
    font-size: 22px;
    opacity: .7;
}

/* SORTING TABS */
.sorting-tabs {
    margin-top: 30px;
    display: flex;
    gap: 14px;
}
.sorting-tabs .tab {
    padding: 8px 18px;
    border-radius: 25px;
    background: #222;
    border: 1px solid #666;
    cursor: pointer;
    color: #fff;
}
.sorting-tabs .active {
    background: #ffd55c;
    color: #000;
    border-color: #ffd55c;
    font-weight: 600;
}

/* PRODUCT GRID */
.product-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    color: #000;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    position: relative;
}
.product-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
}
.badge {
    background: #ff6060;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    position: absolute;
    top: 16px;
    left: 16px;
}
.subtitle {
    font-size: 14px;
    margin-bottom: 4px;
}
.desc {
    font-size: 13px;
    opacity: 0.75;
    margin-bottom: 10px;
}
.price {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 14px;
}
.btn-row {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.btn {
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}
.learn-more {
    background: #000;
    color: #fff;
}
.buy-now {
    background: #ffd55c;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */