:root{
  --ok: #22c55e;
  --brand: #dda0dd;
  --shadow: 0 10px 30px rgba(0, 0, 0, .35 );
  --card:#15161a;
  --radius: 16px;
  --accent: #ffd166;
  --muted: #9aa0a6;
  --buttrans: background-color 0.2s ease,
  color 0.2s ease,
  border-color 0.3s ease,
  box-shadow 0.3s ease;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  min-height: 100vh;
  margin: 0;
  background-color: 
  rgb(241, 237, 237);
  color: white;
}
header{
  background-color:  rgba(54, 52, 52, 0.95);
  height: 60px;
  position: sticky;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
  top: 0;
  z-index: 1000;
  transition: all 0.3 ease;
  backdrop-filter: blur(0px);
  gap: 10px;
}
header.scrolled{
  background-color: rgba(54, 52, 52, 0.95) ;
  backdrop-filter: blur(6px);
}

.header-left{
  display: flex;
  flex: 0 0 auto;
}

.header-left img{
  height: 100%;
  max-height: 50px ;
  object-fit: contain;
}
.mobile-menu-wrapper{
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-links ul{
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  margin: 0;
  padding: 0;
}
.nav-links a{
    text-decoration: none;
    margin: 10px 10px;
    color: white;
  }
.nav-links a:hover{
  border-color: rgb(54, 52, 52);
}
.dropdown{
  position: relative;
}

.dropbtn{
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    display: inline-block;
  }
.submenu-wrapper{
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.submenu-toggle{
  display: none;
  border: none;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.dropdown-content{
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 100px;
  background-color:  rgba(54, 52, 52, 0.95);
  width: 700px;
  max-width: 120vw;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: .5rem;
  z-index: 1500;
}
.dropdown-content ul{
  justify-content: center;
  padding-top: 0.5rem;
}
.dropdown-content a{
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover{
  background-color: black;
}
.dropdown:hover .dropdown-content{
  display: block;
  background-color:  rgb(54, 52, 52);
  margin-top: 0;
  
}
.dropdown:hover .dropbtn{
  background-color: rgb(54, 52, 52);
  border-radius: 4px;
}
.menu-toggle{
  display: none;
  background: none;
  border: none;
  font: size 1.8rem;
  color: white;
  cursor: pointer;
}
 
nav ul{
  list-style: none;
  display: flex;
  padding: 0;
  gap: 1rem;
}
nav li{
  text-decoration: none;
  align-content: center;
}
nav a{
  text-decoration: none;
}
.header-right{
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 0.7rem 0.7rem;
}
.header-right button{
  background-color: #dda0dd;
  color: black;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: medium;
  border: none;
  margin-left: 8px;
  cursor: pointer;
  transition: var(--buttrans);
}
.header-right button:hover{
   border-color: #dda0dd;
  box-shadow: 0 0 8px #dda0dd;
}
.header-right a{
  text-decoration: none;
  color: black;
  font-size: 20px;
}

.intro {
  display: flex;
  min-height: 400px;
  text-align: center;
  background-color: #0a0a0a;
  background-image: 
  linear-gradient(
    to right,
    rgba(93, 90, 90, 0.9) 0%,
    rgba(73, 70, 70, 0.5) 40%,
    rgba(87, 82, 82, 0.2) 70%,
    rgba(54, 50, 50, 0) 100%
  ),
  url('intro_background.jpg');
  background-size: cover;
  background-position: center;
  margin-top: 5px;

}

.intro-left{
  max-width: 800px;
  justify-content: center;
  align-items: center;
  z-index: 1;
   background-color: rgb(54, 52, 52);
   margin: 50px 50px;
   border-radius: 99px;
  
}

.intro-left h1{
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-top: 5rem;

}
.intro p{
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.intro button{
  
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  transition: 
  background-color 0.2s ease,
  color 0.2s ease,
  border-color 0.3s ease,
  box-shadow 0.3s ease;
}

.intro-button:hover{
  border-color: #dda0dd;
  box-shadow: 0 0 8px #dda0dd;
}
.gallery-container{
  display: grid;
  grid-template-columns: 70% 30%;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  

}
.left-gallery
{
 flex: 3; 
 border-radius: var(--radius);
 height: 700px;
 background-color: rgb(54, 52, 52);
 margin: 20px 10px;
 justify-content: center;
}
.left-gallery h2{
  text-align: center;
  margin-top: 1rem;
  font-size: 25px;
  line-height: 1.6;
  font-weight: 800;
}
.gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0.5rem 1rem;
}
.gallery img {
  width: 95%;
  height: 190px;
  object-fit:cover;
  cursor: pointer;
  border-radius:var(--radius);
  transform: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: linear-gradient(to the right, rgba(54, 52, 52, 0.9) 0%,
  rgba(54,52,52, 0.5) 40%,
  rgba(54,52,52, 0.2) 70%,
  rgba(54,52,52, 0) 100%,);
  margin: 5px 5px;

}
.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  z-index: 2000;
}
.lightbox.show{
  display: flex;
  opacity: 1;
}
.lightbox-img{
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0  25px rgba(255, 255, 255, 0.25);
}
.lightbox-close{
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}
.lightbox-close:hover{
  color: #dda0dd;
}
.intro-para{
  flex: 1;
  height: 500px;
  background-color: rgb(54, 52, 52);
  margin: 40px 40px 0 0;
  border-radius: var(--radius);
}
.intro-para h2{
  margin-top: 2rem;
  padding: 2rem 1.6rem 1rem 1.6rem;

}
.intro-para p{
  padding: 0 1.6rem 0 1.6rem;
  line-height: 1.6;
}

.product-carousel{
  
  margin: 2rem auto;
  padding: 0 1rem;
}
.product-carousel h2{
  margin: 0 0 .75rem;
  color: #111;
}
.sc-viewport{
  position: relative;
}
.sc-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 4);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .5rem 2.5rem;
  cursor: grab;
}
.sc-track:active{
  cursor: grabbing;
}
.sc-card{
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 500px;
}
.sc-media{
  position:relative; 
  aspect-ratio: 4/5;
  background: #f3e8ff;
}
.sc-media img{
  width: 50%;
  height: 50%;
  object-fit: cover;
  display: block;
}
.sc-badge{
  position: absolute;
  top: .5rem;
  left: .5rem;
  background: #dda0dd;
  color: #fff;
  padding: .25rem .5rem;
  border-radius: 999px;
  font-size: .8rem;
  text-transform: capitalize;
}
.sc-body{
  padding: .85rem; 
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.sc-title{
  font-weight: 600;
  color: #111;
}
.sc-meta{
  color: #666;
  font-size: .9rem;
}
.sc-price{
  font-weight: 700;
  color: #111;
}
.sc-actions{
  display: flex;
  gap: .5rem;
  mergin-top: .4rem;
}
.sc-actions .btn{
  flex: 1;
  padding: .55rem .7rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}
.btn-primary{
  background: #111;
  color: #fff;
}
.btn-ghost{
  background: #f5f5f5;
  color: #111;
}
.sc-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: #111;
  color: #fff;
  opacity: .85;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-prev{
  left: .25rem;
}
.sc-next{
  right: .25rem;
}
.sc-nav:disabled{
  opacity: .3;
  cursor: not-allowed;
}
.capture{
  background-color: #f3e8ff;
  overflow: hidden;
  padding: 40px 20px;
  text-align: center;
  max-width: 90%;
  margin: 2rem auto;
  border-radius: var(--radius);

}

.capture h2{
  color: black;
  margin-bottom: 1rem;

}
.capture-cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-self: center;
  padding: 1rem 1rem;
}
.capture-card{
  background: rgb(54, 52, 52);
  flex: ;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2));
  transition: transform .2s, box-shadow .2s;

}

.capture-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3))
}
.card-header{
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;

}
.card-header p{
  text-align: left;
}

.card-icon{
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  color: rgb(126, 91, 3);
}

.quick-buy {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 400px;
  overflow: hidden;
}

.qb-item {
  flex: 1;
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor: pointer;
}

.qb-left {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                    url('/img/frontal_wig.jpg');
}

.qb-right {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                    url('/img/wig_accessories.jpg');
}

.qb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  backdrop-filter: brightness(0.9);
  transition: backdrop-filter 0.3s ease;
}

.qb-item:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}

.qb-overlay h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.qb-btn {
  background: #dda0dd;
  color: #111;
  border: none;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.qb-btn:hover {
  background: #fff;
  color: #111;
  transform: translateY(-2px);
}


.contact-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
  margin: 2rem 1rem;
  align-items: start;
  gap: 30px;
}
.contact-img{
  width: 100%;
  background: rgb(54, 52, 52);
  max-height: 400px;
  border-radius: var(--radius);
}
.right-contact {
  width: 100%;
  background: rgb(54, 52, 52);
  max-height: 400px;
  border-radius: var(--radius);
}
.contact-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}
.right-contact h3 {
  margin: 1rem;
  align-content: center;
  font-size: 1.75rem;
  color: white;
}
.right-contact form{
  display: flex;
  flex-direction: column;
  gap: 1rem;

}
.right-contact label{
  font-weight: 600;
  color: white;
  padding-left: 2rem;
}
.right-contact input,
.right-contact textarea {
  padding: 0.75rem 1rem;
  margin-left: 1rem;
  border: 1px solid white;
  width: 70%;
  border-radius: 999px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  background-color: rgb(54, 52, 52);
}
.right-contact input:focus,
.right-contact textarea:focus {
  outline: none;
  border-color: #dda0dd;

}
.ctf-button{
  padding: 0.75rem 1.5rem;
  margin-left: 2rem;
  border: none;
  border-radius: var(--radius);
  background-color: #dda0dd;
  color: white;
  width: 150px;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.main-footer{
  background: #222;
  padding: 2rem 1rem;
  color: #eee;
  align-items: center;
}
.main-footer a{
  color: white;
  justify-content: center;
  text-decoration: none;
}
.footer-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 0 auto;
}

.first-footer{
  justify-items: center;
  background-color: rgba(54, 52, 52, 0.8);
  padding: 40px 0;
  border-radius: 10px;
}
.social-icons{
  margin-top: 1.2rem;

}
.social-icons a{
  font-size: 24px;
  color: #eee;
  margin: 0 1rem;
  transition: color 0.3s ease; 
}
.social-icons a:hover{
  color: #dda0dd;
}
.second-footer{
  justify-items: center;
  background-color: rgba(54, 52, 52, 0.8);
  padding: 40px 0;
  border-radius: 10px;
}
.second-footer h4{
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  text-align: center;
}
.second-footer ul{
  list-style: none;
}
.second-footer li{
  padding: 0.8rem 0.8rem;
}
.third-footer{
  justify-items: center;
  background-color: rgba(54, 52, 52, 0.8);
  padding: 40px 0;
  border-radius: 10px;
}
.third-footer li{
  list-style: none;
  padding: 0.8rem 0.8rem;
}
.fourth-footer{
  justify-items: center;
  background-color: rgba(54, 52, 52, 0.8);
  padding: 40px 0;
  border-radius: 10px;
}
.fourth-footer li{
  justify-items:center ;
  padding: 0.8rem 0rem;
  list-style: none;
  

}
.fifth-footer{
  justify-self: center;
  margin-top: 1.2rem;
  background-color: rgba(54, 52, 52, 0.8);
  color: antiquewhite;
  border-radius: 0.65rem;
  padding: 1rem 1rem;
  
}



.shop-button{
  cursor: pointer;
  background-color: #dda0dd;
  border: none;
  border-radius: 10px;
  padding: 5px 5px;
  margin-right: 50px 50px;

}



.subscribe {
  width: 80%;
  margin: 0.8rem auto;
  text-align: center;
  align-items: center;
  background-color: white;
  border: none;
  border-radius: 10px;
  color: black;

}
.subscribe input {
  margin: 0.8rem 0;
  padding: 0.8rem 1rem;
  width: 200px;
  max-width: 70%;
  border: 1px solid rgb(10, 10, 10);
  border-radius: 99px;
}
.subscribe button {
  margin-bottom: 0.8rem;
  padding: 0.8rem 0.8rem;
  width: 100px;
  border: none;
  border-radius: 99px;
  background-color: black;
  color: white;
  cursor: pointer;

}
#email-input.error{
  border: 2px solid red;
}

/*contact us page*/
.contact-page{
  background-color: #222;
  margin: 50px 50px;
  height: 40vh;
  text-align: center;
  padding-top: 40px;
  
}
.contact-page p{
  margin: 20px;  
}
.contact-page h2{
  font-size: 40px;
}


@media(max-width: 1090px){

.gallery-container{
  grid-template-columns: 1fr;
  justify-items: center;
  padding: 1rem 1rem;
}

 .left-gallery, .intro-para{
  margin: 0 auto;
  width: 90%;
  padding: 1rem;
}
.capture-cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;

}
.capture-card:nth-child(1){
  grid-column: 1;
  grid-row: 1;
}
.capture-card:nth-child(2){
  grid-column: 2;
  grid-row: 1;
}
.capture-card:nth-child(3){
  grid-column: 1/ span 2;
  grid-row: 2;
  justify-self: center;
  width: 60%;  
}
}



@media(max-width: 768px){
  
  header{
    display: grid;
    grid-template-columns: auto 1fr auto;
    position: sticky;
    flex-wrap: wrap;
    justify-content: center;

  }
  .header-left{
    margin-right: auto;
    
  } 
.menu-toggle{
    display: block ;
    border: none;
    position: relative;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    
  }
  .nav-links{
    background-color: rgba(54, 52, 52, 0.8);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    overflow: hidden;
    max-height: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: max-height 0.3s ease;
    gap: 0;
  }
  .nav-links.open {
    max-height: 500px;
  }
  .nav-links ul{
    list-style: none;
    margin: 0;
    padding: 12x 16px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .nav-links a{
    display: block;
    text-decoration: none;
    z-index: 1100;
    padding: 0.7rem 1rem;
    justify-items: center;
    justify-self: center;
    justify-content: center;
    border-radius: 9px;
  }
  .dropdown{
    position: static;
    margin-left: 0.7rem;
  }
  .dropdown-content{
    display: none;
    position: static;
    width: 100%;
    left: 0;
    height: 150px;
    text-align: center;
    margin: 0;
    padding: 0;

}
.dropdown-content ul{
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}
.dropdown-content a{
  padding: 0;
  margin: 0.2rem 0;
  text-decoration: underline;
}
.dropdown-content.open{
  display: block;
}
.submenu-wrapper{
    display: flex;
    align-items: center;
    width: 100%;
  }
  .submenu-toggle{
    display: inline-block;
    font-size: 2rem;
  }
.header-right{
    order: 2;
    justify-content: flex-start;
    margin-left: auto; 
  }
  .header-right button{
    padding-right: 2rem;
  }
  .mobile-menu-wrapper{
    order: 3;
  }
  .intro{
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.5rem;
  }
  .intro-left{
    margin: 0 auto;
    border: 1px solid #dda0dd;
    padding-bottom: 2rem;
    }
  .intro-left h1{
    font-size: 2rem;
  } 
  .intro-left p{
    font-size: 1rem;
    margin-bottom: 1.5rem;
  } 
  .intro-button{
    display: block;
    width: auto;
    max-width: 90%;
    margin: 0.5rem auto;
    text-align: center;
    
}
.left-gallery{
  margin: 1rem 1rem;
  width: 100%;
  padding: 1rem 1rem;
}
.gallery{
  margin-right: 0;
  margin-left: 0;
  gap: 0.75rem;
}
.intro-para{
  margin: 1rem 1rem;
  width: 100%;
  padding: 1rem;
  height: 400px;
}
.intro-para h2{
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}
.intro-para p{
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.capture-cards{
  width: 100%;
  margin: 1rem 1rem;
  grid-template-columns: 1fr;
  justify-items: center;
  padding: 1rem 1rem;
}
.capture-card:nth-child(1){
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  width: 80%;
}
.capture-card:nth-child(2){
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
  width: 80%;
}
.capture-card:nth-child(3){
  grid-column: 1;
  grid-row: 3;
  justify-self: center;
  width: 80%;
}

.capture{
  padding: 2.2rem 1rem;
  max-width: 100%;
  margin: 1rem 1rem;
  border-radius: var(--radius);
}
.capture-card{
  height: 150px;
}
.sc-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 2);
  
}
.contact-container{
  display: grid;
  grid-template-columns: 1fr;
  max-width: 100%;
}
.footer-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.quick-buy {
    flex-direction: column;
  }
  .qb-item {
    min-height: 300px;
  }
  .qb-left {
   margin: 1rem 1rem;
   border-radius: var(--radius);
}

.qb-right {
  margin: 1rem 1rem;
  border-radius: var(--radius);
}
.qb-overlay{
  border-radius: var(--radius);
}
.contact-img{
  
}
.right-contact {
  
}

}

@media(max-width: 480px) {
  .menu-toggle{
    margin: 0 auto;
  }
  .mobile-menu-wrapper{
    margin-left: auto;
  }
  
  .bts{
    padding-right: 2rem;
  }
  .header-right button{
    display: none;
  }
  .intro{
    padding: 1.5rem 1rem;
  }
  .intro-left{
  width: 100%;
  justify-content: center;
  align-items: center;
  z-index: 1;
  background-color: transparent;
  margin: 50px 0;
  border: none; 
}
  .intro-left h1{
    line-height: 1.6;
    font-size: 1.7rem;
  }
  .intro-left p{
    line-height: 1.6;
    font-size: 0.8rem;
  }
  .intro-button{
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    margin: 0.5rem auto;
    width: auto;
  }
  .gallery-container{
    padding: 0.5rem 0.5rem;
  }
  .gallery{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-left: 0;
  }
  .gallery img{
    height: 180px;
  }
  .gallery img:nth-child(n+7){
    display: none;
  }
  .intro-para{
    padding: 0;
  }
  .intro-para h2{
    font-size: 1rem;
    margin: 0 ;
  }
  .intro-para p{
    font-size: 1rem;
    line-height: 1.6;

  }
  .capture-cards{
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: stretch;
  
  }
  .capture{
    padding: 0.5rem 0.5rem;
    max-width: 100%;
    margin: 1rem 1rem;
    border-radius: var(--radius);
  }
  .capture-card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    margin: 0 20px;
  }
  .capture h2{
    font-size: 1.5rem;
    margin-top: 0.7rem;
  }
  .capture p{
    line-height: 1.6;
    font-size: 0.9rem;
  }
  .capture-card{
    padding: 1rem;
  }
  .card-icon{
    width: 30px;
    height: 30px;
  }
  .sc-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 1);
  
}
  .footer-grid{
    display: grid;
    grid-template-columns: 1fr;
  }
  .sc-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 1);
  
}

}



