.info {
  background-color: navy;
  color: white;
}
.hero {
  color: white;
  background-color: #F8F1E8;
  padding: 15px;
}
.heroimg {
  padding: 15px;
  border-radius: 300px;
  background-color: navy;
  width: 300px;
  height: 300px;
}
.name {
  color: navy;
  font-size: 60px;
  font-weight: bold;
  font-style: oblique;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: navy;
    padding: 10px 20px;  
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}
.shop-btn {
    background: white;
    color: navy;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}
.shop-btn:hover {
    background: navy;
    color: white;
    opacity: 0.9;
}
.cart-page {
    padding: 60px 8%;
}
.cart-tite {
    text-align: center;
    margin-bottom: 40px;
    background-color: navy;
    color: white;
}
.cart-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0, 0.8);
}
.cart.product {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cart.product img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}
.cart.product h3 {
    color: #777;
    margin-bottom: 5px;
}
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}
.quantity-controls button {
    width: 35px;
    height: 35px;
    border: none;
    background: #0f1f4d;
    color: white;
    font-size: 20px;
    border-radius: 5px;
}
.quantity-controls span {
    font-weight: bold;
}
.cart-item-total {
    text-align: right;
}
.cart-item-total strong {
    display: block;
    color: #ff6600;
    margin-bottom: 10px;
}
.remove-btn {
    border: none;
    background: transparent;
    color: #dc3545;
    cursor: pointer;
}
.cart-summary {
    max-width: 500px;
    margin-left: auto;
    margin-top: 40px;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 10px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.grand-total {
    font-size: 22px;
    font-weight: bold;
    color: #0f1f4d;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}
.checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: navy;
    color: white;
    padding: 14px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
}
.continue-btn {
    display: inline-block;
    background: #0f1f4d;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
}
.empty-cart {
    text-align: center;
    padding: 80px 20px;
}
.empty-cart h2 {
    color: #0f1f4d;
}
