/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 27 2025 | 20:59:07 */
        .cc-section-container {
            font-family: 'Roboto', sans-serif;
            max-width: 1200px;
            margin: 0 auto;
            color: #333;
        }

        /* HEADER */
        .cc-header-box {
            background-color: #00b0ff;
            /* Vibrant Orange */
            padding: 40px;
            position: relative;
            margin-bottom: 50px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            /* Right align content as per image roughly */
            justify-content: center;
            text-align: right;
            min-height: 250px;
            border-radius: 4px;
            /* Slight radius */
        }

        .cc-main-title {
            font-family: 'Roboto', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: white;
            margin: 0 0 15px 0;
            text-transform: uppercase;
            line-height: 1.1;
            max-width: 60%;
        }

        .cc-discount-pill {
            background-color: #D30000;
            color: #fff;
            padding: 5px 15px;
            font-size: 28px;
            font-weight: bold;
            display: inline-block;
            border-radius: 4px;
            margin-bottom: 10px;
        }

        /* NOTE: Image 2 has product images in header. We don't have those assets, 
               so we keep the text structure but styled to match. */

        .cc-sub-text {
            display: none;
            /* Image 2 doesn't show this subtitle text, hiding it to match design clean look */
        }

        /* GRID */
        .cc-category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        /* CARD */
        .cc-cat-card {
            background-color: #F8F9FA;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px;
            transition: all 0.3s ease;
            text-decoration: none;
            /* if the whole card is clickable */
        }

        .cc-cat-card:hover {
            background-color: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .cc-card-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            flex: 1;
        }

        .cc-cat-name {
            font-family: 'Playfair Display', serif;
            /* Matching the serif look */
            font-size: 18px;
            color: #222;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .cc-btn-with-arrow {
            font-family: 'Roboto', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: #444;
            text-transform: uppercase;
            /* Looks small caps */
            text-decoration: none;
            display: flex;
            align-items: center;
            letter-spacing: 0.5px;
        }

        .cc-btn-with-arrow i {
            color: #C00;
            /* Red Arrow */
            margin-left: 8px;
            font-size: 14px;
            transition: margin-left 0.2s;
        }

        .cc-cat-card:hover .cc-btn-with-arrow i {
            margin-left: 12px;
        }

        .cc-card-right img {
            width: 120px;
            height: auto;
            max-height: 100px;
            object-fit: contain;
            mix-blend-mode: multiply;
            /* Helps integrate if white background */
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cc-header-box {
                align-items: center;
                text-align: center;
            }

            .cc-main-title {
                max-width: 100%;
            }
        }