/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;900&family=Open+Sans:wght@400;600&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4rem; /* Slightly larger header */

  /*========== Colors ==========*/
  --primary-hue: 240; /* Blue/Purple base */
  --first-color: hsl(var(--primary-hue), 70%, 60%); /* Vibrant accent blue */
  --first-color-alt: hsl(var(--primary-hue), 70%, 50%); /* Darker accent for hover */
  --title-color: hsl(0, 0%, 95%); /* Near white for titles */
  --text-color: hsl(0, 0%, 75%); /* Light gray for general text */
  --text-color-light: hsl(0, 0%, 50%); /* Medium gray for subtle text */

  /* Darker solid background with subtle gradient for containers */
  --body-color: hsl(240, 8%, 12%); /* Deep dark blue-grey */
  --container-color: linear-gradient(145deg, hsl(240, 8%, 18%) 0%, hsl(240, 8%, 22%) 100%); /* Slightly lighter, subtle gradient for cards/containers */

  /*========== Font and typography ==========*/
  --heading-font: 'Montserrat', sans-serif; /* Modern, bold font for headings */
  --body-font: 'Open Sans', sans-serif; /* Clean, readable font for body text */

  --biggest-font-size: 2.5rem; /* Larger for main titles */
  --h1-font-size: 2rem;
  --h2-font-size: 1.75rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: .875rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-black: 900;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /*========== Border Radius ==========*/
  --border-radius-small: .25rem;
  --border-radius-medium: .5rem;
  --border-radius-large: 1rem;
}

/* Responsive typography */
@media screen and (min-width: 992px) {
  :root {
    --biggest-font-size: 4.5rem;
    --h1-font-size: 2.8rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1.1rem;
    --small-font-size: .95rem;
    --smaller-font-size: .85rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background: var(--body-color);
  color: var(--text-color);
  line-height: 1.6; /* Improved readability */
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-family: var(--heading-font); /* Apply new heading font */
  font-weight: var(--font-bold); /* Make headings bolder */
  line-height: 1.2;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block; /* Removes extra space below images */
}

button,
input {
  border: none;
  outline: none;
  font-family: var(--body-font);
}

button {
  cursor: pointer;
  font-size: var(--normal-font-size);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 5rem 0 2.5rem; /* Adjusted padding */
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-3); /* Increased margin */
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px; /* Add some flair */
}

/*=============== LAYOUT ===============*/
.container {
  max-width: 1024px; /* Slightly wider container */
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid {
  display: grid;
  gap: 1.5rem; /* Default grid gap */
}

.main {
  overflow: hidden; /*For animation*/
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  background: var(--body-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Add subtle shadow */
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-bold); /* Bolder logo */
  font-family: var(--heading-font);
  font-size: var(--h3-font-size); /* Larger logo text */
}

.nav__logo-img {
  width: 1.5rem; /* Slightly larger logo image */
}

.nav__link,
.nav__logo,
.nav__toggle,
.nav__close {
  color: var(--title-color);
}

.nav__toggle {
  font-size: 1.5rem; /* Larger toggle icon */
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    width: 100%;
    background: var(--container-color);
    top: -150%;
    left: 0;
    padding: 4rem 0; /* More padding */
    transition: .4s;
    z-index: var(--z-fixed);
    border-radius: 0 0 1.5rem 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Shadow for mobile menu */
  }
}

.nav__img {
  width: 120px; /* Slightly larger nav image */
  position: absolute;
  top: 0;
  left: 0;
}

.nav__close {
  font-size: 2rem; /* Larger close icon */
  position: absolute;
  top: 1rem; /* Adjusted position */
  right: 1rem;
  cursor: pointer;
}

.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem; /* Increased spacing */
}

.nav__link {
  text-transform: uppercase;
  font-weight: var(--font-semi-bold);
  transition: .3s;
  letter-spacing: 1px;
}

.nav__link:hover {
  color: var(--first-color); /* Hover color is accent */
}

/* Show menu */
.show-menu {
  top: 0;
}

/* Change background header */
.scroll-header {
  background: var(--container-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Active link */
.active-link {
  position: relative;
  color: var(--first-color); /* Active link is accent color */
}

.active-link::before {
  content: '';
  position: absolute;
  bottom: -.5rem; /* Adjusted position */
  left: 50%;
  transform: translateX(-50%); /* Center the dot */
  width: 6px; /* Slightly larger dot */
  height: 6px;
  background-color: var(--first-color); /* Dot matches accent color */
  border-radius: 50%;
}

/*=============== HOME ===============*/
.home__content {
  row-gap: 2rem; /* Increased gap */
}

.home__group {
  display: grid;
  position: relative;
  padding-top: 3rem; /* More padding */
}

.home__img {
  height: 300px; /* Larger home image */
  justify-self: center;
  object-fit: contain; /* Ensure image fits well */
}

.home__indicator {
  width: 10px; /* Larger indicator */
  height: 10px;
  background-color: var(--first-color); /* Indicator matches accent */
  border-radius: 50%;
  position: absolute;
  top: 8rem; /* Adjusted position */
  right: 2.5rem;
}

.home__indicator::after {
  content: '';
  position: absolute;
  width: 2px; /* Thicker line */
  height: 60px; /* Longer line */
  background-color: var(--first-color);
  top: -4rem; /* Adjusted position */
  right: 40%;
}

.home__details-img {
  position: absolute;
  right: 1rem; /* Adjusted position */
}

.home__details-title,
.home__details-subtitle {
  display: block;
  font-size: var(--small-font-size);
  text-align: right;
  color: var(--text-color-light); /* Subtler details text */
}

.home__subtitle {
  font-size: var(--h3-font-size);
  text-transform: uppercase;
  margin-bottom: var(--mb-1);
  color: var(--first-color); /* Accent color for subtitle */
  font-weight: var(--font-semi-bold);
  letter-spacing: 1px;
}

.home__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-black);
  line-height: 1.1; /* Tighter line height for bold titles */
  margin-bottom: var(--mb-1-5); /* Increased margin */
}

.home__description {
  margin-bottom: var(--mb-2); /* Increased margin */
}

.home__buttons {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem; /* Add gap for better spacing */
}

/* Swiper Class */
.swiper-pagination {
  position: initial;
  margin-top: var(--mb-2); /* Increased margin */
}

.swiper-pagination-bullet {
  width: 8px; /* Larger bullets */
  height: 8px;
  background-color: var(--text-color-light); /* Subtler bullet color */
  opacity: 0.8;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 .75rem; /* More spacing between bullets */
}

.swiper-pagination-bullet-active {
  width: 2rem; /* Longer active bullet */
  height: 8px;
  background-color: var(--first-color); /* Active bullet is accent */
  border-radius: .5rem;
  opacity: 1;
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--title-color);
  padding: 1.1rem 2rem; /* Larger padding */
  border-radius: var(--border-radius-medium); /* Use variable */
  font-weight: var(--font-semi-bold);
  transition: all .3s ease; /* Smooth transition */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add shadow */
}

.button:hover {
  background-color: var(--first-color-alt);
  transform: translateY(-2px); /* Slight lift on hover */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.button__icon {
  font-size: 1.5rem; /* Larger icon */
}

.button--ghost {
  border: 2px solid var(--first-color); /* Ghost button accent border */
  background-color: transparent;
  border-radius: 3rem;
  padding: .9rem 1.8rem;
  color: var(--first-color);
  box-shadow: none; /* No shadow by default */
}

.button--ghost:hover {
  background: rgba(var(--primary-hue), 70%, 60%, 0.1); /* Subtle background on hover */
  color: var(--first-color);
  transform: translateY(-2px);
}

.button--link {
  color: var(--first-color); /* Link button is accent color */
  font-weight: var(--font-medium);
}

.button--flex {
  display: inline-flex;
  align-items: center;
  column-gap: .75rem; /* More gap */
}

/*=============== CATEGORY ===============*/
.category__container {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* More flexible grid */
  gap: 2rem; /* Increased gap */
}

.category__data {
  text-align: center;
  background: var(--container-color); /* Apply container style */
  padding: 1.5rem 1rem;
  border-radius: var(--border-radius-large);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: all .3s ease;
}

.category__data:hover {
  transform: translateY(-.75rem); /* More pronounced lift */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.category__img {
  width: 150px; /* Larger images */
  margin-bottom: var(--mb-1); /* Adjusted margin */
  transition: .3s;
}

.category__title {
  margin-bottom: var(--mb-0-5);
  font-size: var(--h3-font-size);
  color: var(--title-color);
}

.category__data:hover .category__img {
  transform: scale(1.05); /* Slight scale on hover */
}

/*=============== ABOUT ===============*/
.about__container {
  row-gap: 3rem; /* Increased gap */
}

.about__data {
  text-align: center;
}

.about__description {
  margin-bottom: var(--mb-2-5); /* Adjusted margin */
}

.about__img {
  width: 280px; /* Larger image */
  justify-self: center;
  animation: floating 3s ease-in-out infinite; /* Slower animation */
}

/*=============== TRICK OR TREAT ===============*/
.trick__container {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem; /* Increased gap */
  padding-top: 1.5rem;
}

.trick__content {
  position: relative;
  background: var(--container-color);
  border-radius: var(--border-radius-large);
  padding: 2rem 0 1.5rem 0; /* More padding */
  text-align: center;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: all .3s ease;
}

.trick__content:hover {
  transform: translateY(-.75rem);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.trick__img {
  width: 100px; /* Slightly larger image */
  transition: .3s;
}

.trick__subtitle,
.trick__price {
  display: block;
}

.trick__subtitle {
  font-size: var(--smaller-font-size);
  margin-bottom: var(--mb-0-75); /* Adjusted margin */
  color: var(--text-color-light);
}

.trick__title,
.trick__price {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  font-size: var(--h3-font-size); /* Larger price/title */
}

.trick__button {
  display: inline-flex;
  background-color: var(--first-color); /* Button accent */
  padding: .6rem; /* Slightly more padding */
  border-radius: .25rem .25rem 1rem .25rem; /* More distinct corner */
  position: absolute;
  right: -3.5rem; /* Adjusted position */
  bottom: 0;
  transition: .3s ease;
}

.trick__icon {
  font-size: 1.5rem; /* Larger icon */
  color: var(--title-color);
}

.trick__content:hover .trick__img {
  transform: scale(1.05);
}

.trick__content:hover .trick__button {
  right: 0;
}

/*=============== DISCOUNT ===============*/
.discount__container {
  background: var(--container-color);
  border-radius: var(--border-radius-large);
  padding: 3rem 0 2rem; /* More padding */
  row-gap: 1.5rem; /* Increased gap */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.discount__data {
  text-align: center;
}

.discount__title {
  font-size: var(--h1-font-size); /* Larger discount title */
  margin-bottom: var(--mb-2);
}

.discount__img {
  width: 250px; /* Larger image */
  justify-self: center;
}

/*=============== NEW ARRIVALS ===============*/
.new__container {
  padding-top: 1.5rem;
}

.new__img {
  width: 140px; /* Larger image */
  margin-bottom: var(--mb-0-75); /* Adjusted margin */
  transition: .3s;
}

.new__content {
  position: relative;
  background: var(--container-color);
  width: 280px; /* Wider card */
  padding: 2.5rem 0 2rem 0; /* More padding */
  border-radius: var(--border-radius-medium);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: all .3s ease;
}

.new__content:hover {
  transform: translateY(-.75rem);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.new__tag {
  position: absolute;
  top: 10%; /* Adjusted position */
  left: 10%;
  background-color: var(--first-color);
  color: var(--title-color);
  font-size: var(--small-font-size);
  padding: .3rem .6rem; /* More padding */
  border-radius: var(--border-radius-small);
  font-weight: var(--font-semi-bold);
}

.new__title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
}

.new__subtitle {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-0-75);
  color: var(--text-color-light);
}

.new__prices {
  display: inline-flex;
  align-items: center;
  column-gap: .75rem; /* More gap */
}

.new__price {
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  font-size: var(--normal-font-size);
}

.new__discount {
  color: var(--text-color-light); /* Discount text is lighter */
  font-size: var(--small-font-size);
  text-decoration: line-through;
  font-weight: var(--font-medium);
}

.new__button {
  display: inline-flex;
  background-color: var(--first-color);
  padding: .6rem;
  border-radius: .25rem .25rem 1rem .25rem;
  position: absolute;
  bottom: 0;
  right: -3.5rem;
  transition: .3s ease;
}

.new__icon {
  font-size: 1.5rem;
}

.new__content:hover .new__img {
  transform: scale(1.05);
}

.new__content:hover .new__button {
  right: 0;
}

/*=============== NEWSLETTER ===============*/
.newsletter__description {
  text-align: center;
  margin-bottom: var(--mb-2); /* Increased margin */
}

.newsletter__form {
  background: var(--container-color);
  padding: 1.25rem; /* More padding */
  display: flex;
  justify-content: space-between;
  border-radius: var(--border-radius-large);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter__input {
  width: 75%; /* Wider input */
  padding: 0 .75rem; /* More padding */
  background: none;
  color: var(--title-color);
}

.newsletter__input::placeholder {
  color: var(--text-color-light);
}

/*=============== FOOTER ===============*/
.footer {
  position: relative;
  overflow: hidden;
  padding-top: 4rem; /* More padding at top */
  background: hsl(240, 8%, 10%); /* Slightly darker footer background */
}

.footer__img-one,
.footer__img-two {
  position: absolute;
  transition: .4s ease; /* Slower transition */
  opacity: 0.7; /* Make them slightly transparent */
}

.footer__img-one {
  width: 120px; /* Larger */
  top: 5rem;
  right: -1rem;
}

.footer__img-two {
  width: 180px; /* Larger */
  bottom: 3rem;
  right: 3rem;
}

.footer__img-one:hover,
.footer__img-two:hover {
  transform: translateY(-.75rem) scale(1.05); /* More pronounced effect */
  opacity: 1;
}

.footer__container {
  row-gap: 3rem; /* Increased gap */
}

.footer__logo {
  display: flex;
  align-items: center;
  column-gap: .75rem; /* More gap */
  margin-bottom: var(--mb-1-5); /* Adjusted margin */
  font-weight: var(--font-bold);
  color: var(--title-color);
  font-size: var(--h3-font-size);
}

.footer__logo-img {
  width: 25px; /* Larger */
}

.footer__description {
  margin-bottom: var(--mb-3); /* More margin */
  color: var(--text-color);
}

.footer__social {
  display: flex;
  column-gap: 1rem; /* More gap */
}

.footer__social-link {
  display: inline-flex;
  background: var(--container-color);
  padding: .4rem; /* More padding */
  border-radius: var(--border-radius-small);
  color: var(--title-color);
  font-size: 1.2rem; /* Larger icon */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: .3s ease;
}

.footer__social-link:hover {
  background: var(--first-color); /* Hover color is accent */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1-5);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.footer__links {
  display: grid;
  row-gap: .5rem; /* More gap */
}

.footer__link {
  font-size: var(--normal-font-size); /* Slightly larger link text */
  color: var(--text-color);
  transition: .3s;
}

.footer__link:hover {
  color: var(--first-color); /* Hover color is accent */
}

.footer__copy {
  display: block;
  text-align: center;
  font-size: var(--small-font-size);
  margin-top: 5rem; /* More space at the bottom */
  padding-bottom: 2rem;
  color: var(--text-color-light);
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator */
  padding-top: 2rem;
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  background: var(--first-color); /* Scroll up matches accent */
  right: 1.5rem; /* Adjusted position */
  bottom: -25%; /* Hidden further down */
  display: inline-flex;
  padding: .5rem; /* More padding */
  border-radius: var(--border-radius-medium);
  z-index: var(--z-tooltip);
  opacity: 0.9;
  transition: .4s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scrollup__icon {
  font-size: 1.5rem; /* Larger icon */
  color: var(--title-color);
}

.scrollup:hover {
  background: var(--first-color-alt);
  opacity: 1;
  transform: translateY(-3px);
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 4rem; /* Higher when shown */
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.7rem; /* Thicker scrollbar */
  background: hsl(240, 8%, 15%); /* Darker background */
}

::-webkit-scrollbar-thumb {
  background: hsl(240, 8%, 30%); /* Lighter thumb */
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(240, 8%, 40%); /* Even lighter on hover */
}

/*===============  BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 375px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .home__img {
    height: 220px;
  }
  .home__buttons {
    flex-direction: column;
    width: max-content;
    row-gap: 1rem;
    margin: 0 auto; /* Center buttons */
  }

  .category__container,
  .trick__container {
    grid-template-columns: 1fr; /* Single column for very small screens */
    justify-content: center;
  }

  .new__content {
    width: 100%; /* Full width for new arrivals on small screens */
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .about__container {
    grid-template-columns: .7fr;
    justify-content: center;
  }

  .newsletter__container {
    display: grid;
    grid-template-columns: .6fr;
    justify-content: center;
  }
  .newsletter__description {
    padding: 0 3rem;
  }

  .category__container,
  .trick__container {
    grid-template-columns: repeat(2, 1fr); /* Two columns */
  }

  .new__container .swiper-wrapper {
    justify-content: center; /* Center new arrival cards */
  }
}

@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }

  .section {
    padding: 8rem 0 3rem; /* Increased section padding */
  }

  .nav {
    height: calc(var(--header-height) + 2rem); /* Taller nav */
  }
  .nav__img,
  .nav__close,
  .nav__toggle {
    display: none;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 3.5rem; /* More spacing */
  }
  .nav__link {
    text-transform: initial;
    font-weight: var(--font-semi-bold);
  }

  .home__content {
    padding: 9rem 0 3rem; /* More padding */
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem; /* Larger gap */
    align-items: center; /* Vertically align items */
  }
  .home__img {
    height: 350px; /* Larger image */
  }
  .swiper-pagination {
    margin-top: var(--mb-3);
  }

  .category__container {
    grid-template-columns: repeat(3, minmax(180px, 1fr)); /* 3 columns, more flexible */
    gap: 2.5rem;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    column-gap: 6rem;
  }
  .about__title,
  .about__data {
    text-align: initial;
  }
  .about__img {
    width: 320px; /* Larger image */
  }

  .trick__container {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 2.5rem;
  }

  .discount__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    align-items: center;
    column-gap: 5rem; /* Increased gap */
    padding: 4rem 0;
    border-radius: 4rem; /* More rounded */
  }
  .discount__img {
    width: 400px; /* Larger */
    order: -1;
  }
  .discount__data {
    padding-right: 0; /* Remove specific padding */
    text-align: initial; /* Align text to start */
  }

  .newsletter__container {
    grid-template-columns: .45fr; /* Narrower for larger screens */
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    column-gap: 2rem;
  }
  .footer__img-two {
    right: initial;
    bottom: 0;
    left: 10%; /* Adjusted position */
  }
}

/* For large devices */
@media screen and (min-width: 992px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .section__title {
    font-size: var(--h1-font-size);
    margin-bottom: 4rem; /* More margin */
  }

  .home__content {
    padding-top: 10rem;
    gap: 4rem;
  }
  .home__group {
    padding-top: 0;
  }
  .home__img {
    height: 450px; /* Even larger image */
    transform: translateY(-4rem); /* More negative transform */
  }
  .home__indicator {
    top: initial;
    right: initial;
    bottom: 20%; /* Adjusted position */
    left: 48%; /* Adjusted position */
  }
  .home__indicator::after {
    top: 0;
    height: 90px; /* Longer line */
  }
  .home__details-img {
    bottom: 0;
    right: 60%; /* Adjusted position */
  }
  .home__title {
    margin-bottom: var(--mb-2);
  }
  .home__description {
    margin-bottom: var(--mb-3);
    padding-right: 3rem; /* More padding */
  }

  .category__container {
    column-gap: 6rem; /* More space */
  }
  .category__img {
    width: 220px; /* Larger category images */
  }

  .about__container {
    column-gap: 8rem;
  }
  .about__img {
    width: 400px; /* Larger about image */
  }
  .about__description {
    padding-right: 3rem;
  }

  .trick__container {
    gap: 4rem;
  }
  .trick__content {
    border-radius: 2rem; /* More rounded */
  }
  .trick__img {
    width: 130px; /* Larger image */
  }
  .trick__title {
    font-size: var(--h2-font-size); /* Larger title */
  }

  .discount__container {
    column-gap: 8rem;
  }

  .new__content {
    width: 340px; /* Wider card */
    border-radius: 1.5rem; /* More rounded */
    padding: 3rem 0; /* More padding */
  }
  .new__img {
    width: 170px; /* Larger image */
  }
  .new__img,
  .new__subtitle {
    margin-bottom: var(--mb-1-5);
  }
  .new__title {
    font-size: var(--h2-font-size);
  }

  .footer__copy {
    margin-top: 7rem;
  }
}

@media screen and (min-width: 1200px) {
  .home__img {
    height: 500px;
  }
  .swiper-pagination {
    margin-top: var(--mb-3);
  }
  .footer__img-one {
    width: 150px;
  }
  .footer__img-two {
    width: 200px;
    top: 25%;
    left: -5%;
  }
}

/*=============== KEYFRAMES ===============*/
@keyframes floating {
  0% { transform: translate(0, 0px); }
  50% { transform: translate(0, 20px); } /* More pronounced float */
  100% { transform: translate(0, -0px); }
}