@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Ephesis&family=Great+Vibes&family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&family=Tangerine:wght@400;700&display=swap');

*{
    font-family: "Montserrat", sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
  }

  body {
    background-color: #FFFBF2;  
  }



  .header {
    position: fixed; 
    top: 0;          
    left: 0;       
    width: 100%;    
    background-color: #FFFBF2;
    z-index: 10;    
    transition: background-color 0.4s ease-in-out, opacity 0.4s ease-in-out, color 0.4s ease-in-out;
  }
  
  
  .logo-image {
    height: 30px; 
    width: auto;
  }
  
  
  .header ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
   padding: 10px;
  }
  
  .header li {
    height: 50px;
    font-size: 16px;
    font-weight: 500;
  }
  
  .header a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #2F3247;
    transition: color 0.4s ease-in-out;
  }
  
  .header a:hover {
    border-bottom: 3px solid #262E19;
    color: #262E19;
  }
  
  .header li:first-child {
    margin-right: auto;
  }
  
  
  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: #FFFBF2;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
  }
  
  nav .sidebar {
    align-items: flex-start;
    justify-content: flex-start;
    display: none;
  }
  
  .sidebar li {
    width: 100%;
  }
  
  .sidebar a {
    width: 100%;
    padding: 10px 15px;
    text-decoration: none;
    color: #2F3247;
  }
  
  .sidebar a:hover {
    background-color: #262E19;
    color: #FFFBF2;
  }
  
  
  .menu-button {
    display: none;
  }
  
  @media (max-width: 1000px) {
    .hideOnMobile {
      display: none;
    }
    .menu-button { 
      display: block;
    }
  }
  
  @media (max-width: 400px) {
    .sidebar {
      width: 100%;
    }
  }

.main-cart{
  display: flex;
  justify-content: space-between;
  max-width: 70%;
  margin: auto;
  margin-top: 200px;
  padding-bottom: 80px;
  
}

.my-cart{
  flex: 1;
  margin-top: -18px;
}

.details-section {
  width: 35%;
  padding: 20px;
  border: 1px solid #262E19;
  margin: 20px;
}

.subtotal, .vat, .total {
  font-weight: 700;
  font-size: 16px;
  margin: 10px 20px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.subtotal span, .vat span, .total span {
  font-weight: 500;
}

.shipping-dets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 20px;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shipping {
  font-size: 16px;
  margin-top: 10px;
  padding-bottom: 10px;
}

hr {
  border: none;
  height: 1px;
  background-color: #262E19;
  width: 100%;
  margin: 10px 0;
}


input[type="radio"] {
  appearance: none; 
  width: 16px;
  height: 16px;
  border: 2px solid #262E19; 
  border-radius: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

input[type="radio"]:checked {
  border-color: #262E19;
}

input[type="radio"]::before {
  content: "";
  width: 8px; 
  height: 8px;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.2s ease;
}

input[type="radio"]:checked::before {
  background-color: #262E19; 
}





.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #262E19;
  padding: 10px 20px;
  margin-bottom: 10px; 
  max-width: 98%;
}

.cart-item img {
  width: 60px;
  height: auto;
  margin-right: 20px;  
}

.cart-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-price {
  font-weight: bold;
  white-space: nowrap;  
  min-width: 80px;      
}

.amt-box {
  width: 80px;
  height: 40px;  
  text-align: center;
  border: 1.5px solid #262E19;
  font-size: 20px;
  background-color: #FFFBF2;
  margin: 0 20px;  
  box-sizing: border-box;
}

.delete-btn {
  background-color: #FFFBF2;
  border: none;  
  cursor: pointer;
  padding: 5px;  
}

.delete-btn img {
  width: 20px;
  height: auto;
  margin-right: 0;
}


.checkout-button {
  display: block;
  width: 100%;
  padding: 25px;
  background: #262E19;
  color: #ffffff;
  text-align: center;
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
  border: none;
  margin-top: 20px;
  cursor: pointer;
}

.checkout-button::after {
  content: "";
  display: block; 
  width: 45%;
  height: 1px;
  background-color: #ffffff;
  margin: 5px auto 0; 
}

.checkout-button:hover::after {
  background-color: #262E19; 
}

.checkout-button:hover {
  background-color: #FFFBF2;
  color: #262E19;
  border: 1px solid #262E19;
  order: 1; 
}

.my-bag {
  font-weight: 400;
  font-size: 24px;  
  margin-top: 20px;
}
.name {
  font-weight: 400;
  font-size: 15px;
  padding-bottom: 5px;
}

.cart-price {
  font-weight: 500;
  font-size: 16px;
  min-width: 100px;  
}


.delete-btn {
  background-color: #FFFBF2;
  border: #FFFBF2; 
  cursor: pointer;
  margin-left: 30px;

}

.delete-btn img {
  max-width: 20px;
  height: auto;
  margin-right: 0;
}

.progress-container {
  width: 70%;
  margin: 100px auto 20px;
  text-align: center;
  margin-bottom: -150px;
}

.progress-text {
  font-weight: 600;
  color: #2d331c;
  margin-bottom: 8px;
}

.progress-wrapper {
  display: flex;
  align-items: center; 
  gap: 10px; 
}

.progress-bar {
  flex: 1; 
  height: 5px;
  background-color: #ddd;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  width: 100%;
  height: 100%;
  background-color: #2d331c;
}

.progress-percent {
  font-weight: bold;
  font-size: 20px;
  color: #2d331c;
  white-space: nowrap; 
}

.page-header{
  font-size: 20px;
  padding-bottom: 50px;
}




@media screen and (max-width: 1024px) {
  .main-cart {
    flex-direction: column;
    align-items: center;
    max-width: 90%;
    margin-top: 200px;
  }

  .details-section {
    width: 100%;
    margin: 20px 0;
  }
}


 

@media screen and (max-width: 648px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .page-header {
    font-size: 10px
  }

   .cart-price {
    font-size: 18px;
    margin: auto;
    padding-top: 20px;
    
  }

  .cart-item img {
    width: 100%;
    margin-bottom: 20px;
    margin: auto;
    margin: 0;
  }

  
  .delete-btn{
    margin: auto;
  }


  .cart-details {
    width: 100%;
  }

  .cart-details p {
    margin: auto;
    padding-top: 20px;
  }

  .amt-box {
    width: 50%;
    height: 35px;
    font-size: 16px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .checkout-button {
    padding: 18px;
    font-size: 13px;
  }
}


 /* cart end */



  
/* questions start */

.questions {
    position: relative;
    width: 94%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
    margin-top: 50px;
    margin: auto;
  
  }
  
  .questions-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    
  }
  
  .questions .content {
    position: relative;
    color: #FFFBF2;
    font-family: 'Literata', serif;
    margin-left: 300px;
    max-width: 600px;
  }
  
  .questions .content h1 {
    font-size: 95px;
    font-weight: 200;
  }
  
  .questions .content h1 span {
    font-family: 'Great Vibes', cursive;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 7px;
  }
  
  .questions .content p {
    width: 100%;
    padding-bottom: 15px;
    line-height: 1.5;
    font-weight: 600;
    padding-bottom: 50px;
  }
  
  .btn {
    background-color: white;
    color: #181616;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    padding: 12px 20px;
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: #262E19;
    color: #FFFBF2;
  }
  
  @media screen and (max-width: 1100px) {
    .questions {
      height: auto;
      justify-content: center;
      text-align: center;
    }
  
    .questions .content {
      margin-left: 0;
      text-align: center;
    }
  
    .questions .content h1 {
      font-size: 60px;
    }
  
    .questions .content p {
      font-size: 12px;
      padding: 0 50px;
    }
  
    .btn {
      padding: 8px 12px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .questions {
      height: auto;
      height: 80vh;
    }
  
    .questions .content {
      text-align: center;
    }
  
    .questions .content h1 {
      font-size: 50px;
    }
  
    .questions .content p {
      font-size: 12px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .questions .content h1 {
      font-size: 40px;
    }
    .questions {
      height: auto;
      height: 80vh;
    }
  
    .questions .content p {
      padding-bottom: 20px;
    }
  }
  
  /* questions end */
  .map{
    width: 100%;
    height: 60vh;
    object-fit: cover;
    zoom: 100%;
    margin: auto;
    margin-bottom: -50px;
    
  }
  
  .contact-us {
    width: 60%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 75vh; 
    margin-top: 80px;
    
    margin-bottom: 50px;
  }
  
  .cs-background h2  {
    color: #262E19;
    font-family: 'Literata', serif;
    font-size: 95px;
    font-weight: 300;
    text-align: center;
  
  }
  
  .cs-background h2 span {
    color: #262E19;
    font-size: 95px;
    text-align: center;
    font-family: 'Great Vibes', cursive;
    
  }
  
  .cs-background h3 {
    font-size: 18px;
    text-align: center;
    padding-top: 0px;
  }
  
  .cs-tex {
    font-size: 14px;
    text-align: center;
  }
  
  .cs-form {
    width: 100%;
    max-width: 1200px; 
    height: auto;
    margin: 40px 0; 
  }
  
  .form {
    width: 100%;
    border: 2px solid #262E19;
    padding: 2rem;
    margin: 0.5rem 0;
    font-size: 1rem;
    background-color: #FFFBF2;
  }
  
  .Message {
    width: 100%;
    border: 2px solid #262E19;
    padding: 4rem;
    margin: 0.5rem 0;
    font-size: 1rem;
    background-color: #FFFBF2;
  }
  
  .cs-form form div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.8rem;
  }
  
  .cs-btn {
    display: block;
    width: 100%;
    padding: 35px;
    background: #262E19;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
    position: relative;
    border: #262E19;
  }
  
  .cs-btn::after {
    content: "";
    display: block;
    width: 45%;
    height: 1px;
    background-color: #ffffff;
    margin: 5px auto 0;
  }
  
  .cs-btn:hover {
    background-color: #FFFBF2;
    color: #262E19;
    border: 2px solid #262E19;
  }
  
  @media screen and (max-width: 1100px) {
    .contact-us  {
      width: 90%;
    
     }
  
     .contact-us h2 {
      font-size: 68px;
     }
   
     .cs-background h2 span {
       font-size: 68px;
      }
  }
  
  @media screen and (max-width: 768px) {
    .contact-us  {
      width: 90%;
    
     }
  
     .contact-us h2 {
      font-size: 68px;
     }
   
     .cs-background h2 span {
       font-size: 68px;
      }
  }
  
  @media screen and (max-width: 522px) {
  
    
  
    .contact-us h2 {
     font-size: 48px;
    }
  
    .cs-background h2 span {
      font-size: 48px;
     }

     .cs-tex {
      font-size: 12px;
      
    }
    .Message {
      
      padding: 1rem;
    
    }

    .contact-us {
      
      margin-top: 150px;
      height: 80vh;
      margin-bottom: 50px;
    }
  }


    @media screen and (max-width: 380px) {
  

  
      .contact-us {
      
        margin-top: 140px;
        
        margin-bottom: 80px;
      }


      .Message {
      
        padding: 1rem;
      
      }

      .form {
        
        padding: 1rem;
       
      }


  }



  .c-header h2 {
    position: relative;
    color: #262E19; ;
    font-family: 'Great Vibes', cursive;
    margin: auto;
    margin-bottom: 40px;
    font-size: 95px;
    font-weight: 300;
  }
  
 
  .c-header h2 span {
    
    font-family: 'Literata', serif;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 7px;
  }

  @media screen and (max-width: 768px) {
    .c-header h2 {
      font-size: 48PX;
    }
  }
  
  
  /* questions start */

.questions {
  position: relative;
  width: 94%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: left;
  text-align: left;
  margin-top: 50px;

}

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

.questions .content {
  position: relative;
  color: #FFFBF2;
  font-family: 'Literata', serif;
  margin-left: 300px;
  max-width: 600px;
}

.questions .content h1 {
  font-size: 95px;
  font-weight: 200;
}

.questions .content h1 span {
  font-family: 'Great Vibes', cursive;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 7px;
}

.questions .content p {
  width: 100%;
  padding-bottom: 15px;
  line-height: 1.5;
  font-weight: 600;
  padding-bottom: 50px;
}

.btn {
  background-color: white;
  color: #181616;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  padding: 12px 20px;
  cursor: pointer;
}

.btn:hover {
  background-color: #262E19;
  color: #FFFBF2;
}

@media screen and (max-width: 1100px) {
  .questions {
    height: auto;
    justify-content: center;
    text-align: center;
    height: 80vh;
  }

  .questions .content {
    margin-left: 0;
    text-align: center;
  }

  .questions .content h1 {
    font-size: 60px;
  }

  .questions .content p {
    font-size: 12px;
    padding: 0 50px;
    padding-bottom: 20px;
  }

  .btn {
    padding: 8px 12px;
  }
}

@media screen and (max-width: 768px) {
  .questions {
    height: auto;
    height: 80vh;
  }

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

  .questions .content h1 {
    font-size: 50px;
  }

  .questions .content p {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .questions .content h1 {
    font-size: 40px;
  }
  .questions {
    height: auto;
    height: 80vh;
  }

  .questions .content p {
    padding-bottom: 20px;
  }
}

/* questions end */

.footer .footer-container {
  background-color: #262E19;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  margin-top: 50px;
}

.footer-row {
  width: 90%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-colum {
  flex: 1;
  max-width: 25%;
  min-width: 200px;
  padding: 10px;
}

.footer-colum img {
  max-width: 80%;
}

.footer-colum p {
  color: #FFFBF2;
}

.footer-colum ul {
  list-style: none;
  padding: 0;
}

.footer-colum h4 {
  color: #FFFBF2;
  margin-bottom: 30px;
  font-size: x-large;
  font-weight: 300;
}

.footer-colum ul li {
  margin-bottom: 20px;
}

.footer-colum ul li a {
  padding: 10px 0;
  color: #A8ABAA;
  text-decoration: none;
  font-size: 16px;
}

.footer-colum ul li a:hover {
  color: #FFFBF2;
}

.footer-colum input {
  display: block;
  padding-left: 20px;
  margin: 14px 0;
  border: none;
  width: 100%;
  height: 45px;
}

.footer-colum .input-submit {
  padding: 0px 20px;
  background: #FFFBF2;
  border: none;
  color: #262E19;
  cursor: pointer;
}

.Copyright {
  height: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #A8ABAA;
  font-size: 14px;
}



@media only screen and (max-width: 1024px) {
  .footer-row {
    gap: 20px;
    justify-content: center;
  }

  .footer-colum {
    max-width: 100%;
    min-width: 100%;
    margin-bottom: 20px;
  }

  .footer-colum h4 {
    font-size: large;
    margin-bottom: 20px;
  }

  .footer-colum ul li a {
    font-size: 14px;
  }

  .footer-container {
    padding: 20px;
  }

  .Copyright {
    font-size: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .footer-row {
    gap: 10px;
    flex-direction: column; 
    justify-content: center;
  }

  .footer-colum {
    max-width: 100%;
    min-width: 100%;
    margin-bottom: 20px;
  }

  .footer-colum h4 {
    font-size: medium;
  }

  .footer-colum ul li a {
    font-size: 12px;
  }

  .footer-container {
    padding: 20px;
  }

  .Copyright {
    font-size: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .footer-row {
    gap: 10px;
    flex-direction: column; 
  }

  .footer-colum {
    padding: 10px;
    margin-bottom: 20px;
    max-width: 100%;
    min-width: 100%;
  }

  .footer-colum h4 {
    font-size: medium;
  }

  .footer-colum ul li a {
    font-size: 12px;
  }

  .footer-container {
    padding: 15px;
  }

  .Copyright {
    font-size: 10px;
  }
}
