.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* 1. Main Wrapper - Forces White Box & Spacing */
.cwg-wrapper-v2 {
    background-color: #ffffff !important; /* Force White Background */
    width: 100%;
    padding: 30px;
    border-radius: 8px;
    box-sizing: border-box;
    display: block; /* Ensures it takes up space */
}

/* 2. Filter Bar - Forces Row Layout */
.cwg-filter-bar-v2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.cwg-filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cwg-select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.cwg-filter-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 4px;
}

/* 3. The Grid - Forces 4 Columns */
.cwg-grid-v2 {
    display: grid;
    /* Responsive Grid: roughly 4 columns on desktop */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
    gap: 30px;
    width: 100%;
}

/* 4. Product Card - White on White (Clean Look) */
.cwg-card-v2 {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cwg-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* 5. Image Area */
.cwg-img-wrap {
    height: 250px;
    padding: 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cwg-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}

.cwg-card-v2:hover img {
    transform: scale(1.08);
}

/* 6. Text Details */
.cwg-details {
    padding: 15px 20px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cwg-cat {
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.cwg-title {
    font-size: 16px;
    font-weight: 600;
    margin: 5px 0;
    color: #333;
}
.cwg-title a { text-decoration: none; color: #333; }

.cwg-price {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-bottom: 15px;
}
/* Sale Price Strike-through */
.cwg-price del { opacity: 0.6; margin-right: 5px; font-size: 0.9em; }
.cwg-price ins { text-decoration: none; }

/* 7. Buttons */
.cwg-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.cwg-btn {
    flex: 1;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    text-decoration: none !important;
    transition: 0.3s;
    cursor: pointer;
    display: inline-block;
    line-height: 1.2;
}

/* Add to Cart - Blue */
.cwg-btn-cart {
    background-color: #007bff !important;
    color: #ffffff !important;
    border: 1px solid #007bff;
}
.cwg-btn-cart:hover {
    background-color: #0056b3 !important;
}

/* Buy Now - Black */
.cwg-btn-buy {
    background-color: #000000 !important;
    color: #ffffff !important;
}
.cwg-btn-buy:hover {
    background-color: #333333 !important;
}/* End custom CSS */