:root {
  --primary: #e60000;
  --primary-dark: #c00000;
  --dark: #121212;
  --light: #f5f5f5;
  --grey: #888;
  --gradient: linear-gradient(135deg, var(--primary) 0%, #ff3b3b 100%);
  --transition: all 0.3s ease;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --card-bg: rgba(255, 255, 255, 0.03);
  --border-radius: 12px;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  max-width: 100%;
  word-wrap: break-word;
}

body {
  background-color: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

header {
  background-color: var(--dark);
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo h1 {
  color: var(--light);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: var(--light);
  margin: 5px;
  transition: var(--transition);
}

.opening-hours-banner {
  background: linear-gradient(
    90deg,
    rgba(18, 18, 18, 0.95) 0%,
    rgba(30, 30, 30, 0.9) 100%
  );
  color: var(--light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 80px;
  z-index: 100;
  padding: 8px 0;
  border-bottom: 2px solid var(--primary);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.opening-hours-banner:hover {
  background: linear-gradient(
    90deg,
    rgba(18, 18, 18, 0.98) 0%,
    rgba(30, 30, 30, 0.95) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.opening-hours-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(230, 0, 0, 0.15),
    transparent 60%
  );
  animation: pulse-light 8s infinite alternate ease-in-out;
}

@keyframes pulse-light {
  0% {
    opacity: 0.05;
    transform: scale(1);
  }
  50% {
    opacity: 0.1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.05;
    transform: scale(1);
  }
}

.opening-hours-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  position: relative;
}

.opening-hours-title {
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.opening-hours-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.opening-hours-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 40px;
  background: var(--primary);
  opacity: 0.3;
  border-radius: 4px;
}

.animated-clock {
  margin-right: 12px;
  font-size: 1.3rem;
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
  animation: clock-rotation 10s infinite linear;
  transform-origin: center;
  display: inline-block;
}

@keyframes clock-rotation {
  0% {
    transform: rotate(0deg);
  }
  5% {
    transform: rotate(30deg);
  }
  10% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(-30deg);
  }
  20% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.hours-list {
  display: flex;
  gap: 30px;
  padding: 0 20px;
}

.hour-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 10px 20px;
  min-width: 150px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  transform: translateY(0);
}

.hour-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(230, 0, 0, 0.2);
}

.day-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
  position: relative;
}

.time-value {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--light);
  position: relative;
}

.time-value::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  background: var(--gradient);
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.hour-item:hover .time-value::before {
  width: 80%;
}

.hero {
  min-height: 100vh;
  background: radial-gradient(
      circle at 30% 107%,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(17, 17, 17, 0.9) 80%
    ),
    url("./Assets/img/MainBackground.png") center/cover;
  color: var(--light);
  display: flex;
  align-items: center;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary) 0%, transparent 70%);
  opacity: 0.3;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    125deg,
    rgba(230, 0, 0, 0.15) 0%,
    rgba(230, 0, 0, 0) 25%,
    rgba(230, 0, 0, 0) 50%,
    rgba(230, 0, 0, 0.15) 75%,
    rgba(230, 0, 0, 0.2) 100%
  );
  background-size: 400% 400%;
  animation: gradientMovement 15s ease infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes gradientMovement {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-content {
  max-width: 600px;
  animation: fadeInUp 1s ease-out;
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(230, 0, 0, 0.2);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  background: var(--gradient);
  color: var(--light);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(230, 0, 0, 0.3);
  letter-spacing: 1px;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 0, 0, 0.4);
}

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

section {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h3 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h3::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: var(--primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.about {
  background-color: var(--dark);
  color: var(--light);
}

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

.about-text {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  padding: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.about-image img:hover {
  transform: scale(1.03);
}

.features {
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 300px;
  background: radial-gradient(
    circle,
    rgba(230, 0, 0, 0.05) 0%,
    transparent 70%
  );
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--gradient);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(230, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.2rem;
  color: var(--primary);
  transform: rotate(-5deg);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: rotate(0deg);
  background: var(--gradient);
  color: white;
}

.feature-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  transition: var(--transition);
  position: relative;
  display: inline-block;
}

.feature-card:hover h4 {
  transform: translateX(10px);
}

.feature-card p {
  color: var(--grey);
  line-height: 1.7;
}

.products {
  background-color: var(--dark);
  color: var(--light);
  position: relative;
  padding: 70px 0;
}

.products::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/api/placeholder/600/600") center/cover;
  opacity: 0.03;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.brand-section {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.brand-header {
  text-align: center;
  margin-bottom: 20px;
}

.brand-header h4 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.brand-header h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.brand-header p {
  color: var(--grey);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.scroll-indicator {
  width: 100%;
  height: 4px;
  margin: 20px 0;
  position: relative;
  display: none;
}

.scroll-line {
  background: rgba(255, 255, 255, 0.1);
  height: 4px;
  width: 100%;
  border-radius: 2px;
  position: relative;
}

.scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: var(--primary);
  border-radius: 2px;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.scroll-container {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.card-wrapper {
  display: inline-flex;
  gap: 20px;
  padding: 5px 5px 20px 5px;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  min-width: 300px;
  width: 300px;
  display: inline-block;
  white-space: normal;
  padding: 30px;
  scroll-snap-align: start;
}

.product-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(230, 0, 0, 0.2);
}

.product-card:hover::after {
  opacity: 0.5;
}

.product-info {
  position: relative;
  z-index: 2;
}

.product-info h4 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 15px;
}

.product-info h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
}

.product-info p {
  color: var(--grey);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.product-feature {
  background: var(--gradient);
  color: var(--light);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.testimonials {
  background-color: var(--dark);
  color: var(--light);
  padding: 100px 0;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--primary);
  opacity: 0.1;
  border-radius: 50%;
}

.testimonials::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: var(--primary);
  opacity: 0.05;
  border-radius: 50%;
}

.testimonials-overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.rating-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 25px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
}

.global-rating {
  font-size: 5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin-bottom: 10px;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.rating-stars {
  font-size: 1.8rem;
  color: #ffba08;
  letter-spacing: 5px;
}

.rating-count {
  color: var(--grey);
  font-size: 1.1rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 20px;
  border-radius: 30px;
}

.testimonials-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 10px;
  font-size: 150px;
  line-height: 1;
  font-family: serif;
  color: rgba(230, 0, 0, 0.1);
  z-index: 0;
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(230, 0, 0, 0.2);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-profile {
  display: flex;
  align-items: center;
}

.testimonial-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.4rem;
  margin-right: 15px;
  box-shadow: 0 5px 15px rgba(230, 0, 0, 0.3);
}

.testimonial-name h4 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  color: white;
}

.testimonial-name span {
  font-size: 0.8rem;
  color: var(--grey);
}

.testimonial-stars {
  color: #ffba08;
  font-size: 0.9rem;
  letter-spacing: 2px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.testimonial-body {
  position: relative;
  z-index: 1;
}

.testimonial-body p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.store-image-container {
  display: flex;
  justify-content: center;
}

.store-image {
  width: 400px;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 6px solid rgba(255, 255, 255, 0.05);
}

.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.store-image:hover img {
  transform: scale(1.1);
}

.contact {
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary), #ff5555);
  opacity: 0.1;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-heading {
  margin-bottom: 30px;
}

.contact-heading h4 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.contact-heading h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.contact-heading p {
  color: var(--grey);
  line-height: 1.7;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.contact-card {
  background: white;
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(230, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
  background: var(--gradient);
  color: white;
}

.contact-card h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--grey);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

.social-buttons {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.social-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
}

.social-button:hover {
  transform: translateY(-5px);
  background: var(--gradient);
  color: white;
}

.map {
  height: 400px;
  background-color: #eee;
  margin-top: 50px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map iframe {
  max-width: 100%;
  width: 100%;
}

footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 70px 0 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: url("/api/placeholder/1000/500") center/cover;
  opacity: 0.02;
  mix-blend-mode: overlay;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo span {
  color: var(--primary);
}

.footer-text {
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-column h4 {
  color: var(--light);
  margin-bottom: 25px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}

.footer-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  transition: var(--transition);
}

.footer-links a {
  color: var(--grey);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-links li:hover::before {
  transform: translateY(-50%) scale(1.5);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: var(--light);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: var(--gradient);
  transform: translateY(-5px) rotate(10deg);
  border-color: transparent;
}

.copyright {
  text-align: center;
  padding-top: 40px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--grey);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes gradientBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  opacity: 0;
}

.animated.fade-in {
  animation-name: fadeIn;
}

.animated.fade-in-up {
  animation-name: fadeInUp;
}

.animated.slide-in-right {
  animation-name: slideInRight;
}

.animated.delay-1 {
  animation-delay: 0.2s;
}

.animated.delay-2 {
  animation-delay: 0.4s;
}

.animated.delay-3 {
  animation-delay: 0.6s;
}

.animated.delay-4 {
  animation-delay: 0.8s;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 1000;
}

.back-to-top.active {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .scroll-indicator {
    display: block;
  }

  .scroll-container {
    display: block;
  }

  .hero h2 {
    font-size: 3rem;
  }

  .opening-hours-banner {
    position: relative;
    top: 0;
  }

  .opening-hours-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .opening-hours-title::after {
    display: none;
  }

  .opening-hours-title {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(230, 0, 0, 0.2);
    width: 100%;
    justify-content: center;
  }

  .testimonials-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    min-width: 280px;
    width: 280px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    background-color: var(--dark);
    width: 80%;
    max-width: 400px;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    margin: 15px 0;
    width: 100%;
  }

  .nav-links a {
    display: block;
    font-size: 1.2rem;
  }

  .hamburger {
    display: block;
    z-index: 100;
  }

  .hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .opening-hours-banner {
    padding: 15px;
  }

  .hours-list {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hour-item {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }

  .day-label,
  .time-value {
    margin: 0;
  }

  .time-value::before {
    bottom: -2px;
  }

  .testimonials-cards {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .store-image {
    width: 300px;
    height: 300px;
  }

  .product-card {
    min-width: 250px;
    width: 250px;
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding: 0 10px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .section-title h3 {
    font-size: 2rem;
  }

  .global-rating {
    font-size: 3rem;
  }

  .footer-column {
    flex: 100%;
  }

  .store-image {
    width: 300px;
    height: 300px;
  }

  .product-features {
    gap: 5px;
  }

  .product-feature {
    font-size: 0.7rem;
    padding: 4px 8px;
  }

  .product-card {
    width: 220px;
    min-width: 220px;
  }

  .product-info h4 {
    font-size: 1.2rem;
  }

  .opening-hours-title span {
    font-size: 1.1rem;
  }

  .animated-clock {
    font-size: 1.2rem;
  }

  .hour-item {
    padding: 8px 15px;
    min-width: auto;
  }

  .day-label {
    font-size: 0.8rem;
  }

  .time-value {
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .logo img {
    height: 25px;
    margin-right: 5px;
  }

  .logo h1 {
    font-size: 1rem;
    white-space: nowrap;
  }

  nav {
    padding: 10px 0;
    width: 100%;
    max-width: 100%;
  }

  .hamburger {
    margin-left: auto;
    padding-right: 0;
    position: relative;
    right: 5px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
    display: block;
    text-align: center;
    width: 80%;
    margin: 0 auto;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .footer-logo {
    font-size: 1.5rem;
  }

  header {
    width: 100%;
    max-width: 100vw;
  }

  .container {
    padding: 0 10px;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .product-feature {
    font-size: 0.6rem;
    padding: 3px 6px;
  }

  .product-card {
    min-width: 200px;
    width: 200px;
    padding: 15px;
  }

  .product-info h4 {
    font-size: 1.1rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .product-info p {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
}
