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

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  --black-color: #000000;
  --black-color-light: #1a1a1a;
  --black-color-lighten: #2a2a2a;
  --white-color: #ffffff;
  --gray-color: #666666;
  --gray-light: #f5f5f5;
  --gold-color: #ffd700;
  --gradient-bg: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  --gradient-text: linear-gradient(135deg, #ffd700 0%, #ffffff 100%);

  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.75rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-weight-300: 300;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;

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

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

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--black-color);
  color: var(--white-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  color: var(--white-color);
  font-weight: var(--font-weight-600);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0 3rem;
  min-height: auto;
}

.section__title {
  font-size: var(--h1-font-size);
  color: var(--white-color);
  text-align: center;
  margin-bottom: var(--mb-2-5);
  position: relative;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--gold-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-bg);
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: var(--font-weight-500);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
  transition: left 0.5s;
}

.button:hover::before {
  left: 100%;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,215,0,0.2);
  border-color: var(--gold-color);
}

.button__primary {
  background: linear-gradient(135deg, var(--gold-color) 0%, #ffed4e 100%);
  color: var(--black-color);
}

.button__ghost {
  background: transparent;
  border: 2px solid var(--gold-color);
  color: var(--gold-color);
}

.button__ghost:hover {
  background: var(--gold-color);
  color: var(--black-color);
}

/*=============== HEADER & NAVIGATION ===============*/
.header {
  width: 100%;
  background: rgba(0,0,0,0.95);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255,215,0,0.1);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav__data {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--font-weight-700);
  font-size: var(--h3-font-size);
  color: var(--gold-color);
  transition: all 0.3s ease;
}

.nav__logo-img {
  height: 90px;
  width: auto;
  transition: all 0.3s ease;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.nav__logo:hover {
  transform: scale(1.05);
}

.nav__toggle {
  color: var(--white-color);
  font-weight: var(--font-weight-500);
  font-size: 1.25rem;
  cursor: pointer;
  display: none;
}

.nav__toggle-menu,
.nav__toggle-close {
  display: block;
}

.nav__toggle-close {
  display: none;
}

.nav__menu {
  margin-left: auto;
}

.nav__list {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.nav__link {
  position: relative;
  color: var(--white-color);
  font-weight: var(--font-weight-500);
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.nav__link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--gold-color);
  transition: width 0.3s ease;
}

.nav__link:hover::before,
.nav__link.active-link::before {
  width: 100%;
}

.nav__link:hover {
  color: var(--gold-color);
  transform: translateY(-2px);
}

.nav__close {
  display: none;
}

.nav__contact,
.nav__social {
  display: none;
}

/*=============== HOME ===============*/
.home {
  position: relative;
  background: var(--gradient-bg);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
}

.home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,215,0,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,215,0,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: grain 20s linear infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 15%); }
  80% { transform: translate(3%, 35%); }
  90% { transform: translate(-10%, 10%); }
}

.home__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.home__data {
  padding-right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-weight-700);
  margin-bottom: var(--mb-1);
  line-height: 1.2;
}

.home__title-color {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from { filter: drop-shadow(0 0 5px rgba(255,215,0,0.5)); }
  to { filter: drop-shadow(0 0 20px rgba(255,215,0,0.8)); }
}

.home__subtitle {
  font-size: var(--h2-font-size);
  color: var(--gray-color);
  margin-bottom: var(--mb-1-5);
  font-weight: var(--font-weight-400);
}

.home__description {
  margin-bottom: var(--mb-2);
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}

.home__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.home__img {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.home__img > img:first-child {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 1rem;
  filter: grayscale(100%) contrast(1.2);
  transition: all 0.3s ease;
}

.home__img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(255,215,0,0.1));
  border-radius: 1rem;
  z-index: 1;
}

.home__img:hover > img:first-child {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.05);
}

.home__img-logo {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.home__main-logo {
  height: 100px;
  width: auto;
  opacity: 0.9;
}

/*=============== ABOUT ===============*/
.about {
  background: var(--black-color-light);
  position: relative;
}


.about__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about__item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255,215,0,0.1);
  transition: all 0.3s ease;
}

.about__item:hover {
  transform: translateX(10px);
  border-color: var(--gold-color);
  background: rgba(255,215,0,0.05);
}

.about__icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold-color);
  flex-shrink: 0;
}

.about__icon i {
  font-size: 1.5rem;
  color: var(--gold-color);
}

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

.about__info p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.about__image {
  position: relative;
  background: var(--gradient-bg);
  border-radius: 2rem;
  overflow: hidden;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold-color);
}

.about__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about__image-overlay:hover {
  background: rgba(0,0,0,0.5);
}

.play-button {
  font-size: 4rem;
  color: var(--gold-color);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.play-button:hover {
  transform: scale(1.2);
  color: var(--white-color);
}

/*=============== ONLINE ===============*/
.online {
  background: var(--black-color);
}


.online__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature__card {
  background: rgba(255,255,255,0.05);
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid rgba(255,215,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
  transition: left 0.5s ease;
}

.feature__card:hover::before {
  left: 100%;
}

.feature__card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-color);
  box-shadow: 0 20px 40px rgba(255,215,0,0.1);
}

.feature__icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1);
  border: 2px solid var(--gold-color);
}

.feature__icon i {
  font-size: 2rem;
  color: var(--gold-color);
}

.feature__card h3 {
  color: var(--gold-color);
  margin-bottom: var(--mb-1);
  font-size: var(--h3-font-size);
}

.feature__card p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.online__platforms {
  text-align: center;
  background: rgba(255,255,255,0.03);
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,215,0,0.1);
}

.online__platforms h3 {
  color: var(--gold-color);
  margin-bottom: var(--mb-2);
  font-size: var(--h2-font-size);
}

.platform__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.platform__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255,215,0,0.1);
  transition: all 0.3s ease;
  min-width: 120px;
}

.platform__link:hover {
  transform: translateY(-5px);
  border-color: var(--gold-color);
  background: rgba(255,215,0,0.1);
}

.platform__link i {
  font-size: 2rem;
  color: var(--gold-color);
}

.platform__link span {
  color: var(--white-color);
  font-weight: var(--font-weight-500);
}

/*=============== WHOLESALE ===============*/
.wholesale {
  background: var(--black-color-light);
}

.wholesale__intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.wholesale__intro h3 {
  color: var(--gold-color);
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1);
}

.wholesale__intro p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-size: 1.1rem;
}

.wholesale__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.wholesale__feature {
  background: rgba(255,255,255,0.05);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,215,0,0.1);
  transition: all 0.3s ease;
}

.wholesale__feature:hover {
  transform: translateY(-5px);
  border-color: var(--gold-color);
  box-shadow: 0 15px 30px rgba(255,215,0,0.1);
}

.wholesale__feature i {
  font-size: 2.5rem;
  color: var(--gold-color);
  margin-bottom: var(--mb-1);
}

.wholesale__feature h4 {
  color: var(--gold-color);
  margin-bottom: var(--mb-1);
  font-size: var(--h3-font-size);
}

.wholesale__feature ul {
  color: rgba(255,255,255,0.8);
}

.wholesale__feature li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.wholesale__feature li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-color);
  font-weight: bold;
}

.wholesale__advantages {
  margin-bottom: 4rem;
}

.wholesale__advantages h4 {
  text-align: center;
  color: var(--gold-color);
  margin-bottom: var(--mb-2);
  font-size: var(--h2-font-size);
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.advantage__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 0.5rem;
  border: 1px solid rgba(255,215,0,0.1);
  transition: all 0.3s ease;
}

.advantage__item:hover {
  transform: translateX(10px);
  border-color: var(--gold-color);
  background: rgba(255,215,0,0.05);
}

.advantage__item i {
  font-size: 1.5rem;
  color: var(--gold-color);
}

.advantage__item span {
  color: rgba(255,255,255,0.9);
  font-weight: var(--font-weight-500);
}

.wholesale__contact {
  text-align: center;
}

.contact__card {
  background: rgba(255,215,0,0.1);
  padding: 3rem;
  border-radius: 1rem;
  border: 2px solid var(--gold-color);
  max-width: 600px;
  margin: 0 auto;
}

.contact__card h4 {
  color: var(--gold-color);
  margin-bottom: var(--mb-1);
  font-size: var(--h2-font-size);
}

.contact__card p {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--mb-2);
  line-height: 1.6;
}

.contact__info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact__info a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-color);
  font-weight: var(--font-weight-500);
  transition: all 0.3s ease;
  padding: 1rem;
  background: rgba(0,0,0,0.3);
  border-radius: 0.5rem;
  border: 1px solid rgba(255,215,0,0.3);
}

.contact__info a:hover {
  transform: translateY(-3px);
  background: rgba(255,215,0,0.1);
  border-color: var(--gold-color);
}

.contact__info i {
  font-size: 1.2rem;
}

/*=============== RETURN ===============*/
.return {
  background: var(--black-color);
}

.return__intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.return__intro p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-size: 1.1rem;
}

.return__policies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.policy__card {
  background: rgba(255,255,255,0.05);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,215,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.policy__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
  transition: left 0.5s ease;
}

.policy__card:hover::before {
  left: 100%;
}

.policy__card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-color);
  box-shadow: 0 20px 40px rgba(255,215,0,0.1);
}

.policy__icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--mb-1);
  border: 2px solid var(--gold-color);
}

.policy__icon i {
  font-size: 2rem;
  color: var(--gold-color);
}

.policy__card h3 {
  color: var(--gold-color);
  margin-bottom: var(--mb-1);
  font-size: var(--h3-font-size);
}

.policy__card p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: var(--mb-1);
}

.policy__card ul {
  color: rgba(255,255,255,0.8);
}

.policy__card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.policy__card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-color);
  font-weight: bold;
}

.policy__card strong {
  color: var(--gold-color);
  font-weight: var(--font-weight-600);
}

/*=============== CONTACT ===============*/
.contact {
  background: var(--black-color-light);
}

.contact__intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact__intro p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-size: 1.1rem;
}

.contact__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.contact__card {
  background: rgba(255,255,255,0.05);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,215,0,0.1);
  transition: all 0.3s ease;
}

.contact__card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-color);
  box-shadow: 0 15px 30px rgba(255,215,0,0.1);
}

.contact__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--mb-2);
}

.contact__header i {
  font-size: 2rem;
  color: var(--gold-color);
}

.contact__header h3 {
  color: var(--gold-color);
  font-size: var(--h3-font-size);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__item i {
  font-size: 1.2rem;
  color: var(--gold-color);
  margin-top: 0.2rem;
  min-width: 20px;
}

.contact__item div {
  flex: 1;
}

.contact__item strong {
  display: block;
  color: var(--gold-color);
  margin-bottom: 0.25rem;
  font-weight: var(--font-weight-600);
}

.contact__item a {
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}

.contact__item a:hover {
  color: var(--gold-color);
}

.contact__item span {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.working__hours {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hour__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 0.5rem;
  border: 1px solid rgba(255,215,0,0.1);
  transition: all 0.3s ease;
}

.hour__item:hover {
  border-color: var(--gold-color);
  background: rgba(255,215,0,0.05);
}

.hour__item span {
  color: rgba(255,255,255,0.8);
}

.hour__item strong {
  color: var(--gold-color);
  font-weight: var(--font-weight-600);
}

.hour__item.closed strong {
  color: #ff6b6b;
}

/*=============== FOOTER ===============*/
.footer {
  background: var(--black-color);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255,215,0,0.1);
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--font-weight-700);
  font-size: var(--h2-font-size);
  color: var(--gold-color);
}

.footer__logo-img {
  height: 40px;
  width: auto;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,215,0,0.1);
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: var(--gold-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 25px rgba(255,215,0,0.2);
}

.footer__social-link i {
  font-size: 1.2rem;
  color: var(--gold-color);
  transition: color 0.3s ease;
}

.footer__social-link:hover i {
  color: var(--black-color);
}

.footer__copy {
  text-align: center;
  color: rgba(255,255,255,0.6);
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background: var(--gradient-bg);
  border: 2px solid var(--gold-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: var(--z-tooltip);
}

.scrollup:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 25px rgba(255,215,0,0.2);
}

.scrollup__icon {
  font-size: 1.25rem;
  color: var(--gold-color);
}

/* Show scroll up*/
.show-scroll {
  bottom: 5rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 8px;
  background-color: var(--black-color-light);
}

::-webkit-scrollbar-thumb {
  background-color: var(--gold-color);
  border-radius: 10px;
}

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

/*=============== MEDIA QUERIES ===============*/
/* For large devices */
@media screen and (max-width: 992px) {
  .container {
    margin-left: var(--mb-1-25);
    margin-right: var(--mb-1-25);
  }

  .home__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding: 0 1rem;
  }

  .home__data {
    text-align: center;
    padding-right: 0;
  }

  .home__img {
    order: -1;
    max-width: 400px;
  }

  .home__img-logo {
    bottom: 15px;
  }

  .home__main-logo {
    height: 60px;
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__image {
    height: 300px;
  }

  .wholesale__features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer__content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* For medium devices */
@media screen and (max-width: 768px) {
  .home__title-color {
    display: none;
  }

  .nav__data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: var(--header-height);
  }
  .nav__menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 85%;
    height: calc(100vh - var(--header-height));
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(15px);
    border-left: 2px solid rgba(255,215,0,0.2);
    padding: 2rem;
    transition: right 0.4s ease;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }

  .show-menu {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav__link {
    font-size: var(--h3-font-size);
    padding: 1rem 0;
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--gold-color);
    cursor: pointer;
  }

  .nav__toggle {
    display: block;
  }

  .nav__contact,
  .nav__social {
    display: block;
  }

  /* Mobile Menu Contact Styles */
  .nav__contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,215,0,0.2);
  }

  .nav__contact-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .nav__contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,215,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--gold-color);
    padding: 0.5rem;
  }

  .nav__contact-item:hover {
    background: rgba(255,215,0,0.1);
    border-color: var(--gold-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255,215,0,0.2);
  }

  .nav__contact-item i {
    font-size: 1.2rem;
    color: var(--gold-color);
    margin-bottom: 0.2rem;
  }

  .nav__contact-item small {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
    line-height: 1;
    font-weight: 500;
  }

  .section {
    padding: 4rem 0 2rem;
  }

  .home__title {
    font-size: 2.5rem;
  }

  .home__buttons {
    justify-content: center;
  }

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

  .platform__links {
    gap: 1rem;
  }

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

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

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

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

  .home__title {
    font-size: 2rem;
  }

  .home__buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .about__item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .feature__card {
    padding: 1.5rem;
  }

  .platform__links {
    flex-direction: column;
    align-items: center;
  }

  .platform__link {
    width: 100%;
    max-width: 200px;
  }

  .wholesale__intro {
    margin-bottom: 3rem;
  }

  .contact__card {
    padding: 2rem;
  }

  .contact__info a {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .footer__social {
    justify-content: center;
  }

  .scrollup {
    width: 45px;
    height: 45px;
  }

  .show-scroll {
    bottom: 3rem;
  }
}

/* For extra small devices */
@media screen and (max-width: 350px) {
  .container {
    margin-left: var(--mb-0-75);
    margin-right: var(--mb-0-75);
  }

  .nav__menu {
    width: 90%;
  }

  .home__title {
    font-size: 1.8rem;
  }

  .section__title {
    font-size: 1.5rem;
  }
}

/*=============== ANIMATIONS ===============*/
.animate__fadeInUp {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.animate__fadeInDown {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.animate__fadeInLeft {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.animate__fadeInRight {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

/*=============== LOADING ANIMATION ===============*/
.loading {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.loaded {
  opacity: 1;
  transform: translateY(0);
}

/*=============== HOVER EFFECTS ===============*/
.hover-glow {
  transition: all 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(255,215,0,0.3);
  transform: scale(1.02);
}

/*=============== CUSTOM SCROLLBAR ===============*/
body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: var(--black-color-light);
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--gold-color), #ffed4e);
  border-radius: 10px;
  border: 2px solid var(--black-color-light);
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ffed4e, var(--gold-color));
}