@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --color-text: #2e323a;
    --color-main-background: #f8f9fa;
    --color-background: #edecead5;
    --color-main: rgb(216, 185, 6);
    --color-link: rgb(8, 8, 161);
  
    }
    
    *{
      font-family: "Poppins", sans-serif;
      margin:0;
      padding:0;
      outline: none;
      box-sizing: border-box;
      scroll-behavior: smooth;
      scroll-padding-top: 2rem;
      list-style: none;
      text-decoration: none;
    }

    html, body {
        height: 100%;
        margin: 0;
    }

    body {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
      }

    section{
      padding: 50px 10%;
    }

    header {
      position: fixed;
      width: 100%;
      top: 0;
      right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px 5px;
      background: var(--color-background);

    }

    .logo{
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--color-text);
      padding-right: 200px;
    }
    .logo span{
      color: var(--color-main);
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .navbar{
      position: relative;
      display: flex;
      justify-content: space-between;
    }
    .navbar a{
      font-size: 1rem;
      padding: 10px 20px;
      font-weight: 500;
      color: var(--color-text);
    }

    .navbar a:hover{
      color: var(--color-main);
    }
    #menu-icon{
      font-size: 2rem;
      cursor: pointer;
      display: none;
    }
  
    .home{
      width: 100%;
      min-height: 100vh;
      background-image: url(b-background.png);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      right: 100px;
      background-attachment: fixed;
      display: flex;
      align-items: center;
    }
    .home-text {
      text-align: left;
      max-width: 800px;
  }
    .home-text h1{
      font-size: 2.7rem;
    }
    .home-text p{
      font-size: 1rem;
      margin:  10px 0 20px;
    }
    .home-text span a{
      color: var(--color-main);
    }
    .btn{
      padding: 10px 14px;
      background: var(--color-main);
      color: var(--color-main-background);
      border-radius: 0.3rem;
      font-size: 14px;
    }
    .btn:hover{
      background-color: var(--color-text);
      color: var(--color-main);
    }

    .slider {
      position: relative;
      width: 80%;
      max-width: 800px;
      height: 165px;
      margin: 20px auto 0;
      overflow: hidden;
  }
  
  .slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
      width: 200%;
  }
  
  .slides .slide {
      min-width: 50%; 
  }
  
  .slides img {
      width: 100%;
      height: auto;
  }

    .shop {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .sec-h{
      width: 100%;
      text-align: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
      font-weight: 300;
      color: var(--color-text);
    }

    .product-card {
      width: calc(33.333% - 20px);
      display: flex;
      flex-direction: column;
      border: 1px solid var(--color-text);
      border-radius: 10px;
      padding: 20px;
      background-color: var(--color-main-background);
      height: 430px;
      overflow: hidden;
    }

    .product-card:hover {
      box-shadow: 0 0 10px rgba(48, 39, 1, 0.452);
  }

    .product-details {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
  
    .product-image {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 10px;
      margin-right: 20px;
    }

    .product-info {
      display: flex;
      flex-direction: column;
      flex: 1;
    }
  
    .product-title {
      font-size: 1.3rem;
      font-weight: bold;
    }
  
    .product-price {
      font-size: 1.2rem;
      font-weight: bold;
      color: var(--color-main);
      margin: 5px 0;
    }

    .variant-dropdown-wrapper {
      position: relative;
      width: 70%;
    }

    .variant-dropdown {
      width: 100%;
      padding: 10px;
      border: 1px solid var(--color-text);
      border-radius: 5px;
      margin-bottom: 10px;
      background-color: var(--color-background);
      appearance: none;
      padding-right: 30px;
    }

    .variant-dropdown-wrapper::after {
      content: '▼';
      font-size: 12px;
      color: var(--color-text);
      position: absolute;
      right: 15px;
      top: 40%;
      transform: translateY(-50%);
  }
  
    .product-description {
      font-size: 0.9rem;
      margin: 10px 0;
      height: 190px;
      overflow-y: auto;
    }
  
    .contact-btn {
      padding: 10px 14px;
      background: var(--color-main);
      color: var(--color-main-background);
      border-radius: 0.3rem;
      font-size: 14px;
      text-align: center;
      width: 50%;
      display: inline-block;
      margin-top: auto;
      margin-right: 220px;
      text-decoration: none;
    }

    .contact-btn:hover {
      background-color: var(--color-text);
      color: var(--color-main);
    }

.contact-us {
    background-color: var(--color-main-background);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 10%;
  }
  
.contact-container {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: flex-start;
      width: 100%;
  }
  
  .contact-t {
      margin-right: 20px;
      margin-top: 50px;
      text-align: center;
  }
  
  .contact-t h2 {
      font-size: 1.8rem;
      margin-bottom: 20px;
  }
  
  .contact-t p {
      font-size: 1rem;
      padding: 0 100px;
      margin-bottom: 200px;
  }
  
  .contact-info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
  }

  .contact-info p {
    font-size: 1rem;
    margin-bottom: 10px;
    padding: 0 0px;
    text-align: left;
}
  
  .contact-item {
      display: flex;
      padding-left: 100px;
      padding-bottom: 10px;
      align-items: flex-start;
      font-size: 1rem;
  }
  
  .contact-item i {
      font-size: 1.5rem;
      color: var(--color-main);
      margin-right: 10px;
  }
  
  .contact-form {
      background: var(--color-background);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 600px;
  }
  
  .form-group {
      margin-bottom: 30px;
  }
  
  .form-group label {
      display: block;
      font-size: 1rem;
      margin-bottom: 5px;
  }
  
  .form-group input,
  .form-group textarea {
      width: 100%;
      padding: 15px;
      border: 1px solid var(--color-text);
      border-radius: 5px;
      background-color: var(--color-main-background);
  }
  
  .form-group textarea {
      resize: vertical;
  }
  
  .submit-btn {
      display: block;
      width: 100%;
      padding: 10px;
      background-color: var(--color-main);
      color: var(--color-main-background);
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      cursor: pointer;
  }
  
  .submit-btn:hover {
      background-color: var(--color-text);
      color: var(--color-main);
  }
  
  /* .about-us {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
  } */
  /* .about-img img{
    width: 80%;
    opacity: .5;
    border-radius: 100px;
    object-fit: contain;
  }
  .about-text span{
    font-size: 18px;
    font-weight: 500;
    color:var(--color-main);
  }
  .about-text h2{
    margin: 2rem 0 1.4rem;
  }
  .about-text p{
    font-size: 1rem;
    margin: 2rem 0 1.4rem;
  } */

  .about-us {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-img {
    flex: .5 1 300px;
}

.about-img img {
    width: 90%;
    opacity: .5;
    border-radius: 50px;
    object-fit: contain;
    height: 60%;
}

.about-text {
    flex: 1 1 400px;
    max-width: 600px;
}

.about-text span {
    font-size: 0.9rem;
    color: var(--color-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px 0;
    color: var(--color-text);
}

.about-text p {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 20px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--color-main-background);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2rem;
    color: var(--color-main);
    margin-bottom: 10px;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--color-text);
}

footer {
  background-color: var(--color-background);
  padding: 40px 10%;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 80px;
  height: auto;
}

.footer-logo p {
  font-size: 1rem;
  color: var(--color-text);
}

.footer-contact,
.footer-terms {
  flex: 1;
}

.footer-contact h3,
.footer-terms h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--color-text);
}

.footer-contact p,
.footer-terms p,
.footer-terms a {
  font-size: 0.9rem;
  color: var(--color-text);
}

.footer-terms ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
}

.footer-terms a:hover {
  color: var(--color-main);
}

#policy-title {
  margin-top: 90px;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

#policy-intro {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.policy-block {
  margin-bottom: 25px;
}

.policy-block h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.policy-block p strong {
  font-size: 15px;
  font-weight: 600;
}

.policy-block p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.policy-block ul {
  padding-left: 20px;
  margin: 10px 0;
}

.policy-block ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  line-height: 1.6;
}

.policy-block ol {
  padding-left: 20px;
  margin: 10px 0;
}

.policy-block ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.policy-block li strong {
  font-weight: 600;
}

#privacy-title {
  margin-top: 90px;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

#privacy-intro {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.privacy-block {
  margin-bottom: 25px;
}

.privacy-block h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.privacy-block p strong {
  font-size: 15px;
  font-weight: 600;
}

.privacy-block p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.privacy-block ul {
  padding-left: 20px;
  margin: 10px 0;
}

.privacy-block ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  line-height: 1.6;
}

.privacy-block ol {
  padding-left: 20px;
  margin: 10px 0;
}

.privacy-block ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.privacy-block li strong {
  font-weight: 600;
}

#legal-title {
  margin-top: 90px;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

#legal-intro {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.legal-block {
  margin-bottom: 25px;
}

.legal-block h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.legal-block p strong {
  font-size: 15px;
  font-weight: 600;
}

.legal-block p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.legal-block ul {
  padding-left: 20px;
  margin: 10px 0;
}

.legal-block ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-block ol {
  padding-left: 20px;
  margin: 10px 0;
}

.legal-block ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.legal-block li strong {
  font-weight: 600;
}

.terms {
  flex: 1;
  padding-top: var(--header-height);
}

#terms-title {
  margin-top: 90px;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

#terms-intro {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.terms-block {
  margin-bottom: 25px;
}

.terms-block h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.terms-block p strong {
  font-size: 15px;
  font-weight: 600;
}

.terms-block p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.terms-block ul {
  padding-left: 20px;
  margin: 10px 0;
}

.terms-block ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  line-height: 1.6;
}

.terms-block ol {
  padding-left: 20px;
  margin: 10px 0;
}

.terms-block ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.terms-block li strong {
  font-weight: 600;
}

.message {
  flex: 1;
  padding-top: var(--header-height);
}

#message-title {
  margin-top: 90px;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

#message-intro {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.message-block {
  margin-bottom: 25px;
}

.message-block h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.message-block p strong {
  font-size: 15px;
  font-weight: 600;
}

.message-block p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.message-block ul {
  padding-left: 20px;
  margin: 10px 0;
}

.message-block ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  line-height: 1.6;
}

.message-block ol {
  padding-left: 20px;
  margin: 10px 0;
}

.message-block ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.message-block li strong {
  font-weight: 600;
}

.message-note {
  font-size: 12px;  
  margin-top: 8px;
  font-style: italic;
}

.form-group.checkbox {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.form-group.checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
}

.form-group.checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #4CAF50;
  margin-top: 3px;
}

.form-group.checkbox a {
  color: #4CAF50;
  text-decoration: underline;
}




@media screen and (max-width: 1351px) {

.shop {
  gap: 10px;
}
.product-card {
  width: calc(50% - 20px);
}
.contact-us {
  padding: 30px 5%;
}
.contact-t p {
  padding: 0 0px;
}
.contact-item {
    padding-left: 30px;
}
.about-img img {
  width: 100%;
  height: 100vh;
  object-fit: none;
}
}

@media screen and (max-width: 991px) {
header {
  padding: 15px 3%;
}
section{
  padding: 50px 4%;
}
}

@media screen and (max-width: 915px) {

  header {
    padding: 15px 2%;
  }
  section{
    padding: 45px 3%;
  }

  .product-card {
    width: calc(51% -  15px);
  }
  .about-us {
    flex-direction: column;
}

.about-img {
    display: none;
}

.about-text {
    max-width: 100%;
}

.about-text h2 {
    font-size: 1.3rem;
}

.about-text p {
    font-size: 0.9rem;
}

.slider {
  position: absolute;
  height: 555px;
}

}

@media screen and (max-width: 900px) {
  header {
    padding: 15px 3%;
  }

  .logo{
    font-size: 1.3rem;
  }
  .navbar a{
    font-size: 1rem;
    padding: 5px 20px;
  }
  .product-card {
    width: calc(50% -  5px);
  }

  .variant-dropdown-wrapper {
    width: 75%;
  }
}

@media screen and (max-width: 879px) {
  header {
    justify-content: space-between;
    padding: 11px 4%;
}

  header .navbar {
    display: flex;
    flex-direction: column;
    background: var(--color-main-background);
    box-shadow: 0 4px 4px rgb(0 0 0 /10%);
    position: absolute;
    top: -500px;
    right: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.navbar a {
    padding: 1.5rem;
    display: block;
    text-align: center;
}

.navbar.active{
  top:100%;
}
.navbar a:hover{
  background:var(--color-main);
  color: var(--color-text);
}

#menu-icon {
    display: initial;
}
  .product-card {
    width: calc(50% -  5px);
  }

  .variant-dropdown-wrapper {
    width: 80%;
  }
  .contact-btn {
    width: 100%;
  }
  .sec-h{
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 300;
    color: var(--color-text);
  }

}

@media (max-width: 768px) {
    .product-card {
      width: calc(50% - 20px);
  }

  .about-us {
      flex-direction: column;
  }

  .feature-item {
      flex: 1 1 100%;
  }
  }

  @media (min-width: 768px) {
  .footer-terms ul {
    grid-template-columns: 1fr 1fr;  /* 2 columns */
  }
}

  @media (max-width: 690px) {
  section{
    padding: 40px 10%;
  }

  .home-text h1 {
      font-size: 2rem;
  }

  .sec-h {
    font-size: 1rem ;
  }

  .shop {
      flex-direction: column;
  }

  .product-card {
      width: 100%;
  }

  .product-card img {
      width: 20%;
      height: 100px;
  }

  .product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-main);
    margin: 5px 0;
  }

  .product-details h3 {
      font-size: 0.8rem;
  }

  .product-details span {
      font-size: 0.8rem;
  }

  .contact-container {
      flex-direction: column;
      align-items: center;
  }

  .contact-t {
      width: 355px;
      margin-bottom: -154px;
  }

  .contact-t h2 {
      font-size: 1.5rem;
  }

  .contact-t p {
      font-size: 1rem;
  }

  .contact-info {
      display: none;
  }

  .contact-form {
      max-width: 100%;
  }

  .about-us {
      flex-direction: column;
  }

  .about-img {
      display: none;
  }

  .about-text {
      max-width: 100%;
  }

  .about-text h2 {
      font-size: 1.5rem;
  }

  .about-text p {
      font-size: 0.9rem;
  }

  .footer-content {
      flex-direction: column;
  }

  .footer-contact h3,
  .footer-terms h3 {
      font-size: 1rem;
  }

  .footer-contact p,
  .footer-terms p,
  .footer-terms a {
      font-size: 0.8rem;
  }
  .slider {
    position: absolute;
    width: 80%;
    max-width: 800px;
    height: 400px;
    margin: 20px auto 0;
    overflow: hidden;
}
}