/* Define custom colors */
@font-face {
  font-family: 'Tanklager';
  src: url('../fonts/Tanklager-Original.woff2') format('woff2'),
    url('../fonts/Tanklager-Original.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Tanklager Kompakt';
  src: url('../fonts/Tanklager-Kompakt.woff2') format('woff2'),
    url('../fonts/Tanklager-Kompakt.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

:root {
  --wood-color: #deb887;
  /* Wood-like color */
  --blue-color: #0075ff;
  --orange-color: #f59e0b;
  --black-color: #000000;
  --white-color: #ffffff;
  --grey-color: #888888;
  --light-grey-color: #eeeeee;
  --img1: url('../img/IMG-20250504-WA0201.jpg');
  --img2: url('../img/IMG-20250504-WA0199.jpg');
  --img3: url('../img/IMG-20250504-WA0200.jpg');
  --img4: url('../img/IMG-20250504-WA0198.jpg');
  --img5: url('../img/slider5.jpg');
  --img: url('https://cdn.josetxu.com/img/gp-fisura-saqueadores.jpg');
  --accent-orange: #ff3e3e;
  --primary-color: #ff3e3e;
  --primary-hover: #ff5555;
  --text-grey: #666666;
  --text-light: #000000;
  --shadow-color: rgba(0, 0, 0, 0.3);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Tanklager', sans-serif;
  background: linear-gradient(to bottom, #1a1a1a, #2a2a2a, #333333, #2a2a2a, #1a1a1a) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

/* Layout */
main {
  width: 100%;
  margin-top: 0;
  padding: 0;
  position: relative;
  z-index: 2;
  flex: 1;
  background: transparent;
  overflow-x: hidden;
}

section {
  width: 100%;
  margin: 0;
  padding: 4rem 0;
  background: transparent;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow-x: hidden;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

section:hover::before {
  opacity: 1;
}

/* Charcoal Animation Section */
#charcoal-animation {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  /* Ensure black background to prevent flashes */
}

/* Container for videos to ensure proper stacking context */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6);
  /* Slightly darker for better text readability */
  opacity: 0;
  transition: opacity 2s ease-in-out, transform 8s ease;
  /* Longer, effortless transition */
  will-change: opacity, transform;
  transform: scale(1.1);
  /* Start slightly zoomed in */
}

.background-video.active {
  opacity: 1;
  z-index: 2;
  /* Ensure active video is on top */
  transform: scale(1);
  /* Subtle zoom out effect while playing */
}

.diamond-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 1000px;
  height: 1000px;
  background: linear-gradient(135deg,
      rgba(255, 68, 68, 0.1) 0%,
      rgba(255, 140, 0, 0.15) 50%,
      rgba(255, 68, 68, 0.1) 100%);
  border: 2px solid rgba(255, 140, 0, 0.3);
  box-shadow:
    0 0 150px rgba(255, 68, 68, 0.2),
    inset 0 0 150px rgba(255, 140, 0, 0.15);
  animation: diamondPulse 4s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
  backdrop-filter: blur(5px);
}

.diamond-background::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(255, 140, 0, 0.1) 50%,
      transparent 70%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.diamond-background::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle,
      rgba(255, 68, 68, 0.15) 0%,
      transparent 70%);
  border: 1px solid rgba(255, 68, 68, 0.2);
}

.diamond-nav {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 4;
}

/* .diamond-dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.3);
  transform: rotate(45deg);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.diamond-dot.active {
  background: #ff4444;
  box-shadow: 0 0 15px rgba(255,68,68,0.5);
  scale: 1.3;
}

.diamond-dot:hover {
  background: rgba(255,255,255,0.6);
  scale: 1.2;
} */

.hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 4;
  position: relative;
  animation: fadeInUp 1s ease-out;
}

.special-tag {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: inline-block;
  animation: glow 2s ease-in-out infinite alternate;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  /* line-height: 1.1; */
  margin-bottom: 40px;
  background: linear-gradient(135deg, #fff 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #fff 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(to right, rgb(200 135 17 / 80%) 0%, rgb(100 68 10 / 80%) 60%, rgb(2 2 2 / 80%) 100%);
  background-size: 102% 100%;
  background-position: left center;
  background-repeat: no-repeat;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}

.btn-primary:hover {
  background: #ff3333;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 68, 68, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

@keyframes diamondPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
    box-shadow:
      0 0 150px rgba(255, 68, 68, 0.15),
      inset 0 0 150px rgba(255, 140, 0, 0.1);
  }

  50% {
    transform: translate(-50%, -50%) rotate(45deg) scale(1.05);
    box-shadow:
      0 0 200px rgba(255, 68, 68, 0.2),
      inset 0 0 200px rgba(255, 140, 0, 0.15);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }

  to {
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
  }
}

.text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.text-content {
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 800px;
}

.blurred-box {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-heading {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-content {
  padding: 1rem 0.5rem;
  max-width: 95vw;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 1rem;
  z-index: 1000;
  transition: transform 0.3s ease;
  backdrop-filter: contrast(2.5);
  background: linear-gradient(to right, rgb(200 135 17 / 80%), rgb(2 2 2 / 80%));
}

.navbar.collapsed {
  transform: translateY(-100%);
}

.navbar.expanded {
  transform: translateY(0);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.navbar-brand:hover {
  color: #fff;
  opacity: 0.95;
}

.navbar-site-name {
  white-space: nowrap;
}

.navbar img {
  height: 50px;
  width: auto;
  border-radius: 50%;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
}

.navbar a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.navbar a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 1rem;
  left: 1rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
}

/* Define the fade-in animation */
@keyframes fade-in {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* Services Section */
#services {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #111;
  color: #ffffff;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 60%, rgba(255, 140, 0, 0.25) 0%, rgba(255, 140, 0, 0.15) 40%, rgba(255, 140, 0, 0.05) 70%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

#services.visible::before {
  opacity: 1;
}

#services .container {
  position: relative;
  z-index: 2;
}

#services h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  color: white;
  background: linear-gradient(135deg, #fff 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 165, 0, 0.2);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
  background: radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 140, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0.7;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.service-card:hover::after {
  opacity: 0.8;
}

.card-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 140, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .icon {
  background: rgba(255, 140, 0, 0.3);
  transform: scale(1.1);
}

.icon svg {
  width: 30px;
  height: 30px;
  fill: #ffa500;
  transition: all 0.3s ease;
}

.service-card:hover .icon svg {
  fill: #ff8c00;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
  transition: all 0.3s ease;
}

.card-description {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .card-description {
  color: #fff;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 165, 0, 0.4);
}

/* Background image styles for service cards */
.card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px);
  opacity: 0.3;
  z-index: 1;
  transition: all 0.3s ease;
}

.service-card:hover .card-bg-image {
  filter: blur(6px);
  opacity: 0.4;
  transform: scale(1.05);
}


.cta-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* .cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #ff6b35;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #ff8c00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
} */

.or-text {
  margin: 0 1.5rem;
  color: #b0b0b0;
}

.phone-link {
  display: flex;
  align-items: center;
  color: #ff6b35;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #ff8c00;
}

.phone-icon {
  width: 30px;
  height: 30px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}

.phone-icon svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

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

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.industry-section {
  position: relative;
  background: linear-gradient(to bottom, #1a1a1a, #2a2a2a);
  color: #ffffff;
  overflow: hidden;
  will-change: auto;
}

.industry-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 60%, rgba(65, 48, 29, 0.25) 0%, rgba(57, 37, 11, 0.15) 40%, rgba(109, 65, 12, 0.05) 70%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.industry-section.visible::before {
  opacity: 1;
}

.industry-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.industry-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffa500;
  border-radius: 50%;
  animation: floatParticle 3s ease-in-out infinite;
  box-shadow: 0 0 10px #ffa500;
}

.industry-particle:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  background: #ffa500;
}

.industry-particle:nth-child(2) {
  width: 6px;
  height: 6px;
  left: 25%;
  top: 40%;
  animation-delay: 1s;
  background: #ff8c00;
}

.industry-particle:nth-child(3) {
  width: 5px;
  height: 5px;
  left: 40%;
  top: 60%;
  animation-delay: 2s;
  background: #ffa500;
}

.industry-particle:nth-child(4) {
  width: 7px;
  height: 7px;
  left: 55%;
  top: 30%;
  animation-delay: 0.5s;
  background: #ff8c00;
}

.industry-particle:nth-child(5) {
  width: 4px;
  height: 4px;
  left: 70%;
  top: 50%;
  animation-delay: 1.5s;
  background: #ffa500;
}

.industry-particle:nth-child(6) {
  width: 6px;
  height: 6px;
  left: 85%;
  top: 70%;
  animation-delay: 2.5s;
  background: #ff8c00;
}

.industry-particle:nth-child(7) {
  width: 5px;
  height: 5px;
  left: 15%;
  top: 80%;
  animation-delay: 3s;
  background: #ffa500;
}

.industry-particle:nth-child(8) {
  width: 7px;
  height: 7px;
  left: 30%;
  top: 10%;
  animation-delay: 3.5s;
  background: #ff8c00;
}

.industry-particle:nth-child(9) {
  width: 4px;
  height: 4px;
  left: 45%;
  top: 90%;
  animation-delay: 4s;
  background: #ffa500;
}

.industry-particle:nth-child(10) {
  width: 6px;
  height: 6px;
  left: 60%;
  top: 15%;
  animation-delay: 4.5s;
  background: #ff8c00;
}

.industry-particle:nth-child(11) {
  width: 5px;
  height: 5px;
  left: 75%;
  top: 35%;
  animation-delay: 5s;
  background: #ffa500;
}

.industry-particle:nth-child(12) {
  width: 7px;
  height: 7px;
  left: 90%;
  top: 55%;
  animation-delay: 5.5s;
  background: #ff8c00;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 1;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
}

.industry-section .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  transform: none !important;
  will-change: auto;
}

.industry-left {
  flex: 1;
  position: relative;
  min-width: 300px;
  transform: none !important;
  will-change: auto;
}

.industry-right {
  flex: 1;
  padding-left: 2rem;
  min-width: 300px;
  transform: none !important;
  will-change: auto;
}

.image-container {
  position: relative;
  max-width: 600px;
  background: linear-gradient(135deg, #2a2a2a, #333333);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: none !important;
  will-change: auto;
}

.main-image {
  width: 100%;
  border: 5px solid rgb(200 135 17 / 80%);
  box-shadow: 10px 10px 0 rgba(255, 107, 53, 0.2);
  border-radius: 5px;
}

.spark-image {
  position: absolute;
  bottom: -7%;
  right: -10%;
  width: 50%;
  border: 5px solid rgb(200 135 17 / 80%);
  box-shadow: 5px 5px 0 rgba(255, 107, 53, 0.2);
  border-radius: 5px;
}

.video-play-btn {
  position: absolute;
  bottom: 5%;
  right: 10%;
  width: 70px;
  height: 70px;
  background-color: rgb(200 135 17 / 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: transform 0.3s ease;
  z-index: 10;
}

.video-play-btn:hover {
  transform: scale(1.1);
  background-color: #ff8c00;
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 5px;
  fill: white;
}

.years-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
  height: 170px;
  background: linear-gradient(to right, rgb(200 135 17 / 80%), rgb(2 2 2 / 80%));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-15%, -15%);
  z-index: 5;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
  padding-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.medal-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

.years-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  /* Override for badge font */
  font-family: Arial, Helvetica, sans-serif !important;

}

.years-text {
  font-size: 1rem;
  color: white;
}

.section-subtitle {
  font-size: 1rem;
  color: #ff6b35;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
  background: linear-gradient(135deg, #fff 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.description {

  color: #b0b0b0;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.check-icon {
  min-width: 24px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.check-icon svg {
  width: 12px;
  height: 12px;
  fill: white;
}

.cta-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  /* background-color: #ff6b35; */
  /* color: white; */
  text-decoration: none;
  font-weight: 600;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
  border-radius: 5px;

  color: rgb(255, 165, 0);
  font-size: 1.2rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.8);
  /* border-radius: 50%; */
  transition: 0.3s;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(255, 165, 0, 0.3);
  border-image: initial;
}

.cta-button:hover {
  background: rgba(255, 165, 0, 0.1);
  transform: translateY(-2px);
}

.or-text {
  margin: 0 1.5rem;
  color: #b0b0b0;
}

.phone-link {
  display: flex;
  align-items: center;
  color: rgb(255, 165, 0);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #ff8c00;
}

.phone-icon {
  width: 30px;
  height: 30px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}

.phone-icon svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

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

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.team-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(to bottom, #1a1a1a, #2a2a2a);
  color: #ffffff;
  overflow: hidden;
}

.team-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.left-content {
  flex: 1;
  max-width: 500px;
}

.section-label {
  color: #ffa500;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #cccccc;
}

.view-teams-btn {
  background: transparent;
  border: 2px solid #ffa500;
  color: #ffa500;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-teams-btn:hover {
  background: #ffa500;
  color: #1a1a1a;
}

.team-photo-container {
  flex: 1;
  max-width: 400px;
  position: relative;
}

.team-photo-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.right-content {
  flex: 1;
  max-width: 300px;
}

.team-member {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.member-role {
  color: #ffa500;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.member-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

/* Animated Arrow */
.animated-arrow {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  opacity: 1;
  z-index: 10;
}

.arrow-path {
  stroke: #FF8C00;
  stroke-width: 5;
  fill: none;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawArrow 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 8px #FF8C00);
}

/* Replace with new charcoal animation */
.charcoal-animation {
  position: absolute;
  bottom: 50%;
  right: 210%;
  bottom: -20%;
  transform: translateY(50%);
  width: 100px;
  height: 100px;
  opacity: 1;
  z-index: 10;
  animation: floatCharcoal 3s ease-in-out infinite;
}

.charcoal-piece {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #4a4a4a;
  opacity: 1;
  transform: rotate(45deg);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  border: 3px solid #666666;
  z-index: 10;
}

.charcoal-piece::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #666666, #4a4a4a);
  opacity: 1;
  border-radius: 4px;
  z-index: 11;
}

.charcoal-piece::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #666666, #4a4a4a);
  opacity: 1;
  border-radius: 4px;
  z-index: 12;
}

@keyframes floatCharcoal {

  0%,
  100% {
    transform: translateY(50%) translateX(0) rotate(0deg);
  }

  50% {
    transform: translateY(50%) translateX(-20px) rotate(180deg);
  }
}

/* Floating Particles */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ff6b35;
  border-radius: 50%;
  opacity: 0.6;
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.particle-2 {
  top: 60%;
  left: 5%;
  animation: float 8s ease-in-out infinite 2s;
}

.particle-3 {
  top: 80%;
  left: 15%;
  animation: float 7s ease-in-out infinite 4s;
}

/* Diagonal lines pattern background with fade effect */
.diagonal-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(45deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.03) 1px,
      rgba(255, 255, 255, 0.03) 2px);
  opacity: 0.5;
  z-index: 0;
}

/* Radial fade overlay */
.fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(355, 355, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(10, 10, 10, 0.9) 100%);
  z-index: 1;
  mix-blend-mode: overlay;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes drawArrow {

  0%,
  100% {
    stroke-dashoffset: 300;
  }

  50% {
    stroke-dashoffset: 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-20px) rotate(120deg);
  }

  66% {
    transform: translateY(-10px) rotate(240deg);
  }
}



/* Add these styles to your existing styles */
.charcoal-fire {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translateZ(10px);
}

.service-card:hover .charcoal-fire {
  opacity: 1;
}

.card-img-wrapper {
  position: relative;
  z-index: 2;
}

.card-body {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
}

/* Add responsive styles */
@media screen and (max-width: 1200px) {
  .cards-container {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .service-card {
    height: 500px;
  }

  .card-img-wrapper {
    height: 250px;
  }

  .service-card .card-title {
    font-size: 1.5rem;
  }

  .service-card .card-text {
    font-size: 1rem;
  }
}


/* Slider Section */
.slider-section {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  background: #111;
  padding: 40px 0;
}

.slider-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 60%, rgba(255, 140, 0, 0.25) 0%, rgba(255, 140, 0, 0.15) 40%, rgba(255, 140, 0, 0.05) 70%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slider-section.visible::before {
  opacity: 1;
}

.slider-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.slider-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffa500;
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}

.slider-particle:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 10%;
  animation-delay: 0s;
  background: #ffa500;
}

.slider-particle:nth-child(2) {
  width: 6px;
  height: 6px;
  left: 25%;
  animation-delay: 1s;
  background: #ff8c00;
}

.slider-particle:nth-child(3) {
  width: 5px;
  height: 5px;
  left: 40%;
  animation-delay: 2s;
  background: #ffa500;
}

.slider-particle:nth-child(4) {
  width: 7px;
  height: 7px;
  left: 55%;
  animation-delay: 0.5s;
  background: #ff8c00;
}

.slider-particle:nth-child(5) {
  width: 4px;
  height: 4px;
  left: 70%;
  animation-delay: 1.5s;
  background: #ffa500;
}

.slider-particle:nth-child(6) {
  width: 6px;
  height: 6px;
  left: 85%;
  animation-delay: 2.5s;
  background: #ff8c00;
}

.slider-particle:nth-child(7) {
  width: 5px;
  height: 5px;
  left: 15%;
  animation-delay: 3s;
  background: #ffa500;
}

.slider-particle:nth-child(8) {
  width: 7px;
  height: 7px;
  left: 30%;
  animation-delay: 3.5s;
  background: #ff8c00;
}

.slider-particle:nth-child(9) {
  width: 4px;
  height: 4px;
  left: 45%;
  animation-delay: 4s;
  background: #ffa500;
}

.slider-particle:nth-child(10) {
  width: 6px;
  height: 6px;
  left: 60%;
  animation-delay: 4.5s;
  background: #ff8c00;
}

.slider-particle:nth-child(11) {
  width: 5px;
  height: 5px;
  left: 75%;
  animation-delay: 5s;
  background: #ffa500;
}

.slider-particle:nth-child(12) {
  width: 7px;
  height: 7px;
  left: 90%;
  animation-delay: 5.5s;
  background: #ff8c00;
}

.slides-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 2;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s ease;
  max-width: 100%;
  min-height: 600px;
  object-position: center;
  border: 3px solid rgba(255, 165, 0, 0.4);
  background-color: rgba(0, 0, 0, 0.3);
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  background: rgba(0, 0, 0, 0.8);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: all 0.6s ease;
  border: 2px solid rgba(255, 165, 0, 0.3);
  max-width: 320px;
  transform: translateX(30px);
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateX(0);
}

.slide-content h2 {
  color: #ffa500;
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content h3 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.4;
}

.slide-top-header .store-section-subtitle {
  margin-top: 35px;
}

.slider-buttons {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.explore-btn,
.services-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;

}

.explore-btn {
  color: rgb(255, 165, 0);
  font-size: 1.2rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  transition: 0.3s;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(255, 165, 0, 0.3);
  border-image: initial;
}

.services-btn {
  color: rgb(255, 165, 0);
  font-size: 1.2rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  transition: 0.3s;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(255, 165, 0, 0.3);
  border-image: initial;
}

.explore-btn:hover {
  background: rgba(255, 165, 0, 0.1);
  transform: translateY(-2px);
}

.services-btn:hover {
  background: rgba(255, 165, 0, 0.1);
  transform: translateY(-2px);
}

.slider-nav {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dot.active {
  background: #ffa500;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffa500;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
  border: 2px solid rgba(255, 165, 0, 0.3);
}

.slider-arrow:hover {
  background: #ffa500;
  color: #000;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
  left: 20px;
}

.slider-arrow-right {
  right: 20px;
}


/* Custom Packaging Section */
#custom-packaging {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(to bottom, #2a2a2a, #333333);
  margin-top: 4rem;
  margin-bottom: 4rem;
}

#custom-packaging img {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

#custom-packaging h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333333;
}

#custom-packaging p {
  font-size: 1.2rem;
  color: #666666;
  max-width: 800px;
  margin: 0 auto;
}

/* Hidden and Visible Classes */
.hidden {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
  opacity: 1;
  transform: scale(1);
}



/* Add smooth scroll behavior */
html {
  scroll-behavior: smooth;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Add transition for all elements */
* {
  transition: background-color 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add a subtle divider between sections */
section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0.5;
}

.divider-particles {
  height: 180px;
  background: #111;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.divider-particles::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 60%, rgba(255, 140, 0, 0.18) 0%, rgba(255, 140, 0, 0.08) 60%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: #ff8c00;
  border-radius: 50%;
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.6);
}

/* Individual particle styles with different sizes and timing */
.particle:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 10%;
  animation-delay: 0s;
  background: #ffa500;
}

.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  left: 25%;
  animation-delay: 1s;
  background: #ff8c00;
}

.particle:nth-child(3) {
  width: 5px;
  height: 5px;
  left: 40%;
  animation-delay: 2s;
  background: #ffa500;
}

.particle:nth-child(4) {
  width: 7px;
  height: 7px;
  left: 55%;
  animation-delay: 0.5s;
  background: #ff8c00;
}

.particle:nth-child(5) {
  width: 4px;
  height: 4px;
  left: 70%;
  animation-delay: 1.5s;
  background: #ffa500;
}

.particle:nth-child(6) {
  width: 6px;
  height: 6px;
  left: 85%;
  animation-delay: 2.5s;
  background: #ff8c00;
}

.particle:nth-child(7) {
  width: 5px;
  height: 5px;
  left: 15%;
  animation-delay: 3s;
  background: #ffa500;
}

.particle:nth-child(8) {
  width: 7px;
  height: 7px;
  left: 30%;
  animation-delay: 3.5s;
  background: #ff8c00;
}

.particle:nth-child(9) {
  width: 4px;
  height: 4px;
  left: 45%;
  animation-delay: 4s;
  background: #ffa500;
}

.particle:nth-child(10) {
  width: 6px;
  height: 6px;
  left: 60%;
  animation-delay: 4.5s;
  background: #ff8c00;
}

.particle:nth-child(11) {
  width: 5px;
  height: 5px;
  left: 75%;
  animation-delay: 5s;
  background: #ffa500;
}

.particle:nth-child(12) {
  width: 7px;
  height: 7px;
  left: 90%;
  animation-delay: 5.5s;
  background: #ff8c00;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(100px) rotate(0deg);
    opacity: 0;
  }

  50% {
    transform: translateY(-10px) rotate(180deg);
    opacity: 0.8;
  }
}

.marquee-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  font-size: 2rem;
  color: #ffb347;
  font-weight: bold;
  text-shadow: 0 2px 8px #000;
  z-index: 10;
  direction: rtl;
  justify-content: center;
  pointer-events: none;
}

.marquee-text span {
  display: inline-block;
  padding-left: 5vw;
  animation: marquee-move 18s linear infinite;
}

.marquee-text .marquee-duplicate {
  margin-right: 5vw;
}

@keyframes marquee-move {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Ensure the text is always visible above particles */
.divider-particles {
  position: relative;
  z-index: 1;
  font: 1em sans-serif;
}

.social-icons {
  position: absolute;
  top: 32%;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
  transform: translateY(-50%);
}

.social-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(to right, rgb(200 135 17 / 80%), rgb(2 2 2 / 80%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #ff8c00;
  transform: scale(1.1);
}

.social-icon i {
  color: white;
  font-size: 20px;
}

/*
body {
  cursor: none !important;
}

.custom-cursor-outer {
  position: fixed;
  top: 0; left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid #ff8c00;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: top 0.08s, left 0.08s;
  background: transparent;
  mix-blend-mode: lighten;
}

.custom-cursor-inner {
  position: fixed;
  top: 0; left: 0;
  width: 12px;
  height: 12px;
  background: #ff8c00;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: top 0.04s, left 0.04s;
  box-shadow: 0 0 8px #ff8c0088;
}
*/

.charcoal-mini-canvas {
  position: relative;
  display: block;
  margin: 4px 0 0 0;
  left: -30px;
  transform: none;
  width: 150px !important;
  height: 150px !important;
  z-index: 1;
  background: transparent !important;
  pointer-events: none;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

@keyframes charcoal-glow {
  0% {
    box-shadow: 0 0 20px 4px #ff8c00, 0 0 40px 8px #ff8c0044;
  }

  100% {
    box-shadow: 0 0 40px 16px #ff8c00, 0 0 80px 32px #ff8c0044;
  }
}

/* Store Categories Section Styles */
.store-categories-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #050505 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.store-categories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.1) 0%, rgba(255, 140, 0, 0.07) 40%, rgba(255, 140, 0, 0.03) 70%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.store-categories-section.visible::before {
  opacity: 1;
}

.store-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.store-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffa500;
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}

.store-particle:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  background: #ffa500;
}

.store-particle:nth-child(2) {
  width: 6px;
  height: 6px;
  left: 25%;
  top: 40%;
  animation-delay: 1s;
  background: #ff8c00;
}

.store-particle:nth-child(3) {
  width: 5px;
  height: 5px;
  left: 40%;
  top: 60%;
  animation-delay: 2s;
  background: #ffa500;
}

.store-particle:nth-child(4) {
  width: 7px;
  height: 7px;
  left: 55%;
  top: 30%;
  animation-delay: 0.5s;
  background: #ff8c00;
}

.store-particle:nth-child(5) {
  width: 4px;
  height: 4px;
  left: 70%;
  top: 50%;
  animation-delay: 1.5s;
  background: #ffa500;
}

.store-particle:nth-child(6) {
  width: 6px;
  height: 6px;
  left: 85%;
  top: 70%;
  animation-delay: 2.5s;
  background: #ff8c00;
}

.store-particle:nth-child(7) {
  width: 5px;
  height: 5px;
  left: 15%;
  top: 80%;
  animation-delay: 3s;
  background: #ffa500;
}

.store-particle:nth-child(8) {
  width: 7px;
  height: 7px;
  left: 30%;
  top: 10%;
  animation-delay: 3.5s;
  background: #ff8c00;
}

.store-particle:nth-child(9) {
  width: 4px;
  height: 4px;
  left: 45%;
  top: 90%;
  animation-delay: 4s;
  background: #ffa500;
}

.store-particle:nth-child(10) {
  width: 6px;
  height: 6px;
  left: 60%;
  top: 15%;
  animation-delay: 4.5s;
  background: #ff8c00;
}

.store-particle:nth-child(11) {
  width: 5px;
  height: 5px;
  left: 75%;
  top: 35%;
  animation-delay: 5s;
  background: #ffa500;
}

.store-particle:nth-child(12) {
  width: 7px;
  height: 7px;
  left: 90%;
  top: 55%;
  animation-delay: 5.5s;
  background: #ff8c00;
}

.store-particle:nth-child(13) {
  width: 4px;
  height: 4px;
  left: 20%;
  top: 25%;
  animation-delay: 6s;
  background: #ffa500;
}

.store-particle:nth-child(14) {
  width: 6px;
  height: 6px;
  left: 35%;
  top: 45%;
  animation-delay: 6.5s;
  background: #ff8c00;
}

.store-particle:nth-child(15) {
  width: 5px;
  height: 5px;
  left: 50%;
  top: 65%;
  animation-delay: 7s;
  background: #ffa500;
}

.store-particle:nth-child(16) {
  width: 7px;
  height: 7px;
  left: 65%;
  top: 85%;
  animation-delay: 7.5s;
  background: #ff8c00;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.store-section-title {
  font-size: 3rem;
  background: linear-gradient(135deg, #fff 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.store-section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #fff 0%, #ff8c00 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.store-section-subtitle {
  color: #cccccc;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 25px auto 0;
  line-height: 1.6;
}

.store-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 0 30px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.store-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 165, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.store-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 140, 0, 0.2);
  border-color: rgba(255, 140, 0, 0.3);
}

.store-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.store-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.store-card:hover .store-card-image::after {
  opacity: 1;
}

.store-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.store-card-content {
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
}

.store-card-title {
  text-decoration: underline;
  font-size: 1.6rem;
  color: rgb(255, 165, 0);
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.store-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #ff8c00, #ffa500);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.store-card:hover .store-card-title::after {
  width: 100px;
}

.store-card-description {
  text-decoration: underline rgba(0, 0, 0, 1.03);
  color: #cccccc;
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.store-card-link {
  display: inline-flex;
  align-items: center;
  color: rgb(255, 165, 0);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.store-card-link i {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.store-card-link:hover {
  color: #ff8e8e;
  transform: translateX(-5px);
}

.store-card-link:hover i {
  transform: translateX(-5px);
}

.store-categories-footer {
  text-align: center;
  margin-top: 70px;
  position: relative;
  z-index: 2;
}

.view-all-categories {
  display: inline-flex;
  align-items: center;
  padding: 15px 40px;
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.view-all-categories::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: 0.5s;
}

.view-all-categories:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.view-all-categories:hover::before {
  left: 100%;
}

.view-all-categories i {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.view-all-categories:hover i {
  transform: translateX(-5px);
}


/* Add Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Add Animation Classes */
.store-categories-section {
  animation: fadeInUp 0.8s ease-out forwards;
}

.store-card {
  animation: scaleIn 0.6s ease-out forwards;
  animation-delay: calc(var(--card-index) * 0.1s);
}

/* Add Hover Effects */
.store-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 142, 142, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.store-card:hover::before {
  opacity: 1;
  background: radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
}

/* Add Loading Animation */
.store-card.loading {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}

/* Location Section */
.location-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #050505 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.location-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.1) 0%, rgba(255, 140, 0, 0.07) 40%, rgba(255, 140, 0, 0.03) 70%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.location-section.visible::before {
  opacity: 1;
}

/* Loading Screen Styles */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  z-index: 99999;
  background: #000;
  overflow: hidden;
}

.loading-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.loading-bar {
  flex: 1;
  background: rgba(0, 0, 0, 0.7);
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 0.7s ease-in-out;
  position: relative;
  z-index: 2;
}

.loading-bar.slide-up {
  transform: scaleX(0);
}

.loading-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  z-index: 100000;
  font-family: 'Cairo', sans-serif;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.loading-content.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.location-section .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.location-content {
  text-align: center;
}

.location-content h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.location-content p {
  color: #cccccc;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.location-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 165, 0, 0.2);
  transition: all 0.3s ease;
}

.location-info:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 165, 0, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.location-info i {
  font-size: 1.5rem;
  color: #ff8c00;
}

.location-info span {
  color: #ffffff;
  font-size: 1.1rem;
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 165, 0, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .location-section {
    padding: 60px 0;
  }

  .location-content h2 {
    font-size: 2rem;
  }

  .location-content p {
    font-size: 1.1rem;
  }

  .location-info {
    padding: 12px 20px;
  }

  .location-info i {
    font-size: 1.3rem;
  }

  .location-info span {
    font-size: 1rem;
  }

  .map-container {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .location-content h2 {
    font-size: 1.8rem;
  }

  .location-content p {
    font-size: 1rem;
  }

  .location-info {
    padding: 10px 15px;
  }

  .map-container {
    height: 300px;
  }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(to right, rgb(200 135 17 / 80%), rgb(2 2 2 / 80%));
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: floatWhatsApp 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.floating-whatsapp i {
  font-size: 30px;
  color: white;
}

.floating-whatsapp span {
  display: none;
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 2rem;
  background: #000;
  color: #fff;
}

footer p {
  margin: 0;
  text-align: center;
}

@keyframes floatWhatsApp {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .floating-whatsapp i {
    font-size: 25px;
  }
}

/* WhatsApp Button Styles for Sections */
.section-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(to right, rgb(200 135 17 / 80%), rgb(2 2 2 / 80%));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.section-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.section-whatsapp i {
  font-size: 25px;
  color: white;
}

/* Specific positions for each section */
#charcoal-animation .section-whatsapp {
  bottom: 40px;
  right: 40px;
}

#services .section-whatsapp {
  bottom: 40px;
  right: 40px;
}

#store-categories .section-whatsapp {
  bottom: 40px;
  right: 40px;
}

#location .section-whatsapp {
  bottom: 40px;
  right: 40px;
}

@media (max-width: 768px) {
  .section-whatsapp {
    display: none;
  }

  .section-whatsapp i {
    font-size: 22px;
  }
}

/* Store Page Styles */
.store-hero-section {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  overflow: hidden;
  padding: 100px 0;
}

.store-title {
  font-size: 3.5rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.store-description {
  font-size: 1.2rem;
  color: #ff8c00;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.products-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #1a1a1a, #2a2a2a);
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 60%, rgba(255, 140, 0, 0.25) 0%, rgba(255, 140, 0, 0.15) 40%, rgba(255, 140, 0, 0.05) 70%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.products-section.visible::before {
  opacity: 1;
}

.products-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.products-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffa500;
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}

.products-particle:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  background: #ffa500;
}

.products-particle:nth-child(2) {
  width: 6px;
  height: 6px;
  left: 25%;
  top: 40%;
  animation-delay: 1s;
  background: #ff8c00;
}

.products-particle:nth-child(3) {
  width: 5px;
  height: 5px;
  left: 40%;
  top: 60%;
  animation-delay: 2s;
  background: #ffa500;
}

.products-particle:nth-child(4) {
  width: 7px;
  height: 7px;
  left: 55%;
  top: 30%;
  animation-delay: 0.5s;
  background: #ff8c00;
}

.products-particle:nth-child(5) {
  width: 4px;
  height: 4px;
  left: 70%;
  top: 50%;
  animation-delay: 1.5s;
  background: #ffa500;
}

.products-particle:nth-child(6) {
  width: 6px;
  height: 6px;
  left: 85%;
  top: 70%;
  animation-delay: 2.5s;
  background: #ff8c00;
}

.products-particle:nth-child(7) {
  width: 5px;
  height: 5px;
  left: 15%;
  top: 80%;
  animation-delay: 3s;
  background: #ffa500;
}

.products-particle:nth-child(8) {
  width: 7px;
  height: 7px;
  left: 30%;
  top: 10%;
  animation-delay: 3.5s;
  background: #ff8c00;
}

.products-particle:nth-child(9) {
  width: 4px;
  height: 4px;
  left: 45%;
  top: 90%;
  animation-delay: 4s;
  background: #ffa500;
}

.products-particle:nth-child(10) {
  width: 6px;
  height: 6px;
  left: 60%;
  top: 15%;
  animation-delay: 4.5s;
  background: #ff8c00;
}

.products-particle:nth-child(11) {
  width: 5px;
  height: 5px;
  left: 75%;
  top: 35%;
  animation-delay: 5s;
  background: #ffa500;
}

.products-particle:nth-child(12) {
  width: 7px;
  height: 7px;
  left: 90%;
  top: 55%;
  animation-delay: 5.5s;
  background: #ff8c00;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

.product-card {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 165, 0, 0.2);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.product-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

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

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view-btn {
  padding: 10px 20px;
  background: rgba(255, 165, 0, 0.9);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.quick-view-btn:hover {
  background: #ff8c00;
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
  background: rgba(26, 26, 26, 0.9);
}

.product-title {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.product-description {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.product-price {
  color: #ffa500;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.add-to-cart-btn {
  width: 100%;
  padding: 12px;
  background: #ffa500;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background: #ff8c00;
  transform: translateY(-2px);
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 1rem;
  right: auto;
  left: 1rem;
  padding: 3px;
  border: 1px solid #333;
  background: linear-gradient(to right, rgb(200 135 17 / 80%), rgb(2 2 2 / 80%));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  cursor: pointer;
  flex-direction: column;
  width: 45px;
  height: 50px;
  justify-content: center;
  align-items: center;
  position: relative;
}



.hamburger span {
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 1px;
}

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

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

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

.mobile-menu-overlay {
  position: fixed;
  transform: translateY(-100%);
  transition: transform 0.2s;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: black;
  color: white;
  direction: rtl;
  text-align: right;
}

.mobile-menu-overlay.active {
  transform: translateY(0);
}

.mobile-menu {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 4rem;
}

.mobile-menu-header {
  display: none;
}

.mobile-menu-links {
  display: block;
  list-style: none;
  padding: 0;
}

.mobile-menu-links a {
  display: block;
  margin: 2rem 2rem;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  text-align: right;
}

.mobile-menu-links a:hover {
  text-decoration: underline;
}

.close-menu {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar .nav-links {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 1rem;
  }

  .navbar img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .navbar img {
    width: 35px;
    height: 35px;
  }

  .hamburger {
    width: 30px;
    height: 30px;
    padding: 2px;
    top: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hamburger .menuIcon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto;
    width: 100%;
    height: 100%;
  }

  .hamburger span {
    width: 15px;
    height: 2px;
    margin: 1.5px 0;
  }


}