body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
}
/* --- Header Top Bar --- */
.header-top {
    font-size: 0.8rem;
    background-color: #FFFFFF;
    /*border-bottom: 1px solid #eee; */
}
.header-top a {
    color: #777;
    text-decoration: none;
}
/*increase the font size of the sale promotion */
.sale-promo {
    font-size: 1.2rem;
}
/* --- NEW STYLE: Nudge promotion text slightly right --- */
.promo-nudge {
    margin-left: 370px !important; /* Overrides the automatic margin-left to push it right */
}
/* --- NEW STYLE: Shopping Cart Icon Adjustments --- */
.cart-icon {
    font-size: 2.0rem; /* Increase size */
    position: relative;
    right: 30px; /* Shift 5 pixels to the left */
}
/* --- NEW STYLE: Flag Icon Adjustments --- */
/*.flag-icon {
    width: 25px; 
    height: 25px;
}*/
/* --- Main Header (Logo & Search) --- */
.header-main .navbar-brand {
    /* Changed font to Great Vibes (or Zapfino fallback) */
    font-family: 'Zapfino', 'Great Vibes', cursive; 
    font-size: 2.0rem; /* Increased size for script font legibility */
    font-weight: 400; /* Script fonts usually don't support bold */
    color: #333;
}
/* Search Bar Styling */
.search-bar input {
    border-radius: 0;
    border: 1px solid #ccc;
    padding-right: 2.5rem; /* Space for search icon */
}
.search-bar .search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}
/* --- Main Navigation --- */
.main-nav .nav-link {
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
}
.main-nav .nav-link.active,
.main-nav .nav-link:hover {
    color: #8B4513; /* SaddleBrown for highlight */
}
/* --- Product Grid & Cards --- */
.product-card {
    border: none;
    text-align: center;
    margin-bottom: 1.5rem;
}
.product-card img {
    max-width: 100%;
    height: 250px; /* Standardize image height */
    object-fit: contain; /* Ensure full image is visible */
    margin-bottom: 0.5rem;
}
.product-card .product-name {
    font-size: 0.9rem;
    color: #555;
    min-height: 40px; /* To prevent layout shift with varying names */
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-card .product-price {
    font-weight: 600;
    color: #333;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.product-card .btn-add-to-cart {
    background-color: #dc3545; /* Bootstrap Red (Danger) */
    color: #fff;
    border-radius: 0;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
}
/* --- NEW STYLE: Hover Effect for Add to Cart Button --- */
.product-card .btn-add-to-cart:hover {
    background-color: #c82333; /* Slightly darker red */
    border-color: #bd2130;
}
/* --- Collection Title Separator --- */
.collection-title {
    /* Changed font to Great Vibes (or Zapfino fallback) */
    font-family: 'Zapfino', 'Great Vibes', cursive; 
    font-size: 1.5rem; /* Increased size */
    font-weight: 400; 
    text-align: center;
    margin: 3rem 0;
    position: relative;
}
.collection-title::before,
.collection-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 15%; /* Adjust line length */
    height: 1px;
    background-color: #ccc;
}
.collection-title::before {
    left: 15%; /* Adjust position */
}
.collection-title::after {
    right: 15%; /* Adjust position */
}
/* --- Footer --- */
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links a {
    color: #777;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.8;
}
.footer-icons .icon-item {
    text-align: center;
    color: #000000;
    font-size: 0.9rem;
}
.footer-icons .icon-item i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #000000; /* black */
}
/* Newsletter Form */
.newsletter-form input {
    border-radius: 0;
    border: 1px solid #ccc;
    height: 38px; /* Match button height */
}
.newsletter-form .btn-signup {
    background-color: #777;
    color: #fff;
    border-radius: 0;
    height: 38px;
    font-size: 0.9rem;
}
/* Footer Bottom */
.footer-bottom {
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
}
.footer-bottom .social-icons a {
    color: #555;
    font-size: 1.2rem;
    margin-right: 10px;
}