@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins/Poppins-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }

img{
    max-width: 100%;
    object-fit: cover;
    display: block;
}
a{
    color: inherit;
    text-decoration: none;
}
/* Global Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #F9F6EE;
  color: #1A1A1A;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  background: rgba(249, 246, 238, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  z-index: 1000;
}

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

.logo {
  font-size: 2rem;
  color: #FF4D6D;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-size: 1.1rem;
  color: #1A1A1A;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #FF4D6D;
}

.burger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Section */
.section {
  padding: 80px 0;
}
.section-top{
  padding-top: 130px;
}
h2, h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

p {
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Button */
.btn {
  display: inline-block;
  padding: 15px 30px;
  background: #FF4D6D;
  color: #F9F6EE;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: #1A1A1A;
  color: #F9F6EE;
  padding: 40px 0;
}

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

.footer-grid a {
  color: #F9F6EE;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #FF4D6D;
}
.footer-grid h3, a.footer-logo {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #fff;
  display: inline-block;
}

.hero {
  height: 100vh;
  max-height: 1200px;
  display: flex;
  align-items: center;
  background: url(image/banner.webp) center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.hero::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-content {
  max-width: 1000px;
  color: #fff;
  position: relative;
  z-index: 5;
  text-align: center;
}

.hero h1 {
  font-size: 5rem;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  animation: glitch 2s infinite;
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  10%, 30%, 50%, 70%, 90% { transform: translate(-2px, 2px); }
  20%, 40%, 60%, 80% { transform: translate(2px, -2px); }
}

.vibe {
  background: #1A1A1A;
  color: #F9F6EE;
  position: relative;
}

.vibe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vibe-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  text-align: center;
}

.slide img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #FF4D6D;
}

.accordion-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  display: none;
  padding: 20px;
}

.accordion-item.active .accordion-content {
  display: block;
}

.tips-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.tip-card {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tip-card:hover {
  transform: translateY(-5px);
}

.tip-card i {
  font-size: 2rem;
  color: #FF4D6D;
  margin-bottom: 15px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #1A1A1A;
  border-radius: 5px;
}
.contact-form label{
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.contact-form label input{
  width: auto;
  margin: 0;
}
.contact-form button {
  background: #FF4D6D;
  color: #F9F6EE;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s;
}

.contact-form button:hover {
  transform: scale(1.05);
}
.gear-slide img{
  width: 100%;
  height: 250px;
  margin-bottom: 15px;
}
/* Sound Lab Page Styles */
.sound-setup, .studio-essentials,  .intl-shipping,  .new-arrivals {
  display: flex;
  gap: 40px;
  align-items: center;
}

.sound-setup img, .studio-essentials img,  .intl-img,  .arrivals-img {
  width: 50%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.sound-setup-content, .essentials-content, .zones-content, .category-content {
  width: 50%;
}

.gear-tips, .gear-compare, .return-policy, .sound-design {
  background: #1A1A1A;
  color: #F9F6EE;
}

.gear-tips-grid, .compare-grid, .design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.gear-tip-card, .compare-card {
  background: #2A2A2A;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gear-tip-card:hover, .compare-card:hover {
  transform: translateY(-5px);
}

.gear-tip-card i, .compare-card i, .design-card i {
  font-size: 2rem;
  color: #FF4D6D;
  margin-bottom: 15px;
}

.workflow-slider {
  position: relative;
  overflow: hidden;
}

.workflow-container {
  display: flex;
  transition: transform 0.5s ease;
}

.workflow-slide {
  min-width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
}

.workflow-slide img {
  width: 50%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.workflow-slide-content {
  width: 50%;
}

.community-voices, .policy-grid, .accessory-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.voice-card, .policy-card, .accessory-card {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.voice-card img, .policy-card img, .accessory-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.policy-card{
  color: #1A1A1A;
}

.gear-hacks, .packaging-tips, .gear-guide {
  background: linear-gradient(135deg, #FF4D6D 0%, #1A1A1A 100%);
  color: #F9F6EE;
}

.hack-list{
  list-style: none;
  padding: 20px 0;
}

.hack-list li{
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hack-list i{
  color: #F9F6EE;
  font-size: 1.5rem;
}

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

.design-card {
  padding: 20px;
  border: 1px solid #FF4D6D;
  border-radius: 10px;
  text-align: center;
}

/* Catalog Page Styles */
.featured-gear  {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.gear-card {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.gear-card:hover {
  transform: translateY(-5px);
}

.gear-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gear-card-content {
  padding: 20px;
}

.gear-card-content .price {
  color: #FF4D6D;
  font-weight: bold;
  margin-bottom: 15px;
}

.gear-faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #FF4D6D;
}

.faq-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-content {
  display: none;
  padding: 20px;
}

.faq-item.active .faq-content {
  display: block;
}

/* Delivery Page Styles */
.delivery-overview{
  display: flex; 
  gap: 40px;
  align-items: center;
}
.delivery-overview img{
  width: 50%;
}
.options-grid{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.option-card {
  background: #2A2A2A;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s;
  color: #fff;
}

.option-card:hover {
  transform: translateY(-5px);
}

.option-card i {
  font-size: 2rem;
  color: #FF4D6D;
  margin-bottom: 15px;
}

/* Privacy and Terms Page Styles */
ul {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
  position: relative;
}

ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #FF4D6D;
  position: absolute;
  left: -20px;
}
.list li::before{
  display: none;
}

/* Thanks Page Styles */
.thanks-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  .review-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  .review-card:hover {
    transform: translateY(-5px);
  }
  .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  .review-header h3 {
    font-size: 1.5rem;
    color: #1A1A1A;
    margin: 0;
  }
  .rating {
    display: flex;
    gap: 5px;
  }
  .rating i {
    color: #FF4D6D;
    font-size: 1.2rem;
  }
  .review-card p {
    font-size: 1rem;
    color: #1A1A1A;
    margin-bottom: 15px;
    text-align: left;
  }
  .review-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
  }
/* Media Queries */
@media (max-width: 768px) {
  .nav-links {
    transform: translateX(100%);
        transition: transform 0.3s ease;
        flex-direction: column;
        position: fixed;
        top: 83px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        justify-content: center;
        align-items: center;
        z-index: 999;
  }

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

  .burger {
    display: block;
  }

  body.no-scroll {
    overflow: hidden;
  }

  .sound-setup, .workflow-slide , .studio-essentials, .intl-shipping,  .new-arrivals, .delivery-overview {
    flex-direction: column;
    gap: 20px;
  }
  .vibe-grid, .policy-grid, .reviews-grid, .community-voices, .accessory-spotlight{
    grid-template-columns: 1fr;
  }

  .vibe-img, .sound-setup img, .sound-setup-content, .workflow-slide img, .workflow-slide-content, .essentials-img, .essentials-content,  .intl-img,  .arrivals-img, .delivery-overview img {
    width: 100%;
    min-height: 250px;
  }

  .hero h1, h1 {
    font-size: 3rem;
  }

  h2, h1 {
    font-size: 2rem;
  }

  h3, .logo {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }
  .slide img {
    height: 300px;
  }
  .container{
    padding: 0 10px;
  }
  .review-header h3 {
      font-size: 1.2rem;
    }
    .rating i {
      font-size: 1rem;
    }
}