body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #181818;
  color: #fff;
  padding-top: 90px;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 70px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  padding: 1rem 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15); ;
}
.logo {
  display: block !important;
  max-width: 180px;
  height: 60px;
  margin: 1.2rem 0 1.2rem 1.2rem;
  display: flex;
}
nav {
  display: flex;
  align-items: center;
  margin-right: 2rem;
}
nav a {
  color: #fff;
  margin: 0 1px;
  margin-left: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: #ffb300;
}
.hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 32px #0007;
  border-radius: 1.5rem;
  margin: 2rem auto 2.5rem auto;
  max-width: 1200px;
}
.hero-video {
  width: 100vw;
  height: 60vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.7) saturate(1.2) blur(0.5px);
}
.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.55);
  padding: 2.5rem 2rem;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px #ffb30044;
  max-width: 90vw;
  margin: 0 auto;
}
.hero-text h1 {
  font-size: 2.8rem;
  letter-spacing: 2px;
  color: #ffb300;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px #ffb30044, 0 4px 32px #0008;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.hero-text p {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0;
  text-shadow: 0 2px 8px #000a;
}
.featured-wheels {
  padding: 3rem 2rem 2rem 2rem;
  background: linear-gradient(120deg, #222 0%, #232526 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px #0003;
  max-width: 1200px;
  margin: 0 auto 2.5rem auto;
}
.featured-wheels h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #ffb300;
  font-size: 2.1rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 16px #ffb30044;
}
.wheel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.wheel-card {
  background: #1a1a1a;
  border-radius: 1rem;
  box-shadow: 0 2px 16px #ffb30022;
  padding: 1.2rem 1rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  position: relative;
}
.wheel-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px #ffb30055, 0 2px 16px #0005;
  z-index: 2;
}
.wheel-card img {
  width: 100%;
  max-width: 220px;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px #0004;
  transition: filter 0.2s;
}
.wheel-card:hover img {
  filter: brightness(1.08) saturate(1.2);
}
.wheel-card .info h3 {
  color: #ffb300;
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}
.wheel-card .info p.price {
  color: #00bfae;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.wheel-card .add-to-cart-btn {
  margin-top: 0.7rem;
  padding: 0.5rem 1.2rem;
  background: #ffb300;
  color: #222;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.wheel-card .add-to-cart-btn:hover {
  background: #fff;
  color: #ffb300;
}
.why-choose-us, .home-testimonials, .home-gallery {
  background: linear-gradient(120deg, #232526 0%, #414345 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px #0003;
  margin: 2.5rem auto 2.5rem auto;
  max-width: 1100px;
  padding: 2.5rem 2rem 2rem 2rem;
  color: #fff;
  text-align: center;
}
.why-choose-us h2, .home-gallery h2 {
  color: #ffb300;
  font-size: 2.1rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
.home-testimonials h2 {
  color: #00bfae;
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
.why-grid, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}
.why-item, .testimonial-card {
  background: #232526;
  border-radius: 1rem;
  box-shadow: 0 2px 12px #ffb30022;
  padding: 1.5rem 1.2rem;
  max-width: 220px;
  flex: 1 1 180px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-item img, .testimonial-card img {
  width: 48px;
  margin-bottom: 1rem;
  border-radius: 50%;
}
.why-item h3 {
  color: #ffb300;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 0.7rem;
}
.testimonial-card span {
  color: #ffb300;
  font-size: 0.98rem;
}
.home-gallery h2 {
  color: #ffb300;
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
.gallery-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.gallery-highlight-grid img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 2px 12px #ffb30022;
  object-fit: cover;
  aspect-ratio: 1.5/1;
}
.gallery-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #ffb300;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.gallery-link:hover {
  color: #fff;
  text-shadow: 0 2px 16px #ffb300, 0 4px 32px #ff444488;
}
@media (max-width: 900px) {
  .hero, .featured-wheels {
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .wheel-card img {
    max-width: 140px;
  }
}
@media (max-width: 600px) {
  .hero {
    height: 32vh;
    min-height: 120px;
    border-radius: 0.7rem;
    margin: 1rem auto 1.5rem auto;
  }
  .hero-video {
    height: 32vh;
  }
  .hero-text {
    padding: 1.2rem 0.5rem;
    border-radius: 0.7rem;
  }
  .featured-wheels {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    border-radius: 0.7rem;
  }
  .wheel-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .wheel-card {
    padding: 0.7rem 0.5rem 1rem 0.5rem;
    border-radius: 0.7rem;
  }
  .why-choose-us, .home-testimonials, .home-gallery {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    max-width: 98vw;
    border-radius: 0.7rem;
  }
  .gallery-highlight-grid {
    grid-template-columns: 1fr;
  }

}
/* --- Shipping Page Styling --- */
.shipping-section {
  background: linear-gradient(120deg, #232526 0%, #ffb300 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
  margin: 2rem auto 3rem auto;
  max-width: 900px;
  padding: 2.5rem 2rem 2rem 2rem;
  color: #fff;
  position: relative;
}
.shipping-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffb300;
  letter-spacing: 2px;
  text-shadow: 0 2px 16px #ffb30044;
}
.shipping-lead {
  background: rgba(255,179,0,0.08);
  border-left: 6px solid #ffb300;
  padding: 1.2rem 1.5rem;
  border-radius: 0.7rem;
  margin-bottom: 2rem;
  font-size: 1.15rem;
  box-shadow: 0 2px 12px #ffb30022;
}
.shipping-details h3 {
  color: #ffb300;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
  letter-spacing: 1px;
}
.shipping-details ul {
  background: #232526;
  border-radius: 0.7rem;
  padding: 1.1rem 1.5rem 1.1rem 2rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px #0002;
  font-size: 1.08rem;
}
.shipping-details li {
  margin-bottom: 0.7rem;
  line-height: 1.7;
  list-style: disc inside;
}
.shipping-details li b {
  color: #ffb300;
}
.shipping-contact {
  background: #181818;
  border-radius: 0.7rem;
  margin-top: 2.5rem;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 2px 12px #ffb30022;
  text-align: center;
}
.shipping-contact h3 {
  color: #ffb300;
  margin-bottom: 0.5rem;
}
.shipping-contact a {
  color: #ffb300;
  text-decoration: underline;
  font-weight: 500;
}
.shipping-section h3::before {
  content: '\1F69A';
  margin-right: 0.5em;
  font-size: 1.1em;
  filter: grayscale(0.5);
}
.shipping-section h3 {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
/* --- Mobile Menu Button --- */
.menu-toggle {
  display: none;
  position: fixed;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 300;
  width: 44px;
  height: 44px;
  background: #232526;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 12px #0003;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: #ffb300;
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }
  header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: #181818;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem 1.5rem;
    gap: 1.2rem;
    box-shadow: 2px 0 24px #0007;
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 250;
  }
  header nav.open {
    transform: translateX(0);
  }
  header nav a {
    font-size: 1.2rem;
    margin: 0.5rem 0;
  }
  body.menu-open {
    overflow: hidden;
  }
}
@media (max-width: 600px) {
  .menu-toggle {
    top: 0.7rem;
    left: 0.7rem;
    width: 38px;
    height: 38px;
  }
  header nav {
    width: 98vw;
    max-width: 98vw;
    padding: 4rem 1rem 2rem 1rem;
  }
}
/* --- Returns Page Styling --- */
.returns-section {
  background: linear-gradient(120deg, #232526 0%, #434343 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.22);
  margin: 2.5rem auto 3rem auto;
  max-width: 700px;
  padding: 2.5rem 2rem 2rem 2rem;
  color: #fff;
  position: relative;
  text-align: center;
}
.returns-section h2 {
  font-size: 2.3rem;
  color: #ff4444;
  margin-bottom: 1.3rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 16px #ff444488;
}
.returns-section p {
  background: rgba(255,68,68,0.08);
  border-left: 6px solid #ff4444;
  border-radius: 0.7rem;
  padding: 1.1rem 1.5rem;
  margin: 1.2rem 0;
  font-size: 1.13rem;
  box-shadow: 0 2px 12px #ff444422;
  text-align: left;
}
.returns-section h2::before {
  content: '\21BA';
  margin-right: 0.5em;
  font-size: 1.1em;
  filter: grayscale(0.5);
}
@media (max-width: 600px) {
  .returns-section {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    max-width: 98vw;
  }
  .returns-section h2 {
    font-size: 1.5rem;
  }
  .returns-section p {
    padding: 0.7rem 0.7rem;
    font-size: 1rem;
  }
}

/* --- Privacy Page Styling --- */
.privacy-section {
  background: linear-gradient(120deg, #232526 0%, #2c3e50 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  margin: 2.5rem auto 3rem auto;
  max-width: 700px;
  padding: 2.5rem 2rem 2rem 2rem;
  color: #fff;
  position: relative;
  text-align: center;
}
.privacy-section h2 {
  font-size: 2.3rem;
  color: #00bfae;
  margin-bottom: 1.3rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 16px #00bfae88;
}
.privacy-section p {
  background: rgba(0,191,174,0.08);
  border-left: 6px solid #00bfae;
  border-radius: 0.7rem;
  padding: 1.1rem 1.5rem;
  margin: 1.2rem 0;
  font-size: 1.13rem;
  box-shadow: 0 2px 12px #00bfae22;
  text-align: left;
}
.privacy-section h2::before {
  content: '\1F512';
  margin-right: 0.5em;
  font-size: 1.1em;
  filter: grayscale(0.5);
}
@media (max-width: 600px) {
  .privacy-section {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    max-width: 98vw;
  }
  .privacy-section h2 {
    font-size: 1.5rem;
  }
  .privacy-section p {
    padding: 0.7rem 0.7rem;
    font-size: 1rem;
  }
}

/* --- Cart Hover Styling --- */
.cart-hover {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  left: auto;
  min-width: 320px;
  max-width: 95vw;
  background: #222;
  color: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 32px #ffb30055, 0 2px 16px #0005;
  padding: 1.5rem 1rem 1rem 1rem;
  z-index: 9999;
  animation: cartPopIn 0.4s cubic-bezier(.68,-0.55,.27,1.55);
  transition: opacity 0.2s, transform 0.2s;
  opacity: 0; /* Fix: default to 0 for smooth fade-in */
  pointer-events: none;
}
.cart-link:hover + .cart-hover,
.cart-hover:hover,
#cartNav:focus + .cart-hover {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cart-hover .cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.7rem;
}
.cart-hover .cart-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-right: 1rem;
}
.cart-hover .cart-item:last-child {
  border-bottom: none;
}
.cart-hover .price {
  color: #ffb300;
  font-weight: bold;
}
.cart-hover-empty {
  text-align: center;
  color: #aaa;
  padding: 1rem 0;
}
@media (max-width: 700px) {
  .cart-hover {
    min-width: 0;
    width: 95vw;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(0);
    padding: 1rem 0.5rem 1rem 0.5rem;
  }
}

/* --- Checkout Page Styling --- */
.checkout-section {
  max-width: 600px;
  margin: 4.5rem auto 2.5rem auto;
  background: linear-gradient(120deg, #232526 0%, #ffb300 100%);
  border-radius: 1.5rem;
  box-shadow: 0 6px 40px #0007;
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  color: #fff;
  position: relative;
}
.checkout-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 1.5px;
  color: #ffb300;
  font-size: 2.3rem;
  text-shadow: 0 2px 16px #ffb30044;
}
#checkoutForm {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#checkoutForm label {
  display: flex;
  flex-direction: column;
  font-size: 1.3rem;
  color: #ffb300;
  margin-bottom: 0.3rem;
  font-weight: 500;
}
#checkoutForm input,
#checkoutForm select,
#checkoutForm textarea {
  margin-top: 0.6rem;
  padding: 1.1rem 1.3rem;
  border-radius: 0.9rem;
  border: none;
  background: #181818;
  color: #fff;
  font-size: 1.25rem;
  outline: none;
  box-shadow: 0 2px 12px #0002;
  transition: border 0.2s;
}
#checkoutForm input:focus,
#checkoutForm select:focus,
#checkoutForm textarea:focus {
  border: 2px solid #ffb300;
}
.checkout-btn {
  background: #ffb300;
  color: #232526;
  border: none;
  border-radius: 0.7rem;
  padding: 1.1rem 0;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 1.5rem;
  box-shadow: 0 2px 12px #ffb30044;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.checkout-btn:hover {
  background: #232526;
  color: #ffb300;
}
#cartSummary {
  background: #181818;
  color: #fff;
  border-radius: 0.7rem;
  padding: 1.1rem 1.5rem;
  margin: 1.2rem 0;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px #ffb30022;
}
#cartSummary ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem 0;
}
#cartSummary li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #333;
  font-size: 1.08rem;
}
#cartSummary li:last-child {
  border-bottom: none;
}
#cartSummary .summary-title {
  font-weight: bold;
  color: #ffb300;
  font-size: 1.13rem;
  margin-bottom: 0.5rem;
}
#cartSummary .summary-total {
  font-weight: bold;
  color: #00bfae;
  font-size: 1.15rem;
  margin-top: 0.7rem;
  text-align: right;
}
@media (max-width: 700px) {
  .checkout-section {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    max-width: 98vw;
    border-radius: 0.7rem;
  }
  #checkoutForm input,
  #checkoutForm select,
  #checkoutForm textarea {
    font-size: 1rem;
    padding: 0.7rem 0.7rem;
    border-radius: 0.5rem;
  }
  .checkout-btn {
    font-size: 1rem;
    padding: 0.7rem 0;
    border-radius: 0.5rem;
  }
  #cartSummary {
    padding: 0.7rem 0.7rem;
    font-size: 0.98rem;
  }
  #cartSummary .summary-title, #cartSummary .summary-total {
    font-size: 1rem;
  }
}

/* --- About Page Styling --- */
.about-section {
  background: linear-gradient(120deg, #232526 0%, #2c3e50 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px #0005;
  margin: 2.5rem auto 3rem auto;
  max-width: 900px;
  padding: 2.5rem 2rem 2rem 2rem;
  color: #fff;
  position: relative;
  text-align: center;
}
.about-section h2 {
  font-size: 2.3rem;
  color: #ffb300;
  margin-bottom: 1.3rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 16px #ffb30044;
}
.about-lead {
  background: rgba(255,179,0,0.08);
  border-left: 6px solid #ffb300;
  padding: 1.2rem 1.5rem;
  border-radius: 0.7rem;
  margin-bottom: 2rem;
  font-size: 1.15rem;
  box-shadow: 0 2px 12px #ffb30022;
  text-align: left;
}
.about-mission, .about-values {
  background: #232526;
  border-radius: 0.7rem;
  padding: 1.1rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px #0002;
  text-align: left;
}
.about-mission h3, .about-values h3 {
  color: #ffb300;
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
  letter-spacing: 1px;
}
.about-values ul {
  padding-left: 1.2rem;
  margin: 0;
}
.about-values li {
  margin-bottom: 0.7rem;
  line-height: 1.7;
  list-style: disc inside;
  color: #fff;
}
.about-testimonials {
  margin-top: 2.5rem;
}
.about-testimonials h3 {
  color: #00bfae;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
.testimonial {
  background: #181818;
  border-radius: 0.7rem;
  box-shadow: 0 2px 12px #ffb30022;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-align: left;
}
.testimonial-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px #0003;
}
.testimonial p {
  font-style: italic;
  margin-bottom: 0.3rem;
  color: #fff;
}
.testimonial span {
  color: #ffb300;
  font-size: 0.98rem;
}
@media (max-width: 700px) {
  .about-section {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    max-width: 98vw;
    border-radius: 0.7rem;
  }
  .about-lead, .about-mission, .about-values, .about-testimonials {
    padding: 0.8rem 0.7rem;
    border-radius: 0.5rem;
  }
  .testimonial {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .testimonial-img {
    width: 40px;
    height: 40px;
  }
}

/* --- Contact Page Styling --- */
.contact-section {
  background: linear-gradient(120deg, #232526 0%, #2c3e50 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px #0005;
  margin: 2.5rem auto 3rem auto;
  max-width: 600px;
  padding: 2.5rem 2rem 2rem 2rem;
  color: #fff;
  position: relative;
  text-align: center;
}
.contact-section h2 {
  font-size: 2.3rem;
  color: #ffb300;
  margin-bottom: 1.3rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 16px #ffb30044;
}
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
#contactForm label {
  display: flex;
  flex-direction: column;
  font-size: 1.1rem;
  color: #ffb300;
  margin-bottom: 0.3rem;
  font-weight: 500;
  text-align: left;
}
#contactForm input,
#contactForm textarea {
  margin-top: 0.6rem;
  padding: 1rem 1.2rem;
  border-radius: 0.7rem;
  border: none;
  background: #181818;
  color: #fff;
  font-size: 1.1rem;
  outline: none;
  box-shadow: 0 2px 12px #0002;
  transition: border 0.2s;
}
#contactForm input:focus,
#contactForm textarea:focus {
  border: 2px solid #ffb300;
}
#contactForm button {
  background: #ffb300;
  color: #232526;
  border: none;
  border-radius: 0.7rem;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 0.7rem;
  box-shadow: 0 2px 12px #ffb30044;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
#contactForm button:hover {
  background: #232526;
  color: #ffb300;
}
#contactMessage {
  margin-top: 1rem;
  color: #00bfae;
  font-size: 1.08rem;
  font-weight: bold;
}
.contact-section p {
  margin-top: 2rem;
  color: #fff;
  font-size: 1.08rem;
}
@media (max-width: 700px) {
  .contact-section {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    max-width: 98vw;
    border-radius: 0.7rem;
  }
  #contactForm input,
  #contactForm textarea {
    font-size: 1rem;
    padding: 0.7rem 0.7rem;
    border-radius: 0.5rem;
  }
  #contactForm button {
    font-size: 1rem;
    padding: 0.7rem 0;
    border-radius: 0.5rem;
  }
}

/* --- FAQ Page Styling --- */
.faq-section {
  background: linear-gradient(120deg, #232526 0%, #2c3e50 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px #0005;
  margin: 2.5rem auto 3rem auto;
  max-width: 800px;
  padding: 2.5rem 2rem 2rem 2rem;
  color: #fff;
  position: relative;
  text-align: center;
}
.faq-section h2 {
  font-size: 2.3rem;
  color: #ffb300;
  margin-bottom: 1.3rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 16px #ffb30044;
}
.faq-list {
  margin-top: 2rem;
  text-align: left;
}
.faq-item {
  margin-bottom: 1.2rem;
  border-radius: 0.7rem;
  box-shadow: 0 2px 12px #ffb30022;
  background: #232526;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: #ffb300;
  color: #232526;
  border: none;
  outline: none;
  font-size: 1.13rem;
  font-weight: bold;
  padding: 1rem 1.2rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s;
  border-radius: 0.7rem 0.7rem 0 0;
}
.faq-question:hover, .faq-question:focus {
  background: #fff;
  color: #ffb300;
}
.faq-answer {
  background: #181818;
  color: #fff;
  padding: 1rem 1.2rem;
  font-size: 1.08rem;
  border-radius: 0 0 0.7rem 0.7rem;
  border-top: 1px solid #ffb30033;
  display: none;
}
.faq-item.open .faq-answer {
  display: block;
  animation: fadeInFaq 0.3s;
}
@keyframes fadeInFaq {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 700px) {
  .faq-section {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    max-width: 98vw;
    border-radius: 0.7rem;
  }
  .faq-question, .faq-answer {
    font-size: 1rem;
    padding: 0.7rem 0.7rem;
  }
}

/* --- Footer Styling --- */
footer {
  background: linear-gradient(120deg, #181818 0%, #232526 100%);
  color: #fff;
  text-align: center;
  padding: 1.5rem 0 1.2rem 0;
  margin-top: 2rem;
  font-size: 1rem;
  border-top: 1px solid #222;
  box-shadow: 0 -2px 16px #0005;
  letter-spacing: 0.5px;
  position: relative;
}
footer p {
  margin: 0.2rem 0;
  color: #ffb300;
  font-weight: 500;
  text-shadow: 0 2px 8px #000a;
}
footer p:last-child {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.8;
}
@media (max-width: 700px) {
  footer {
    padding: 1rem 0 0.7rem 0;
    font-size: 0.95rem;
  }
}

/* --- Cart Page Styling --- */
.styled-cart-section {
  max-width: 600px;
  margin: 3rem auto 2.5rem auto;
  background: linear-gradient(120deg, #232526 0%, #232526 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px #0003;
  padding: 2.5rem 2rem 2rem 2rem;
  color: #fff;
  text-align: center;
}
.styled-cart-section h2 {
  color: #ffb300;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 16px #ffb30044;
}
#cartItems {
  margin-bottom: 2rem;
}
.cart-item {
  display: flex;
  align-items: center;
  background: #181818;
  border-radius: 1rem;
  box-shadow: 0 2px 16px #ffb30022;
  padding: 1rem;
  margin-bottom: 1.2rem;
  gap: 1.2rem;
  justify-content: flex-start;
}
.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.7rem;
  box-shadow: 0 2px 12px #0004;
}
.cart-item h4 {
  color: #ffb300;
  margin: 0 0 0.3rem 0;
  font-size: 1.1rem;
}
.cart-item .price {
  color: #00bfae;
  font-weight: bold;
  font-size: 1.1rem;
}
.remove-btn {
  background: #ff4444;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-left: auto;
  transition: background 0.18s;
}
.remove-btn:hover {
  background: #ff2222;
}
.checkout-btn {
  display: inline-block;
  background: #ffb300;
  color: #222;
  border: none;
  border-radius: 0.7rem;
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  margin-top: 1.5rem;
  box-shadow: 0 2px 16px #ffb30044;
  transition: background 0.18s, color 0.18s;
}
.checkout-btn:hover {
  background: #fff;
  color: #ffb300;
}
@media (max-width: 700px) {
  .styled-cart-section {
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    border-radius: 0.7rem;
  }
  .cart-item img {
    width: 50px;
    height: 50px;
  }
}
