        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #2196F3;
            --primary-orange: #FF9800;
            --dark-blue: #1976D2;
            --light-blue: #E3F2FD;
            --text-dark: #212121;
            --text-gray: #757575;
            --bg-light: #F5F5F5;
            --white: #FFFFFF;
            --success: #4CAF50;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
            --shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--white);
            padding-top: 80px;
        }

        /* FULL PAGE overflow fix */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}


        /* Header Navigation */
header {
    position: fixed;
    top: 0;
    z-index: 9999;
    background: white;
    width: 100%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    height: 70px;
    background: white;
}

header nav {
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

header nav:hover {
    background: rgba(255, 255, 255, 0.95); /* Slightly lighter */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Hover shadow */
}

/* Logo container */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 250px;
    height: auto;
    transition: transform 0.3s ease;
    margin-top: 0px;
    margin-left: 80px;
}

.logo:hover .logo-img {
    transform: scale(1.1);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none; /* remove underline */
    color: inherit;        /* keep text same color as theme */
}

.logo-link:hover .logo-text {
    color: var(--primary-orange); /* optional hover effect */
}

.nav-search {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 5px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    padding: 10px;
    font-size: 0.95rem;
    width: 600px;
    transition: width 0.3s ease;
}

.search-input::placeholder {
    color: #888;
}

.search-btn {
    border: none;
    background: #ff6f61;
    color: white;
    padding: 8px 40px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #e65a4f;
}

        .logo-icon {
            width: 40px;
            height: 40px;
            margin-right: 8px;
            background: linear-gradient(135deg, var(--primary-blue) 50%, var(--primary-orange) 50%);
            border-radius: 50%;
            position: relative;
        }

        .logo-icon::after {
            content: "C";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;

        }

        .nav-menu a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--primary-orange);
        }

        /* Orange bottom line */
        header nav::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;                /* start from left */
            height: 3px;
            width: var(--line-width, 0%);
            background: orange;
            transition: width 0.2s linear;
        }


        .btn-primary {
            background: linear-gradient(135deg, var(--primary-orange), #FF7043);
            color: white;
            padding: 14px 40px;
            font-size: 1.1rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-top: 60px;
            align-self: flex-start;
            text-decoration: none;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
            background: #e85c2c;
        }

.homepage-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 30px; /* Adjust the value for more/less rounding */
  margin: 2rem auto; /* Center the slider */
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Optional: nice shadow */
  margin-bottom: 4rem;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
  width: 100%;
  position: absolute;
}

.slide {
  min-width: 100%;
  height: 650px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
   overflow: hidden;
   border-radius: 30px;
    background-color: #ffd88b;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slide-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* keep h2 + p on top */
    align-items: flex-start;
    padding-left: 5%;
    padding-bottom: 2rem; /* spacing for bottom */
    position: relative;
}


.slide-left h2 {
    font-weight: 800; /* Bold */
    color: #000;      /* Black */
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.slide-left p {
    color: #000;      /* Black */
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.slide-content {
  text-align: center;
  background: rgba(0,0,0,0.4);
  padding: 2rem;
  border-radius: 10px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
}

/* Slider Dots (rectangular dashes) */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  width: 30px;      /* rectangle width */
  height: 10px;      /* rectangle height */
  background: #FF9800; /* orange color */
  border-radius: 3px;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  opacity: 1;
  background: #ff6600; /* darker orange when active */
}


/* Colorful Animated Rings */
.ring {
    position: absolute;
    border: 3px solid;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: floatRing 4s ease-in-out infinite;
    opacity: 0.7;
}

.ring:nth-child(1) { top: 10%; left: 20%; border-color: #FFD88B; animation-delay: 0s; }
.ring:nth-child(2) { top: 25%; left: 75%; border-color: #FF6B6B; animation-delay: 0.5s; width: 25px; height: 25px; }
.ring:nth-child(3) { top: 50%; left: 15%; border-color: #6BCB77; animation-delay: 1s; width: 18px; height: 18px; }
.ring:nth-child(4) { top: 65%; left: 60%; border-color: #4D96FF; animation-delay: 1.5s; width: 22px; height: 22px; }
.ring:nth-child(5) { top: 40%; left: 40%; border-color: #FFCA3A; animation-delay: 2s; width: 28px; height: 28px; }
.ring:nth-child(6) { top: 70%; left: 30%; border-color: #9B5DE5; animation-delay: 2.5s; width: 20px; height: 20px; }
.ring:nth-child(7) { top: 20%; left: 50%; border-color: #F15BB5; animation-delay: 3s; width: 24px; height: 24px; }
.ring:nth-child(8) { top: 55%; left: 80%; border-color: #00BBF9; animation-delay: 3.5s; width: 26px; height: 26px; }

@keyframes floatRing {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

        .discount-badge {
            display: inline-block;
            background: var(--primary-orange);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .search-container {
            background: white;
            padding: 0.5rem;
            border-radius: 50px;
            display: flex;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            margin-bottom: 2rem;
        }

        .search-container input {
            flex: 1;
            border: none;
            padding: 1rem 1.5rem;
            font-size: 1rem;
            outline: none;
        }

        .search-container button {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }

        .search-container button:hover {
            background: var(--dark-blue);
        }

        .floating-card {
            position: absolute;
            background: white;
            padding: 1rem;
            border-radius: 15px;
            box-shadow: var(--shadow-hover);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .discount-card {
            top: 20%;
            right: -10%;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .discount-card .percent {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-blue);
        }

/* Featured Stores Section */
a {
  text-decoration: none !important;
}

.featured-stores {
  padding: 70px 200px 70px;
  background: var(--white);
  text-decoration: none;
}
.featured-stores-section a {
    text-decoration: none !important;
}

.stores-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 per row */
  gap: 80px;
  justify-items: center; /* align items in the center of grid cells */
  max-width: 1400px;
  margin: 0 auto; /* center the whole grid */
  text-decoration: none
}

.store {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.store img {
  width: 180px;
  height: 160px;
  border-radius: 12px; /* Slightly rounded rectangle */
  object-fit: cover; /* Makes logo fill the box completely */
  background: transparent; /* Remove white background */
  padding: 0; /* Remove extra padding */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.store p {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}

.view-more-container {
  text-align: center;
  margin-top: 50px;
}

.view-more-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.view-more-btn:hover {
  background: linear-gradient(135deg, #ff5722, #e65100);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Categories Section */
.categories-section {
  padding: 4rem 5%;
  border-radius: 15px; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* subtle card look */
  max-width: 1400px;
  margin: 2rem auto; /* center with spacing */
  background: #FFF5EF;
  text-decoration: none;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header a {
    text-decoration: none !important;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.section-header p {
  color: var(--text-gray);
  font-size: 1rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Each category box */
.category-item {
  background: #FFF5EF;  /* peachy background */
  border-radius: 15px;
  padding: 2rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f1e0d8; /* thin border to separate */
}

.category-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.category-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 600;
  color: #ffd88b;
}

.category-icon img {
  width: 40px;  /* increase image size */
  height: 60px;
  object-fit: contain; /* keeps aspect ratio */
}

.category-item h3 {
  font-size: 0.8rem;
  color: black;
  margin-bottom: 0.3rem;
}

.category-count {
  color: var(--text-gray);
  font-size: 0.85rem;
}

/* Statistics Section */
.stats-container {
  background: #FFF5EF;
  border: 2px solid #f1e0d8;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  max-width: 1100px;
  margin: 3rem auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect on the whole box */
.stats-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Grid for inner stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

/* Each stat */
.stat-card {
  padding: 1rem;
}

/* Numbers */
.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #FF7043; /* orange highlight */
  margin-bottom: 0.5rem;
}

.stat-card span:last-child {
  font-size: 1rem;
  color: var(--text-dark);
}
.stat-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border: 3px solid #FF7043; /* Circle border color */
  border-radius: 50%;         /* Makes it circular */
  padding: 15px;               /* Space between image and border */
  display: inline-block;
  margin-bottom: 10px;
}


        /* Popular Coupons Section */
        .coupons-section {
            padding: 4rem 5%;
            background: white;
        }

        .coupon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .coupon-card {
            background: #FFF5EF;
            border: 1px solid #E0E0E0;
            border-radius: 12px;
            padding: 1.5rem;
            position: relative;
            transition: box-shadow 0.3s, transform 0.3s;
        }

        .coupon-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .coupon-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .verified-badge {
            background: #E8F5E9;
            color: var(--success);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 10px;
        }

        .expiry-date {
            color: var(--text-gray);
            font-size: 0.85rem;
        }

/* ===== Brand Image Styling (Fixed — No Extra Gap) ===== */
.coupon-brand {
  text-align: center;
  margin: 0;               /* remove outer spacing */
  padding: 0;
  line-height: 0;          /* removes space below inline images */
}

.coupon-brand img {
  width: 100%;
  max-width: 340px;
  height: 180px;
  object-fit: cover;       /* fills the space neatly */
  border-radius: 8px;
  display: block;          /* removes inline-block spacing gap */
  margin: 1px 1PX 1PX 1PX;          /* keeps it centered */
}

        .coupon-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .coupon-discount {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-orange);
            margin: 1rem 0;
        }

        .coupon-description {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            line-height: 1.4;
        }

        .coupon-footer {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .btn-get-deal {
            flex: 1;
            background: var(--primary-orange);
            color: white;
            padding: 0.8rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn-get-deal:hover {
            background: #e85c2c;
            transform: scale(1.05);
        }

        .coupon-stats {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-gray);
            font-size: 0.85rem;
        }
/* Blogs Section */
.blog-section {
  padding: 1rem 5%;
  border-radius: 15px; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  max-width: 1375px;
  margin: 2rem auto;
  background: linear-gradient(135deg, #fff8f5, #fdf2ec);
}

/* Quick centered, responsive scratch image used as a regular element */
.blog-Head {
  display: block;               /* makes margin:auto work */
  margin: 0px auto 30px;             /* center + space below */
  width: min(450px, 90%);          /* scale: up to 700px but no wider than viewport */
  height: auto;                    /* keep aspect ratio */
  object-fit: contain;
  pointer-events: none;            /* decorative only */
  opacity: 0.95;
}

/* Container */
.blog-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Featured big blog */
.blog-featured {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.blog-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.blog-featured:hover img {
  transform: scale(1.05);
}

.blog-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
}

.blog-overlay .tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.blog-overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.blog-overlay p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Right side blogs as image cards */
.blog-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.blog-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.blog-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s;
}

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

.blog-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.blog-card .overlay .tag {
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #ffd9c9; /* light orange tint */
}

.blog-card .overlay h4 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.blog-card .overlay p {
  font-size: 0.85rem;
  line-height: 1.4;
}

.blog-full {
  position: relative;
  width: 100%;
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  height: 500px;
}

.blog-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.blog-full:hover img {
  transform: scale(1.05);
}

.blog-full .blog-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
}

.blog-full .blog-overlay .tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.blog-full .blog-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.blog-full .blog-overlay p {
  font-size: 1rem;
  line-height: 1.6;
}


/* FAQ Section */
.faq-section {
  background: white;
  padding: 60px 20px;
  max-width: 1400px;
  margin: 3rem auto;
}

.faq-section h2 {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1A1A1A;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ffd9c9;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  background: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #fff0e6;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #fff;
  color: #555;
  transition: all 0.3s ease;
}

.faq-answer p {
  margin: 15px 0;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* enough for text */;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
  color: #ff5722;
}

.icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.faq-btn:hover {
  background: linear-gradient(135deg, #ff5722, #e65100);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Read More Button Style */
.blog-read-more {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--primary-orange);
    color: white;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.blog-read-more:hover {
    background: #e85c2c;
    transform: scale(1.05);
}

        /* Footer */
        footer {
            background: #1A1A1A;
            color: white;
            padding: 3rem 5%;
        }
        footer a:hover i {
  color: #FF9800;
  transform: scale(1.2);
  transition: 0.3s;
}
footer ul li a {
  text-decoration: none !important;
}

footer ul li a:hover {
  text-decoration: none !important;
}


        .footer-overlay {
            position: absolute;
            top: 0px;          /* push it to the top */
            left: 50%;
            transform: translateX(-50%);
            font-size: 7.5rem;
            font-weight: 900;
            font-family: 'Great Vibes', cursive; /* <-- Stylish font */
            color: #FF9800; /* transparent grey */
            white-space: nowrap;
            pointer-events: none;
            z-index: 0;
            letter-spacing: 12px;
            margin-top: -5px; /* adjust vertical position */
            }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
        }

.footer-coupon-icon {
  position: absolute;
  width: 120px;
  height: auto;
  opacity: 0.3;
  transition: transform 0.3s ease;
}

/* Glowing effect + smooth float */
@keyframes glowFloat {
  0%, 100% {
    transform: scale(1);

  }
  50% {
    transform: scale(1.2);
 
  }
}

/* Positions */
.footer-coupon-icon.left {
  right: 280px;
  bottom: 340px;
  width: 200px;
}

.footer-coupon-icon.center {
  width: 120px;
  bottom: 150px;
  right: 320px;
}

.footer-coupon-icon.right {
  bottom: 120px;
  right: 120px;
  animation-delay: 4s;
  width: 190px;
}

.footer-coupon-icon.rightbottom {
  width: 220px;
  bottom: 30px;
  right: 170px;
}


/* Floating animation */
@keyframes floatCoupon {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.08;
  }
  50% {
    transform: translateY(-18px);
    opacity: 0.12;
  }
}

        /* Responsive Design */
        @media (max-width: 768px) {

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .categories-grid {
                grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
                gap: 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        /* RESPONSIVE SEARCH BAR */
@media (max-width: 768px) {
    .nav-search {
        position: relative;
    }

    .search-input {
        width: 0;
        padding: 0;
        opacity: 0;
        pointer-events: none;
        position: absolute;
        right: 40px;
        transition: all 0.3s ease;
    }

    .search-btn {
        padding: 0.5rem;
    }

    .nav-search.active .search-input {
        width: 150px;
        padding: 0.5rem;
        opacity: 1;
        pointer-events: auto;
    }
}


.region-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.region-dropdown {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.region-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.region-btn:hover {
  background-color: #f0f0f0;
}

.region-btn img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
}

.region-menu {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  border: 4px solid #ddd;
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  display: none;
  z-index: 10;
}

.region-dropdown.active .region-menu {
  display: block;
}

.region-menu li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.region-menu li:hover {
  background-color: #f5f5f5;
}

.region-menu img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
}


/* ========== MODAL POPUP ========== */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  border-radius: 10px;
  padding: 30px;
  width: 450px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
.modal-header img {
  width: 150px;
  height: auto;
  margin-bottom: 15px;
}

.modal .discount-text {
    color: #000000; /* Black */
    font-size: 24px;
}
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.store-logo {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

.expired-text {
  color: #7393B3;
  font-weight: 600;
  margin: 10px 0;
}

.promo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  border: 2px solid #e85c2c;
  border-radius: 5px;
  width: fit-content;
  padding: 5px 10px;
}

#promoCode {
  background: #ffd88b;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 16px;
  color: #333;
}

#copyBtn {
  background: var(--primary-orange);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  margin-left: 10px;
}

.subscribe-box {
  background: #ffd88b;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
}

.subscribe-box input {
  padding: 10px;
  width: 65%;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.subscribe-box button {
  padding: 10px 15px;
  border: none;
  background: var(--primary-orange);
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
}
.deal-text {
  font-size: 28px;       /* Bigger text */
  font-weight: bold;     /* Bold */
  text-align: center;    /* Centered */
  color: #000;           /* Black */
  margin: 20px 0;
}

.discount-value1 {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-orange);
    line-height: 1;
    margin: 5px 0;
}

/* ===========================================
   GLOBAL MOBILE FIXES
   =========================================== */
@media (max-width: 768px) {

  /* Remove horizontal overflow from all sections */
  * {
    max-width: 100% !important;
  }

  body {
    padding-top: 70px !important;
  }

  /* ============================
     HEADER + NAV FIX
     ============================ */
   nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Move hamburger icon to LEFT */
  .mobile-menu-toggle {
    order: 1;
    margin-left: 0 !important;
    margin-right: 10px;
  }

  /* Logo in CENTER */
  .logo {
    order: 2;

  }

  .logo-img {
    width: 120px !important;
        margin: 0 !important;
    padding-left: 0 !important;
    height: auto;
  }


  /* Search + Region on RIGHT */
  .nav-search {
    order: 3;
    margin-left: auto !important;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .region-selector {
      display: flex;
  justify-content: center;
  align-items: center;
    order: 4;
  }
  .region-btn {
  padding: 14px 10px;
  font-size: 14px;
  border-radius: 18px;
}
.region-btn img {
  width: 22px;
  height: 16px;
}
.region-menu {
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  padding-right: 10px;
  display: none;
  z-index: 3000;
}

/* ====================================================
   MOBILE VERSION — HOMEPAGE SLIDER (FULLY OPTIMIZED)
   ==================================================== */
@media (max-width: 768px) {

  /* RESET DESKTOP VALUES */
  .homepage-slider {
    height: auto !important;
    margin: 1rem 0;
    border-radius: 0;
    overflow: hidden !important;
  }

  .slider-wrapper {
    position: relative;
    height: auto !important;
    display: flex;
  }

  .slide {
    min-width: 100%;
    height: auto !important;
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
    padding-bottom: 20px;
    border-radius: 0;
  }

  /* IMAGE FIRST */
  .slide-right {
    width: 100%;
    order: -1;
    display: flex;
    justify-content: center;
  }

  .slide-right img {
    width: 100%;
    height: auto !important;
    object-fit: cover;
    border-radius: 0;
  }

  /* REMOVE FLOATING RINGS */
  .slide-right .ring {
    display: none !important;
  }

  /* TEXT SECTION */
  .slide-left {
    width: 100%;
    padding: 20px;
    align-items: center;
    text-align: center;
  }

  .slide-left h2 {
    font-size: 1.4rem !important;
    color: #000;
    margin-bottom: 8px;
    font-weight: 800;
  }

  .slide-left p {
    font-size: 0.95rem !important;
    margin-bottom: 0px;
    color: #333;
  }

  /* BUTTON */
  .btn-primary {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
    border-radius: 10px;
    align-self: center;
    margin-bottom: 30px;
  }

/* Slider Dots (rectangular dashes) */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  width: 25px;      /* rectangle width */
  height: 7px;      /* rectangle height */
  background: #FF9800; /* orange color */
  border-radius: 3px;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  opacity: 1;
  background: #ff6600; /* darker orange when active */
}
}


  /* ============================
     FEATURED STORES FIX
     ============================ */
  .featured-stores {
    padding: 30px 15px !important;
  }
.stores-header {
    display: flex;
    justify-content: space-between;   /* One on left, one on right */
    align-items: center;
    padding: 0 5px;
    width: 100%;
    margin-bottom: 10px;
}

/* Make "Featured Stores" smaller */
.stores-header h2 {
    font-size: 1.8rem !important;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Make "All Stores" button smaller */
.stores-header .view-more-btn {
    font-size: 0.9rem !important;
    padding: 6px 12px !important;
    border-radius: 6px;
    margin-bottom: 20px;
}
  .stores-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
  }

  .store img {
    width: 120px !important;
    height: 100px !important;
  }

  /* ============================
     CATEGORY SECTION FIX
     ============================ */
  .categories-section {
    padding: 30px 15px !important;
    margin: 10px;
  }
  .categories-section h2{
    font-size: 1.8rem !important;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
    .category-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }

  .category-item {
    padding: 1.2rem 0.7rem !important;
  }

  .category-icon img {
    width: 32px !important;
    height: 32px !important;
  }

  /* ============================
     STATS SECTION FIX
     ============================ */
  .stats-container {
    padding: 20px !important;
    margin: 10px !important;
    margin-top: 40px !important;
  }

  .stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }

  .stat-number {
    font-size: 1.6rem !important;
  }

  /* ============================
     BLOG SECTION FIX
     ============================ */
  .blog-section {
    padding: 15px !important;
    margin: 10px !important;
  }

  .blog-container {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .blog-card img {
    height: 120px !important;
  }

  .blog-full {
    height: 320px !important;
  }
  .blog-overlay h3,h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

  /* ============================
     COUPON CARDS FIX
     ============================ */
  .coupon-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-bottom: 0px !important;
  }

  .coupons-section h2{
    font-size: 1.8rem !important;
  }
  .coupon-brand img {
    height: 150px !important;
    object-fit: contain !important;
  }
.faq-section{
  margin-top: -40px !important;
}
  .faq-section h2 {
  text-align: left;
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #1A1A1A;
}

  /* ============================
     FOOTER FIXES
     ============================ */
  footer {
    padding: 4rem 5% 2rem !important;
  }

  /* Grid becomes single column */
  footer > div {
    margin: 10px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* Remove large 300px left margin from Quick Links */
  footer div[style*="margin-left: 300px"] {
    margin-left: 0 !important;
  }

  /* Adjust headings */
  footer h3 {
    font-size: 1.2rem !important;
    margin-top: 10px !important;
  }

  /* Paragraph text size */
  footer p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  /* Social icons */
  footer a i {
    font-size: 20px !important;
  }

  /* Footer overlay (big faded text) */
  .footer-overlay {
    font-size: 2.5rem !important;
    text-align: center;
    margin-bottom: 90px;
    margin-top: 5px !important;
    letter-spacing: 6px !important;
  }

  /* Newsletter input + button */
  footer form {
    display: flex;
    width: 100%;
  }

  footer form input {
    width: 65% !important;
    font-size: 0.9rem;
  }

  footer form button {
    width: 35% !important;
    font-size: 0.9rem !important;
    padding: 10px !important;
  }

  /* Bottom Tagline */
  footer > div[style*="font-size:3rem"] {
    font-size: 1.7rem !important;
    margin-top: 30px !important;
  }

  /* Bottom copyright */
  footer > div[style*="border-top"] {
    font-size: 12px !important;
    margin-top: 10px !important;
  }

  /* Floating coupon icons hidden on mobile */
  .footer-coupon-icon {
    display: none !important;
  }
    /* =============================
        FOOTER ICONS ON MOBILE
     ============================= */
  .footer-coupon-icon {
    display: block !important;
    position: absolute;
    opacity: 0.25;      /* Light faded look */
    width: 60px;        /* Smaller icons */
    height: 180px;
  }

  .footer-coupon-icon.left {
    left: 220px;
    top: 15px;
  }

  .footer-coupon-icon.center {
    left: 50%;
    transform: translateX(-50%);
    bottom: 255px;
    height: 120px;
  }

  .footer-coupon-icon.right {
    left: 250px;
    bottom: 235px;
  }

  .footer-coupon-icon.rightbottom {
    right: 5px;
    bottom: 170px;
  }
}

      /* ======================================
       MOBILE VERSION — HEADER SECTION
   ====================================== */
@media (max-width: 768px) {

  .container {
    padding: 10px !important;
  }

  .header {
    flex-direction: column;        /* stack logo + text vertically */
    text-align: center;
    padding: 20px !important;
    gap: 15px;
  }

  .logo1 img {
    height: 80px !important;     /* smaller for mobile */
    width: 120px !important;
  }

  .header-content h1 {
    font-size: 1rem !important;  /* reduce heading size */
    line-height: 1;
    margin-bottom: 5px;
  }
  
}

@media (max-width: 768px) {

  .mobile-menu-toggle {
    display: block;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -260px;               /* ⬅️ hidden on left */
    height: 100vh;
    width: 260px;
    background: #ffffff;
    flex-direction: column;
    padding: 80px 20px 20px;
    gap: 25px;
    box-shadow: 5px 0 25px rgba(0,0,0,0.15);
    transition: left 0.35s ease;
    z-index: 1000;
    display: flex;
  }

  .nav-menu.active {
    left: 0;                    /* ⬅️ slide in */
  }

  .nav-menu li a {
    font-size: 18px;
    font-weight: 600;
  }

  /* Optional overlay */
  body.menu-open {
    overflow: hidden;
  }
}

/* ===== SEARCH POPUP ===== */
.search-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  z-index: 5000;
}

.search-popup.active {
  display: flex;
}

.search-popup-content {
  width: 90%;
  max-width: 500px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

#popupSearchInput {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
}

.search-results {
  list-style: none;
  margin-top: 15px;
  max-height: 300px;
  overflow-y: auto;
  padding: 0;
}

.search-results li {
  padding: 12px 14px;
  cursor: pointer;
  border-radius: 8px;
  font-size: 15px;
}

.search-results li:hover {
  background: #f5f5f7;
}


/* Dynamic coupon uploads */
.ct-coupon-image,
.discount-badge1 > img {
  width: 88px;
  height: 72px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}
.coupon-brand img {
  object-fit: contain;
}


/* Fully dynamic API states */
.ct-category-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border: 4px solid #ff8a00;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  font-size: 24px;
  font-weight: 800;
  color: #ff6b00;
}

.ct-category-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.ct-blog-loading,
.ct-empty-state {
  grid-column: 1 / -1;
  width: 100%;
  padding: 40px 20px;
  text-align: center;
  color: #667085;
}


/* Backend-driven country and language selector */
.region-selector {
  position: relative;
  flex-shrink: 0;
}

.region-dropdown {
  position: relative;
}

.region-btn {
  min-width: 155px;
  min-height: 48px;
  padding: 7px 12px;
  border: 1px solid #e3e7ee;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  color: #172033;
}

.ct-country-flag {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.ct-country-button-copy,
.ct-country-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.ct-country-button-copy strong,
.ct-country-copy strong {
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.ct-country-button-copy small,
.ct-country-copy small {
  margin-top: 3px;
  color: #7b8495;
  font-size: 10px;
  white-space: nowrap;
}

.ct-country-arrow {
  margin-left: auto;
  color: #7b8495;
}

.region-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 9999;
  display: none;
  width: 250px;
  max-height: 360px;
  margin: 0;
  padding: 8px;
  overflow-y: auto;
  list-style: none;
  border: 1px solid #e3e7ee;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(20, 30, 55, 0.16);
}

.region-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border-radius: 10px;
  cursor: pointer;
}

.region-menu li:hover {
  background: #fff2ea;
}

html[dir="rtl"] .region-menu {
  right: auto;
  left: 0;
}

@media (max-width: 900px) {
  .region-btn {
    min-width: 58px;
  }

  .ct-country-button-copy strong {
    display: none;
  }

  .ct-country-button-copy small {
    margin: 0;
  }

  .region-menu {
    width: 230px;
  }
}


/* v14: API-driven homepage categories */
.ct-category-loading {
  grid-column: 1 / -1;
  padding: 40px 20px;
  text-align: center;
  color: #667085;
}

.category-item .category-icon {
  display: grid;
  place-items: center;
}

.category-item .category-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.ct-category-letter {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #ff7043;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.category-count small {
  display: block;
  margin-top: 5px;
  color: #8a8f9b;
  font-size: 11px;
}

/* v14: country selector always visible at normal desktop zoom */
.navbar {
  gap: 14px;
}

.nav-logo {
  flex: 0 0 auto;
}

.nav-search {
  min-width: 180px;
  flex: 1 1 420px;
}

.nav-menu {
  flex: 0 1 auto;
  gap: 18px;
  white-space: nowrap;
}

.region-selector {
  display: block !important;
  flex: 0 0 auto;
  margin-left: 0;
}

.region-btn {
  min-width: 76px !important;
  width: auto;
  padding: 8px 11px !important;
  justify-content: center;
}

.ct-country-code {
  font-size: 12px;
  font-weight: 800;
}

.ct-country-arrow {
  margin-left: 1px;
}

@media (max-width: 1180px) {
  .navbar {
    gap: 9px;
  }

  .nav-menu {
    gap: 11px;
  }

  .nav-menu a {
    font-size: 13px;
  }

  .nav-search {
    flex-basis: 300px;
  }
}

@media (max-width: 980px) {
  .navbar {
    flex-wrap: wrap;
  }

  .nav-logo {
    order: 1;
  }

  .region-selector {
    order: 2;
    margin-left: auto;
  }

  .nav-search {
    order: 3;
    flex: 1 1 calc(100% - 110px);
  }

  .nav-menu {
    order: 4;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .nav-search {
    flex-basis: 100%;
  }

  .nav-menu {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .region-menu {
    position: fixed;
    top: 76px;
    right: 12px;
    left: 12px;
    width: auto;
    max-height: 60vh;
  }
}


/* v15: Arabic/Urdu country-language switching */
html[dir="rtl"] .navbar,
html[dir="rtl"] .nav-menu,
html[dir="rtl"] .region-btn,
html[dir="rtl"] .region-menu li {
  direction: rtl;
}

html[dir="rtl"] .region-menu {
  right: auto;
  left: 0;
}

html[dir="rtl"] .ct-country-copy {
  align-items: flex-end;
  text-align: right;
}

html[dir="rtl"] .search-container input,
html[dir="rtl"] .search-box input {
  text-align: right;
}


/* v16: uniform backend-uploaded store images */
.ct-store-image,
.store > a > img,
.store-card3 > img,
.logo1 img {
  width: 150px !important;
  height: 150px !important;
  max-width: 150px !important;
  max-height: 150px !important;
  display: block;
  margin: 0 auto 14px;
  border-radius: 18px;
  background: #fff;
  object-fit: contain !important;
  padding: 10px;
  box-sizing: border-box;
}

.store,
.store-card3 {
  text-align: center;
}

.store-card3 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* v16: all CMS pages use the About Us layout */
.ct-dynamic-page-section {
  min-height: 520px;
}

.ct-dynamic-page-content {
  max-width: 1000px;
  margin: 28px auto 0;
  padding: 34px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-hover);
  color: #242938;
  line-height: 1.8;
}

.ct-dynamic-page-content h1,
.ct-dynamic-page-content h2,
.ct-dynamic-page-content h3 {
  margin: 1.2em 0 .55em;
}

.ct-dynamic-page-content p {
  margin: 0 0 1em;
}

.ct-dynamic-page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* v17 header spacing */
.navbar{width:100%;max-width:1240px;margin:0 auto;padding-left:20px;padding-right:20px;gap:14px}.nav-search{flex:1 1 330px!important;max-width:500px}.search-input{width:100%!important;min-width:0}.nav-menu{margin-left:auto;flex:0 0 auto;gap:20px}.region-selector{margin-left:12px!important}.region-btn{min-width:82px!important}.region-menu{width:285px!important}@media(max-width:1160px){.nav-search{max-width:400px}.nav-menu{gap:13px}.region-selector{margin-left:6px!important}}@media(max-width:1020px){.navbar{max-width:none}.nav-search{max-width:none}}


/* v18: live-reference header */
.navbar {
  max-width: 1180px !important;
  min-height: 72px;
  padding: 8px 12px !important;
  gap: 16px !important;
  flex-wrap: nowrap !important;
}

.nav-logo img,
.logo img {
  width: 145px !important;
  height: auto !important;
}

.nav-search {
  max-width: 535px !important;
  flex: 1 1 430px !important;
}

.nav-menu {
  gap: 20px !important;
  flex-shrink: 0;
}

.region-selector {
  margin-left: 4px !important;
  flex-shrink: 0;
}

.region-btn {
  min-width: 70px !important;
  height: 38px;
  padding: 5px 10px !important;
  border-radius: 12px !important;
  gap: 8px;
}

.region-menu {
  width: 250px !important;
}

.ct-country-flag-image {
  width: 24px;
  height: 18px;
  flex: 0 0 24px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(15,23,42,.12);
}

.ct-country-flag-fallback {
  display: grid;
  width: 24px;
  height: 18px;
  place-items: center;
  border-radius: 2px;
  background: #eef2f7;
  font-size: 9px;
  font-weight: 800;
}

.ct-country-api-image,
.category-item .category-icon img,
.ct-category-icon img {
  width: 54px !important;
  height: 54px !important;
  object-fit: contain !important;
}

/* Keep brand names, coupon codes and links unchanged when required */
.ct-no-translate {
  unicode-bidi: isolate;
}

@media (max-width: 1100px) {
  .nav-search {
    max-width: 390px !important;
  }

  .nav-menu {
    gap: 12px !important;
  }
}

@media (max-width: 900px) {
  .navbar {
    flex-wrap: wrap !important;
  }

  .nav-search {
    order: 3;
    max-width: none !important;
    flex-basis: 100% !important;
  }

  .nav-menu {
    order: 4;
    width: 100%;
    justify-content: center;
  }

  .region-selector {
    margin-left: auto !important;
  }
}


/* v18.3 dynamic CMS page diagnostics */
.ct-page-error {
  padding: 24px;
  border: 1px solid #fecaca;
  border-radius: 14px;
  background: #fff1f2;
  color: #991b1b;
}

.ct-page-error h3 {
  margin: 0 0 10px;
}

.ct-page-error code {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 8px;
  border-radius: 6px;
  background: #fff;
  color: #111827;
  word-break: break-all;
}


.ct-page-empty {
  padding: 22px;
  border: 1px solid #fde68a;
  border-radius: 14px;
  background: #fffbeb;
  color: #92400e;
}

.ct-page-empty h3 {
  margin: 0 0 10px;
}


/* v18.5 — dynamic pages use the original static About Us design */
.ct-dynamic-page-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.ct-static-about-content {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-hover);
  line-height: 1.7;
  text-align: left;
  color: #111827;
}

.ct-static-about-content h1,
.ct-static-about-content h2,
.ct-static-about-content h3,
.ct-static-about-content h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #111827;
}

.ct-static-about-content p {
  margin-bottom: 18px;
}

.ct-static-about-content ul,
.ct-static-about-content ol {
  padding-left: 24px;
  margin-bottom: 18px;
}

.ct-static-about-content li {
  margin-bottom: 6px;
}

html[dir="rtl"] .ct-static-about-content {
  text-align: right;
}

html[dir="rtl"] .ct-static-about-content ul,
html[dir="rtl"] .ct-static-about-content ol {
  padding-left: 0;
  padding-right: 24px;
}

/* Unified header spacing on every page */
header nav {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  gap: 14px;
}

header .nav-search {
  flex: 1 1 380px;
  max-width: 470px;
  min-width: 220px;
}

header .nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  white-space: nowrap;
}

header .region-selector {
  flex: 0 0 auto;
  margin-left: 14px !important;
}

header .region-btn {
  min-width: 88px !important;
}

@media (max-width: 1120px) {
  header .nav-search {
    max-width: 370px;
  }

  header .nav-menu {
    gap: 12px;
  }

  header .region-selector {
    margin-left: 8px !important;
  }
}

@media (max-width: 940px) {
  header nav {
    flex-wrap: wrap;
  }

  header .nav-search {
    order: 3;
    max-width: none;
    flex-basis: 100%;
  }

  header .nav-menu {
    order: 4;
    width: 100%;
    justify-content: center;
  }

  header .region-selector {
    margin-left: auto !important;
  }
}


/* v19 — restore the original static homepage order and spacing */
.ct-home-featured-stores {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  background: #fff;
}

.ct-home-featured-stores .store-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.ct-home-featured-stores .store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.ct-home-featured-stores .all-stores-btn {
  background: #ff6b00;
  color: white;
  padding: .8rem 1.5rem;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 700;
}

/* Blog listing follows original static composition */
.ct-blogs-page-title {
  padding: 80px 20px;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, #ff7b54, #ffb26b);
}

.ct-blogs-page-title h1 {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
}

.ct-blogs-page-title p {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

.ct-our-blogs-title,
.blog-sections .blog-title {
  width: 100%;
  text-align: center !important;
  margin: 0 auto 22px !important;
}

/* Blog inner page: image first, then full content underneath */
#dynamicBlogArticle.blog-container {
  display: block !important;
}

#dynamicBlogArticle > #dynamicBlogImage {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
}

#dynamicBlogArticle .blog-content {
  display: block !important;
  width: auto !important;
  padding: 40px 35px 50px;
}

.ct-rich-content {
  line-height: 1.8;
  font-size: 1rem;
}

.ct-rich-content h1 { font-size: 2.4rem; margin: 1.2em 0 .55em; }
.ct-rich-content h2 { font-size: 2rem; margin: 1.2em 0 .55em; }
.ct-rich-content h3 { font-size: 1.65rem; margin: 1.15em 0 .5em; }
.ct-rich-content h4 { font-size: 1.4rem; margin: 1.1em 0 .45em; }
.ct-rich-content h5 { font-size: 1.2rem; margin: 1em 0 .4em; }
.ct-rich-content h6 { font-size: 1rem; margin: 1em 0 .35em; }
.ct-rich-content p { margin: 0 0 1.15em; }
.ct-rich-content ul,
.ct-rich-content ol { margin: 0 0 1.2em; padding-left: 1.6em; }
.ct-rich-content img { max-width: 100%; height: auto; border-radius: 10px; }
.ct-rich-content figure { margin: 1.5rem 0; }

/* Dynamic pages match the original static About page typography */
.ct-static-about-content {
  font-size: 1rem;
  line-height: 1.7;
  padding: 2rem;
}

.ct-static-about-content h1 { font-size: 2.1rem; margin: 0 0 .65em; }
.ct-static-about-content h2 { font-size: 1.65rem; margin: 1.35em 0 .45em; }
.ct-static-about-content h3 { font-size: 1.25rem; margin: 1.25em 0 .4em; }
.ct-static-about-content h4 { font-size: 1.1rem; margin: 1.15em 0 .35em; }
.ct-static-about-content h5,
.ct-static-about-content h6 { margin: 1em 0 .3em; }
.ct-static-about-content p { margin: 0 0 1.15em; }
.ct-static-about-content li { margin-bottom: .35em; }

/* Header space between Contact and country dropdown */
header .nav-search {
  max-width: 430px !important;
}

header .region-selector {
  margin-left: 22px !important;
}

/* Dropdown: flag + manually entered country code only */
.region-menu .ct-country-copy small,
.region-menu .ct-country-copy span {
  display: none !important;
}

.region-menu .ct-country-copy strong {
  font-size: .95rem;
}

.region-menu .region-option {
  justify-content: flex-start;
  gap: 12px;
}

@media (max-width: 900px) {
  .ct-blogs-page-title {
    padding: 55px 18px;
  }
  .ct-blogs-page-title h1 { font-size: 2.2rem; }
  .ct-blogs-page-title p { font-size: 1.35rem; }
}


/* v19.1 */
.ct-static-stat-icon{width:62px;height:62px;margin:0 auto 18px;display:grid;place-items:center;border:2px solid #ff6b35;border-radius:50%;font-size:28px;background:#fff8f3}
.ct-overlay-blog-card{position:relative;overflow:hidden}
.ct-overlay-blog-card img{display:block;width:100%;height:100%;object-fit:cover}
.ct-overlay-blog-card .blog-info,.ct-overlay-blog-card .blog-content,.ct-overlay-blog-card .blog-card-content{position:absolute!important;inset:auto 0 0 0;z-index:2;padding:28px 24px 20px!important;color:#fff!important;background:linear-gradient(transparent,rgba(0,0,0,.82))}
.ct-overlay-blog-card h2,.ct-overlay-blog-card h3,.ct-overlay-blog-card h4,.ct-overlay-blog-card p,.ct-overlay-blog-card .date,.ct-overlay-blog-card .tag{color:#fff!important}
body:has(#dynamicBlogArticle){padding-top:0!important}
#dynamicBlogArticle.blog-container{display:block!important;max-width:850px;margin:0}
#dynamicBlogArticle #dynamicBlogImage{display:block;width:100%;height:auto;object-fit:cover;border-radius:16px 16px 0 0}
#dynamicBlogArticle .blog-content{width:100%!important;padding:38px 36px 48px!important}
.ct-static-about-content{line-height:1.62}
.ct-static-about-content h1{margin:0 0 .4em!important}
.ct-static-about-content h2{margin:.95em 0 .3em!important}
.ct-static-about-content h3{margin:.85em 0 .25em!important}
.ct-static-about-content h4,.ct-static-about-content h5,.ct-static-about-content h6{margin:.75em 0 .2em!important}
.ct-static-about-content p{margin:0 0 .85em!important}
.ct-static-about-content ul,.ct-static-about-content ol{margin:0 0 .9em!important}
.ct-blogs-page-title + .ct-blogs-page-title{display:none!important}


/* v19.2 — live site fidelity fixes */

/* The live categories page shows image/icon + category name only. */
.categories-grid .category-count,
.category-section .category-count,
#homepageCategoryGrid .category-count {
  display: none !important;
}

.category-card h3,
.category-item h3 {
  margin-bottom: 0 !important;
}

/* Remove any legacy orange blog title banners if old markup remains cached. */
.ct-blogs-page-title,
.feature-stores2 {
  display: none !important;
}

/* Live blog collage: one large article on left, up to three on right. */
.blog-section {
  padding-top: 16px !important;
}

.blog-section > .blog-container {
  display: grid !important;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-section .main-blog,
.blog-section .small-blog {
  text-decoration: none;
  color: inherit;
}

.ct-live-blog-overlay {
  position: relative !important;
  display: block !important;
  overflow: hidden;
  border-radius: 12px;
  min-height: 0;
}

.ct-live-blog-overlay > img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
}

.blog-section .main-blog {
  min-height: 460px;
}

.ct-live-blog-side {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-section .small-blog {
  min-height: 135px;
}

.ct-live-blog-copy {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 60px 24px 22px;
  text-align: left;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0),
    rgba(0,0,0,.82)
  );
  color: #fff;
}

.ct-live-blog-copy .tag {
  display: block;
  margin-bottom: 7px;
  color: #fff !important;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ct-live-blog-copy h3 {
  margin: 0;
  color: #fff !important;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
}

.small-blog .ct-live-blog-copy {
  padding: 36px 16px 14px;
}

.small-blog .ct-live-blog-copy h3 {
  font-size: 1rem;
}

/* Our Blogs stays centered like the live reference. */
.ct-our-blogs-title,
.blog-sections .blog-title,
.blog-section .blog-title {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Remove legacy styling that positioned featured blog text below images. */
.blog-container .main-blog > .blog-content,
.blog-container .small-blog > .blog-content {
  position: static;
}

@media (max-width: 800px) {
  .blog-section > .blog-container {
    grid-template-columns: 1fr;
  }

  .blog-section .main-blog {
    min-height: 360px;
  }

  .ct-live-blog-side {
    grid-template-rows: none;
    grid-template-columns: 1fr;
  }

  .blog-section .small-blog {
    min-height: 190px;
  }
}


/* v19.3 — single live-style Blogs hero banner */
.ct-blogs-live-hero {
  width: 100%;
  min-height: 315px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff7a4d 0%, #ff9a5f 100%);
  text-align: center;
  color: #fff;
}

.ct-blogs-live-hero-inner {
  padding: 40px 20px;
}

.ct-blogs-live-hero h1 {
  margin: 0 0 20px;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.ct-blogs-live-hero p {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
}

/* Ensure older duplicate banners remain hidden if cached markup survives. */
.ct-blogs-page-title {
  display: none !important;
}

@media (max-width: 768px) {
  .ct-blogs-live-hero {
    min-height: 240px;
  }

  .ct-blogs-live-hero h1 {
    font-size: 2.2rem;
  }

  .ct-blogs-live-hero p {
    font-size: 1.35rem;
  }
}


/* v19.4 requested visual fixes */

/* Featured stores: maximum 5 boxes in one row. */
.ct-home-featured-stores .store-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 2rem !important;
}
.ct-home-featured-stores {
  max-width: 1200px !important;
}
@media (max-width: 980px) {
  .ct-home-featured-stores .store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 620px) {
  .ct-home-featured-stores .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Explore Categories: visible white space on left/right like reference. */
.categories-section {
  width: calc(100% - 10%) !important;
  max-width: 1200px !important;
  margin: 3rem auto !important;
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}
@media (max-width: 768px) {
  .categories-section {
    width: calc(100% - 32px) !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

/* Coupon image/logo: larger, reference-like visual area. */
.coupon-brand {
  height: 190px !important;
  overflow: hidden !important;
  border-radius: 9px !important;
  background: #fff !important;
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.coupon-brand img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: contain !important;
  margin: 0 !important;
  padding: 8px !important;
  transform: scale(1.18);
}

/* Static stats: orange outline icon + slightly bolder subtext. */
.ct-static-stat-icon {
  width: 58px !important;
  height: 58px !important;
  background: transparent !important;
  border: 2px solid #ff6b35 !important;
  color: #ff6b35 !important;
  font-size: 26px !important;
}
.ct-stat-symbol {
  display: block;
  color: #ff6b35;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}
.stat-card span:last-child {
  font-weight: 600 !important;
  color: #4b4b4b !important;
}

/* Footer Quick Links must remain on one line. */
footer > div {
  align-items: flex-start;
}
footer > div > div:nth-child(2) {
  min-width: 180px !important;
  margin-left: 120px !important;
}
footer > div > div:nth-child(2) ul li,
footer > div > div:nth-child(2) ul li a {
  white-space: nowrap !important;
  width: max-content !important;
}
@media (max-width: 1000px) {
  footer > div > div:nth-child(2) {
    margin-left: 40px !important;
  }
}

/* Country flags: consistent uploaded/automatic dimensions. */
.ct-country-flag-image {
  width: 24px !important;
  height: 18px !important;
  object-fit: cover !important;
  border-radius: 2px !important;
  flex: 0 0 24px;
}


/* v19.5 — exact uploaded statistics icons */
.ct-static-stat-icon {
  width: 58px !important;
  height: 58px !important;
  display: grid !important;
  place-items: center !important;
  border: none !important;
  background: transparent !important;
  margin: 0 auto 16px !important;
}

.ct-static-stat-icon img {
  width: 50px !important;
  height: 50px !important;
  object-fit: contain !important;
  display: block !important;
}

.stats .stat-card .stat-number {
  color: #ff6238 !important;
  font-weight: 800 !important;
}

.stats .stat-card > span:last-child {
  font-weight: 600 !important;
}

/* v19.5 — footer layout matched to supplied reference */
footer .footer-container,
footer > .container,
footer > div:first-child {
  display: grid !important;
  grid-template-columns: minmax(280px, 1.25fr) minmax(190px, .45fr) minmax(360px, .95fr) !important;
  column-gap: 70px !important;
  align-items: start !important;
  max-width: 1180px !important;
  width: calc(100% - 48px) !important;
  margin: 0 auto !important;
}

footer .footer-links,
footer .quick-links,
footer > div:first-child > div:nth-child(2) {
  min-width: 190px !important;
  width: 190px !important;
  margin-left: 0 !important;
}

footer .footer-links ul,
footer .quick-links ul,
footer > div:first-child > div:nth-child(2) ul {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

footer .footer-links li,
footer .quick-links li,
footer > div:first-child > div:nth-child(2) li {
  display: block !important;
  width: 100% !important;
  margin-bottom: 10px !important;
  white-space: nowrap !important;
}

footer .footer-links a,
footer .quick-links a,
footer > div:first-child > div:nth-child(2) a {
  display: inline-block !important;
  white-space: nowrap !important;
  width: auto !important;
  max-width: none !important;
}

footer .subscribe,
footer .footer-subscribe,
footer > div:first-child > div:nth-child(3) {
  min-width: 360px !important;
}

@media (max-width: 900px) {
  footer .footer-container,
  footer > .container,
  footer > div:first-child {
    grid-template-columns: 1fr 1fr !important;
    column-gap: 40px !important;
    row-gap: 32px !important;
  }

  footer .subscribe,
  footer .footer-subscribe,
  footer > div:first-child > div:nth-child(3) {
    grid-column: 1 / -1 !important;
    min-width: 0 !important;
  }
}

@media (max-width: 620px) {
  footer .footer-container,
  footer > .container,
  footer > div:first-child {
    grid-template-columns: 1fr !important;
  }

  footer .footer-links,
  footer .quick-links,
  footer > div:first-child > div:nth-child(2),
  footer .subscribe,
  footer .footer-subscribe,
  footer > div:first-child > div:nth-child(3) {
    min-width: 0 !important;
    width: 100% !important;
  }
}


/* ============================================================
   v20 — MOBILE RESPONSIVE RESTORE (CouponShatch reference style)
   Final override layer intentionally placed at end of stylesheet.
   ============================================================ */

@media (max-width: 900px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body {
    padding-top: 84px !important;
  }

  header {
    height: 84px !important;
    min-height: 84px !important;
    background: #fff !important;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.10) !important;
  }

  header nav {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 46px minmax(88px, 1fr) 48px auto !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    height: 84px !important;
    min-height: 84px !important;
    margin: 0 !important;
    padding: 0 14px !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
  }

  /* Hamburger: fixed left position like the reference. */
  header .mobile-menu-toggle {
    display: grid !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    place-items: center !important;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #111 !important;
    font-size: 34px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    z-index: 10003 !important;
  }

  /* Logo stays in the header instead of being pushed by the search row. */
  header .logo {
    display: flex !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  header .logo-link {
    display: flex !important;
    align-items: center !important;
    max-width: 100% !important;
  }

  header .logo-img,
  header .logo img {
    width: 142px !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  /* Search is ICON ONLY on mobile. No permanent white search row. */
  header .nav-search {
    display: grid !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    place-items: center !important;
    width: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: none !important;
    flex-basis: auto !important;
    order: initial !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  header .nav-search .search-input {
    display: none !important;
    width: 0 !important;
    min-width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  header .search-btn {
    display: grid !important;
    place-items: center !important;
    width: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 50% !important;
    background: #ff6f61 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .14) !important;
  }

  header .search-btn img {
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    object-fit: contain !important;
  }

  /* Compact country/language selector; dropdown stays under its button. */
  header .region-selector {
    display: flex !important;
    grid-column: 4 !important;
    grid-row: 1 !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    order: initial !important;
  }

  header .region-dropdown {
    position: relative !important;
    width: auto !important;
  }

  header .region-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 92px !important;
    max-width: 118px !important;
    height: 50px !important;
    min-height: 50px !important;
    margin: 0 !important;
    padding: 7px 11px !important;
    gap: 8px !important;
    border: 1px solid #e0e3e8 !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 3px 9px rgba(15, 23, 42, .08) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }

  header .region-btn img,
  header .ct-country-flag-image {
    width: 27px !important;
    min-width: 27px !important;
    max-width: 27px !important;
    height: 19px !important;
    object-fit: cover !important;
  }

  header .region-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    left: auto !important;
    width: 172px !important;
    min-width: 172px !important;
    max-width: 172px !important;
    max-height: 68vh !important;
    margin: 0 !important;
    padding: 8px !important;
    overflow-y: auto !important;
    border: 1px solid #e3e7ee !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 14px 35px rgba(20, 30, 55, .18) !important;
    z-index: 10020 !important;
  }

  header .region-menu li,
  header .region-menu .region-option {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-height: 48px !important;
    padding: 9px 10px !important;
    gap: 11px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
  }

  /* 80% off-canvas navigation. It overlays content; it never pushes the page. */
  header .nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 80vw !important;
    min-width: 0 !important;
    max-width: 360px !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 118px 34px 36px !important;
    gap: 30px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    list-style: none !important;
    background: #fff !important;
    box-shadow: 8px 0 30px rgba(15, 23, 42, .14) !important;
    transform: translateX(-105%) !important;
    transition: transform .30s ease !important;
    z-index: 10002 !important;
  }

  header .nav-menu.active {
    transform: translateX(0) !important;
    left: 0 !important;
  }

  header .nav-menu li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  header .nav-menu li a {
    display: block !important;
    width: 100% !important;
    padding: 4px 0 !important;
    color: #181818 !important;
    font-size: 20px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
    text-align: left !important;
    text-decoration: none !important;
    white-space: normal !important;
  }

  body.menu-open {
    overflow: hidden !important;
  }

  /* Search overlay matching the old site's click-to-open behavior. */
  .search-popup {
    position: fixed !important;
    inset: 84px 0 0 !important;
    display: none !important;
    align-items: flex-start !important;
    justify-content: center !important;
    width: 100% !important;
    height: calc(100dvh - 84px) !important;
    padding: 28px 16px 16px !important;
    background: rgba(25, 20, 12, .52) !important;
    z-index: 9998 !important;
  }

  .search-popup.active {
    display: flex !important;
  }

  .search-popup-content {
    width: min(100%, 620px) !important;
    max-width: 620px !important;
    margin: 0 auto !important;
    padding: 26px 22px !important;
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .22) !important;
  }

  #popupSearchInput {
    display: block !important;
    width: 100% !important;
    height: 58px !important;
    padding: 0 18px !important;
    border: 1px solid #d7d9de !important;
    border-radius: 14px !important;
    background: #fff !important;
    color: #222 !important;
    font-size: 17px !important;
    outline: none !important;
  }

  .search-results {
    width: 100% !important;
    max-height: 44vh !important;
    overflow-y: auto !important;
  }

  /* Keep homepage/content centered and prevent old mobile rules from shifting it. */
  .homepage-slider,
  .slide,
  .blog-section,
  .stats-container,
  .feature-stores,
  .ct-home-featured-stores,
  .categories-section,
  .coupon-section,
  .faq-section,
  footer {
    transform: none !important;
    left: auto !important;
    right: auto !important;
  }

  /* Reference-like 2 x 2 statistics grid on phones/tablets. */
  .stats-container {
    width: calc(100% - 28px) !important;
    max-width: 720px !important;
    margin: 36px auto !important;
    padding: 26px 18px !important;
    border-radius: 18px !important;
  }

  .stats-container .stats {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    gap: 30px 18px !important;
  }

  .stats-container .stat-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-width: 0 !important;
    padding: 8px 4px !important;
    text-align: center !important;
  }

  .stats-container .ct-static-stat-icon {
    width: 54px !important;
    height: 54px !important;
    margin: 0 auto 12px !important;
  }

  .stats-container .ct-static-stat-icon img {
    width: 48px !important;
    height: 48px !important;
  }

  .stats-container .stat-number {
    display: block !important;
    width: 100% !important;
    margin: 0 0 7px !important;
    font-size: clamp(1.55rem, 6.4vw, 2rem) !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  .stats-container .stat-card > span:last-child {
    display: block !important;
    width: 100% !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
  }
}

@media (max-width: 460px) {
  header nav {
    grid-template-columns: 42px minmax(72px, 1fr) 44px auto !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    gap: 6px !important;
  }

  header .mobile-menu-toggle {
    width: 40px !important;
    font-size: 31px !important;
  }

  header .logo-img,
  header .logo img {
    width: 118px !important;
  }

  header .nav-search,
  header .search-btn {
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
  }

  header .region-btn {
    min-width: 78px !important;
    max-width: 94px !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 6px 8px !important;
    gap: 6px !important;
  }

  header .region-btn img,
  header .ct-country-flag-image {
    width: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    height: 17px !important;
  }

  header .nav-menu {
    width: 80vw !important;
    max-width: 80vw !important;
    padding: 112px 28px 32px !important;
    gap: 27px !important;
  }

  .stats-container {
    width: calc(100% - 20px) !important;
    padding: 22px 12px !important;
  }

  .stats-container .stats {
    gap: 26px 10px !important;
  }

  .stats-container .stat-card > span:last-child {
    font-size: 14px !important;
  }
}

/* ============================================================
   v21 — MOBILE HEADER / DRAWER / SEARCH REFERENCE MATCH
   Strict final overrides to neutralize legacy mobile positioning.
   ============================================================ */
@media (max-width: 900px) {
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body {
    padding-top: 70px !important;
  }

  header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 70px !important;
    min-height: 70px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,.12) !important;
    z-index: 9999 !important;
  }

  header nav {
    position: relative !important;
    inset: auto !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 70px !important;
    min-height: 70px !important;
    margin: 0 !important;
    padding: 0 14px !important;
    gap: 8px !important;
    transform: none !important;
  }

  header .mobile-menu-toggle {
    position: static !important;
    inset: auto !important;
    order: 1 !important;
    flex: 0 0 40px !important;
    display: grid !important;
    place-items: center !important;
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #111 !important;
    font-size: 30px !important;
    line-height: 1 !important;
    transform: none !important;
    z-index: 10004 !important;
  }

  header .logo {
    position: static !important;
    inset: auto !important;
    order: 2 !important;
    flex: 1 1 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 70px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  header .logo-link {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  header .logo-img,
  header .logo img {
    display: block !important;
    width: 116px !important;
    max-width: 116px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  header .nav-search {
    position: static !important;
    inset: auto !important;
    order: 3 !important;
    flex: 0 0 46px !important;
    display: grid !important;
    place-items: center !important;
    width: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
    height: 46px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
  }

  header .nav-search .search-input {
    display: none !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  header .search-btn {
    position: static !important;
    inset: auto !important;
    display: grid !important;
    place-items: center !important;
    width: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
    height: 46px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #ff625b !important;
    box-shadow: 0 4px 10px rgba(0,0,0,.16) !important;
    transform: none !important;
  }

  header .search-btn img {
    width: 23px !important;
    max-width: 23px !important;
    height: 23px !important;
    margin: 0 !important;
    object-fit: contain !important;
  }

  header .region-selector {
    position: static !important;
    inset: auto !important;
    order: 4 !important;
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 70px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  header .region-dropdown {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    width: auto !important;
    margin: 0 !important;
    transform: none !important;
  }

  header .region-btn {
    position: static !important;
    inset: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 82px !important;
    max-width: 96px !important;
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 6px 9px !important;
    gap: 7px !important;
    border: 1px solid #dfe2e7 !important;
    border-radius: 17px !important;
    background: #fff !important;
    box-shadow: 0 3px 9px rgba(15,23,42,.08) !important;
    color: #111 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    transform: none !important;
  }

  header .region-btn img,
  header .ct-country-flag-image {
    width: 25px !important;
    min-width: 25px !important;
    max-width: 25px !important;
    height: 17px !important;
    margin: 0 !important;
    object-fit: cover !important;
  }

  header .region-menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
    width: 154px !important;
    min-width: 154px !important;
    max-width: 154px !important;
    height: auto !important;
    max-height: 66vh !important;
    margin: 0 !important;
    padding: 7px !important;
    overflow-y: auto !important;
    border: 1px solid #e3e6ea !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 12px 30px rgba(15,23,42,.18) !important;
    transform: none !important;
    z-index: 10020 !important;
  }

  header .region-menu li,
  header .region-menu .region-option {
    width: 100% !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 8px 9px !important;
    gap: 10px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-align: left !important;
  }

  /* Reference-like left drawer: fixed overlay, 80% viewport width, no page push. */
  header .nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    order: initial !important;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 80vw !important;
    min-width: 0 !important;
    max-width: 80vw !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 86px 20px 28px !important;
    gap: 28px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    list-style: none !important;
    background: #fff !important;
    box-shadow: 5px 0 18px rgba(0,0,0,.10) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate3d(-101%,0,0) !important;
    transition: transform .28s ease !important;
    z-index: 10002 !important;
  }

  header .nav-menu.active {
    left: 0 !important;
    transform: translate3d(0,0,0) !important;
  }

  header .nav-menu li {
    display: block !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  header .nav-menu li a {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 2px 0 !important;
    color: #171717 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-align: left !important;
    text-decoration: none !important;
    white-space: normal !important;
  }

  body.menu-open {
    overflow: hidden !important;
  }

  /* Search panel begins directly below fixed header and matches reference card. */
  .search-popup {
    position: fixed !important;
    top: 70px !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    inset: 70px 0 0 !important;
    display: none !important;
    align-items: flex-start !important;
    justify-content: center !important;
    width: 100% !important;
    height: calc(100dvh - 70px) !important;
    margin: 0 !important;
    padding: 28px 18px 18px !important;
    background: rgba(52, 40, 14, .58) !important;
    transform: none !important;
    z-index: 9998 !important;
  }

  .search-popup.active {
    display: flex !important;
  }

  .search-popup-content {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    max-width: 632px !important;
    min-height: 100px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    border: 0 !important;
    border-radius: 18px !important;
    background: #fff !important;
    box-shadow: 0 14px 32px rgba(0,0,0,.18) !important;
    transform: none !important;
  }

  #popupSearchInput {
    position: static !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 56px !important;
    margin: 0 !important;
    padding: 0 16px !important;
    border: 1px solid #d5d7dc !important;
    border-radius: 13px !important;
    background: #fff !important;
    color: #222 !important;
    font-size: 17px !important;
    line-height: 56px !important;
    outline: none !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .search-results {
    width: 100% !important;
    max-height: 42vh !important;
    margin-top: 8px !important;
    overflow-y: auto !important;
  }
}

@media (max-width: 390px) {
  header nav {
    padding-left: 10px !important;
    padding-right: 10px !important;
    gap: 5px !important;
  }

  header .mobile-menu-toggle {
    flex-basis: 36px !important;
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    font-size: 28px !important;
  }

  header .logo-img,
  header .logo img {
    width: 103px !important;
    max-width: 103px !important;
  }

  header .nav-search,
  header .search-btn {
    flex-basis: 42px !important;
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    height: 42px !important;
  }

  header .region-btn {
    min-width: 74px !important;
    max-width: 84px !important;
    height: 43px !important;
    min-height: 43px !important;
    padding: 5px 7px !important;
    gap: 5px !important;
    font-size: 13px !important;
  }

  header .region-btn img,
  header .ct-country-flag-image {
    width: 22px !important;
    min-width: 22px !important;
    max-width: 22px !important;
    height: 15px !important;
  }

  header .nav-menu {
    width: 80vw !important;
    max-width: 80vw !important;
    padding: 84px 18px 26px !important;
    gap: 27px !important;
  }
}

/* ============================================================
   v22 — MOBILE REFERENCE POLISH
   Header seam, auto-slider support, blogs, stats, stores, FAQ.
   ============================================================ */
@media (max-width: 900px) {
  /* 1. Header should sit flush on the hero like the reference. */
  header {
    box-shadow: none !important;
    border-bottom: 0 !important;
  }

  header nav {
    box-shadow: none !important;
    border-bottom: 0 !important;
  }

  /* Keep the thin orange progress line, but remove any grey divider/shadow. */
  header nav::after {
    box-shadow: none !important;
  }

  /* 2. Slider transform is controlled by home-ui.js. */
  .homepage-slider .slider-wrapper {
    will-change: transform;
    transition: transform .55s ease-in-out !important;
  }

  /* 3. Trending blogs: mobile cards match the reference rhythm.
     The final blog is larger and View More sits directly beneath it. */
  .blog-section {
    width: calc(100% - 20px) !important;
    margin: 18px auto 30px !important;
    padding: 14px 10px 18px !important;
    overflow: hidden !important;
  }

  .blog-section .blog-Head {
    width: min(270px, 82%) !important;
    margin: 0 auto 18px !important;
  }

  .blog-section > .blog-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .blog-section .blog-featured {
    width: 100% !important;
    min-height: 165px !important;
    border-radius: 10px !important;
  }

  .blog-section .blog-featured > a {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 165px !important;
  }

  .blog-section .blog-featured img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .blog-section .blog-side {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .blog-section .blog-card {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-height: 145px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
  }

  .blog-section .blog-card img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .blog-section .blog-side .blog-card:last-child {
    min-height: 285px !important;
  }

  .blog-section .blog-overlay,
  .blog-section .blog-card .overlay {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 2 !important;
    padding: 40px 16px 15px !important;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.78)) !important;
    color: #fff !important;
  }

  .blog-section .blog-overlay h3,
  .blog-section .blog-card .overlay h4 {
    color: #fff !important;
    font-size: 17px !important;
    line-height: 1.3 !important;
    margin: 0 !important;
  }

  .ct-blog-view-more {
    display: flex !important;
    justify-content: center !important;
    margin-top: 22px !important;
  }

  .ct-blog-view-more-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 96px !important;
    min-height: 42px !important;
    padding: 10px 20px !important;
    border-radius: 24px !important;
    background: linear-gradient(135deg, #ff9800, #ff5722) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 5px 13px rgba(255, 98, 0, .20) !important;
  }

  /* 4. Stats: reference-size circular icon rings and typography. */
  .stats-container {
    width: calc(100% - 20px) !important;
    margin: 34px auto !important;
    padding: 28px 14px 30px !important;
  }

  .stats-container .stats {
    gap: 36px 12px !important;
  }

  .stats-container .stat-card {
    padding: 0 2px !important;
  }

  .stats-container .ct-static-stat-icon {
    display: grid !important;
    place-items: center !important;
    width: 58px !important;
    height: 58px !important;
    margin: 0 auto 14px !important;
    border: 2.5px solid #ff7043 !important;
    border-radius: 50% !important;
    background: transparent !important;
    box-sizing: border-box !important;
  }

  .stats-container .ct-static-stat-icon img {
    width: 27px !important;
    height: 27px !important;
    object-fit: contain !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .stats-container .stat-number {
    margin: 0 0 8px !important;
    font-size: 21px !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
  }

  .stats-container .stat-card > span:last-child {
    max-width: 105px !important;
    margin: 0 auto !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
  }

  /* 5. Featured stores: three boxes per mobile row, equal side space. */
  .ct-home-featured-stores {
    width: calc(100% - 20px) !important;
    max-width: none !important;
    margin: 38px auto !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .ct-home-featured-stores .store-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    margin: 0 0 20px !important;
    padding: 0 4px !important;
  }

  .ct-home-featured-stores .store-header h2 {
    margin: 0 !important;
    font-size: 24px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
  }

  .ct-home-featured-stores .all-stores-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 68px !important;
    min-height: 50px !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    box-shadow: 0 5px 12px rgba(0,0,0,.12) !important;
  }

  .ct-home-featured-stores .store-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px 9px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 2px !important;
  }

  .ct-home-featured-stores .store {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .ct-home-featured-stores .store > a {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    color: inherit !important;
    text-decoration: none !important;
  }

  .ct-home-featured-stores .store img,
  .ct-home-featured-stores .store .ct-store-image {
    display: block !important;
    width: 74px !important;
    max-width: 100% !important;
    height: 74px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border-radius: 9px !important;
    object-fit: contain !important;
    background: #fff !important;
    box-shadow: 0 3px 9px rgba(0,0,0,.10) !important;
  }

  .ct-home-featured-stores .store p {
    width: 100% !important;
    min-height: 34px !important;
    margin: 9px 0 0 !important;
    padding: 0 1px !important;
    color: #111 !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
    text-align: center !important;
    overflow-wrap: anywhere !important;
  }

  /* 6. FAQ accordion: same compact open/closed states as reference. */
  .faq-section {
    width: calc(100% - 20px) !important;
    margin: 32px auto !important;
    padding: 28px 8px !important;
  }

  .faq-section h2 {
    margin-bottom: 22px !important;
  }

  .faq-container {
    gap: 10px !important;
  }

  .faq-item {
    border-radius: 7px !important;
  }

  .faq-question {
    min-height: 55px !important;
    padding: 13px 15px !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
  }

  .faq-answer {
    max-height: 0 !important;
    padding: 0 15px !important;
    opacity: 0 !important;
    transition: max-height .28s ease, opacity .2s ease, padding .28s ease !important;
  }

  .faq-item.active .faq-question {
    background: #fff1ea !important;
  }

  .faq-item.active .faq-answer {
    max-height: 420px !important;
    padding: 0 15px 1px !important;
    opacity: 1 !important;
  }

  .faq-answer p {
    margin: 13px 0 15px !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .faq-question .icon {
    flex: 0 0 auto !important;
    margin-left: 10px !important;
    transition: transform .2s ease !important;
  }

  .faq-item.active .faq-question .icon {
    transform: rotate(45deg) !important;
  }
}

@media (max-width: 390px) {
  .ct-home-featured-stores .store img,
  .ct-home-featured-stores .store .ct-store-image {
    width: 68px !important;
    height: 68px !important;
  }

  .ct-home-featured-stores .store-header h2 {
    font-size: 22px !important;
  }

  .stats-container .stat-number {
    font-size: 19px !important;
  }
}

/* v22.1 — make the first hero touch the mobile header with no white/shadow gap. */
@media (max-width: 900px) {
  .homepage-slider {
    margin-top: 0 !important;
    box-shadow: none !important;
  }
}


/* v23 — slider fix: slider-wrapper must be free to translate;
   v22 generic mobile reset previously forced transform:none!important. */
@media (max-width: 900px) {
  .homepage-slider .slider-wrapper {
    will-change: transform !important;
    transition: transform .55s ease-in-out !important;
  }
}


/* =========================================================
   v25 — icon restore: no inline SVG; critical icons embedded
   as PNG data URIs so server paths/CDN cannot break them.
   ========================================================= */
.ct-search-png {
  display:block; width:24px; height:24px;
  background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAATNJREFUSEvdlDFOw0AQRWfcrGSQPNNQJRwkfSLRwDmgIGchRTgHlKQPOQemH1siltx4ow3eyDH2eiM7QuDO0ux/+2f+LMKZPzyzPvweIMuyUZ7nawAYV1zGSqlJGIafvs4bHYjIGwBMHSIrZp75QH4AROQFAG7NYUR8IKJnK5Qkyb3Weln+vzLzXRfkCFC2JTaHmLl1PiKiTY1SatzVriMREfkwPQ+CYB5F0aLtdmmaPhZF8QQAMTNfu1zUAfubuW5vxayLrtr/B9jPoJ6eeo9tmhDxnYgm3jM4NUXf4+LEG2AKq0tWT1MlPaZ0y8yXJ+1BJSGHZWsR2ALAhQ+kdZma3iJE3Gitb0xbROTLB9LrNfWB9AKUM3M66Q3oggwCcEEGA1gIEV0hYmbTNyigKdJ/H7ADWdSiGT4xCmQAAAAASUVORK5CYII=");
  background-repeat:no-repeat; background-position:center; background-size:24px 24px;
}
.ct-stat-png {
  display:block; width:50px; height:50px;
  background-repeat:no-repeat; background-position:center; background-size:50px 50px;
}
.ct-stat-store { background-image:url("data:image/png;base64,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"); }
.ct-stat-coupon { background-image:url("data:image/png;base64,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"); }
.ct-stat-blog { background-image:url("data:image/png;base64,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"); }
.ct-stat-members { background-image:url("data:image/png;base64,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"); }
@media (max-width:768px) {
  header .search-btn .ct-search-png { width:24px !important; height:24px !important; background-size:24px 24px !important; }
  .stats-container .ct-static-stat-icon .ct-stat-png { width:50px !important; height:50px !important; background-size:50px 50px !important; }
}


/* ============================================================
   v26 — desktop footer column correction
   Footer markup includes an absolute overlay and decorative images, so
   About / Quick Links / Subscribe are children 2 / 3 / last-child.
   ============================================================ */
@media (min-width: 901px) {
  footer > div:first-child {
    display: grid !important;
    grid-template-columns: minmax(280px, 1.2fr) minmax(170px, .52fr) minmax(340px, 1fr) !important;
    column-gap: 64px !important;
    row-gap: 0 !important;
    align-items: start !important;
    width: min(1180px, calc(100% - 80px)) !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  footer > div:first-child > .footer-overlay,
  footer > div:first-child > img.footer-coupon-icon {
    position: absolute !important;
  }

  /* About */
  footer > div:first-child > div:nth-child(2) {
    grid-column: 1 !important;
    min-width: 0 !important;
    width: auto !important;
    margin: 0 !important;
  }

  /* Quick Links — remove old hard-coded 300px/120px offsets. */
  footer > div:first-child > div:nth-child(3),
  footer > div:first-child > div[style*="margin-left"] {
    grid-column: 2 !important;
    min-width: 0 !important;
    width: auto !important;
    margin: 0 !important;
    margin-left: 0 !important;
    justify-self: start !important;
  }

  footer > div:first-child > div:nth-child(3) ul,
  footer > div:first-child > div[style*="margin-left"] ul {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Subscribe */
  footer > div:first-child > div:last-child {
    grid-column: 3 !important;
    min-width: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    justify-self: stretch !important;
  }

  footer > div:first-child > div:last-child form {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  footer > div:first-child > div:last-child form input {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
  }

  footer > div:first-child > div:last-child form button {
    flex: 0 0 auto !important;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  footer > div:first-child {
    grid-template-columns: minmax(240px, 1fr) minmax(150px, .45fr) minmax(300px, .9fr) !important;
    column-gap: 36px !important;
    width: calc(100% - 50px) !important;
  }
}

/* ============================================================
   v27 — requested data/UI corrections only
   ============================================================ */

/* Featured Stores: uploaded logos use the same clean reference card shadow.
   Remove legacy inner padding that looked like a second white border. */
.ct-home-featured-stores .store img,
.ct-home-featured-stores .store .ct-store-image {
  padding: 0 !important;
  background: #fff !important;
  border: 1px solid rgba(20, 30, 45, 0.035) !important;
  box-shadow: 0 5px 16px rgba(21, 31, 48, 0.11) !important;
  object-fit: contain !important;
  box-sizing: border-box !important;
}

/* Categories page: one ring only around the API icon. The old page CSS also
   put a second border directly on the img, which caused the double circle. */
.category-card .ct-category-icon {
  border: 2px solid #ff7a00 !important;
  background: #fff !important;
  padding: 5px !important;
  box-sizing: border-box !important;
}
.category-card .ct-category-icon img.ct-category-api-image,
.category-card .ct-category-icon img {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 3px !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: contain !important;
  box-sizing: border-box !important;
}
.category-card:hover .ct-category-icon img {
  border: 0 !important;
  box-shadow: none !important;
}

/* Static 0 -> target statistics: ring must be visible on BOTH desktop and
   mobile, with visible breathing room between the icon and ring. */
.stats-container .ct-static-stat-icon {
  width: 62px !important;
  height: 62px !important;
  display: grid !important;
  place-items: center !important;
  margin: 0 auto 16px !important;
  padding: 0 !important;
  border: 2.5px solid #ff7043 !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-sizing: border-box !important;
}
.stats-container .ct-static-stat-icon .ct-stat-png {
  width: 30px !important;
  height: 30px !important;
  background-size: 30px 30px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 900px) {
  /* Reduce the empty space between the 3 Featured Store cards while keeping
     identical left/right outer spacing. */
  .ct-home-featured-stores .store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    column-gap: 5px !important;
    row-gap: 20px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
  }
  .ct-home-featured-stores .store img,
  .ct-home-featured-stores .store .ct-store-image {
    width: 82px !important;
    height: 82px !important;
  }

  .stats-container .ct-static-stat-icon {
    width: 58px !important;
    height: 58px !important;
  }
  .stats-container .ct-static-stat-icon .ct-stat-png {
    width: 27px !important;
    height: 27px !important;
    background-size: 27px 27px !important;
  }
}

/* Preserve the previously requested desktop Trending Blogs View More button. */
@media (min-width: 901px) {
  .blog-section .ct-blog-view-more,
  .ct-blog-view-more {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    clear: both !important;
    margin: 30px auto 0 !important;
    padding: 0 !important;
    text-align: center !important;
  }
  .blog-section .ct-blog-view-more-btn,
  .ct-blog-view-more-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 105px !important;
    min-height: 42px !important;
    padding: 0 22px !important;
    margin: 0 auto !important;
    border: 0 !important;
    border-radius: 25px !important;
    background: linear-gradient(135deg, #ff9800, #ff5722) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 5px 13px rgba(255, 98, 0, .20) !important;
  }
}

/* ============================================================
   v29 - requested final behavior fixes
   ============================================================ */

/* Preserve admin-entered paragraphs / Shift+Enter line breaks. */
#dynamicCategoryDescription,
.about-section p,
.ct-store-description,
.store-description {
  white-space: pre-line !important;
  overflow-wrap: anywhere;
}

/* Inner category reference layout: stores only, clean names, no coupon block. */
body:has(#dynamicCategoryStores) .top-coupons,
#dynamicCategoryCoupons {
  display: none !important;
}
#dynamicCategoryStores .store-card3 h3,
#dynamicCategoryStores .store-card3 p {
  color: #111 !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}
#dynamicCategoryStores .store-card3 {
  color: #111 !important;
  text-decoration: none !important;
}

/* Deal popup: center a deal label when there is no Copy button. */
.ct-code-wrap.ct-deal-code {
  justify-content: center !important;
}
.ct-code-wrap.ct-deal-code .ct-code-value {
  border-radius: 6px !important;
  min-width: 185px;
  text-align: center;
}

/* Uploaded country flags: consistent visible crop. */
.ct-country-flag-image {
  display: inline-block !important;
  width: 28px !important;
  height: 20px !important;
  min-width: 28px !important;
  object-fit: cover !important;
  border-radius: 2px !important;
}

/* Footer: guaranteed space below the absolute Coupons Thunder heading. */
@media (min-width: 901px) {
  footer > div:first-child {
    padding-top: 70px !important;
    padding-bottom: 35px !important;
  }
  footer > div:first-child > div:not(.footer-overlay) {
    position: relative !important;
    top: 25px !important;
  }
}

/* ============================================================
   v30 — Blog collage tuning + full translation/render stability
   ============================================================ */
@media (min-width: 801px) {
  .ct-trending-blog-section > .blog-container {
    grid-template-columns: minmax(0, 2fr) minmax(250px, 1fr) !important;
    grid-template-areas:
      "main side"
      "bottom bottom";
    align-items: stretch !important;
  }

  .ct-trending-blog-section .main-blog {
    grid-area: main;
    min-height: 0 !important;
    aspect-ratio: 1.38 / 1;
    background: #fff7f2;
  }

  /* Keep the complete first featured artwork visible instead of zoom-cropping it. */
  .ct-trending-blog-section .main-blog > img {
    object-fit: contain !important;
    object-position: center center !important;
    background: #fff7f2;
  }

  .ct-trending-blog-section .ct-live-blog-side {
    grid-area: side;
    height: 100%;
    min-height: 0;
  }

  .ct-trending-blog-section .ct-live-blog-bottom {
    grid-area: bottom;
    width: 100%;
    min-height: 310px;
    aspect-ratio: 3.2 / 1;
    background: #fff7f2;
  }

  .ct-trending-blog-section .ct-live-blog-bottom > img {
    object-fit: contain !important;
    object-position: center center !important;
    background: #fff7f2;
  }
}

@media (max-width: 800px) {
  .ct-trending-blog-section .main-blog > img,
  .ct-trending-blog-section .ct-live-blog-bottom > img {
    object-fit: contain !important;
    object-position: center center !important;
    background: #fff7f2;
  }

  .ct-trending-blog-section .ct-live-blog-bottom {
    min-height: 250px !important;
    width: 100% !important;
  }
}

/* ============================================================
   v31 — Trending Blogs reference collage completion
   ============================================================ */
@media (min-width: 801px) {
  .ct-trending-blog-section > .blog-container {
    grid-template-areas:
      "main side"
      "bottom bottom" !important;
  }
  .ct-trending-blog-section .ct-live-blog-bottom {
    display: block !important;
    grid-area: bottom !important;
    width: 100% !important;
    min-height: 300px !important;
    margin-top: 0 !important;
  }
  .ct-trending-blog-section .ct-live-blog-bottom > img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }
}

/* v32: prevent stale/static API content from flashing while live data is loading */
html.ct-data-loading body {
  overflow: hidden !important;
}
html.ct-data-loading body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  background: rgba(255,255,255,.98);
}
html.ct-data-loading body::after {
  content: "";
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 2147483001;
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border: 4px solid #ffe1d6;
  border-top-color: #ff6b4a;
  border-radius: 50%;
  animation: ctDataSpinner .7s linear infinite;
}
@keyframes ctDataSpinner {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  html.ct-data-loading body::after { animation-duration: 1.4s; }
}


/* ============================================================
   v38 — requested small UI fixes only
   ============================================================ */

/* All Stores: store names are plain body text (reference style), never purple/bold headings. */
#storeContainer .store-card3,
#storeContainer .store-card3:link,
#storeContainer .store-card3:visited,
#storeContainer .store-card3:hover,
#storeContainer .store-card3:active {
  color: #111 !important;
  text-decoration: none !important;
}
#storeContainer .store-card3 .ct-store-name {
  margin: 0 !important;
  padding: 0 2px !important;
  color: #111 !important;
  font-family: inherit !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
  text-align: center !important;
  text-decoration: none !important;
  overflow-wrap: anywhere !important;
}

/* Trending Blogs: prevent the large card from overflowing into the right column. */
@media (min-width: 801px) {
  .ct-trending-blog-section > .blog-container {
    display: grid !important;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) !important;
    grid-template-areas: "main side" "bottom bottom" !important;
    gap: 18px !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 1120px !important;
    margin: 0 auto !important;
  }
  .ct-trending-blog-section .main-blog {
    grid-area: main !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 430px !important;
    min-height: 430px !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  .ct-trending-blog-section .ct-live-blog-side {
    grid-area: side !important;
    display: grid !important;
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 430px !important;
    margin: 0 !important;
    align-self: stretch !important;
  }
  .ct-trending-blog-section .small-blog {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: 100% !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  .ct-trending-blog-section .main-blog > img,
  .ct-trending-blog-section .small-blog > img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  .ct-trending-blog-section .main-blog > img {
    object-fit: contain !important;
    object-position: center !important;
  }
  .ct-trending-blog-section .small-blog > img {
    object-fit: cover !important;
    object-position: center !important;
  }
  .ct-trending-blog-section .ct-live-blog-bottom {
    grid-area: bottom !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 300px !important;
    min-height: 300px !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  .ct-trending-blog-section .ct-live-blog-bottom > img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 !important;
  }
}

@media (max-width: 900px) {
  #storeContainer .store-card3 .ct-store-name {
    font-size: 12px !important;
    line-height: 1.35 !important;
  }
}

/* ============================================================
   v40 — cache-safe asset restore + exact Trending Blogs layout
   Built on the last image-stable v38 frontend.
   ============================================================ */

/* Country dropdown must stay above page content and be clickable. */
.region-selector,
.region-dropdown,
.region-btn {
  pointer-events: auto !important;
}
.region-dropdown {
  position: relative !important;
  z-index: 10020 !important;
}
.region-menu {
  z-index: 10030 !important;
}
.region-dropdown.ct-v40-open > .region-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Exact requested desktop structure:
   [ BIG BLOG  | Small 1 ]
   [           | Small 2 ]
   [           | Small 3 ]
   [       BIG BLOG 2     ]
*/
@media (min-width: 801px) {
  .ct-trending-blog-section .blog-container {
    display: grid !important;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr) !important;
    grid-template-rows: repeat(3, 150px) 300px !important;
    gap: 14px 18px !important;
    width: 100% !important;
    max-width: 1120px !important;
    margin: 0 auto !important;
    align-items: stretch !important;
  }

  .ct-trending-blog-section .main-blog {
    grid-column: 1 !important;
    grid-row: 1 / 4 !important;
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: 12px !important;
  }

  .ct-trending-blog-section .ct-live-blog-side {
    grid-column: 2 !important;
    grid-row: 1 / 4 !important;
    display: grid !important;
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
  }

  .ct-trending-blog-section .small-blog {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: 12px !important;
  }

  .ct-trending-blog-section .ct-live-blog-bottom {
    grid-column: 1 / -1 !important;
    grid-row: 4 !important;
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 300px !important;
    min-height: 300px !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: 12px !important;
  }

  .ct-trending-blog-section .main-blog > img,
  .ct-trending-blog-section .small-blog > img,
  .ct-trending-blog-section .ct-live-blog-bottom > img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    display: block !important;
  }

  /* Large artwork must not be cropped. */
  .ct-trending-blog-section .main-blog > img,
  .ct-trending-blog-section .ct-live-blog-bottom > img {
    object-fit: contain !important;
    object-position: center !important;
    background: #fff7f2 !important;
  }

  .ct-trending-blog-section .small-blog > img {
    object-fit: cover !important;
    object-position: center !important;
  }
}

@media (max-width: 800px) {
  .ct-trending-blog-section .blog-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;
    gap: 14px !important;
  }
  .ct-trending-blog-section .main-blog,
  .ct-trending-blog-section .ct-live-blog-side,
  .ct-trending-blog-section .ct-live-blog-bottom {
    grid-column: 1 !important;
    grid-row: auto !important;
    width: 100% !important;
  }
  .ct-trending-blog-section .ct-live-blog-side {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}
