

/* ==============================
   WRAPPER
============================== */
.woo-cat-wrapper {
    display: flex;
    gap: 30px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-sizing: border-box;
}

/* ==============================
   LEFT SIDEBAR
============================== */
/* ==============================
   RIGHT CONTENT
============================== */
.woo-cat-products {
    flex: 1;
}

/* ==============================
   PRODUCT GRID
============================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ==============================
   PRODUCT CARD
============================== */
.product-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

/* ==============================
   PRODUCT IMAGE
============================== */
.product-card img {
    max-width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 14px;
}

/* ==============================
   WISHLIST ICON (STATIC)
============================== */
.product-card::after {
    content: "♡";
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
    cursor: pointer;
}

/* ==============================
   RATING
============================== */
.product-card .rating {
    margin-bottom: 8px;
}

.star-rating span {
    color: #ffb400;
}

/* ==============================
   PRODUCT TITLE
============================== */
.product-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 10px 0;
    color: #111111;
}

/* ==============================
   PRICE
============================== */
.product-card .price {
    font-size: 16px;
    margin-bottom: 16px;
}

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

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

/* ==============================
   ADD TO CART BUTTON
============================== */
.product-card .button {
    width: 100%;
    background: #e11d2a !important;
    color: #ffffff !important;
    border-radius: 12px;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 600;
    border: none;
    text-transform: none;
}

.product-card .button:hover {
    background: #b91520 !important;
}

/* ==============================
   LOADING TEXT
============================== */
#woo-products p {
    font-size: 16px;
    font-weight: 600;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .woo-cat-wrapper {
        flex-direction: column;
        padding: 20px;
    }

    .woo-cat-sidebar {
        width: 100%;
    }

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


/* ===============================
   NEW ARRIVALS SECTION
================================ */
.new-arrivals-section {
    display: flex;
    background: #006d6f;
    padding: 70px 60px;
    gap: 50px;
    align-items: center;
}

/* ===============================
   LEFT SIDE
================================ */
.new-arrivals-left {
    max-width: 380px;
    position: relative;
}

.vertical-text {
    position: absolute;
    left: -90px;
    top: 50%;
    transform: rotate(-90deg) translateY(-50%);
    color: #e11d2a;
    font-size: 42px;
    font-weight: 700;
    transform-origin:left center;
}

.new-arrivals-left h2 {
    color: #111;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* ===============================
   VIEW MORE BUTTON
================================ */
.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e11d2a;
    color: #fff;
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.view-more-btn:hover {
    background: #b91520;
    color: #fff;
}

/* ===============================
   RIGHT PRODUCTS
================================ */
.new-arrivals-products {
    flex: 1;
}

/* ===============================
   PRODUCTS GRID
================================ */
.new-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ===============================
   PRODUCT CARD
================================ */
.new-product-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* ===============================
   BADGES
================================ */
.new-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #e11d2a;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 4px;
}

.wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #111;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
}

/* ===============================
   PRODUCT IMAGE
================================ */
.new-product-card img {
    height: 220px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* ===============================
   RATING
================================ */
.new-product-card .rating {
    margin-bottom: 8px;
}

.star-rating span {
    color: #ffb400;
}

/* ===============================
   TITLE
================================ */
.new-product-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 10px 0;
}

/* ===============================
   PRICE
================================ */
.new-product-card .price {
    margin-bottom: 16px;
}

.new-product-card del {
    color: #e11d2a;
    margin-right: 6px;
}

.new-product-card ins {
    text-decoration: none;
    color: #666;
}

/* ===============================
   ADD TO CART
================================ */
.new-product-card .button {
    width: 100%;
    background: #e11d2a !important;
    color: #fff !important;
    padding: 12px 0;
    border-radius: 10px;
    font-weight: 600;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
    .new-arrivals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .new-arrivals-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .vertical-text {
        position: static;
        transform: none;
        margin-bottom: 20px;
    }

    .new-arrivals-grid {
        grid-template-columns: 1fr;
    }
}


.custom-header-icons {
    display: flex;
    gap: 40px;
    align-items: center;
}

.header-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 18px;
}

.account { background: #0aa; }
.wishlist, .cart { background: #e63946; }

.count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}

.icon-text strong {
    font-size: 15px;
    display: block;
}

.icon-text span {
    font-size: 13px;
}

/* Mobile */
@media(max-width:768px){
    .icon-text{display:none;}
}
