/* Container & Grid */
.cwcas-wrapper { width: 100%; margin: 0 auto; font-family: inherit; }

/* Product Grid: 3 per row */
.cwcas-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    margin-top: 20px; 
    transition: opacity 0.2s ease;
}

.cwcas-grid.loading {
    opacity: 0.4;
    pointer-events: none;
}

@media (max-width: 992px) {
    .cwcas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cwcas-grid {
        grid-template-columns: 1fr;
    }
}

/* Filter Bar Component */
.cwcas-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0 25px 0;
}

.cwcas-filter-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cwcas-filter-label {
    font-size: 1rem;
    font-weight: 800;
    color: #000000;
}

.cwcas-category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cwcas-pill {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1.2;
    text-align: center;
}

.cwcas-pill:hover,
.cwcas-pill.active {
    background: #ff0000;
    color: #ffffff;
}

/* Search Wrapper */
.cwcas-search-wrapper {
    display: flex;
    align-items: center;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: 320px;
    height: 42px;
}

.cwcas-search-input {
    background: transparent !important;
    border: none !important;
    padding: 0 16px !important;
    font-size: 0.9rem !important;
    color: #333333 !important;
    outline: none !important;
    box-shadow: none !important;
    flex-grow: 1;
    height: 100% !important;
}

.cwcas-search-btn {
    background: #ff0000;
    border: none;
    color: #ffffff;
    width: 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cwcas-search-btn:hover {
    background: #cc0000;
}

/* Loader Spinner */
.cwcas-loader {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.cwcas-spinner {
    width: 36px;
    height: 36px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff0000;
    border-radius: 50%;
    animation: cwcasSpin 0.8s linear infinite;
}

@keyframes cwcasSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero Section */
.cwcas-hero-container {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 24px;
    gap: 20px;
    align-items: center;
}

.cwcas-hero-content { flex: 1 1 400px; }

h4.cwcas-hero-title {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #000000 !important;
    margin: 0 0 12px 0 !important;
    line-height: 1.2 !important;
}

.cwcas-hero-details {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 20px;
}
.cwcas-hero-details ul { padding-left: 20px; margin: 10px 0; }
.cwcas-hero-details li { margin-bottom: 4px; }

.cwcas-hero-img-wrapper {
    flex: 1 1 350px;
    height: 420px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f9f9f9;
}

.cwcas-puzzle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.puzzle-piece {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    will-change: transform, opacity;
}

/* Card Styling */
.cwcas-card {
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.cwcas-card-img {
    text-align: center;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cwcas-card-img img { max-height: 100%; max-width: 100%; object-fit: cover; }

.cwcas-card-body {
    background: #ff0000;
    color: #ffffff;
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cwcas-card-price { font-size: 0.85rem; text-transform: uppercase; margin-bottom: 5px; opacity: 0.9; }

/* Force H4 Titles to be Bold */
h4.cwcas-card-title { 
    color: #ffffff !important; 
    font-size: 1.15rem !important; 
    margin: 0 0 8px 0 !important; 
    font-weight: 800 !important; 
    line-height: 1.3 !important;
}

.cwcas-card-desc { font-size: 0.85rem; line-height: 1.3; margin-bottom: 15px; opacity: 0.95; }

/* Buttons */
.cwcas-card-actions, .cwcas-hero-actions { display: flex; gap: 10px; }
.cwcas-btn {
    padding: 8px 16px;
    border-radius: 50px 8px 50px 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: all 0.2s ease;
	border:2px solid transparent;
}
.cwcas-btn-white { background: #ffffff; color: #ff0000; }
.cwcas-btn-white:hover { background: #ffffff; color: #6c0000; border:2px solid #6c0000; }
.cwcas-btn-black:hover { background: #ffffff; color: #6c0000; border:2px solid #6c0000; }
.cwcas-btn-red:hover { background: #ffffff; color: #6c0000; border:2px solid #6c0000; }
.cwcas-btn-black { background: #000000; color: #ffffff; }
.cwcas-btn-red { background: #ff0000; color: #ffffff; }

/* Pagination */
.cwcas-pagination { text-align: center; margin-top: 30px; }
.cwcas-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    font-weight: 700;
}
.cwcas-pagination .page-numbers.current { background: #ff0000; color: #fff; }

/* Cart Badge Component */
.cwcas-cart-badge-link { position: relative; display: inline-block; color: #333; text-decoration: none; }
.cwcas-cart-icon-wrapper { position: relative; display: flex; align-items: center; }
.cwcas-badge-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ff0000;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    padding: 2px 6px;
    min-width: 18px;
    text-align: center;
}

.cwcas-avada-cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ff0000;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    border-radius: 50%;
    padding: 3px 6px;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 10;
}

.cwcas-avada-cart-badge:empty { display: none !important; }

.cwcas-no-products {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1rem;
    color: #666;
    padding: 40px 0;
}