:root {
    --primary-bg: #ffffff;
    --light-gray: #f8f8f8;
    --border-color: #e0e0e0;
    --icon-color: #6b6b6b;
    --text-color: #2c2c2c;
  }
  
  @font-face {
    font-family: rej;
    src: url(./rejoy.ttf);
  }
  
  * {
    /* font-family: 'rejoy'; */
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* font-family: rej; */
  }
  h2{
    font-family: rej;
    font-weight: 400;
  }
  a{
    color: black;
    text-decoration: none;
  }
  body {
    /* font-family: 'rejoy'; */
    background-color: var(--light-gray);
    color: var(--text-color);
    display: flex;
    /* font-family: 'rejoy.ttf'; */
  }
  
  .sidebar {
    width: 220px;
    background-color: var(--primary-bg);
    border-right: 1px solid var(--border-color);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
  }
  
  .sidebar .nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--icon-color);
    cursor: pointer;
    transition: 0.3s;
  }
  
  .sidebar .nav-item:hover {
    color: var(--text-color);
  }
  
  .main {
    margin-left: 220px;
    width: calc(100% - 220px);
    padding: 0px  20px;
  }
  
  /* Header */
  .header {
    background-color: var(--primary-bg);
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
  }
  
  .header .left,
  .header .right {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .header i {
    color: var(--icon-color);
  }
  
  /* Navbar */
  .navbar {
    background-color: var(--primary-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border-color);
  }
  
  .searchbar {
    display: flex;
    align-items: center;
    background-color: var(--light-gray);
    padding: 8px 12px;
    border-radius: 4px;
    width: 100%;
    max-width: 380px;
  }
  
  .searchbar input {
    border: none;
    background: transparent;
    margin-left: 8px;
    width: 100%;
    font-size: 14px;
    outline: none;
  }
  
  .nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    color: var(--icon-color);
    cursor: pointer;
  }
  
  /* Content Area */
  .content {
    padding: 20px 10px;
  }

  
  /* Hamburger icon style */
.hamburger {
    display: none;
    font-size: 20px;
    color: var(--icon-color);
    cursor: pointer;
  }
  
  /* Mobile Sidebar Slide */
  .sidebar {
    transition: transform 2s ease;
  }
  
  /* Sidebar hidden on mobile */
  .sidebar.hide {
    transform: translateX(-100%);
  }
  
  /* Responsive rules */
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .sidebar {
      position: fixed;
      z-index: 1000;
      height: 100vh;
      background: var(--primary-bg);
      top: 0;
      left: 0;
      transform: translateX(-100%);
    }
  
    .sidebar.active {
      transform: translateX(0%);
    }
  
    .main {
      margin-left: 0;
      width: 100%;
    }
  }
  @media (max-width: 768px) {
    .hamburger {
      display: block;
      z-index: 999;
    }
  
    .sidebar {
      transform: translateX(-100%);
      position: fixed;
      z-index: 99;
      height: 100vh;
      background: var(--primary-bg);
      top: 0;
      left: 0;
      transition: transform 0.3s ease;
    }
  
    .sidebar.active {
      transform: translateX(0%);
    }
  
    .main {
      margin-left: 0;
      width: 100%;
    }
  }
  .location-selector {
    display: flex;
    align-items: center;
    background-color: #e9e9e9;
    padding: 6px 12px;
    border-radius: 6px;
    gap: 2px;
    font-size: 14px;
  }
  .location-selector select {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: var(--text-color);
  }

 
  
  .lang-selector {
    display: flex;
    align-items: center;
    background-color: #e9e9e9;
    padding: 6px 6px;
    border-radius: 6px;
    font-size: 14px;
    gap: 8px;
    color: #333;
  }
  
  .lang-selector select {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #333;
    cursor: pointer;
  }
    
  /* Minimalist hover effects & transitions */
.location-selector,
.lang-selector {
  transition: all 0.2s ease;
  box-shadow: 0 0 0 transparent;
}

.location-selector:hover,
.lang-selector:hover {
  background-color: #f2f2f2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transform: scale(1.02);
}

/* Select dropdown minimalist tweaks */
.location-selector select,
.lang-selector select {
  appearance: none;
  padding: 2px 6px;
  cursor: pointer;
}

/* Add down arrow icon using pseudo */
.location-selector::after,
.lang-selector::after {
  content: "▼";
  font-size: 10px;
  color: #888;
  margin-left: 4px;
}

/* Icon hover for nav icons */
.nav-icons i,
.header i {
  transition: 0.2s ease-in-out;
}

.nav-icons i:hover,
.header i:hover {
  color: var(--text-color);
  transform: scale(1.1);
  color: #00BF62;
}

/* Mobile hamburger subtle hover */
.hamburger:hover {
  color: var(--text-color);
  transform: scale(1.1);
  transition: all 0.2s ease;
}

/* Sidebar nav hover with subtle scale */
.sidebar .nav-item {
  transition: all 0.2s ease;
}

.sidebar .nav-item:hover {
  transform: translateX(4px);
  color: var(--text-color);
}

.banner-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 40vh;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.banner-slide {
  width: 100%;
  height: 100%;
  display: none;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:  1s all ease;  /* Animation for sliding effect */
}

.banner-text {
  font-size: 1.5rem;
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.banner-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 10px;
}

.banner-btn {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
}

.banner-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

 

h2 {
  text-align: center;
  margin-bottom: 30px;
}

.slider-section {
  margin-bottom: 40px;
}

.slider-section h3 {
  margin: 10px 0;
  /* background-color: red; */
}

.slider-container {
  position: relative;
  overflow: hidden;
  padding: 10px 0px;
}

.slider-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.slide {
  flex: 0 0 auto;
  width: 100px;
  margin-right: 1px;
  text-align: center;
}

.slide img {
  width: 80px;
  height: 80px;
  border-radius: 10%;
  object-fit: cover;
  margin-bottom: 8px;
  border: 2px solid #ccc;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  font-size: 15px;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.nav-left {
  left: 0;
}

.nav-right {
  right: 0;
}

.slider-container {
  position: relative;
  /* border-bottom-left-radius: 10px; */
  /* overflow: hidden; 👉 Yeh scrollbar hata dega */
  /* overflow-x: hidden; */
  

}
::-webkit-scrollbar{
  display: none;
}
 
@media (max-width: 768px) {
  .main,
  .header,
  .navbar,
  .content
   {
    padding: 10px 10px !important;
  }

  .slider-container{
    padding: 0px 1px;
  }
  .slider-section{
    padding: 0px 10px;
  }
  .searchbar {
    max-width: 100%;
  }
  .banner-slide{
    height: 15vh;
  }
  .banner-slide img {
    /* width: 100%; */
    height: 100%;
    display: none;
    object-fit: contain;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;

    transition:  1s all ease;  /* Animation for sliding effect */
  }
  
.banner-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 15vh;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
 
}


.main-navbar button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* 📱 Overlay Styling */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hidden {
  display: none;
}

.phone-wrapper {
  position: relative;
}

/* ❌ Close Button */
#closeBtn {
  position: absolute;
  left: 19em;
  top: 8.8em;
  background: white;
  border: none;
  font-size: 18px;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

/* 📱 Phone Frame */
.phone-container {
  position: relative;
  width: 360px;
  height: 660px;
}

.phone-image {
  width: 100%;
  height: 100%;
  display: block;
  z-index: 999;
  /* position: absolute; */
}

.phone-screen {
  position: absolute;
  top: 27px;
  left: 21px;
  width: 319px;
  z-index: 11;
  height: 610px;
  border-radius: 20px;
  /* border: none; */
  border-radius: 20px;
}
/* 🟢 Overlay fixes */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  visibility: visible;
  opacity: 1;
}

/* 📱 Mobile Responsive (stack layout) */
@media (max-width: 768px) {
  #overlay {
    display: none;
  }
  .phone-container {
    position: relative;
    width: 360px;
    height: 660px;
    display: none;
  }
  
}

#overlay.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
  

/* 🌐 CSS */
.responsive-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-areas:
    "left right"
    "full full";
  gap: 1.2rem;
  padding: 0em 1rem 0 0em;
}


.box {
  padding: 1.5rem;
  font-size: 1rem;
  border-radius: 1rem;
  color: white;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

/* 🎨 Gradient Backgrounds */
.left-offer {
  grid-area: left;
  background: linear-gradient(135deg, #7f00ff, #00c3ff); /* Purple to Blue */
  box-shadow: 0 0 20px rgba(127, 0, 255, 0.5);
  min-height: 25vh;
}

.right-offer {
  grid-area: right;
  background: linear-gradient(135deg, #ff512f, #f09819); /* Red to Orange */
  box-shadow: 0 0 20px rgba(255, 81, 47, 0.5);
  min-height: 30vh;
}

.full-offer {
  grid-area: full;
  background: linear-gradient(135deg, #ff6ec4, #7873f5); /* Pink to Blue */
  box-shadow: 0 0 20px rgba(255, 110, 196, 0.5);
  min-height: 40vh;
}

/* 📱 Mobile Responsive (stack layout) */
@media (max-width: 768px) {
  .responsive-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "right"
      "full";
    padding: 0.5rem;
  }
  
  .full-offer {
    grid-area: full;
    background: linear-gradient(135deg, #ff6ec4, #7873f5); /* Pink to Blue */
    box-shadow: 0 0 20px rgba(255, 110, 196, 0.5);
    min-height: 10vh;
  }
  
}


 
.my-products-wrapper {
  position: relative;
  margin-top: 40px;
  padding: 0 3px;
  overflow: hidden;
}

.my-products-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 49px;
}

.my-product-card {
  min-width: 200px;
  min-height: 300px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

 

.my-product-top {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-weight: 600;
  font-size: 14px;
}

.my-cart-icon {
  color: #555;
  cursor: pointer;
}

.my-price-details {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 6px;
  color: #333;
}

.my-cut-price {
  text-decoration: line-through;
  color: gray;
}

.my-sold {
  font-size: 12px;
  color: #e53935;
  white-space: nowrap;
}

.my-rating-stars {
  margin-top: 6px;
  color: #f4c150;
  font-size: 14px;
}

.my-nav-btns {
  position: absolute;
  bottom: 0px;
  right: 10px;
  display: flex;
  gap: 10px;
}
.my-nav-btnss {
  position: absolute;
  bottom: 0px;
  right: 10px;
  display: flex;
  gap: 10px;
}
.my-nav-btnss button {
  padding: 4px 10px;
  font-size: 16px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}

.my-nav-btns button {
  padding: 4px 10px;
  font-size: 16px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}
.my-product-img {
  width: 100%;
  height: 200px; /* Set max height of the box */
  object-fit: cover; /* Cover full width and crop excess height */
  display: block;
  border-radius: 10px; /* Optional for clean edges */
}
 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.grid-container {
  width: 100%;
  padding: 10px 10px;
  /* background-color: red; */
}

.grid-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.grid-item {
  border-radius: 10px;
  /* padding: 20px; */
  /* background: linear-gradient(to right, #333, #666); */
  color: white;
  /* background-color: #7498a3; */
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.grid-item img{
  height: 15rem;
  width: 15rem;
  /* background-color: red; */
}


.grid-item:hover {
  transform: scale(1.05);
}

.small-left {
  flex: 0 0 20%;
  height: 30vh;
}

.medium-right {
  flex: 0 0 60%;
  height: 30vh;
}

@media screen and (max-width: 768px) {
  .grid-row {
    flex-direction: column;
  }
  .small-left, .medium-right, .small-left {
    flex: 1 1 100%;
  }
 .small-left{
  flex: 1 1 100%;
 }
}


.cat-tabs-wrapper {
  margin-top: 1em;
  padding: 1em;
  background: linear-gradient(to right, #f5f5f5, #e0e0e0);
  border-radius: 15px;
}

.cat-tab-buttons {
  display: flex;
  gap: 1em;
  justify-content: center;
  margin-bottom: 1em;
}

.cat-tab-buttons button {
  padding: 0.6em 1.2em;
  border: none;
  background-color: #444;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cat-tab-buttons button:hover {
  background-color: #222;
}

.cat-product-wrapper {
  overflow-x: auto;
  display: none;
  animation: slideIn 0.6s ease-in-out forwards;
}

.cat-product-scroll {
  display: flex;
  gap: 1em;
  padding: 0.5em 0;
}

.cat-product-card {
  /* min-width: 150px; */
  /* background-color: #5a0000; */
  border-radius: 10px;
  padding: 1em;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  flex: 0 0 auto;
  text-align: center;
  width: 20rem;
  height: 25rem;
  transition: transform 0.3s ease;
}

.cat-product-card:hover {
  transform: scale(1.05);
}

.cat-product-card img {
  width: 100%;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
}

.cat-product-card .cat-product-name {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 0.95rem;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30%); /* ← yeh line change ki hai */
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cat-product-wrapper {
  overflow-x: auto;
  height: 30rem;
  display: none;
  /* background-color: rebeccapurple; */
  animation: slideIn 0.6s ease-in-out forwards;
}


.responsive-cell-block {
  min-height: 75px;
}

* {
  font-family: Nunito, sans-serif;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  line-height: 25px;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.responsive-container-block.bg {
  max-width: 1320px;
  justify-content: flex-end;
  position: relative;
  height: auto;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 10px;
  min-height: 600px;
}

.responsive-container-block.blue-cont {
  background-color: rgb(3, 169, 244);
  width: 70%;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  height: auto;
  min-height: auto;
}

.text-blk.title {
  font-size: 46px;
  line-height: 64px;
  font-weight: 900;
  position: absolute;
  left: 12px;
  top: auto;
  bottom: auto;
  right: auto;
  margin-top: 80px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: block;
}

.swiper-container {
  width: 95%;
  height: 65%;
  position: absolute;
  right: 0px;
  top: 100px;
  overflow: hidden;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: flex-start;
  margin-top: 0px;
  margin-right: 35px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-wrapper {
  position: absolute;
  left: 0px;
}

.responsive-container-block.content {
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 80px;
  margin-left: 0px;
  min-height: auto;
  height: auto;
}

.text-blk.info {
  font-size: 20px;
  line-height: 34px;
  text-align: left;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 3px;
}

.swiper-pagination.container-block {
  min-height: auto;
  bottom: 5px;
  top: auto;
  position: absolute;
  left: auto;
}

.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.icon {
  min-height: auto;
  width: auto;
  display: flex;
  align-items: center;
}

.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.details {
  min-height: auto;
}

.responsive-container-block.person {
  min-height: auto;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 3px;
}

.text-blk.name {
  line-height: 32px;
  font-weight: 900;
  text-align: left;
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
}

.text-blk.desig {
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
}

.swiper-container.mySwiper {
  top: 200px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.profile-img {
  width: 60px;
  height: 60px;
  max-width: 60px;
  max-height: 60px;
}

@media (max-width: 1024px) {
  .responsive-container-block.blue-cont {
    width: 100%;
    height: 55%;
  }

  .responsive-container-block.bg {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    height: 100%;
  }

  .text-blk.title {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: 0px;
    position: absolute;
    top: 50px;
    left: 350px;
  }

  .swiper-container {
    position: absolute;
    right: 0px;
    top: 1000px;
  }

  .swiper-slide {
    align-items: flex-start;
  }

  .responsive-container-block.content {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.blue-cont {
    height: 70%;
  }

  .swiper-container.mySwiper {
    top: 200px;
    right: auto;
    left: auto;
  }

  .responsive-container-block.bg {
    height: 100%;
    align-items: center;
  }

  .swiper-pagination.container-block {
    top: auto;
    bottom: 55px;
  }

  .text-blk.title {
    left: auto;
    right: auto;
  }

  .responsive-container-block.bg {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .text-blk.title {
    top: 10px;
  }

  .swiper-container.mySwiper {
    top: 120px;
  }

  .swiper-pagination.container-block {
    bottom: 30px;
  }

  .text-blk.title {
    top: 0px;
  }

  .responsive-container-block.blue-cont {
    height: 58%;
  }

  .swiper-pagination.container-block {
    bottom: 30px;
    top: auto;
  }

  .text-blk.info {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 3px;
  }
}

@media (max-width: 768px) {
  .swiper-pagination.container-block {
    bottom: 55px;
  }

  .swiper-container.mySwiper {
    left: auto;
    top: 170px;
  }

  .responsive-container-block.person {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .text-blk.name {
    text-align: center;
  }

  .text-blk.desig {
    text-align: center;
  }

  .text-blk.info {
    text-align: center;
  }

  .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.icon {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
  }

  .responsive-container-block.bg {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .swiper-container.mySwiper {
    top: 120px;
  }

  .responsive-container-block.person {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 3px;
  }

  .text-blk.info {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 3px;
  }

  .swiper-pagination.container-block {
    bottom: 25px;
  }

  .responsive-container-block.content {
    max-width: 550px;
  }
}

@media (max-width: 500px) {
  .swiper-pagination.container-block {
    bottom: 0px;
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.content {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }

  .text-blk.info {
    text-align: center;
  }

  .responsive-container-block.bg {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .swiper-pagination.container-block {
    bottom: 0px;
  }
  .grid-row {
    flex-direction: column;
  }
  .small-left, .medium-right, .small-left {
    flex: 1 1 100%;
  }
 .small-left img{
  flex: 1 1 100%;
  width: 100vw;
 }
}


/* My design sattrt*****************************************8 */


.offer-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .offer-section {
    grid-template-columns: 1fr 1fr;
  }
}

.offer-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder {
  background-color: #000;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  width: 100%;
  height: 320px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-right {
  color: #333;
}

.offer-subtitle {
  text-transform: uppercase;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.offer-title {
  font-size: 1.5rem;
  font-weight: 700;

  margin-bottom: 1rem;
}

.offer-right p{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

.offer-text {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #555;
}

.highlight {
  color: #2563eb; /* Tailwind's blue-600 */
  font-weight: 600;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  margin-top: 1.5rem;
}

.countdown-grid > div {
  background-color: #f3f4f6;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.countdown-grid .number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2563eb;
}

.countdown-grid .label {
  font-size: 0.875rem;
  color: #555;
}



/* <!-- FOOLOW ON INSTA PAGE --> */
.insta-follow {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.insta-follow h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #111;
}

.insta-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-items: center;
}

.insta-img-box {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.insta-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.insta-img-box:hover img {
  transform: scale(1.07);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.insta-img-box:hover .overlay {
  opacity: 1;
}

.overlay i {
  color: #fff;
  font-size: 2.5rem;
}


/* <!-- FOOLOW ON INSTA PAGE END--> */

/* shipping  */
.features-section {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 40px 20px;
  background: linear-gradient(to right, #fff, #f9f9f9);
}

.feature-box {
  flex: 1 1 200px;
  background: white;
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-box .icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ff5c5c;
}

.feature-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.feature-box p {
  font-size: 0.95rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .features-section {
    flex-direction: column;
    gap: 1rem;
  }
}

/* shipping end */


/* Review Scroller */

.testimonial-section {
  padding: 60px 20px;
  background: #fefefe;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #222;
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  min-width: 300px;
  max-width: 320px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.03);
}

.client-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.review {
  font-size: 0.95rem;
  color: #444;
  margin: 15px 0;
}

.client-name {
  font-weight: 600;
  color: #111;
  margin-bottom: 5px;
}

.stars {
  color: gold;
  font-size: 1.2rem;
}


/* footer */

.custom-footer {
  background-color: #111;
  color: #ddd;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-col p, .footer-col li, .footer-col a {
  font-size: 0.95rem;
  color: #ccc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #ff5c5c;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px;
  border: none;
  border-radius: 6px;
  outline: none;
}

.newsletter-form button {
  padding: 10px;
  background: #ff5c5c;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #ff3b3b;
}

.sub-text {
  font-size: 0.85rem;
  margin-top: 10px;
  color: #aaa;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

.footer-bottom strong {
  color: #ff5c5c;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-col {
    text-align: left;
    display: inline-block;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    max-width: 300px;
  }
}
