/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.6.1771869824
Updated: 2026-02-23 18:03:44

*/
header#site-header {
    background: black;
    max-width: 100%;
    padding: 0 10px;
    margin-bottom: 20px;
}

header#site-header .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

main#content {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.home-banner-slide {
    margin: 0 30px;
}

.home-banner-slide img.slider-image {
    width: 100%;
    border-radius: 20px;
}

.home-banner-slider ul.slick-dots {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 5px;
}

.home-banner-slider ul.slick-dots li {
    height: 5px;
    width: 50px;
    background: #000;
    border-radius: 50px;
}

.home-banner-slider ul.slick-dots li.slick-active {
    background: red;
}

.home-banner-slider ul.slick-dots li button {
    padding: 0;
    font-size: 0;
    border: 0;
}

/* Blog Sections Styling */
.home-blog-sections {
    padding: 80px 0;
    background-color: #fbfbfb;
}

.home-blog-section {
    margin-bottom: 100px;
}

.home-blog-section:last-child {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #222;
    margin: 0;
    line-height: 1;
}

.view-all {
    font-weight: 700;
    color: #f00d0d;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all:hover {
    color: #000;
    transform: translateX(5px);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.blog-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.blog-date .day {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #f00d0d;
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-top: 2px;
}

.blog-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-cat {
    margin-bottom: 12px;
}

.blog-cat a {
    font-size: 12px;
    font-weight: 700;
    color: #f00d0d;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.5px;
    background: rgba(240, 13, 13, 0.05);
    padding: 5px 12px;
    border-radius: 50px;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0 15px;
    line-height: 1.35;
}

.blog-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: #f00d0d;
}

.blog-excerpt {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.blog-read-more {
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #f00d0d;
    gap: 15px;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

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

    .section-title {
        font-size: 28px;
    }

    .home-blog-sections {
        padding: 60px 0;
    }

    .home-blog-section {
        margin-bottom: 60px;
    }
}

/* All Categories Page Styling */
.all-categories-template .page-header {
    padding: 80px 0 40px;
    background: #fff;
    text-align: center;
}

.all-categories-template .page-title {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0;
}

.categories-grid-section {
    padding-bottom: 100px;
    background: #fff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
}

.category-image {
    position: relative;
    height: 100%;
    width: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    text-align: center;
}

.category-title {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 5px;
    text-transform: capitalize;
}

.category-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .all-categories-template .page-title {
        font-size: 36px;
    }
}

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

    .all-categories-template .page-header {
        padding: 60px 0 30px;
    }
}

/* Category Archive Specific Styling */
.category-navbar {
    padding: 30px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.cat-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.cat-nav-item {
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 80px;
}

.cat-nav-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
    background: #f9f9f9;
    padding: 10px;
}

.cat-nav-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.cat-nav-item:hover .cat-nav-icon img {
    transform: scale(1.1);
}

.cat-nav-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cat-nav-item.active .cat-nav-title {
    color: #000;
}

.cat-nav-item.active .cat-nav-icon {
    background: #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-header {
    padding: 60px 0 40px;
    background: #fff;
}

.category-header .header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cat-header-icon {
    width: 60px;
    height: 60px;
}

.cat-header-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cat-header-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0;
}

.category-recent-grid {
    padding-bottom: 80px;
    background: #fff;
}

.category-more-list {
    padding-top: 60px;
    padding-bottom: 100px;
    background: #fff;
}

.list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
}

.list-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 40px;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item-inner {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.list-thumbnail {
    flex: 0 0 280px;
    border-radius: 15px;
    overflow: hidden;
}

.list-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.list-item:hover .list-thumbnail img {
    transform: scale(1.05);
}

.list-content {
    flex: 1;
}

.list-cat {
    color: #f00d0d;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.list-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 15px;
}

.list-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.list-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.list-date {
    font-size: 14px;
    color: #999;
}

@media (max-width: 767px) {
    .cat-nav-wrapper {
        justify-content: flex-start;
    }

    .cat-header-title {
        font-size: 32px;
    }

    .list-item-inner {
        flex-direction: column;
    }

    .list-thumbnail {
        flex: 1;
        width: 100%;
    }
}

/* Single Post Page Styling */
.single-post-template {
    padding: 60px 0 100px;
    background: #fff;
    color: #1a1a1a;
}

.single-post-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
}

/* Breadcrumbs */
.post-breadcrumbs {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-breadcrumbs a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.post-breadcrumbs a:hover {
    color: #f00d0d;
}

.post-breadcrumbs .sep {
    color: #ccc;
}

.post-breadcrumbs .current {
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

/* Post Header */
.post-date {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
}

.post-title.h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 30px;
    letter-spacing: -1px;
}

.post-author-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.author-avatar img {
    border-radius: 50%;
    display: block;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
}

/* Post Content */
.post-featured-image {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.post-content p {
    margin-bottom: 25px;
}

/* Author Bio */
.post-author-bio {
    margin-top: 80px;
    padding: 50px;
    background: #f9f9f9;
    border-radius: 30px;
}

.author-bio-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.author-bio-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.author-bio-info {
    flex: 1;
}

.author-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
}

.author-job-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 15px;
}

.author-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.author-link-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.author-link-btn:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

/* Sidebar Styling */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.sidebar-title {
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 25px;
    position: relative;
    padding-bottom: 15px;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background: #f00d0d;
}

.sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-post-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.sidebar-post-thumb {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-content h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 5px;
}

.sidebar-post-content h4 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-post-content h4 a:hover {
    color: #f00d0d;
}

.sidebar-post-content p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

.sidebar-post-item.small .sidebar-post-content h4 {
    font-size: 15px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .single-post-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .sidebar {
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    .post-title.h1 {
        font-size: 36px;
    }

    .post-author-bio {
        padding: 30px;
    }

    .author-bio-inner {
        flex-direction: column;
        gap: 20px;
    }

    .author-bio-image img {
        width: 80px;
        height: 80px;
    }
}

/* All Stores Template Styles */
.all-stores-template .page-header {
    background: #f8f9fa;
    padding: 40px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.all-stores-template .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.all-stores-template .alphabet-filter {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.all-stores-template .filter-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.all-stores-template .filter-item:hover,
.all-stores-template .filter-item.active {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.all-stores-template .stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.all-stores-template .store-item {
    padding: 10px 0;
}

.all-stores-template .store-link {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: block;
}

.all-stores-template .store-link:hover {
    color: #0073aa;
}

.all-stores-template .load-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.all-stores-template #load-more-stores {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.all-stores-template #load-more-stores:hover {
    background: #005177;
}

.all-stores-template #load-more-stores:disabled {
    background: #ccc;
    cursor: not-allowed;
}

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

@media (max-width: 767px) {
    .all-stores-template .stores-grid {
        grid-template-columns: 1fr;
    }

    .all-stores-template .alphabet-filter {
        gap: 5px;
    }

    .all-stores-template .filter-item {
        padding: 5px 10px;
        font-size: 0.9rem;
    }
}

/* Store Description Template Styles */
.store-single-template .store-header-banner {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0;
    margin-bottom: 40px;
}

.store-single-template .store-header-flex {
    display: flex;
    align-items: center;
    gap: 30px;
}

.store-single-template .store-logo-box {
    background: #fff;
    padding: 15px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.store-single-template .store-logo-box img {
    max-width: 100%;
}

.store-single-template .store-header-info {
    flex: 1;
}

.store-single-template .store-breadcrumbs {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 10px;
}

.store-single-template .store-breadcrumbs a {
    color: #aaa;
    text-decoration: none;
}

.store-single-template .store-title {
    font-size: 2.2rem;
    margin: 5px 0 15px;
}

.store-single-template .store-description-short {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 20px;
    max-width: 700px;
}

.store-single-template .stat-badge {
    display: inline-block;
    padding: 6px 15px;
    background: #333;
    color: #fff;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.store-single-template .stat-badge:hover {
    background: #444;
    transform: translateY(-2px);
}

.store-single-template .stat-badge.active {
    background: #0073aa;
    border-color: #005177;
    box-shadow: 0 4px 10px rgba(0, 115, 170, 0.3);
}

.store-single-template .stat-badge.green {
    background: #28a745;
}

.store-single-template .shop-now-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #00ff00;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    font-size: 1.1rem;
}

.store-single-template .store-layout-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Sidebar Box Styles */
.store-single-template .sidebar-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.store-single-template .sidebar-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.store-single-template .stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.store-single-template .stat-row .green {
    color: #28a745;
}

.store-single-template .tip-item {
    margin-bottom: 15px;
}

.store-single-template .tip-item .step {
    display: block;
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

.store-single-template .mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.store-single-template .mini-logo {
    border: 1px solid #eee;
    padding: 10px;
    text-align: center;
}

.store-single-template .view-all {
    display: block;
    margin-top: 15px;
    color: #0073aa;
    text-decoration: none;
    font-weight: 600;
}

/* Coupon Cards */
.store-single-template .coupon-card {
    display: flex;
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.store-single-template .coupon-left {
    width: 120px;
    /* Increased slightly for logo */
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 8px;
    font-weight: 700;
    border-right: 1px dashed #ddd;
}

.coupon-store-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.coupon-store-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.store-single-template .coupon-middle {
    flex: 1;
    padding: 20px;
}

.store-single-template .coupon-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.store-single-template .coupon-meta span {
    font-size: 0.85rem;
    margin-right: 15px;
    color: #777;
}

.store-single-template .coupon-users {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #999;
}

.store-single-template .coupon-right {
    padding: 20px;
    display: flex;
    align-items: center;
}

.store-single-template .coupon-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.store-single-template .coupon-card.deal .coupon-btn {
    background: #0073aa;
}

/* Store Info Box */
.store-single-template .store-info-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

/* FAQ Box */
.store-single-template .store-faq-box {
    margin-bottom: 60px;
}

.store-single-template .faq-item {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 5px;
}

.store-single-template .faq-question {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
}

.store-single-template .faq-answer {
    padding: 0 20px 15px;
    display: none;
}

/* Author Bio */
.store-single-template .store-author-bio {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.store-single-template .author-bio-inner {
    display: flex;
    gap: 25px;
}

.store-single-template .author-bio-image img {
    border-radius: 50%;
}

/* Popular Accessories Grid */
.store-single-template .popular-accessories {
    border-top: 1px solid #eee;
    padding-top: 40px;
    margin-bottom: 60px;
}

.store-single-template .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
}

.store-single-template .accessories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.store-single-template .accessory-card {
    text-decoration: none;
    display: block;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.store-single-template .accessory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.store-single-template .accessory-logo {
    background: #fff;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.store-single-template .accessory-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.store-single-template .accessory-name {
    display: block;
    background: #000;
    color: #fff;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 991px) {
    .store-single-template .store-layout-grid {
        grid-template-columns: 1fr;
    }

    .store-single-template .store-header-flex {
        flex-direction: column;
        text-align: center;
    }

    .store-single-template .accessories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .store-single-template .coupon-card {
        flex-direction: column;
    }

    .store-single-template .coupon-left {
        width: 100%;
        padding: 10px;
        border-right: none;
        border-bottom: 1px dashed #ddd;
    }

    .store-single-template .accessories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer Redesign Styles */
.coupon-footer {
    background-color: #000;
    color: #fff;
    padding: 80px 0 30px;
    font-family: 'Inter', sans-serif;
    width: 100%;
    clear: both;
}

footer#site-footer {
    max-width: 100%;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
    max-width: 1200px;
    /* Make it span more width */
    margin-left: auto;
    margin-right: auto;
}

.footer-column h4.widget-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-column p {
    color: #aaa;
    line-height: 1.7;
    font-size: 15px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 25px;
}

.footer-site-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-links-list li a:hover {
    color: #fff;
}

.footer-newsletter-form label {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.newsletter-input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input-group input[type="email"] {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    background: #fff;
    color: #333;
}

.newsletter-submit {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-submit:hover {
    background-color: #0056b3;
}

.footer-social-icons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-icon {
    color: #fff;
    font-size: 20px;
    transition: transform 0.3s, color 0.3s;
}

.social-icon:hover {
    color: #007bff;
    transform: translateY(-5px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #222;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.footer-bottom .disclosure {
    margin-top: 10px;
}

@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .coupon-footer {
        padding: 60px 0 30px;
    }
}


/* AJAX Search Styles */
.header-search-wrap {
    position: relative;
    max-width: 300px;
    margin-left: 30px;
    flex: 0 1 300px;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.ajax-search-field {
    width: 100%;
    padding: 10px 45px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.ajax-search-field:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 10px rgba(0, 115, 170, 0.1);
}

.ajax-search-submit {
    position: absolute;
    right: 5px;
    background: #0073aa;
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.ajax-search-submit:hover {
    background: #005177;
}

.ajax-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    z-index: 999;
    overflow: hidden;
    display: none;
}

.search-result-item a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
    border-bottom: 1px solid #f5f5f5;
}

.search-result-item a:hover {
    background: #f9f9f9;
}

.result-thumb {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-info {
    display: flex;
    flex-direction: column;
}

.result-title {
    font-weight: 500;
    font-size: 14px;
}

.result-type {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

.search-loading,
.no-results,
.search-error {
    padding: 15px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.search-all-results a {
    display: block;
    padding: 12px;
    text-align: center;
    background: #f1f1f1;
    color: #0073aa;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}

.search-all-results a:hover {
    background: #e5e5e5;
}

/* Adjust header layout to accommodate search */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
}

@media (max-width: 768px) {
    .site-header {
        flex-wrap: wrap;
    }

    .header-search-wrap {
        order: 3;
        max-width: 100%;
        margin: 15px 0 0 0;
    }
}

/* Flicker Effect Animation */
@keyframes flicker {

    0%,
    19.999%,
    22%,
    62.999%,
    64%,
    64.999%,
    70%,
    100% {
        opacity: 0.99;
    }

    20%,
    21.999%,
    63%,
    63.999%,
    65%,
    69.999% {
        opacity: 0.4;
    }
}

.flicker-effect {
    animation: flicker 3s linear infinite;
}

/* Ensure badges look consistent */
.coupon-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Coupon Modal Styles */
.coupon-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.coupon-modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    position: relative;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.modal-header {
    margin-bottom: 20px;
}

.modal-store-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-store-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.modal-body p {
    color: #666;
    margin-bottom: 20px;
}

.coupon-code-wrapper {
    display: flex;
    background: #f8f9fa;
    border: 2px dashed #0073aa;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
}

#couponCodeInput {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    color: #0073aa;
    letter-spacing: 2px;
}

#copyCodeBtn {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 0 25px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

#copyCodeBtn:hover {
    background: #005177;
}

.modal-go-btn {
    display: block;
    background: #28a745;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.modal-go-btn:hover {
    background: #218838;
}

/* --- Dynamic Store Rating Styling --- */
.rate-store {
    padding-top: 20px;
}

.rate-store h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    border: none;
    padding: 0;
}

/* Border below title */
.rate-store::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #eee;
    margin: 15px 0;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.star-rating input {
    display: none !important;
    /* Force hide radio buttons */
}

.star-rating label {
    font-size: 28px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
    margin-right: 8px;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label {
    color: #2c3e50;
    /* Dark gray stars */
}

.star-rating.rated label {
    cursor: default;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.rating-badge {
    background-color: #4a7c7c;
    /* Teal background */
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rating-badge i {
    font-size: 11px;
}

.vote-count {
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Force hide radio inputs */
.star-rating input[type='radio'] {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: none !important;
}

.rating-success-msg {
    color: #28a745;
    font-size: 13px;
    margin-top: 10px;
    display: none;
    font-weight: 600;
}

/* Store Author Info */
.store-author-info {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.author-name {
    font-weight: 600;
    color: #333;
}

.author-designation {
    color: #888;
    font-style: italic;
}

/* Coupon Offer Badge */
.coupon-offer-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a7c7c 0%, #2c3e50 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.offer-amount {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.coupon-store-logo img {
    max-width: 70px;
    height: auto;
    border-radius: 8px;
}