/* all pages */
body {
    font-family: monaco, monospace;
    background-color: white;
    margin: 5px;
    padding: 0;
}
/* header nav settings */
html {
  scroll-padding-top: 50px;
}
header ul{
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}
header ul li a {
    text-decoration: none;  
    color: white;
}
header ul li a:hover {
    text-decoration: none;
    color: #5A5A5A;
}
.box {
    width: 100%;
    background: #8C8C8C;
    border-radius: 12px;
    border-bottom: 5px solid #5A5A5A;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 10px 0;
    position: sticky;
    top: 1px;
    z-index: 999;
}
.box-end {
    width: 100%;
    background: #8C8C8C;
    border-radius: 12px;
    border-top: 5px solid #5A5A5A;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 10px 0;
}
/* heading adjustments*/
h1{
	text-align: center;
}
h2{
	text-align: center;
    color: #7A451C;
}
.site-name{
    width: 100%;
    background: #B98A5F;
    border-radius: 15px;
    border-top: 5px solid #7A451C;
    border-bottom: 5px solid #7A451C;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 10px 0;
}
.bannerimage img{
    width: 100%; 
    height: auto; 
    border-radius: 
    10px;
}
/* slogan */
.highlight{
    text-align: center;
    font-size: 20px;
    color: white;
	background-color: #B98A5F;
    border-radius: 12px;
	border-left: 5px solid #7A451C;
    border-right: 5px solid #7A451C;
	padding: 10px;
}
#bannerimage {
    width: 100%;
}
/* why choose us section */
.why-links {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}
.why-links li {
    text-align: center;
}
.why-links a {
    text-decoration: none;
    color:#2F5A62;
}
.why-links a:hover {
    text-decoration: none;
    color: #8C8C8C;
}
dl dt {
  margin-bottom: 10px;
}
dd {
  margin-bottom: 10px;
}
.wrapper1 {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background:#B98A5F;
    border-radius: 10px;
    border-left: 5px solid #7A451C;
}
.wrapper2 {
    padding: 20px;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 20px;
    background: #6da8b4;
    border-radius: 10px;
    border-right: 5px solid #2F5A62;
}
.why-us {
    display: flex;
    flex-direction: column;
    max-width: 250px;
    flex-shrink: 0;
}
.why-us img {
    width: 100%;
    height: auto;

}
.wrapper dl {
    flex: 1; 
}
/* page end */
.main-end {
    text-align: center;
    font-size: 25px;
    padding-top: 20px;
}
.main-end a {
    text-decoration: none;  
    color: #5A5A5A;
}
.main-end a:hover {
    text-decoration: none;
    color: #8C8C8C;
}
/* product page */
.skin-intro {
    text-align: center;
    margin: 20px;
}
.product-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px;
}
.product{
    width: 225px;
    background-color: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin: 30px;
}
.product img{
    width: 100%;
    height: auto;
    display: block;
}
.product-text{
    padding: 16px;
}
.product-text h3{
    font-size: 28px;
    margin-bottom: 5px;
}
.product-text p{
    color: #666;
    font-size: 15px;
    line-height: 1.3;
}
/* product button */
.product-text .btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #B98A5F;
    color: #f0f0f0;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.2s;
}
.product-text .btn:hover {
    background-color: #caa06f;
}
.add-wrap input {
  display: none;
}
.add-wrap .add-btn {
  position: relative;
  cursor: pointer;
}
.add-wrap .add-btn::after {
  content: "Add to bag";
}
.add-wrap input:checked + .add-btn::after {
  content: "Added!";
}
/* contact page */
.contact {
    text-align: center;
}
/* contact form */
.contact-container{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}
.contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.contact-inputs{
    width: 400px;
    height: 50px;
    border: 2px solid #2F5A62;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #5A5A5A;
    border-radius: 10px;
}
.contact textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 10px;
}
.contact button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: white;
    gap: 10px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(270deg, #2F5A62, #6da8b4);
}
.contact button:hover{
    background: linear-gradient(270deg, #8C8C8C, #5A5A5A);
}
/* contact info */
.contact-info{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px;

}
.contact-card1{
    width: 325px;
    background-color: #2F5A62;
    border-radius: 12px;
    border-left: 8px solid #6da8b4;
    overflow: hidden;
    margin: 10px;
}
.contact-card2{
    width: 325px;
    background-color: #7A451C;
    border-radius: 12px;
    border-left: 8px solid #B98A5F;
    overflow: hidden;
    margin: 10px;
}
.contact-card3{
    width: 325px;
    background-color: #5A5A5A;
    border-radius: 12px;
    border-left: 8px solid #8C8C8C;
    overflow: hidden;
    margin: 10px;
}
.contact-card1 img, .contact-card2 img, .contact-card3 img{
    width: 100px;
    height: auto;
    justify-content: center;
}
.contact-info-text{
    padding: 16px;
}
.contact-info h4{
    font-size: 15px;
    margin-bottom: 5px;
}
.contact-info p{
    color: white;
    font-size: 15px;
    line-height: 1.3;
}
/* table */
table {
    width: 100%;
    margin: 0 auto;
}
th {
    background-color: #B98A5F;
}
td {
    text-align: center;
}
table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}
th, td {
    padding: 5px;
}
/* follow us */
.follow {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.follow a {
    text-decoration: none;
    color: black;;
}
.follow a:hover {
    text-decoration: none;
    color: #8C8C8C;
}
/* footer */
footer {
    text-align: center;
    padding: 20px;
}