* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
}
.cart-icon {
  font-size: 28px;
  cursor: pointer;
  z-index: 9999;
  position: relative;
}
.cart-panel {
  position: fixed;
  top: 0;
  left: -49%;
  width: 49%;
  height: 100%;
  background: #fff;
  color: #000;
  padding: 20px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  transition: 0.4s ease;
  z-index: 9998;
  overflow-y: auto;
}
#cart-toggle:checked ~ .cart-panel {
  left: 0;
}
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9990;
}

#cart-toggle:checked ~ .backdrop {
  opacity: 1;
  visibility: visible;
}
.close-btn {
  font-size: 32px;
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
  font-weight: bold;
  color: #000;
  z-index: 10000;
  user-select: none;
}

/* Cart Items */
.cart-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.cart-item img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
  margin-top: 20px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
}
a {
  text-decoration: none;
  color: inherit;
}

.header-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-section {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 15px;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}
h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 40px 0 20px;
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
p {
  font-size: 1.05rem;
  color: #ccc;
  margin-bottom: 20px;
}
strong {
  color: #fff;
}
.highlight {
  font-weight: 700;
  font-family: 'Georgia', serif;
  color: #ff3b3b;
}
.container-text {
  text-align: center;
  max-width: 900px;
  margin: auto;
}
.image-single img,
.images-group img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.navbar {
  background: #000;
  width: 100%;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  width: 150px;
  display: block;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links li a {
  color: #fff;
  font-size: 15px;
  padding: 8px 6px;
  transition: color 0.18s, transform 0.18s;
}
.nav-links li a:hover {
  color: #ff3b3b;
  transform: translateY(-1px);
}

.cart {
  font-size: 30px;
}

.btn-red {
  background: #e00000;
  border-radius: 25px;
  padding: 30px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

#menu-toggle {
  display: none;
}
.hamburger {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;
  z-index: 60;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  transition: transform 0.28s ease, opacity 0.18s ease;
}
#menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
#menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
.two-column-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  text-align: left;
}
.two-column-section .content,
.two-column-section .image-single,
.two-column-section .images-group {
  flex: 1;
}

.images-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.franchise-heading h1 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.2rem;
}

.express-section h1 {
  margin-bottom: 10px;
}
.express-section .subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 50px;
}
.express-text p {
  margin-bottom: 18px;
}
.express-franchise-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.franchise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

.franchise-card {
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 380px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.franchise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.franchise-card img {
  height: 200px;
  margin-bottom: 15px;
  border: 1px solid #222;
}
.franchise-card p.phone {
  color: #ffcc66;
  font-weight: 500;
  margin-top: 10px;
}
.village-franchise-details h1 {
  text-align: center;
}
.franchise-details-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}
.franchise-details-card img {
  max-width: 600px;
  object-fit: cover;
  border-radius: 0;
}
.details-text {
  flex: 1;
  padding: 30px;
  text-align: left;
}
.details-text h2 {
  margin-top: 0;
}
.details-text h3 {
  color: #aaa;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.details-text p {
  margin: 8px 0;
  font-size: 1rem;
}
.details-text p i {
  color: #ff3b3b;
  margin-right: 8px;
}

.footer {
  background: #0a0a0a;
  color: #ccc;
  padding: 60px 5% 20px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.9fr;
  gap: 28px;
}
.footer-logo {
  width: 160px;
}
.footer-about p {
  color: #d1d1d1;
  margin-top: 14px;
  line-height: 1.7;
}
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: #fff;
  margin-bottom: 12px;
}
.footer-links ul {
  list-style: none;
  padding-left: 0;
}
.footer-links ul li {
  margin-bottom: 8px;
}
.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ff3b3b;
  color: #fff;
  line-height: 40px;
  text-align: center;
  margin-right: 8px;
}
.store-buttons img {
  width: 140px;
  display: block;
  margin-top: 12px;
}

.footer-links-inline a {
  margin-top: 30px;

  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  margin-right: 15px;
}

.footer-links-inline a:hover {
  color: #ff3b3b;
}
.footer-links {
  flex: 1 1 200px;
}

.footer-links h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
}

.footer-links ul li a:hover {
  color: #ff3b3b;
}
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 30px;
  padding-top: 14px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: #ccc;
}

@media (max-width: 1200px) {
  .container {
    width: 94%;
  }
  .logo img {
    width: 110px;
  }

  .hamburger {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #000;
    padding-top: 40px;
    transition: right 0.4s ease;
    z-index: 999;
  }
  #menu-toggle:checked ~ .main-nav {
    right: 0;
  }
  .nav-links {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
  .nav-links li a {
    font-size: 18px;
  }
  .btn-outline,
  .btn-red {
    width: 80%;
    text-align: center;
    justify-content: center;
  }
  .nav-links li a {
    font-size: 16px;
    padding: 10px 8px;
    display: block;
    width: 100%;
    border-radius: 6px;
  }
  .hero-section {
    margin: 12px 0;
  }
  .catagory-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px;
  }
  .catagory-container img {
    max-width: 160px;
  }
  .deals-container {
    grid-template-columns: 1fr;
    padding: 0 8px;
  }
  .main-heading-1,
  .main-heading-2 {
    font-size: 28px;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .container {
    width: 94%;
  }
  .logo img {
    width: 110px;
  }

  .hero-section {
    margin: 12px 0;
  }
  .catagory-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px;
  }
  .catagory-container img {
    max-width: 160px;
  }
  .deals-container {
    grid-template-columns: 1fr;
    padding: 0 8px;
  }
  .main-heading-1,
  .main-heading-2 {
    font-size: 28px;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 401px) and (max-width: 480px) {
  .container {
    width: 94%;
  }
  .logo img {
    width: 120px;
  }

  .catagory-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 18px;
  }
  .deals-container {
    grid-template-columns: 1fr;
    padding: 0 8px;
    gap: 16px;
  }
  .main-heading-1,
  .main-heading-2 {
    font-size: 30px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .catagory-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px;
  }
  .deals-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 0 10px;
  }
  .main-heading-1,
  .main-heading-2 {
    font-size: 34px;
  }
  .content-wrapper-1,
  .content-wrapper-2 {
    gap: 20px;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .container {
    width: 92%;
    display: flex;
    align-items: center;
  }

  .catagory-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
  }
  .deals-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .main-heading-1,
  .main-heading-2 {
    font-size: 40px;
  }
  .content-wrapper-1,
  .content-wrapper-2 {
    gap: 28px;
    align-items: center;
  }
  .footer-container {
    grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr;
  }
}
@media (min-width: 993px) and (max-width: 1200px) {
  .container {
    width: 95%;
    max-width: 1100px;
  }

  .catagory-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    padding: 28px 0;
  }
  .deals-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .main-heading-1,
  .main-heading-2 {
    font-size: 44px;
  }
}
@media (min-width: 1201px) {
  .container {
    max-width: 1200px;
  }
  .catagory-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
  }
  .deals-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  p {
    font-size: 0.95rem;
  }

  .logo img {
    width: 120px;
  }

  .hamburger {
    width: 28px;
    height: 25px;
    right: 15px;
  }
  .hamburger span {
    height: 3px;
  }

  .main-nav {
    width: 90%;
    top: 55px;
  }
  .two-column-section,
  .express-content {
    flex-direction: column;
    text-align: center;
  }

  .content-section {
    margin: 30px auto;
    padding: 0 10px;
  }
  .image-single img,
  .franchise-card img,
  .franchise-details-card img {
    max-height: 250px;
    object-fit: cover;
  }

  .franchise-grid {
    grid-template-columns: 1fr;
  }

  .franchise-details-card {
    flex-direction: column;
  }

  .details-text {
    text-align: center;
    padding: 20px;
  }

  .footer-grid-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social .social-icons {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .cart-panel {
    width: 70%;
    left: -70%;
  }
  #cart-toggle:checked ~ .cart-panel {
    left: 0;
  }
}
@media (max-width: 300px) {
  .cart-panel {
    width: 85%;
    left: -85%;
  }
  #cart-toggle:checked ~ .cart-panel {
    left: 0;
  }

  .close-btn {
    font-size: 28px;
  }

  .cart-item img {
    width: 55px;
    height: 55px;
  }
}
