/* Product Grid */
.catp-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.catp-product-card {
    border: 1px solid transparent;
    border-radius: 20px;
    overflow: hidden;
    background: #f2f2f2;
    transition: all 0.3s ease;
    font-family: 'Outfit', 'Outfit-Regular', sans-serif;
    position: relative;
}

.catp-product-card:hover {
    background: rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 6px 3px rgba(255, 255, 255, 0.3);
}

.catp-product-card::before,
.catp-product-card::after {
    content: '';
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.catp-product-card::before {
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.catp-product-card::after {
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
}

.catp-product-card:hover::before,
.catp-product-card:hover::after {
    opacity: 1;
}

.catp-product-image {
    padding: 10px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.catp-product-image img {
    border-radius: 10px;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
}

.catp-product-info {
    padding: 10px 15px 30px 15px;
    text-align: center;
}

.catp-product-info h3 {
    margin: 15px 0 20px 0;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Outfit';
}

.catp-color-swatches,
.catp-size-swatches {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.catp-color-swatches label,
.catp-size-swatches label {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    /* Reset margin */
}

.catp-color-swatches input[type="radio"],
.catp-size-swatches input[type="radio"] {
    display: none;
}

.catp-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #ccc;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.catp-color-swatches input[type="radio"]:checked+.catp-swatch {
    border: 2px solid #555;
    transform: scale(-0.85);
}

.catp-size-label {
    font-size: 13px;
    font-weight: 600;
    font-family: 'Outfit', 'Montserrat-SemiBold', sans-serif;
    color: #000;
    transition: all 0.2s;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
}

.catp-size-swatches input[type="radio"]:checked+span {
    font-weight: 800;
    color: #000;
    transform: scale(1.05);
    border: 1px solid #111827;
    background: #e5e7eb;
}

.catp-quantity-section {
    font-size: 16px;
    font-family: 'Outfit', 'Outfit-Medium', sans-serif;
    margin: 15px 0 20px 0;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catp-qty-input {
    background: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 5px;
    font-size: 16px !important;
    width: 67px !important;
    height: 27px !important;
    font-weight: 500 !important;
    font-family: 'Outfit', 'Outfit-Medium', sans-serif;
    text-align: left;
    padding: 0 5px !important;
    box-shadow: none !important;
    outline: none !important;
    margin-left: 10px;
    color: #000;
}

.catp-action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 15px;
}

.catp-btn-red {
    background: #b21d24;
    color: #ffffff !important;
    border: none;
    padding: 10px 20px;
    border-radius: 100px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none !important;
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0;
    transition: background 0.3s;
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

/* Cart Page Premium Action Buttons */
.catp-cart-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

.catp-update-btn,
.catp-continue-shopping,
.catp-checkout-btn,
.catp-place-order-btn {
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    line-height: normal;
}

/* Secondary Action: Update */
.catp-update-btn {
    background: #f3f4f6;
    /* Light gray */
    color: #374151 !important;
    border: 1px solid transparent;
    text-decoration: none !important;
}

.catp-update-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Outline Action: Browse More */
.catp-continue-shopping {
    background: #ffffff;
    color: #374151 !important;
    border: 1px solid #d1d5db;
    text-decoration: none !important;
}

.catp-continue-shopping:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Primary Accent Action: Submit Inquiry */
.catp-checkout-btn {
    background: #b21d24;
    color: #ffffff !important;
    box-shadow: 0 4px 6px -1px rgba(17, 24, 39, 0.2);
    min-width: 180px;
    text-decoration: none !important;
}

.catp-checkout-btn:hover {
    background: #8e181c;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(17, 24, 39, 0.3);
}

/* Send Inquiry Post Button */
.catp-place-order-btn {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: #d21b24 !important;
    /* Updated color */
    color: #ffffff !important;
    border: none !important;
    padding: 18px 40px !important;
    border-radius: 100px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer;
    transition: all 0.3s !important;
    box-shadow: 0 4px 15px rgba(178, 29, 36, 0.3) !important;
}

.catp-place-order-btn:hover {
    background: #8e181c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178, 29, 36, 0.4);
}

@media (max-width: 600px) {
    .catp-cart-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .catp-cart-actions>* {
        width: 100%;
        margin-bottom: 5px;
    }
}

/* Mini Message */
#catp-mini-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #4caf50;
    color: #fff;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    display: none;
    z-index: 9999;
}

/* Cart Table */
.catp-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.catp-cart-table th,
.catp-cart-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.catp-cart-table th {
    background: #b21d24;
    color: #ffffff;
    font-family: 'Outfit', 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    border-bottom: none;
}

.catp-cart-table tbody tr {
    background: #ffffff;
    transition: background 0.2s;
}

.catp-cart-table tbody tr:hover {
    background: #f9fafb;
}

.catp-cart-table input[type="number"] {
    width: 70px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}

.catp-remove-btn {
    color: red;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2em;
}

.catp-right {
    text-align: right;
}

/* Checkout Form & Split Layout */
.catp-checkout-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    font-family: 'Outfit', sans-serif;
    /* Applied Outfit font globally for checkout */
}

.catp-checkout-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.catp-checkout-left,
.catp-checkout-right {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
}

.catp-checkout-left {
    flex: 1;
    width: 60%;
}

.catp-checkout-right {
    flex: 1;
    width: 40%;
}

@media (max-width: 800px) {
    .catp-checkout-container {
        flex-direction: column;
    }

    .catp-checkout-left,
    .catp-checkout-right {
        width: 100%;
    }
}

.catp-checkout-left h3,
.catp-checkout-right h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    color: #111827;
}

.catp-checkout-form p {
    margin-bottom: 20px;
}

.catp-checkout-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #374151;
    font-size: 14px;
}

.catp-checkout-form input[type="text"],
.catp-checkout-form input[type="email"],
.catp-checkout-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    background: #f9fafb;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.catp-checkout-form input:focus,
.catp-checkout-form textarea:focus {
    border-color: #2563eb;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.catp-checkout-submit {
    margin-top: 30px;
    text-align: center;
}

.catp-success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

/* Single Product Page */
.catp-single-product-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    font-family: 'Outfit', sans-serif;
    color: #333;
}

.catp-breadcrumb {
    font-size: 13px;
    color: #666;
    margin-bottom: 30px;
}

.catp-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.catp-breadcrumb a:hover {
    color: #b21d24;
    text-decoration: underline;
}

.catp-single-product-top {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    background: transparent;
    padding: 0;
    border-radius: 12px;
}

.catp-single-product-gallery {
    display: flex;
    gap: 20px;
    flex: 1;
}

.catp-gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80px;
}

.catp-gallery-thumb {
    width: 80px;
    height: 80px;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    background: #fff;
    padding: 5px;
}

.catp-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.catp-main-image {
    flex: 1;
    border: 1px solid #eee;
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    overflow: hidden;
    min-height: 400px;
}

.catp-main-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.catp-main-image:hover img {
    transform: scale(1.5);
}

.catp-zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.catp-single-product-details {
    flex: 1;
    padding-top: 10px;
}

.catp-single-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #111;
}

.catp-single-short-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.catp-single-variations {
    margin-bottom: 25px;
}

.catp-single-sizes,
.catp-single-colors,
.catp-single-styles {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.catp-single-sizes strong,
.catp-single-colors strong,
.catp-single-styles strong {
    min-width: 70px;
    font-weight: 600;
    color: #111;
    margin-right: 5px;
}

.catp-single-sizes .catp-size-label,
.catp-single-styles .catp-style-label {
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    color: #333;
}

.catp-single-sizes .catp-size-label:hover,
.catp-single-styles .catp-style-label:hover {
    border-color: #b21d24;
    color: #b21d24;
}

.catp-style-radio {
    display: none;
}

.catp-style-radio:checked + .catp-style-label {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

.catp-single-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.catp-single-qty {
    margin: 0;
    position: relative;
    display: flex;
}

.catp-single-qty .catp-qty-input {
    width: 65px !important;
    height: 48px !important;
    margin: 0;
    border-radius: 8px 0 0 8px !important;
    border-right: none !important;
    text-align: center;
    border-color: #ddd !important;
}

.catp-qty-nav {
    display: flex;
    flex-direction: column;
}

.catp-qty-up,
.catp-qty-down {
    width: 28px;
    height: 24px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    transition: background 0.2s;
}

.catp-qty-up:hover,
.catp-qty-down:hover {
    background: #eee;
}

.catp-qty-up {
    border-radius: 0 8px 0 0;
    border-bottom: none;
}

.catp-qty-down {
    border-radius: 0 0 8px 0;
}

.catp-single-add-btn {
    height: 48px;
    padding: 0 35px;
    font-size: 14px;
    background: #b21d24;
    color: #fff !important;
    text-transform: uppercase;
    border-radius: 8px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.catp-single-add-btn:hover {
    background: #b21d24;
    /* Change on hover */
}

.catp-single-meta {
    font-size: 13px;
    color: #555;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.catp-single-tabs-wrapper {
    margin-top: 40px;
}

.catp-tabs-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #ddd;
    gap: 30px;
    justify-content: center;
}

.catp-tabs-nav li {
    padding: 10px 0;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 1px;
}

.catp-tabs-nav li.active {
    color: #111;
}

.catp-tabs-nav li.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #111;
}

.catp-tabs-content {
    padding: 30px 0;
}

.catp-tab-pane {
    display: none;
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}

.catp-tab-pane.active {
    display: block;
}

.catp-related-products {
    margin-top: 50px;
}

.catp-related-products h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
}

@media(max-width: 800px) {
    .catp-single-product-top {
        flex-direction: column;
        gap: 30px;
    }

    .catp-single-product-gallery {
        flex-direction: column-reverse;
    }

    .catp-gallery-thumbnails {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }

    .catp-gallery-thumb {
        width: 60px;
        height: 60px;
    }

    .catp-single-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .catp-single-add-btn {
        width: 100%;
    }
}

/* Most Demanding Carousel - Perfect 4-Column Layout */
.catp-most-demanding-section {
    padding: 60px 0;
    font-family: 'Outfit', sans-serif;
    background: #ffffff;
}

.catp-section-title {
    text-align: center;
    color: #111;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.catp-carousel-container {
    position: relative;
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 60px;
    /* Precise space for arrows */
}

.catp-carousel-track-wrapper {
    overflow: hidden;
    padding: 10px 0;
}

.catp-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
}

.catp-carousel-slide {
    flex: 0 0 calc(25% - 15px);
    /* Perfectly 4 items with 20px gaps */
    box-sizing: border-box;
    width: calc(25% - 15px);
}

.catp-carousel-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f1f1f1;
    text-align: center;
}

.catp-carousel-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.catp-carousel-image {
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    background: #fff;
}

.catp-carousel-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.catp-carousel-title {
    font-size: 15px;
    color: #111;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.catp-carousel-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.catp-carousel-btn {
    font-size: 10px;
    padding: 12px 5px;
    text-transform: uppercase;
    flex: 1;
    border-radius: 30px;
    background: #d32f2f;
    color: #fff !important;
    text-decoration: none;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Red Circular Navigation Buttons */
.catp-carousel-prev,
.catp-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e53935;
    border: none;
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 22px;
    color: #fff;
    z-index: 10;
    transition: all 0.3s ease;
}

.catp-carousel-prev {
    left: 5px;
}

.catp-carousel-next {
    right: 5px;
}

.catp-carousel-prev:hover,
.catp-carousel-next:hover {
    background: #c62828;
    transform: translateY(-50%) scale(1.1);
}

@media(max-width: 1024px) {
    .catp-carousel-slide {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media(max-width: 768px) {
    .catp-carousel-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media(max-width: 480px) {
    .catp-carousel-slide {
        flex: 0 0 100%;
    }
}

$css $css

/* Two-Column Review Layout */
#tab-reviews {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

#tab-reviews #comments {
    flex: 1;
    min-width: 300px;
}

#tab-reviews #respond {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.catp-reviews-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 25px;
    color: #111;
}

#comments .comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#comments .comment {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

#comments .comment:last-child {
    border-bottom: none;
}

#comments .comment-body {
    display: flex;
    gap: 15px;
}

#comments .comment-meta {
    flex-shrink: 0;
}

#comments .comment-meta img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

#comments .comment-content {
    flex: 1;
}

#comments .comment-author cite {
    font-style: normal;
    font-weight: 600;
    color: #111;
}

#comments .comment-metadata {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    #tab-reviews {
        flex-direction: column;
    }
}

/* Comment Form Star Rating */
.comment-form-rating .stars {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.comment-form-rating .stars span {
    display: flex;
    flex-direction: row-reverse;
    /* Crucial for CSS sibling selectors to work visually left-to-right */
    justify-content: flex-end;
    gap: 5px;
}

.comment-form-rating .stars a {
    position: relative;
    height: 1em;
    width: 1em;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none;
    box-shadow: none;
}

.comment-form-rating .stars a::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-family: Dashicons;
    content: "\f154";
    /* Star empty */
    text-indent: 0;
    color: #ccc;
    font-size: 20px;
    transition: color 0.2s;
}

/* Fill all stars to the right of the hovered/active star (which are subsequent in DOM because of row-reverse) */
.comment-form-rating .stars a:hover::before,
.comment-form-rating .stars a:hover~a::before,
.comment-form-rating .stars a.active::before,
.comment-form-rating .stars a.active~a::before {
    content: "\f155";
    /* Star filled */
    color: #ffb400;
}

/* Review List Star Rating */
.star-rating {
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 16px;
    width: 5.4em;
    font-family: Dashicons !important;
    margin: 5px 0;
}

.star-rating::before {
    content: "\f154\f154\f154\f154\f154";
    color: #ccc;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}

.star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
    /* Hide the text */
}

.star-rating span::before {
    content: "\f155\f155\f155\f155\f155";
    top: 0;
    position: absolute;
    left: 0;
    color: #ffb400;
}

/* Star Rating Styles */
.catp-product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 5px 0;
}

.catp-product-rating .dashicons {
    color: #ffb400;
    /* Premium Star Yellow */
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.catp-single-product-details .catp-product-rating .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.catp-tabs-nav li .dashicons {
    color: #ffb400;
}