/**
 * Theme Name:     Coupon by MyThemeShop Child
 * Author:         MyThemeShop
 * Template:       mts_coupon
 * Text Domain:	   coupon-by-mythemeshop-child
 * Description:    Coupon Theme is the perfect, specialist theme for blogs and Coupons. Impress future clients with a professional and polished theme with endless functionality!
 */
 
 /* ----------------- */
 /*                   */ 
 /* Store Page Starts */
 /*                   */
 /* ----------------- */
.stores-directory {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.stores-directory .last-verified {
    color: #666;
    margin-bottom: 20px;
}

/* Alphabet bar */
.stores-directory .alphabet-nav {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.stores-directory .alphabet-nav a {
    padding: 6px 12px;
    background: #f3f3f3;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 600;
    color: #333 !important;
    display: inline-block;
}

.stores-directory .alphabet-nav a:hover,
.stores-directory .alphabet-nav a.active {
    background: #7c4dff;
    color: #fff !important;
}

/* Store sections */
.stores-directory .store-group {
    margin-bottom: 40px;
}

.stores-directory .store-group h2 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Grid fix */
.stores-directory .store-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* Store items */
.stores-directory .store-item a {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.stores-directory .store-item span {
    font-size: 14px;
    color: #666;
}
 /* ----------------- */
 /*                   */ 
 /* Store Page Ends   */
 /*                   */
 /* ----------------- */
 
 
 
 /* ----------------------- */
 /*                         */ 
 /* Categories Page Starts  */
 /*                         */
 /* ----------------------- */
 /* ===============================
   Categories Directory Layout
================================= */
.categories-directory {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.categories-directory h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.categories-directory .directory-description {
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

/* Parent Category Card */
.categories-directory .category-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

/* Parent Title */
.categories-directory .category-box h2 {
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #e6e6e6;
    font-size: 24px;
}

/* Subcategory Grid */
.categories-directory .subcategory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 50px;
    margin-bottom: 20px;
}

/* Subcategory Links */
.categories-directory .subcategory-item a {
    display: block;
    font-weight: 600;
    text-decoration: none;
    color: #2c2c2c !important;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.categories-directory .subcategory-item a:hover {
    color: #7c4dff !important;
}

/* View All */
.categories-directory .view-all {
    margin-top: 10px;
}

.categories-directory .view-all a {
    display: inline-block;
    font-weight: 600;
    color: #2b6df6 !important;
    text-decoration: none;
}

.categories-directory .view-all a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .categories-directory .subcategory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .categories-directory .subcategory-grid {
        grid-template-columns: 1fr;
    }

    .categories-directory .category-box {
        padding: 20px;
    }
}

  /* ----------------------- */
 /*                         */ 
 /* Categories Page Ends  */
 /*                         */
 /* ----------------------- */

