:root {
  h1,
  h2,
  h3,
  h4,
  p {
    font-family: "Jost", sans-serif;
  }
}

* {
  margin: 0%;
  padding: 0%;
}

body {
  background: #fff;
  overflow-x: hidden;
}
.slide-text {
  animation: slide-text;
  animation-timeline: view();
}

@keyframes slide-text {
  0% {
    opacity: 0;
    transform: translateX(200px);
  }
  50% {
    opacity: 1;
    transform: translateX(0);
  }
}

.auto-show {
  animation: auto-show both;
  animation-timeline: view();
  animation-range: entry 20% cover 70vh;
}

@keyframes auto-show {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.image-reveal {
  animation: image-reveal both;
  animation-timeline: view(100% 20%);
}

@keyframes image-reveal {
  from {
    filter: saturate(0) contrast(4) brightness(0.1) blur(5px);
    opacity: 0;
    scale: 0.8;
    translate: 0 4rem;
  }
  to {
    filter: none;
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
header {
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(17, 15, 15, 0.35);

  z-index: 2000;
  transition: background 0.3s ease;
}
.logo img {
  width: 140px;
  height: auto;
}
.nav-links {
  display: flex;
  gap: 45px;
}
.nav-links a {
  text-decoration: none;
  color: #f4ecae;
  font-size: 15px;
  transition: 0.3s;
}
.nav-links a:hover {
  opacity: 0.7;
}
.icons i {
  font-size: 18px;
  margin-left: 18px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  text-decoration:none;
}
.icons i:hover {
  transform: scale(1.1);
}
.menu-btn {
  display: none;
  cursor: pointer;
}
.menu-btn i {
  color: white;
  font-size: 26px;
}

@media (max-width: 768px) {
  header {
    padding: 20px 25px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    right: 25px;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 20px 30px;
    text-align: right;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }
}

@media (max-width: 450px) {
  .logo img {
    width: 120px;
  }
}

.search-bar-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 130px;
  background: #fff;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.15);
  z-index: 200;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.search-bar-container.active {
  display: flex;
}

.search-input {
  width: 70vw;
  max-width: 600px;
  padding: 13px 20px;
  font-size: 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.close-search {
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 20px;
  color: #555;
}

.hide-header {
  display: none !important;
}
/* Overlay Search Bar Responsive Styles */

.search-bar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100px;
  background: #fff;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.1);
  z-index: 201;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}

.search-bar-overlay.active {
  display: flex;
}

.search-bar-content {
  display: flex;
  align-items: center;
  width: 90vw;
  max-width: 900px;
  margin: 0 auto;
  gap: 22px;
}

.search-logo {
  width: 100px;
  min-width: 54px;
  height: auto;
}

.search-input {
  flex: 1 1 110px;
  padding: 13px 18px;
  min-width: 50px;
  font-size: 17px;
  border-radius: 7px;
  border: 1px solid #ebeaea;
}

.search-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-icons i {
  font-size: 22px;
  color: #2d2d2d;
  cursor: pointer;
}

.close-search {
  font-size: 27px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #333;
  margin-left: 10px;
}

.hide-header {
  display: none !important;
}

/* Tablet Responsiveness */
@media (max-width: 900px) {
  .search-bar-content {
    width: 98vw;
    max-width: 99vw;
    gap: 12px;
    padding: 0 6px;
  }
  .search-input {
    font-size: 15px;
  }
}

.desktop-nav {
  display: flex;
}

.menu-btn {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: #fff;
  padding: 80px 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: 0.4s ease;
  z-index: 4000;
  border-right: 1px solid #ddd;
}

.mobile-menu a {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

.mobile-menu a:hover {
  color: #ff4b4b;
}

.mobile-menu.active {
  left: 0;
}

.close-mobile {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #000;
  font-size: 36px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }
  .menu-btn {
    display: block;
  }
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .search-bar-overlay {
    height: auto;
    min-height: 94px;
    padding: 14px 0;
  }
  .search-bar-content {
    flex-direction: column;
    width: 97vw;
    gap: 12px;
    align-items: stretch;
    padding: 0 5px;
  }
  .search-logo {
    margin-bottom: 2px;
    width: 65px;
    align-self: flex-start;
  }
  .search-input {
    width: 100%;
    min-width: 90px;
    padding: 11px 9px;
    border-radius: 6px;
  }
  .search-icons {
    width: 100%;
    justify-content: flex-end;
    gap: 16px;
  }
}
.search-bar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100px;
  background: #fff;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.1);
  z-index: 201;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}

.search-bar-overlay.active {
  display: flex;
}

.search-bar-content {
  display: flex;
  align-items: center;
  width: 90vw;
  max-width: 900px;
  margin: 0 auto;
  gap: 22px;
}

.search-logo {
  width: 100px;
  min-width: 54px;
  height: auto;
}

.search-input {
  flex-grow: 1;
  padding: 13px 18px;
  min-width: 50px;
  font-size: 17px;
  border-radius: 7px;
  border: 1px solid #ebeaea;
}

.search-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-icons i {
  font-size: 22px;
  color: #2d2d2d;
  cursor: pointer;
}

.close-search {
  font-size: 27px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #333;
  margin-left: 10px;
}

.hide-header {
  display: none !important;
}
.login-btn {
  padding: 8px 22px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease;
}

.login-btn:hover {
  background: #ffffff71;
  color: #000;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .login-btn {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .search-bar-overlay {
    height: auto;
    min-height: 94px;
    padding: 14px 0;
  }
  .search-bar-content {
    flex-direction: column;
    width: 97vw;
    gap: 12px;
    align-items: stretch;
    padding: 0 5px;
  }
  .search-logo {
    margin-bottom: 2px;
    width: 65px;
    align-self: flex-start;
    display: none;
  }
  .search-input {
    width: 100%;
    min-width: 90px;
    padding: 11px 9px;
    border-radius: 6px;
  }
  .search-icons i.fa-regular.fa-heart {
    display: none;
  }
  .search-icons {
    width: 100%;
    justify-content: flex-end;
    gap: 16px;
  }
}

.dropdown {
  position: relative;
}

.dropdown .dropbtn {
  color:#f4ecae;
  text-decoration: none;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown .dropbtn i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropbtn i {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 15px;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  padding: 10px 0;
  z-index: 3000;
  transition: all 0.3s ease;
}

.dropdown-content a {
  color: #f4ecae;
  padding: 10px 18px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: 0.3s;
}

.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Show dropdown on hover */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: flex;
  }
}

/* --- Mobile Dropdown --- */
.mobile-dropdown {
  display: none;
}

.mobile-dropdown a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  cursor: pointer;
}

.mobile-dropdown i {
  transition: transform 0.3s ease;
}

.mobile-dropdown.open i {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  margin-left: 15px;
  margin-top: 5px;
  transition: max-height 0.4s ease;
}

.mobile-dropdown-content a {
  color: #000;
  font-size: 16px;
  text-decoration: none;
  padding: 6px 0;
}

.mobile-dropdown-content a:hover {
  color: #ff4b4b;
}

/* --- RESPONSIVE BEHAVIOR --- */

@media (max-width: 768px) {
  .dropdown {
    display: none;
  }
  .mobile-dropdown {
    display: block;
  }

  .mobile-dropdown-content a {
    font-size: 15px;
    padding: 6px 4px;
  }
}

/* 1. SHOPPING CART SIDEBAR CSS  */

.shopping-cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100vh;
  background-color: white;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: right 0.3s ease-in-out;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* Class to show the sidebar */
.shopping-cart-sidebar.open {
  right: 0;
}

/* MEDIA QUERY (Mobile & Small Screens) */

@media (max-width: 600px) {
  .shopping-cart-sidebar {
    width: 100%;

    right: -100%;
  }

  .shopping-cart-sidebar.open {
    right: 0;
  }

  .product-list {
    overflow-x: auto;
  }
}

/* ------------------------------------- */
/* 3. Overlay/Background Dimmer */
/* ------------------------------------- */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
  cursor: pointer;
}

/* ------------------------------------- */
/* 4. Cart Content Styling (कोई बदलाव नहीं, यह responsive है) */
/* ------------------------------------- */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 15px 20px;
  border-bottom: 1px solid #eee;
}

.cart-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.cart-content {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
}

.empty-cart {
  text-align: center;
  padding: 50px 0;
}

.cart-icon-box {
  margin-bottom: 20px;
  color: #dcdcdc;
  font-size: 60px;
}

.empty-cart h3 {
  font-weight: 500;
  margin-bottom: 5px;
}

.empty-cart p {
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}

.continue-shopping-btn {
  background-color: black;
  color: white;
  padding: 12px 25px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  cursor: pointer;
}

.you-may-also-like {
  padding-top: 20px;
  border-top: 1px solid #eee;
  margin-top: 30px;
}

.you-may-also-like h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
}

.product-list {
  display: flex;
  gap: 15px;
  padding-bottom: 10px;
  overflow-x: auto;
}

.product-card {
  min-width: 120px;
  text-align: left;
  border: 1px solid #eee;
  padding: 0px;
}

.product-card img {
  width: 100%;
  height: auto;
  background-color: #f3f3f3;
  min-height: 120px;
}

.product-card p {
  margin: 5px 0 5px 4px;
  font-size: 13px;
  color: #333;
}

.product-card .price {
  font-weight: bold;
  color: black;
  margin-bottom: 5px;
}

.about-us {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40vh;
  background: url(../images/bnner.jpg);
  background-size: cover;
  background-position: center;
}

.about-us h1 {
  font-size: 50px;
  color: white;
}

.our-story {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.our-story-1 {
  flex-basis: 45%;
  margin-left: 70px;
}

.our-story-1 h1 {
  font-size: 40px;
  margin: 25px 0px;
  font-weight: 500;
}

.our-story-1 h4 {
  margin: 10px 0px;
  color: rgb(145, 143, 143);
  font-weight: 300;
}

.our-story-1 p {
  color: rgb(145, 143, 143);
}

.our-story-2 {
  flex-basis: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.our-story-2 img {
  width: 80%;
  height: 60vh;
}

@media (max-width: 1024px) {
  .our-story {
    flex-direction: column;
    text-align: center;
    padding: 0 40px;
  }

  .our-story-1,
  .our-story-2 {
    flex-basis: 100%;
  }

  .our-story-1 h1 {
    font-size: 32px;
  }

  .our-story-1 p {
    font-size: 15px;
  }

  .our-story-2 img {
    width: 90%;
    height: auto;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .our-story {
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
  }

  .our-story-1 {
    margin: 0;
  }

  .our-story-1 h1 {
    font-size: 28px;
  }

  .our-story-1 h4 {
    font-size: 14px;
  }

  .our-story-1 p {
    font-size: 14px;
    line-height: 1.6;
  }

  .our-story-2 img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .our-story {
    padding: 0 15px;
  }

  .our-story-1 h1 {
    font-size: 24px;
  }

  .our-story-1 p {
    font-size: 13px;
  }

  .our-story-2 img {
    border-radius: 6px;
  }
}

.design {
  background: url(../images/design-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  padding: 0%;
}

.design-1 {
  width: 25%;
}

.design-1 img {
  width: 30%;
}

.design-1 h2,
p {
  color: white;
}

@media (max-width: 1024px) {
  .design {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .design-1 {
    width: 40%;
  }

  .design-1 h2 {
    font-size: 22px;
  }

  .design-1 p {
    font-size: 14px;
  }

  .design-1 img {
    width: 25%;
  }
}

@media (max-width: 767px) {
  .design {
    flex-direction: column;
    gap: 30px;
  }

  .design-1 {
    width: 90%;
  }

  .design-1 img {
    width: 60px;
  }

  .design-1 h2 {
    font-size: 20px;
  }

  .design-1 p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .design {
    gap: 20px;
  }

  .design-1 {
    width: 100%;
  }

  .design-1 img {
    width: 50px;
  }

  .design-1 h2 {
    font-size: 18px;
  }

  .design-1 p {
    font-size: 13px;
  }
}

#behind-the-brands {
  margin-bottom: 50px;
}

.behind-the-1 {
  text-align: center;
}

.behind-the-1 h1 {
  font-size: 50px;
  padding-top: 50px;
  font-weight: 600;
}

.behind-the-1 p {
  padding: 30px 10%;
  color: rgb(145, 143, 143);
}

.behind-the-2 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

.behind-img p {
  color: rgb(145, 143, 143);
}

.behind-img img {
  transition: 0.5s;
}

.behind-img img:hover {
  opacity: 50%;
}

.instagram-section {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}

.instagram-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}

.instagram-gallery img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.instagram-gallery img:hover {
  transform: scale(1.05);
}

.instagram-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #000;
  padding: 12px 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.instagram-overlay img {
  width: 25px;
  height: 25px;
}

.instagram-overlay p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: black;
}

@media (max-width: 1024px) {
  .instagram-gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .instagram-gallery img:nth-child(n + 5) {
    display: none;
  }

  .instagram-overlay {
    padding: 10px 20px;
  }
}

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

  .instagram-gallery img:nth-child(n + 4) {
    display: none;
  }

  .instagram-overlay {
    flex-direction: column;
    gap: 6px;
    padding: 10px 15px;
  }

  .instagram-overlay p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .instagram-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-gallery img:nth-child(n + 3) {
    display: none;
  }

  .instagram-overlay {
    width: 80%;
    text-align: center;
  }

  .instagram-overlay p {
    font-size: 13px;
  }
}



.newsletter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.newsletter-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
}

.newsletter-text {
  flex: 1;
  min-width: 250px;
  color: #fff;
}

.newsletter-text h2 {
  font-size: 26px;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 10px;
}

.newsletter-text p {
  font-size: 16px;
  color: #f1f1f1;
}

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 16px;
  outline: none;
}

.newsletter-form button {
  background: #000;
  color: #fff;
  padding: 0 30px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #333;
}

@media (max-width: 768px) {
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-icon i {
    font-size: 50px;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 8px;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: 0;
  }

  .newsletter-form button {
    border-radius: 0 0 8px 8px;
  }
}

.main-footer {
  background: #f7f7f7;
  padding: 50px 70px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: white;
}

.footer-col-logo .logo {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-col-logo p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-ection {
  display: flex;
  margin-bottom: 25px;
}

.newsletter-ection input[type="email"] {
  padding: 10px 15px;
  border: 1px solid #ddd;
  flex-grow: 1;
  font-size: 14px;
  outline: none;
}

.newsletter-ection button {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.social-icons .icon {
  font-size: 16px;
  color: #666;
  margin-right: 15px;
  cursor: pointer;
  transition: color 0.2s;
}

.social-icons .icon:hover {
  color: #000;
}

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

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

.footer-col ul li a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #000;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}

.footer-bottom .copyright {
  font-size: 13px;
  color: #666;
}

.footer-bottom .payment-methods img {
  height: 20px;
  margin-left: 10px;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 25px;
  }

  .footer-col-logo {
    grid-column: 1 / span 3;
  }

  .newsletter-ection input {
    font-size: 13px;
  }

  .newsletter-ection button {
    font-size: 14px;
  }

  .main-footer {
    padding: 40px 40px 20px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-col-logo {
    grid-column: 1 / span 2;
  }

  .footer-col h4 {
    font-size: 15px;
  }

  .newsletter-ection {
    flex-direction: column;
  }

  .newsletter-ection input,
  .newsletter-ection button {
    width: 100%;
    margin-bottom: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom .payment-methods img {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .main-footer {
    padding: 30px 25px 15px;
  }

  .footer-col h4 {
    font-size: 14px;
  }

  .footer-col-logo p {
    font-size: 13px;
  }

  .footer-bottom .copyright {
    font-size: 12px;
  }

  .social-icons {
    margin-bottom: 10px;
  }
}

/* FOOTER CSS STYLING */

.main-footer {
  background-color: #1c1a1a;
  color: #f7f7f7;
  padding-top: 50px;
  font-family: sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px 20px;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 30px;
  border-bottom: 1px solid #ddd;
}

/* Footer Column Titles */
.col-title {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Contact Info Column */
.footer-bagging-logo {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.call-us-free {
  font-size: 12px;
  font-weight: bold;
  color: #777;
  margin-top: 20px;
}

.phone-number {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #f4f3f3;
}

.address-details {
  font-size: 13px;
  line-height: 1.6;
  color: #fff;
}

/* Links Columns */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  text-decoration: none;
  color: #555;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #000;
}

/* Newsletter Column */
.newsletter-text {
  font-size: 13px;
  color: #fff;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  margin-bottom: 20px;
}

.newsletter-form input[type="email"] {
  padding: 10px 15px;
  border: 1px solid #ddd;
  flex-grow: 1;
  font-size: 14px;
}

.newsletter-form .submit-btn {
  background-color: black;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon-box {
  width: 35px;
  height: 35px;
  border: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s, border-color 0.2s;
  border-radius: 50%;
}

.social-icon-box:hover {
  background-color: #eee;
  border-color: #bbb;
}

/* Copyright Bar */
.copyright-bar {
  background-color: #fff;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

.copyright-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #777;
}

.payment-icons i {
  font-size: 20px;
  margin-left: 10px;
  color: #777;
}

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

  .footer-col:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-links ul {
    text-align: center;
  }

  .footer-col:nth-child(5) {
    grid-column: span 1;
  }

  .newsletter-form {
    flex-direction: row;
    max-width: 90%;
    margin: 0 auto 20px auto;
  }

  .social-icons {
    justify-content: center;
    margin-bottom: 20px;
  }

  .copyright-content {
    flex-direction: column;
    text-align: center;
  }

  .copyright-content p {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .logo img {
    width: 40px;
    height: auto;
  }
}
.logo img {
  width: 80px;
  height: auto;
}
