/* --- Reset --- */
* { 
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box; 
    padding: 0px;
    margin: 0px;
 }
 
 html, body { 
    height: 100%; 
    width: 100%; 
 }
 
 body {
    font-family: 'Oswald', sans-serif;
   font-weight: 300;
   background-color: #fec72f;
   color: black;
 }
 
 ::-webkit-input-placeholder, :-moz-placeholder, ::-moz-placeholder, :-ms-input-placeholder { 
   color:    #999;
   font-family: 'Oswald', sans-serif;
   font-weight: 300;
 }
 
 p {
   font-size: 18px;
 }
 
 a:hover, input, textarea, select, button {
   -o-transition:.5s;
   -ms-transition:.5s;
   -moz-transition:.5s;
   -webkit-transition:.5s;
   transition:.5s;
   appearance: none;
    -webkit-appearance: none;
    font-family: 'Oswald', sans-serif;
 }
 
 /* --- Main styles --- */
 .inner {
     max-width: 1400px;
     width: 100%;
     display: block;
     margin: 0 auto;
 }
 
 .main {
     padding: 30px 0;
 }
 
 .main h1 {
     font-size: 50px;
     font-weight: bold;
 }

 .chocolate-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chocolate-details {
    width: 45%;
    padding: 20px;
    text-align: center;
}

img {
    max-width: 100%;
    max-width: 400px;
}

h1 {
    font-size: 24px;
}

.btn-visit-full-site {
    color: #000;
    margin-top: 20px;
    display: block;
}

.disclaimer, .allergens-disclaimer {
    font-size: 14px;
    margin-top: 10px;
    background: black;
    padding: 10px;
    border-radius: 10px;
    color: white;
    margin-top: 20px;
}

.checkout {
    width: 50%;
    padding: 50px;
}

.stock {
    margin-top: 20px;
    margin-bottom: 20px;
    color: #333333;
    font-weight: bold;
    font-size: 24px;
}

/* Style for the footer */
footer {
    background-color: #000; /* Yellow background color */
    padding: 20px 0;
    color: #fff;
  }

  footer .cols {
    display: flex;
    gap: 20px;
  }

  footer .col {
    flex: 1;
  }
  
  footer h5 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #adadad;
  }

  footer a {
    color: white;
  }

  .return {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
 
 /* --- Mobile styles --- */
@media only screen and (max-width: 800px) {
    body {
        font-size: 16px; /* Reduce font size for better readability on small screens */
    }
    
    .main h1 {
        font-size: 36px; /* Reduce header font size for mobile */
    }
    
    .chocolate-section {
        flex-direction: column; /* Stack sections vertically on small screens */
        text-align: center; /* Center-align content on small screens */
    }
    
    .chocolate-details {
        width: 100%; /* Full width for chocolate details on mobile */
    }
    
    img {
        max-width: 100%; /* Ensure images don't overflow on small screens */
    }
    
    .btn-visit-full-site {
        font-size: 14px; /* Reduce button text size for mobile */
    }
    
    .disclaimer, .allergens-disclaimer {
        font-size: 12px; /* Reduce disclaimer text size for mobile */
        padding: 5px; /* Smaller padding for disclaimers on mobile */
    }
    
    .checkout {
        width: 100%; /* Full width for checkout section on mobile */
    }

    footer .cols {
        flex-direction: column; /* Stack footer columns vertically on small screens */
    }
    
    footer h5 {
        font-size: 18px; /* Reduce footer heading font size for mobile */
    }
}
