body{
    background: url(motor1.jpeg) no-repeat center center fixed;
    background-size: cover;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
}

.nav-wrapper{
   position: fixed;       
    top: 10px;               
    left: 50%;                 
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 40px); 
    max-width: 1200px;
    padding: 20px;
    background-color: #c6b9ab;
    box-shadow: 10px 10px 5px #24211f;
    border: #c6b9ab;
    z-index: 1000;
    box-sizing: border-box;
    overflow: hidden;   

}

.logo{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.navlink-wrapper{
    display: flex;
    gap: 20px;
}

.navlink-wrapper a{
    text-decoration: none;
    color: #080700;
    font-size: 20px;
}

.navlink{
    color: white;
    text-decoration: none;
    font-size: 20px;
    padding: 10px;
}

.navlink.active {
  background: #c6b9abe5;
  color: #24211f;
  font-weight: bold;
  box-shadow: 4px 4px 8px #24211f22;
}


.navlink:hover{
    text-decoration: underline;
    background-color: #6b6662;
}

.buy-section {
    text-align: center;
    margin: 50px auto;
    padding: 40px;
    background-color: #c6b9abe5;
    border-radius: 10px;
    box-shadow: 10px 10px 5px #24211fef;
    max-width: 500px;
    
}

.buy-section h2 {
    font-size: 30px;
    color: #080700;
    margin-bottom: 25px;
}

.buy-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.buy-form label {
    font-size: 16px;
    color: #24211f;
    font-weight: bold;
}

.buy-form input,
.buy-form select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    box-shadow: 2px 2px 8px #24211f22;
    margin-top: 5px;
    background: #fff;
    color: #080700;
}

.buy-form select {
    cursor: pointer;
}

.order-btn {
  background: #c6b9ab;
  color: #080700;
  border: none;
  border-radius: 6px;
  padding: 7px 22px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 3px 3px 5px #24211f23;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.order-btn:hover{
  background: #dfd2c2;
}

/* Rate Us / Feedback Section - Themed to match buy-section and navigation */

.rate-section {
    text-align: center;
    margin: 50px auto;
    padding: 40px;
    background-color: #c6b9abe5;
    border-radius: 10px;
    box-shadow: 10px 10px 5px #24211fef;
    max-width: 500px;
}

.rate-section h2 {
    font-size: 30px;
    color: #080700;
    margin-bottom: 25px;
}

.rate-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.rate-form label {
    font-size: 16px;
    color: #24211f;
    font-weight: bold;
}

.rate-form textarea {
    width: 100%;
    border-radius: 8px;
    border: none;
    box-shadow: 2px 2px 8px #24211f22;
    padding: 10px;
    font-size: 16px;
    margin-top: 5px;
    background: #fff;
    color: #080700;
    min-height: 70px;
    resize: vertical;
}


.rate-btn {
    background: #c6b9ab;
    color: #080700;
    border: none;
    border-radius: 6px;
    padding: 7px 22px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 3px 3px 5px #24211f23;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    margin-top: 10px;
}

.rate-btn:hover {
    background: #dfd2c2;
}

.site-footer {
    background-color: #e7e0d9cf;
    color: #080700;
    padding: 15px 0 15px 0;
    margin-top: 50px;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 1100px;
}

.site-footer p{
    font-size: 15px;
    font-style: italic;
    color: #000000;
    opacity: 0.85;
    letter-spacing: 0.4px;
    text-align: center;
}