* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter-Regular";
}



/* =====  Font Family  ===== */

@font-face {
  font-family: "Inter-ExtraLight";
  src: url(../fonts/Inter-ExtraLight.ttf);

  /*?  Font Weight 200  ?*/
}

@font-face {
  font-family: "Inter-Light";
  src: url(../fonts/Inter-Light.ttf);

  /*?  Font Weight 300  ?*/
}

@font-face {
  font-family: "Inter-Regular";
  src: url(../fonts/Inter-Regular.ttf);

  /*?  Font Weight 400  ?*/
}

@font-face {
  font-family: "Inter-Medium";
  src: url(../fonts/Inter-Medium.ttf);

  /*?  Font Weight 500  ?*/
}

@font-face {
  font-family: "Inter-SemiBold";
  src: url(../fonts/Inter-SemiBold.ttf);

  /*?  Font Weight 600  ?*/
}

@font-face {
  font-family: "Inter-Bold";
  src: url(../fonts/Inter-Bold.ttf);

  /*?  Font Weight 700  ?*/
}



/* =====  Root Variables  ===== */

:root {
  --primary-color: #F55266;
  --success-color: #33B36B;
  --warning-color: #FC9231;
  --danger-color: #F03D3D;
  --info-color: #2F6ED5;
  --dropdown-hover: #F5F7FA;
  --gray-100: #EEF1F6;
  --gray-200: #E0E5EB;
  --gray-300: #CAD0D9;
  --gray-400: #9CA3AF;
  --gray-500: #6C727F;
  --gray-600: #4E5562;
  --gray-700: #333D4C;
  --gray-800: #222934;
  --gray-900: #181D25;
  --copyright-color: #5B697E;
  --white-color: #fff;
  --black-color: #000;
}



/* =====  Start Navbar Section  ===== */

.navbar {
  background-color: var(--gray-800);
  padding: 20px 0;
}

.nav-search {
  border: 1px solid var(--white-color);
  background-color: transparent;
  border-radius: 100px;
  padding: 12px 16px;
  gap: 10px;
  display: flex;
  align-items: center;
  width: 40%;
}

.nav-search .fa-magnifying-glass {
  color: var(--white-color);
  font-size: 18px;
}

.nav-search input {
  background-color: transparent;
  outline: none;
  border: none;
  font-size: 16px;
  line-height: 24px;
  color: var(--gray-500);
  width: 100%;
}

.nav-search input::placeholder {
  color: var(--gray-500);
}

.nav-discount-round {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #333D4CB2;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 8px;
}

.nav-discount-sub-div {
  padding: 2px 0;
}

.nav-discount-sub-div p {
  font-size: 12px;
  line-height: 18px;
  color: var(--gray-300);
  margin-bottom: 2px;
}

.nav-discount-sub-div h5 {
  color: var(--white-color);
  font-family: "Inter-Medium";
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

.nav-user {
  gap: 4px;
}

.nav-user div {
  padding: 15px;
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-user img {
  height: 18px;
  width: 18px;
  cursor: pointer;
}

.nav-user .fa-magnifying-glass {
  color: var(--gray-200);
  font-size: 18px;
}

.cart {
  background-color: var(--gray-700);
  border-radius: 50%;
  position: relative;
}

.cart-count {
  position: absolute;
  top: 0;
  right: -18px;
  border-radius: 50%;
  background-color: var(--gray-800);
  height: 24px !important;
  width: 24px !important;
  font-size: 12px;
  line-height: 18px;
  cursor: pointer;
}

.cart-count-sub-div {
  border-radius: 50%;
  background-color: var(--success-color);
  height: 20px !important;
  width: 20px !important;
  font-size: 12px;
  line-height: 18px;
  padding: 3px 8px !important;
  color: var(--white-color);
}

.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  font-size: 22px;
  color: var(--gray-200);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggle-btn-div {
  gap: 15px;
}

.header-bottom {
  background-color: var(--gray-800);
}

.header-bottom .navbar {
  padding: 0;
}

.header-bottom .navbar-nav {
  display: flex;
  gap: 4px;
}

.nav-item {
  padding: 12px 20px;
  transition: all 0.5s;
}

.nav-item:hover,
.nav-item.active {
  background-color: var(--gray-700);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.nav-link {
  color: #FFFFFFCC !important;
  font-family: "Inter-Medium";
  font-size: 16px;
  line-height: 24px;
  padding: 0 !important;
}

.nav-language ul {
  list-style-type: none;
  gap: 24px;
}

.nav-language .nav-item {
  padding: 14px 0;
}

.nav-language .nav-link {
  color: #FFFFFFCC !important;
  font-family: "Inter-Medium";
  font-size: 14px;
  line-height: 20px;
}

.nav-language .nav-item:hover,
.nav-language .nav-item.active {
  background-color: transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-link::after {
  content: "";
  display: none;
}

.category-dropdown {
  width: 200px;
  margin: 0 16px 0 8px;
}

.category-icon {
  height: 18px;
  width: 18px;
}

.d-icon {
  height: 18px;
  width: 18px;
}

.nav-language .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.nav-language .d-icon {
  height: 14px;
  width: 14px;
}

.dropdown-menu.show {
  width: 100%;
  background-color: var(--white-color);
  border-radius: 0;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  margin: 0;
  padding: 12px;
  border: 1px solid #EEF1F6;
  box-shadow: 0px 8px 32px -4px #676F7B1A;
}

.category-list {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  margin-bottom: 6px;
}

.category-list:last-child {
  margin-bottom: 0;
}

.category-list:hover {
  background-color: var(--dropdown-hover);
  border-radius: 8px;
}

.category-list-icon {
  height: 20px;
  width: 20px;
  margin-right: 12px;
}

.category-list span {
  color: var(--gray-700);
  font-family: "Inter-Medium";
  font-size: 14px;
  line-height: 22px;
}

.category-list .fa-chevron-right {
  font-size: 14px;
  color: #858b94;
}

.dropdown-item:active {
  background-color: var(--dropdown-hover);
  color: var(--gray-700);
}

/* =====  End Navbar Section  ===== */



/*=====  Start Banner Section  =====*/

.banner-section {
  margin-top: 24px;
}

.banner {
  background: linear-gradient(90deg, #ACCBEE 0%, #E7F0FD 100%);
  border-radius: 12px;
  position: relative;
  padding: 0 12px;
}

.swiper {
  width: 100% !important;
  height: 100% !important;
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal {
  width: 80% !important;
  height: 4px !important;
  border-radius: 100px !important;
  position: absolute !important;
  left: 50% !important;
  top: auto !important;
  bottom: 52px !important;
  transform: translate(-50%) !important;
}

.swiper-pagination-progressbar {
  background-color: #FFFFFF40 !important;
}

.swiper-pagination-progressbar-fill {
  border-radius: 100px !important;
  background-color: var(--white-color) !important;
}

.banner-sub-heading {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

.banner-heading {
  color: var(--gray-900);
  font-family: "Inter-Bold";
  font-size: 56px;
  line-height: 68px;
  margin: 16px 0 40px;
}

.banner-btn {
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 8px;
  border: 2px solid transparent;
  font-family: "Inter-Medium";
  font-size: 16px;
  line-height: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
  transition: all 0.5s;
}

.banner-btn:hover {
  border: 2px solid var(--primary-color);
  background-color: transparent;
}

.banner-btn img {
  height: 16px;
  width: 16px;
}

.banner-img {
  width: 100%;
  height: 100%;
}

/*=====  End Banner Section  =====*/



/*=====  Start Benefits Section  =====*/

.benefits-section,
.arrivals-section,
.trending-product-section,
.discount-section,
.special-offer-section,
.brands-section,
.newsletter-section {
  margin-top: 72px;
}

.benefits-sub-div {
  display: flex;
  gap: 16px;
}

.icon-div {
  width: 86px;
  aspect-ratio: 1;
  background-color: #F5F7FA;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits-icon {
  height: 32px;
  width: 32px;
}

.benefits-heading {
  color: var(--gray-900);
  font-family: "Inter-SemiBold";
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 6px;
}

.benefits-sub-heading {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 0;
}

/*=====  End Benefits Section  =====*/



/*=====  Start Arrivals Section  =====*/

.arrivals-section {
  margin-top: 72px;
}

.section-heading {
  font-family: "Inter-SemiBold";
  font-size: 28px;
  line-height: 36px;
  color: var(--gray-900);
  margin-bottom: 32px;
}

.arrivals-banner {
  border-radius: 16px;
  background: #243042;
  position: relative;
}

.arrivals-bg-img {
  width: 100%;
  height: 535px;
  opacity: 0.2;
  border-radius: 16px;
}

.arrivals-laptop {
  background-image: url(../images/macbook.png);
  background-size: 100% 100%;
  width: 324px;
  height: 344px;
  position: absolute;
  left: 25px;
  top: 39px;
  z-index: 2;
}

.arrivals-content {
  position: absolute;
  left: 44px;
  top: 313px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arrival-h3 {
  color: var(--white-color);
  font-family: "Inter-Bold";
  font-size: 72px;
  line-height: 86px;
}

.arrival-p {
  color: var(--gray-300);
  font-family: "Inter-Medium";
  font-size: 16px;
  line-height: 24px;
  margin: 8px 0 24px;
}

.arrival-btn {
  padding: 8px 16px;
  border: 2px solid transparent;
  border-radius: 6px;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-family: "Inter-Medium";
  font-size: 12px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  outline: none;
  transition: all 0.5s;
}

.arrival-btn:hover {
  background-color: transparent;
  border: 2px solid var(--primary-color);
}

.arrival-btn img {
  width: 14px;
  height: 14px;
}

.arrival-product {
  padding-left: 16px;
}

.arrival-sub-div {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.arrival-sub-div:last-child {
  margin-bottom: 0;
}

.fa-star {
  color: var(--warning-color);
  margin-right: 2px;
  font-size: 12px;
}

.star-outline {
  color: var(--gray-400);
}

.rate span {
  color: var(--gray-400);
  font-size: 12px;
  line-height: 18px;
  margin-left: 2px;
}

.arrival-product-name {
  color: var(--gray-900);
  font-family: "Inter-Medium";
  font-size: 14px;
  line-height: 20px;
  margin: 8px 0;
}

.arrival-product-price {
  color: var(--gray-900);
  font-family: "Inter-SemiBold";
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.arrival-product-price span {
  color: var(--gray-400);
  font-family: "Inter-Regular";
  font-size: 14px;
  line-height: 22px;
  margin-left: 8px;
  text-decoration: line-through;
}

.arrival-product-img {
  height: 110px;
  width: 110px;
  margin-right: 16px;
}

/*=====  End Arrivals Section  =====*/



/*=====  Start Trending Products Section  =====*/

.trending-product-section {
  margin-top: 72px;
}

.trending-product-section .section-heading {
  margin-bottom: 0;
}

.view-all-btn {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  outline: none;
  background-color: transparent;
  font-family: "Inter-Medium";
  font-size: 14px;
  line-height: 20px;
  width: auto;
}

.view-all-btn .fa-chevron-right {
  font-size: 12px;
}

.trending-divider {
  border: 1px solid var(--gray-200);
  border-radius: 5px;
  margin: 24px 0;
}

.trending-popup {
  position: absolute;
  top: 16px;
  left: 16px;
}

.red-popup,
.blue-popup {
  padding: 2px 8px;
  border-radius: 4px;
  border: none;
  outline: none;
  color: var(--white-color);
  font-family: "Inter-Medium";
  font-size: 12px;
  line-height: 16px;
}

.red-popup {
  background-color: var(--danger-color);
}

.blue-popup {
  background-color: var(--info-color);
}

.trending-img {
  width: 100%;
  height: 100%;
}

.trending-product-content {
  padding: 0 16px;
}

.trending-product-content .arrival-product-name {
  margin-bottom: 12px;
}

.trending-cart-div {
  background-color: var(--gray-100);
  width: 40px;
  height: 40px;
  padding: 12px 0px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trending-cart-div img {
  cursor: pointer;
}

/*=====  End Trending Products Section  =====*/



/*=====  Start Discount Section  =====*/

.discount-banner .row {
  background: linear-gradient(90deg, #ACCBEE 0%, #E7F0FD 100%);
  border-radius: 16px;
}

.discount-first-banner {
  padding: 71px 68px;
  border-radius: 16px;
}

.discount-first-banner,
.discount-second-banner {
  border-radius: 16px;
}

.twenty-img {
  margin-right: 21px;
}

.off-img {
  margin-top: 10px;
}

.discount-camera-img {
  width: 420px;
  height: 252px;
  position: absolute;
  right: 180px;
}

.first-part {
  background: linear-gradient(90deg, #ACCBEE 99.99%, #E7F0FD 1%);
  border-right: 4px dashed white;
  border-radius: 16px;
  width: 306px;
  height: 210px;
}

.first-part h2 {
  font-size: 80px;
  color: var(--gray-900);
  font-family: "inter-bold";
  margin-right: 10px;
}

.first-part p {
  font-size: 42px;
  color: var(--gray-900);
  font-family: "inter-bold";
  line-height: 28px;
  text-align: center;

}

.first-part span {
  font-size: 25px !important;
  color: var(--gray-900);
  font-family: "inter-bold";

}

.second-part {
  background: linear-gradient(90deg, #ACCBEE 99.99%, #E7F0FD 1%);
  border-radius: 16px;
  flex: auto;
  height: 210px;
  position: relative;
}

.second-part h2 {
  font-family: "inter-bold";
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  text-transform: uppercase;
  margin-left: 60px;
}

.second-part p {
  font-family: "inter-regular";
  font-size: 18px;
  font-weight: 400;
  color: var(--gray-900);
  margin-left: 60px;
}

.second-part span {
  font-family: "inter-semibold";
  font-size: 18px;
  font-weight: 600;
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 5px 10px;
  margin-right: 5px;
}

.second-part img {
  width: 420px;
  height: 252px;
  position: absolute;
  top: 0px;
  right: 0px;
}

/*=====  End Discount Section  =====*/



/*=====  Start Special Offer Section  =====*/

.time-div {
  margin-left: 32px;
  gap: 8px;
  align-items: center;
}

.time-sub-div {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 6px;
  padding: 10px 2px;
  font-family: "Inter-Medium";
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  height: 40px;
  width: 40px;
}

.time-dot {
  color: var(--gray-400);
  font-family: "Inter-Medium";
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

.item-progress {
  background-color: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
  height: 4px;
  width: 100%;
  margin-top: 10px;
}

.item-progress::-webkit-progress-bar {
  background-color: var(--gray-100);
  border-radius: 100px;
}

.item-progress::-webkit-progress-value {
  background-color: var(--primary-color);
  border-radius: 100px;
}

.available-item-div {
  margin-top: 8px;
  margin-bottom: 16px;
  text-align: left;
}

.available-text {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 22px;
}

.available-item {
  font-family: "Inter-Medium";
  font-size: 14px;
  line-height: 20px;
}

.special-offer-prev-slide,
.special-offer-next-slide {
  width: 40px;
  height: 40px;
  padding: 12px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.special-offer-prev-slide .fa-chevron-left,
.special-offer-next-slide .fa-chevron-right {
  width: 14px;
  height: 14px;
  color: var(--gray-900);
}

.special-offer-prev-slide {
  position: absolute;
  top: 50%;
  left: -20px;
}

.special-offer-next-slide {
  position: absolute;
  top: 50%;
  right: -20px;
}

.product-card-container {
  overflow: visible;
}


/*=====  End Special Offer Section  =====*/



/*===== Brands Section =====*/

.brand-box {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  aspect-ratio: 4/2;
}

.brand-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-box-last {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "inter-medium";
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700) !important;
}

/*===== End Brands Section =====*/



/*===== Start Newsletter Section =====*/

.newsletter-section {
  padding: 96px 0px 48px 0px;
  background-color: var(--dropdown-hover);
}

.newsletter-container .heading {
  font-family: "inter-semibold";
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-900);
}

.newsletter-container .sub-heading {
  color: var(--gray-600);
  font-family: "inter-regular";
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}

.newletter-input {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--gray-300);
  background-color: var(--white-color);
  width: 392px;
}

.newletter-input::placeholder {
  font-family: "inter-regular";
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-400);
}

.newletter-input-btn {
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 8px;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-family: "inter-medium";
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease-in-out;

}

.newletter-input-btn:hover {
  border: 2px solid var(--primary-color);
  background-color: transparent;
  color: black;
}

.blog img {
  width: 140px;
  margin-right: 16px;
  border-radius: 8px;
}

.blog-p {
  font-family: "inter-medium";
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

.blog span {
  margin-bottom: 10px;
  color: var(--gray-500);
  font-family: "inter-regular";
  font-size: 12px;
  font-weight: 400;
}

.social-icon-div {
  margin-top: 48px;
}

.social-icon-div .social-icon {
  color: var(--gray-700) !important;
  background-color: var(--gray-100) !important;
  border-radius: 50% !important;
  padding: 12px !important;
  transition: .3s ease-in-out;
  aspect-ratio: 1;
}

.social-icon:hover {
  background-color: var(--gray-700) !important;
  color: var(--gray-100) !important;
  transform: translateY(-10px);
}

/*===== End Newsletter Section =====*/



/*===== Start Footer Section =====*/

footer {
  padding: 72px 0px 24px 0px;
  background-color: var(--gray-800);
}

.footer-container {
  margin-bottom: 70px;
}

.footer-first-col img {
  width: 96px;
  margin-bottom: 24px;
}

.footer-first-col p {
  margin-bottom: 16px;
  font-family: "inter-regular";
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-300);
}

#footer-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--gray-700);
  border-radius: 8px;
  border: none !important;
  font-family: "inter-medium";
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-200);
  width: 100%;
}

.dropdown-menu-footer {
  background-color: var(--gray-800) !important;
  color: var(--gray-200) !important;
  font-family: "inter-medium" !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border: 1px solid var(--gray-700) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

.footer-col h6 {
  font-family: "inter-semibold";
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 16px;
}

.footer-col li,
.footer-col li a {
  margin-bottom: 8px;
  font-family: "inter-regular";
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-200);
  text-decoration: none;
}

.accordion-btn {
  background-color: var(--gray-800) !important;
  border-bottom: 1px solid var(--gray-700) !important;
  font-family: "inter-semibold";
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
  width: 100%;
  box-shadow: none !important;
}

.accordion {
  background-color: transparent !important;
}

.accordion-item {
  border: none !important;
  background-color: transparent !important;

  &:focus {
    box-shadow: none !important;
    outline: none;
  }
}

.accordion-button:not(.collapsed) {
  color: var(--white-color) !important;
}

.accordion-item li,
.accordion-item li a {
  margin-bottom: 8px;
  font-family: "inter-regular";
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-200);
  text-decoration: none;
}

.accordion-part {
  padding: 10px;
}

.accordion-button::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  transition: transform 0.3s ease;
  background-image: none !important;
}

.accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(225deg);
}

.accordion-button:hover {
  color: #007bff;
}

.accordion-button:hover::after {
  border-color: #007bff;
}

.footer-keywords {
  row-gap: 24px;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 14px;

}

.footer-keywords p,
.footer-keywords a {
  margin: 0;
  color: var(--gray-200);
  font-weight: 500;
  font-family: "inter-medium";
  text-decoration: none;
}

.footer-keywords span {
  font-family: "inter-regular";
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-600);
}

.sub-footer {
  border-top: 1px solid var(--gray-700);
  padding-top: 25px;
  row-gap: 24px;
}

.sub-footer p {
  font-family: "inter-regular";
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-300);
}

.sub-footer p a {
  color: var(--white-color);
  text-decoration: none;
}

.p-partner {
  width: 50px;
  aspect-ratio: 4/2;
}

.p-partner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*===== End Footer Section =====*/



/** =====  Start Media Queries Section  ===== **/

@media only screen and (max-width: 1280px) {

  .nav-item {
    padding: 12px;
  }

  .nav-link {
    font-size: 12px;
    line-height: 24px;
  }

  .nav-language .nav-link {
    font-size: 12px;
    line-height: 20px;
  }

  .benefits-heading {
    font-size: 14px;
    line-height: 21px;
  }

  .benefits-sub-heading {
    font-size: 12px;
    line-height: 20px;
  }

  .arrivals-laptop {
    left: 5px;
  }

  .arrivals-content {
    left: 15px;
    top: 313px;
  }

  .arrival-h3 {
    color: var(--white-color);
    font-family: "Inter-Bold";
    font-size: 72px;
    line-height: 86px;
  }

  .arrival-p {
    color: var(--gray-300);
    font-family: "Inter-Medium";
    font-size: 16px;
    line-height: 24px;
    margin: 8px 0 24px;
  }

  .arrival-btn {
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 6px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-family: "Inter-Medium";
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    outline: none;
    transition: all 0.5s;
  }

  .second-part {
    height: 210px;
    position: relative;
  }

  .second-part h2 {
    font-size: 26px;
    margin-left: 50px;
  }

  .second-part p {
    font-size: 18px;
    margin-left: 50px;
  }

  .second-part span {
    font-size: 18px;
    padding: 5px 10px;
    margin-right: 5px;
  }

  .second-part img {
    width: 380px;
    height: 252px;
    position: absolute;
    top: 0px;
    right: 0px;
  }

  /*?  B - 1280px to 1400px   xl :- (Large Desktops)  ?*/
}

@media only screen and (max-width: 1200px) {

  .arrivals-laptop {
    left: -10px;
    top: 65px;
    width: 290px;
    aspect-ratio: 1;
  }

  .arrivals-content {
    left: 22px;
  }

  .arrival-h3 {
    font-size: 55px;
  }

  .trending-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .trending-product-content .arrival-product-price {
    flex-direction: column;
    align-items: start;
  }

  .trending-product-content .arrival-product-price span {
    margin: 0;
  }

  .offer-sticker {
    flex-direction: column;
  }

  .first-part {
    border: none;
    border-radius: 16px 16px 0px 0px;
    width: 100%;
    height: auto;
    padding-top: 20px;
  }

  .second-part {
    height: auto;
    position: relative;
    border-radius: 0px 0px 16px 16px;
    width: 100%;
    align-items: center;
    padding: 20px 0px;
  }

  .second-part h2 {
    font-size: 24px;
    margin-left: 0px;
  }

  .second-part p {
    font-size: 17px;
    margin-left: 0px;
  }

  .second-part img {
    width: 380px;
    height: 252px;
    position: relative;
    top: 0px;
    right: 0px;
  }

  .special-offer-prev-slide {
    left: -30px;
  }

  .special-offer-next-slide {
    right: -30px;
  }

  /*?  B - 1200px to 1280px   xl :- (Large Desktops)  ?*/
}

@media only screen and (max-width: 992px) {

  .basic-logo {
    width: 100px;
  }

  .nav-collapse {
    flex-direction: column;
    align-items: start !important;
  }

  .nav-item {
    padding: 10px;
  }

  .header-bottom .navbar-nav {
    gap: 0;
  }

  .nav-language {
    padding: 0 10px;
  }

  .header-bottom .container {
    flex-direction: column;
    align-items: start;
  }

  .banner-sub-div {
    margin-left: 100px;
  }

  .banner-heading {
    margin-bottom: 20px;
  }

  .swiper-horizontal>.swiper-pagination-progressbar,
  .swiper-pagination-progressbar.swiper-pagination-horizontal {
    bottom: 35px !important;
  }

  .arrival-banner-main {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }

  .arrivals-banner {
    width: 80%;
  }

  .arrivals-laptop {
    left: 30px;
    top: 50px;
    width: 380px;
    height: 380px;
  }

  .arrivals-content {
    left: 50%;
    transform: translate(-50%);
  }

  .arrival-h3 {
    font-size: 72px;
  }

  .special-offer-prev-slide {
    left: -20px;
    top: 45%;
  }

  .special-offer-next-slide {
    right: -20px;
    top: 45%;
  }

  .blogs {
    margin-top: 30px;
  }

  .brands-section {
    padding-bottom: 50px;
  }

  .newsletter-section {
    padding: 70px 0px 25px 0px;
    background-color: var(--dropdown-hover);
  }

  footer {
    padding: 50px 0px 18px 0px;
  }

  .footer-container {
    margin-bottom: 40px;
  }

  .footer-first-col img {
    margin-bottom: 15px;
  }

  .footer-first-col p {
    margin-bottom: 13px;
  }

  /*?  B - 992px to 1200px   lg :- (Desktops, Laptops, Large Tablets)  ?*/
}

@media only screen and (max-width: 768px) {

  .banner {
    padding: 48px 12px 0;
    padding-bottom: 0;
  }

  .swiper-slide .align-items-center {
    align-items: start !important;
  }

  .banner-sub-div {
    margin-left: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .swiper-horizontal>.swiper-pagination-progressbar,
  .swiper-pagination-progressbar.swiper-pagination-horizontal {
    bottom: 28px !important;
  }

  .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon-div {
    width: 60px;
  }

  .benefits-icon {
    width: 25px;
    height: 25px;
  }

  .benefits-section,
  .arrivals-section,
  .trending-product-section,
  .discount-section,
  .special-offer-section,
  .brands-section,
  .newsletter-section {
    margin-top: 56px;
  }

  .arrivals-banner {
    width: 100%;
  }

  .arrival-product {
    padding: 0;
  }

  .arrival-sub-div:last-child {
    margin-bottom: 16px;
  }

  .trending-product-content .arrival-product-name {
    font-size: 12px;
  }

  .special-offer {
    align-items: start !important;
  }

  .special-offer-section .trending-heading-div {
    flex-direction: column;
    align-items: start !important;
  }

  .time-div {
    margin-left: 0;
    margin-top: 16px;
  }

  .newsletter-container .heading {
    font-size: 20px;
  }

  .newsletter-container .sub-heading {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .newletter-input {
    padding: 8px 12px;
    width: 60%;
    flex: auto;
  }

  .newletter-input::placeholder {
    font-size: 14px;
  }

  .social-icon-div {
    margin-top: 20px;
  }

  .newletter-input-btn {
    padding: 8px 14px;
    transition: 0.3s ease-in-out;
    font-size: 14px;

  }

  .blog img {
    width: 110px;
    margin-right: 16px;
    border-radius: 8px;
  }

  .blog-p {
    font-size: 12px;
  }

  .blog span {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .p-partner {
    width: 40px;
    aspect-ratio: 4/2;
  }

  /*?  768px to 992px   md :- (Tablets and small desktops)  ?*/
}

@media only screen and (max-width: 576px) {

  .container {
    padding: 0 16px;
  }

  .navbar .container {
    justify-content: space-around;
  }

  .benefits-sub-div {
    justify-content: center;
  }

  .benefits-sub-div-1 {
    margin-left: 25px;
  }

  .section-heading {
    font-size: 23px;
    line-height: 30px;
    margin-bottom: 24px;
  }

  .arrivals-laptop {
    width: 294px;
    height: 313px;
    top: 52px;
    left: 50px;
  }

  .arrivals-content {
    top: 330px;
  }

  .arrival-h3 {
    font-size: 40px;
    line-height: 48px;
  }

  .arrival-p {
    font-size: 16px;
    line-height: 24px;
  }

  .trending-product-content .arrival-product-price {
    font-size: 15px;
    line-height: 20px;
  }

  .slider-arrows {
    gap: 12px;
  }

  .special-offer-prev-slide {
    position: static;
  }

  .special-offer-next-slide {
    position: static;
  }

  .p-partner {
    margin-top: 24px;
  }

  /*?  B - 576px to 768px   sm :- (Landscape and Portrait mobiles)  ?*/
}

@media only screen and (max-width: 430px) {

  .banner-heading {
    font-size: 34px;
    line-height: 41px;
    margin: 16px 0 24px;
  }

  .arrivals-laptop {
    top: 40px;
  }

  .arrivals-content {
    top: 320px;
  }

  .first-part h2 {
    font-size: 70px;
  }

  .first-part p {
    font-size: 40px;

  }

  .first-part span {
    font-size: 24px !important;

  }

  .second-part {
    height: auto;
  }

  .second-part h2 {
    font-size: 20px;
  }

  .second-part p {
    font-size: 17px;
  }

  .second-part span {
    font-size: 17px;
  }

  .second-part img {
    width: 80%;
    height: auto;
  }

  /*?  B - 430px to 576px   sm :- (Landscape and Portrait mobiles)  ?*/
}

@media only screen and (max-width: 390px) {

  .navbar .container {
    justify-content: center;
  }

  .toggle-btn-div {
    gap: 10px;
  }

  .basic-logo {
    width: 95px;
  }

  .nav-user {
    gap: 0;
  }

  .nav-user div {
    padding: 5px;
  }

  .benefits-sub-div {
    justify-content: start;
  }

  .benefits-sub-div-1 {
    margin-left: 0;
  }

  .arrivals-laptop {
    top: 40px;
    left: 25px;
  }

  .arrivals-content {
    top: 320px;
  }

  .trending-product-section .row {
    flex-direction: column !important;
    align-items: center;
  }

  .trending-product-section .col-xl-3 {
    margin-top: 24px !important;
    padding: 0;
    width: 70% !important;
  }

  .trending-product-section .col-xl-3:first-child {
    margin-top: 0 !important;
  }

  .trending-product-content {
    padding: 0;
  }

  .trending-product-card {
    padding: 0 16px;
  }

  /*?  B - 390px to 430px   sm :- (Landscape and Portrait mobiles)  ?*/
}

@media only screen and (max-width: 350px) {

  .arrivals-laptop {
    width: 245px;
    height: 280px;
    top: 50px;
    left: 25px;
  }

  .arrivals-content {
    top: 300px;
  }

  .section-heading {
    font-size: 20px;
  }

  .second-part h2 {
    font-size: 16px;
  }

  .second-part p {
    font-size: 14px;
  }

  .second-part span {
    font-size: 14px;
  }

  /*?  B - 350px to 390px   sm :- (Landscape and Portrait mobiles)  ?*/
}

/** =====  End Media Queries Section  ===== **/



/* =====  Start Scrollbar Section  ===== */

::-webkit-scrollbar {
  width: 1rem;
}

::-webkit-scrollbar-track {
  background-color: var(--gray-800);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 50px;
  height: 80px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #ed4559;
}

/* =====  End Scrollbar Section  ===== */