.info {
  background-color: navy;
  color: white;
}
.hero {
  color: white;
  background-color: #F8F1E8;
  padding: 15px;
}
.heroimg {
  padding: 15px;
  border-radius: 50%;
  background-color: navy;
  width: 100%;
  max-width: 300px;
  height: auto;
}
.name {
  color: navy;
  font-size: clamp(32px, 6vw, 60px);
  font-weight: bold;
  font-style: oblique;
}
nav {
  color: ivory;
  background-color: navy;
  padding: 15px;
  text-align: right;
}
nav a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  transition: 0.3s;
}
nav a:hover {
  color: navy;
  background-color: #F8F1E8;
}
.message {
  color: white;
  background-color: navy;
  padding: 15px;
}
.productcard {
  border: 5px solid navy;
  border-radius: 5px;
  padding: 15px;
  max-width: 220px;
  width: 100%;
  background-color: ivory;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0,2);
  margin: 10px;
}
.imgs {
  width: 100%;
  max-width: 220px;
  padding: 10px;
  background-color: navy;
  border-radius: 40%; /*shape control*/
  box-shadow: 0 5px 15px rgba(0,0,0,0,2);
}
button {
  gap: 10px;
  margin-top: 10px;
}
.details-btn {
  background-color: navy;
  color: white;
  border: whitesmoke;
  border-style: outset;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: bold;
}
.cart-btn {
  background-color: navy;
  color: white;
  border: royalblue;
  border-style: outset;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: bold;
}
.price {
  margin-top: 5px;
}
.old {
  text-decoration: line-through;
  font-size: 20px;
  color: red;
}
.new {
  color: green;
  font-size: 20px;
  font-weight: bolder;
}
footer {
  color: whitesmoke;
  background-color: navy; 
  font-style: italic;
  padding: 15px;
  font-size: large;
}
/*Products page*/
.search-box {
    margin-top: 15px;
}
.search-box input {
    padding: 10px;
    width: 100%;
    max-width: 300px;
    height: auto;
    border: 2px solid navy;
    border-radius: 5px;
    outline: none;
}
.search-box button {
    padding: 10px;
    background-color:navy;
    border: none;
    cursor: pointer;
    color: #F8F1E8;
    border-radius: 5px;
    width: 100%;
    max-width: 200px;
    height: auto;
}
.search-box button:hover {
    background-color: royalblue;
    color: #F8F1E8;
}
/*partner*/
.form {
  color: navy;
  text-align: center;
  font-weight: 1000;
  font-style: oblique;
}
h3 {
    color: navy;
    background-color: whitesmoke;
    font-style: italic;
}
.text {
    color: navy;
    background-color: whitesmoke;
    font-style: italic;
}
h2 {
    font-style: italic;
    color: navy;
}
/*About*/
.brandname {
  color: navy;
  font-size: 50px;
  font-weight: bold;
  font-style: oblique;
}
/*contact*/
.comments {
  color: navy;
  font-size: 20px;
  font-weight: bold;
  font-style: oblique;
}
h4 {
  color: navy;
  font-size: 20px;
  font-weight: bold;
  font-style: oblique;
}
/*cart*/
.cart-item{
    border: 1px solid #ddd;
    padding: 15px;
    margin: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
}
.cart-item img{
    border-radius: 8px;
}
.cart-item button{
    background: red;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}
/*details*/
.details-btn {
  background-color: navy;
  color: white;
  border: whitesmoke;
  border-style: outset;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: bold;
}
.cart-btn {
  background-color: navy;
  color: white;
  border: royalblue;
  border-style: outset;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: bold;
}