:root {
  --primary: #3fa46a;
  --secondary: #e9f4ee;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --bg-light: #eaebf0;
  --white: #ffffff;
  --radius: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.container {
  container-type: inline-size;
  max-width: 1440px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Inputs & Buttons */
input {
  padding: 12px 14px;
  border-radius: 50px;
  border: 1px solid #d1d5db;
  width: 260px;
  outline: none;
}

input:focus {
  border-color: var(--primary);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
}

.btn-secondary {
  background: var(--secondary);
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  color: var(--primary);
}

/* Header Base */
.header {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  width: 170px;
  height: auto;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}

.desktop-nav a:hover {
  color: var(--primary);
}

.btn-outline {
  border: 1px solid var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  color: var(--primary);
  background: transparent;
  transition: all 0.4s ease-in-out;
}

.desktop-nav a.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: 0.3s ease;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid #e5e7eb;
  padding: 20px;
}

.mobile-nav a {
  padding: 12px 0;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
}

.mobile-btn {
  margin-top: 10px;
  text-align: center;
}

/* Active States */
.mobile-nav.active {
  display: flex;
}

/* Hamburger Animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0 30px;
}
.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero h1 {
  font-size: 30px;
  margin-bottom: 12px;
}
.hero-search {
  display: flex;
  gap: 12px;
}
.hero-search input {
  padding: 14px 20px;
  border-radius: 30px;
  border: none;
  width: 260px;
  box-shadow: 0 0 4px 2px rgb(205 205 205 / 39%);
}
.hero-search button {
  padding: 14px 26px;
  border-radius: 30px;
  background: #3fa46a;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.hero-search button:hover {
  background: #368155;
}

/* SLIDER */
.slider {
  position: relative;
  margin: 0 0 50px;
  overflow: visible;
}
.slider .container {
  position: relative;
  overflow: hidden;
}
.track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(360px, 40vw, 340px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-gutter: stable both-edges;
  scroll-padding: 16px;
  padding: 16px 16px 30px;
  outline: none;
  -webkit-overflow-scrolling: touch;
}
.track::-webkit-scrollbar {
  height: 0px;
}
.track::-webkit-scrollbar-thumb {
  background: #263;
  border-radius: 10px;
}
.card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.deal-card {
  width: 360px;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover effect */
.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Top image area */
.image-wrap {
  background: #f3f4f6;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 200px;
  overflow: hidden;
}

.image-wrap img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/* Discount badge */
.discount-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ffffff;
  color: #f97316;
  font-weight: 700;
  font-size: 13px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Brand logo pill */
.brand-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  height: 40px;
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.brand-badge img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* Content */
.deal-content {
  padding: 18px 14px 22px;
  text-align: left;
}

.deal-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111827;
}

.deal-content p {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 14px;
}

/* Button */
.deal-btn, .code-btn {
  background: #4CAF50;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.deal-btn:hover, .code-btn:hover {
  background: #43a047;
  transform: scale(1.05);
}

.slider .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  z-index: 99;
  outline: 0;
  border: 0;
  font-size: 20px;
}
.prev {
  left: 0px;
}
.next {
  right: 0px;
}
.nav:focus-visible {
  outline: 2px solid var(--accent);
}

/* DUAL SECTION */
.dual-section {
  margin: 50px 0;
}
.dual-section .container {
  display: grid;
  grid-template-columns: 450px 1.7fr;
  gap: 40px;
}
.dual-section h3 {
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 16px;
}
/* FEATURED */
/* VIEWPORT */
.category-grid {
  overflow: hidden;
  position: relative;
}
.cat {
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 8px 3px #d1d1d1;
  transition: all 0.4s ease-in-out;
}
.cat svg {
  width: 50px;
  height: 50px;
  fill: #3fa46a;
  transition: all 0.4s ease-in-out;			
}
.cat span {
  font-size: 0.8rem;
  color: #374151;
  font-weight: 500;
}
.cat:hover {
  transform: translateY(-5px);
}
.cat:hover svg {
  fill: #000000;
} 			
.catg-carousel {
  position: relative;
  display: flex;
  padding: 15px 5px;
  gap: 15px;
  transition: transform 0.45s ease;
}
.catg-carousel > .slide {
  min-width: 100%;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px 16px;
}
/* dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
}
.carousel-dots button.active {
  background: #3fa46a;
}
/* arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  cursor: pointer;
}
.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }

/* TRENDING */
.deal-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.deal-mini {
  width: auto;
}

.deal-mini .image-wrap {
  max-height: 130px;
}

.deal-mini h3 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.deal-mini p {
  margin-bottom: 12px;
}

.deal-mini .brand-badge {
  width: 90px;
  height: 30px;
  top: 10px;
  right: 10px;
}

.mt {
  margin-top: 30px;
}

/* BLOGS */
.blogs {
  padding: 60px 0;
  background: #ffffff;
}

.blogs-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

/* TEXT COLUMNS */
.blog-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blogC {
  display: flex;
  gap: 20px;
  align-items: center;
}
.blog-text article.blogC .blog-image {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 14px;
}
.blog-text article h4 a {
  font-size: 18px;
  line-height: 22px;
  color: #111827;
  margin-bottom: 6px;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.blog-text article span {
  font-size: 14px;
  color: #6b7280;
}

/* IMAGE */
.blog-image {
  border-radius: 20px;
  overflow: hidden;
  background: #f3f4f6;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-text article:hover a {
  color: var(--primary);
}

/* =========================
   Blog SLIDER STRUCTURE
========================= */

.blog-slider {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 4px;
  scrollbar-width: none;
}

.blog-track::-webkit-scrollbar {
  display: none;
}

.blog-slider .blogC {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f9fafb;
  padding: 14px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.blog-slider .blogC:hover {
  background: #ffffff;
  box-shadow: 0 6px 5px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.blog-slider article.blogC .blog-image {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e5e7eb;
}

.blog-slider article.blogC .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-slider .blog-content h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.blog-slider .blog-content h4 a {
  color: #111827;
  text-decoration: none;
}

.blog-slider .blog-content h4 a:hover {
  color: var(--primary);
}

.blog-slider .blog-meta {
  font-size: 13px;
  color: #6b7280;
}

.blog-slider .blog-author {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
}

.blog-slider .blog-author:hover {
  color: var(--primary);
}

/* =========================
   NAV BUTTONS
========================= */

.blog-nav {
  background: #ffffff;
  border: none;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.blog-nav.prev {
  margin-right: 12px;
}

.blog-nav.next {
  margin-left: 12px;
}

.blog-nav:hover {
  color: var(--white);
  background: var(--primary);
}
/* Newsletter */
section.newsletter {
  margin-bottom: 50px;
}

.newsletter {
  margin-top: 40px;
}

.newsletter-form {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 16px;
  border-radius: 50px;
  border: 1px solid #d1d5db;
}

.newsletter-form button {
  padding: 12px 20px;
  border-radius: 50px;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.newsletter-form button:hover {
  background: #368155;
}

/* Footer */
.footer {
  background: var(--white);
  border-top: 1px solid #e5e7eb;
  padding-top: 50px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr auto;
  gap: 40px;
  align-items: start;
}

.footer-brand a {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-brand img {
  width: 170px;
  height: auto;
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 260px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-columns h4 {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-columns a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-columns a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  transition: fill 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-social a:hover svg {
  fill: #ffffff;
}

.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid #e5e7eb;
}

/*=====================================
========== Store Page Styles ========== 
=====================================*/
/* Page Header */
.page-header {
  margin: 40px 0 20px;
}

.page-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-header h1 {
  font-size: 30px;
}

.header-actions {
  display: flex;
  gap: 10px;
}

/* Filters */
.filter-bar {
  margin-bottom: 20px;
}

.filter-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

#storeSearch {
  width: 100%;
  margin-right: 10px;
}

.alphabet-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.alphabet-filter button {
  background: var(--white);
  border: 1px solid #e5e7eb;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.alphabet-filter .active {
  background: var(--primary);
  color: var(--white);
}

/* Store Grid */
.store-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.store-card {
  text-decoration: none;
  font-size: 26px;
  line-height: 1;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--white);
  border-radius: 25px;
  padding: 35px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  color: var(--primary);
}

.store-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 1240px) {
  .store-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-text {
    text-align: center;
    align-items: center;
  }

  .blog-text article {
    max-width: 520px;
  }

  .dual-section .container {
    grid-template-columns: 380px 1.7fr;
  }

  .deal-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .catg-carousel > .slide {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .dual-section .container {
    grid-template-columns: 250px 1.7fr;
  }
  .catg-carousel > .slide {
    grid-template-columns: repeat(2, 1fr);
  }
  .store-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 15px 25px;
  }

  .logo img {
    width: 120px;
    height: auto;
  }

  .nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }

  .nav a {
    margin-left: 0;
    font-size: 0.9rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    flex-direction: column;
    gap: 20px;
  }

  .dual-section .container {
    display: block;
  }

  .catg-carousel > .slide {
    grid-template-columns: repeat(4, 1fr);
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .hero-search {
    width: 100%;
    justify-content: center;
  }

  input {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand a {
    justify-content: center;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-brand p {
    text-align: center;
    max-width: 100%;
  }

  .newsletter h2 {
    text-align: center;
    font-size: 20px;
  }

  .slider .nav {
    display: none;
  }

  .dual-section .newsletter {
    margin-bottom: 30px;
  }

  .hero .container {
    flex-direction: column;
    align-items: center;
  }

  .hero-left, .hero-right {
    width: 100%;
    text-align: center;
  }

  .hero-left {
    margin-bottom: 25px;
  }

  .page-header {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
  }

  .page-header .container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .page-header h1 {
    font-size: 26px;
    width: 100%;
    text-align: center;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .header-actions .btn-primary {
    min-width: 150px;
  }

  .filter-bar {
    flex-direction: column;
    gap: 10px;
  }

  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .alphabet-filter {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero h1 {
    font-size: 24px;
    text-align: center;
  }
  
	.new-heading{
		font-size: 20px !important;
		text-align: center !important;
	}

  .hero-left p {
    text-align: center;
  }

  .blogs-title {
    font-size: 22px;
  }

  .blog-text article h4 {
    font-size: 18px;
  }

  .blog-layout {
    margin-top: 30px;
  }

  .deal-list {
    grid-template-columns: 1fr;
  }

  .catg-carousel > .slide {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat {
    width: 100%;
    height: 96px;
  }
  .hero-search button {
    padding: 14px;
  }
  .hero-search input {
    max-width: 170px;
    width: 100%;
  }

  .dual-section h3 {
    text-align: center;
  }
}

@media (max-width: 449px) {
  .store-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .store-logo {
    width: 120px;
    height: 120px;
  }
  .store-card {
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .header-inner.container {
    padding: 15px;
  }
  .container {
    padding: 0 14px;
  }
}

/*=====================================
======== Category Page Styles ========
=====================================*/

/* SECTION */
.category-section {
  margin: 50px 0;
}

/* GRID */
.category-pg_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* CARD */
.category-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px 20px;
  text-align: center;
  text-decoration: none;
  color: #111827;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* ICON */
.icon-wrap {
  width: 75px;
  height: 75px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 35px;
}

.icon-wrap img {
  width: 40px;
  height: 40px;
}

.icon-wrap i {
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: var(--primary);
  transition: all 0.4s ease-in-out;
}

.category-card:hover .icon-wrap i {
  color: #000000;								   
}

/* LABEL */
.category-card span {
  font-size: 18px;
  font-weight: 500;
  color: #374151;
  transition: all 0.4s ease-in-out;
}

.category-card:hover span {
  color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .category-pg_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .category-pg_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .icon-wrap {
    width: 65px;
    height: 65px;
  }
  .icon-wrap img{
    width: 30px;
    height: 30px;
  }

  .icon-wrap i {
      width: 30px;
      height: 30px;
      font-size: 30px;
    }

  .category-card span {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .category-pg_grid {
    grid-template-columns: 1fr;
  }
}

/*=====================================
======= Store Inner Page Styles ======= 
=====================================*/

/* HERO */
.store_inner-hero {
  margin: 50px 0 30px;
}

.store_inner-hero .container{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.store_inner-info h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.store_inner-info p {
  max-width: 520px;
  color: #6b7280;
  font-size: 14px;
}

.store_inner-search {
  display: flex;
  gap: 10px;
}

/* DEAL SECTION */
.store_inner-section {
  margin: 30px 0 50px;
}

.strS .container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.store_sidebar {
  flex: 0 0 280px;
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-start;							  
  align-items: center;
					  
}

.store_inner-header h2 {
  font-size: 20px;
  font-weight: 700;
}

.store_inner-logo {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store_inner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.strBtn {
  display: inline-block;
  text-align: center;
  padding: 12px 24px;
  border-radius: 30px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.strBtn:hover {
  background-color: #368155;
  color: var(--white);
}					
/* GRID */
.store_inner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
 height: fit-content;
}


/* Wrapper */
.settings-wrapper {
  margin: 40px 0;
}

/* Card */
.settings-card {
  background: #ecedef;
  border: 1px solid #d1d5db;
  border-radius: 25px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Blocks */
.settings-block h4,
.settings-row h4 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.settings-block p,
.settings-row p {
  font-size: 16px;
  line-height: 1.4;
  color: #6b7280;
}

/* Divider */
.divider {
  height: 1px;
  background: #d1d5db;
  margin: 16px 0;
}

/* Rows */
.settings-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.settings-row .text {
  flex: 1;
}

/* Toggle Switch */
.switch {
  position: relative;
  width: 38px;
  height: 22px;
  flex-shrink: 0;
  background: #bdbec2;
  border-radius: 50px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch .slider {
  width: 38px;
  height: 22px;
  position: absolute;
  inset: 0;
  background: #bdbec2;
  border-radius: 999px;
  transition: background 0.25s ease;
}

.switch .slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2px;
  top: 2px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.switch input:checked ~ .slider {
  background: var(--primary);
}

.switch input:checked ~ .slider::before {
  transform: translateX(16px);
}

/* =========================
   SIDEBAR SLIDER
========================= */

.auto-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.auto-slider .slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Slides take width from JS */
.auto-slider .slider-track > * {
  flex-shrink: 0;
}

/* =========================
   TOP STORES
========================= */

.top_str,
.top_blog {
  flex: 0 0 280px;
  width: 280px;
}

.top_str h3,
.top_blog h3 {
  text-align: center;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.str-card {
  flex: 0 0 280px;
  background: #ffffff;
  border-radius: 14px;
  padding: 35px 15px;
  text-align: center;
  text-decoration: none;
  color: #111827;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.str-card:hover {
  transform: translateY(-4px);
}

.str-card .store-logo {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.str-card .store-logo img {
  max-height: 100%;
  max-width: 100%;
}

.str-card span {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  transition: all 0.3s ease;
}

.str-card:hover span {
  color: var(--primary);
}
/* =========================
   TOP BLOGS
========================= */

.blog-card {
  flex: 0 0 280px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  background: #f9fafb;
  border-radius: 16px;
  padding: 12px;
  text-decoration: none;
  color: #111827;
  transition: all 0.3s ease;
}

.blog-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.blog-card .blog-image {
  width: 100%;
  height: 150px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .blog-content h4 {
  font-size: 16px;
  margin-bottom: 6px;
  transition: all 0.3s ease-in-out;
}

.blog-card .blog-content p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}

.blog-card:hover h4 {
  color: var(--primary);
}						
/* RESPONSIVE */
@media (max-width: 1199px) {
  .store_inner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .store_sidebar, .store_main, .top_str, .top_blog, .str-card, .blog-card {
    flex: 0 0 200px;
    width: 200px;
  }
  .store_inner-logo, .str-card .store-logo {
    width: 130px;
    height: 130px;
  }
  .strBtn {
    font-size: 16px;
    line-height: 20px;
    padding: 8px 24px;
  }
}		   
/* RESPONSIVE */
@media (max-width: 1024px) {
  .store_inner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
			  
@media (max-width: 767px) {
  .store_inner-info {
    text-align: center;
    width: 100%;
  }
  
  .store_inner-search {
    width: 100%;
  }

  .store_inner-info h1 {
    font-size: 26px;
  }

  .store_inner-info p {
    max-width: 100%;
  }

  .settings-block h4,
  .settings-row h4 {
    font-size: 16px;
  }
  .settings-block p,
  .settings-row p {
    font-size: 14px;
  }
  .strS .container {
    flex-direction: column;
    align-items: center;
  }
  .store_sidebar, .store_main, .top_str, .top_blog, .str-card, .blog-card {
    flex: 0 0 300px;
    width: 300px;
  }
  .store_inner-logo, .str-card .store-logo {
    width: 160px;
    height: 160px;
  }
  .blog-card .blog-image {
    height: 200px;
  } 
}
@media (max-width: 640px) {
  .store_inner-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .settings-card {
    padding: 16px;
  }

  .settings-row {
    gap: 12px;
  }
}

/*=====================================
======= Modal Styles ======= 
=====================================*/

/* MODAL OVERLAY */
.deal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.deal-modal-overlay.show {
    display: flex !important;              /* CENTERING HAPPENS HERE */
}

/* MODAL CARD */
.deal-modal {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  padding: 28px 24px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Ribbon */
.modal-ribbon {
  position: absolute;
  top: -6px;
  right: 60px;
  width: 18px;
  height: 28px;
  background: #ff8c00;
  clip-path: polygon(0 0,100% 0,100% 100%,50% 80%,0 100%);
}

/* Close */
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #6b7280;
}

/* BRAND */
.brand-logo {
  width: 90px;
  height: 90px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  width: 48px;
  filter: invert(1);
}

.brand-name {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* HEADING */
.deal-heading {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* COUPON */
.coupon-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #000;
  border-radius: 999px;
  padding: 6px;
  max-width: 300px;
  margin: 0 auto 12px;
}

.coupon-code {
  font-size: 16px;
  font-weight: 700;
  padding-left: 16px;
}

.copy-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.copy-btn:hover {
  background: #368155;
}

.deal-pill {
  background: var(--primary);
  color: #fff;
  padding: 10px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  max-width: 250px;
  margin-bottom: 15px;
}

/* NOTE */
.coupon-note {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
}

.coupon-note a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

/* EXPIRY */
.expiry {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

/* MOBILE */
@media (max-width: 480px) {
  .deal-modal {
    margin: 16px;
  }

  .deal-heading {
    font-size: 24px;
  }
}

/* Title */
.modal-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 22px;
}

/* Coupon Box */
.coupon-box {
  background: #fff8eb;
  border: 2px dashed #f0a24b;
  padding: 18px;
  border-radius: 10px;
}

.copied-text {
  font-size: 14px;
  margin-bottom: 12px;
  color: #333;
}

/* Coupon Row */
.coupon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Continue */
.continue-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
  color: #38c172;
  text-decoration: none;
}

.continue-link:hover {
  text-decoration: underline;
}

/* Footer text */
.modal-footer-text {
  font-size: 13px;
  color: #555;
  margin-top: 14px;
}

/* Responsive */
@media (max-width: 480px) {
  .deal-modal {
    padding: 24px 18px;
  }
}

.paginationC {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px 0;
  flex-wrap: wrap;
}

/* Anchor styling */
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #ffffff;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Hover */
.page-link:hover {
  background: var(--primary);
  border-color: #ccc;
  color: var(--white);
}

/* Active */
.page-link.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  pointer-events: none;
}

/* Prev / Next */
.page-link.prev,
.page-link.next {
  font-size: 18px;
  padding: 0 14px;
}

/* Dots */
.dots {
  font-weight: 600;
  color: #777;
  padding: 0 6px;
}

/* Mobile */
@media (max-width: 480px) {
  .page-link {
    min-width: 34px;
    height: 34px;
    font-size: 14px;
  }
}

.about-sec-3 ul
{
	margin-left: 0;
    padding-left: 1rem;
}

.deal-mini a {
    margin: 0 5px 5px 0;
    text-decoration: none;
}

.deal-mini .deal-btn, .deal-mini .code-btn {
    padding: 5px 12px;
    width: fit-content;
    font-size: 12px;
}

.category-group-top .cate-img i {
  font-size: 34px;
  color: #00af71;
  padding: 5px;
  width: 70px;
  border: 1px solid #e2e2e2!important;
  border-radius: 5px!important;
  box-shadow: 0 1px 3px rgba(0,0,0,.25)!important;
  overflow: hidden;
  text-align: center
}

@media (max-width: 767px) {
  .deal-content {
    text-align: center;
  }
}

.load_more_btn {
    text-decoration: none;
}
.store_main {
    width: 280px;
    background-color: var(--white);
    border-radius: 24px;
    padding: 25px 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.store_main a {
    display: block;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}
@media screen and (max-width:767px){
  .store_inner-header {
    text-align: center;
  }
}
