/* Basic Reset and Body Styling */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: #333; }

/* Top Bar Styling */
.top-bar { background-color: #f8f8f8; padding: 0.5rem 2rem; text-align: right; font-size: 0.8rem; color: #555; border-bottom: 1px solid #eee; }
.top-bar a { color: #333; text-decoration: none; margin-left: 1rem; font-weight: 500; }
.top-bar a:hover { color: #c59d5f; }

/* Header and Navigation */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; background-color: #fff; border-bottom: 1px solid #eee; }
.logo { font-weight: 700; font-size: 1.5rem; text-decoration: none; color: #333; }
.logo img { height: 50px; width: auto; }
.nav-center { display: flex; gap: 1.5rem; }
.nav-center a { text-decoration: none; color: #555; font-weight: 500; font-size: 0.9rem; padding-bottom: 5px; border-bottom: 2px solid transparent; transition: all 0.3s ease; }
.nav-center a:hover { color: #c59d5f; }
.nav-center a.active { color: #c59d5f; border-bottom-color: #c59d5f; }
.nav-right { display: flex; gap: 1.5rem; font-size: 1.2rem; }
.menu-icon { display: none; font-size: 1.5rem; cursor: pointer; }

/* Main Content & Page Container */
.page-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.collection-header { text-align: center; padding: 2rem 0; }
.collection-header h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }

/* Breadcrumb Styles */
.breadcrumb { background-color: #f8f8f8; padding: 12px 2rem; text-align: left; font-size: 0.9rem; border-bottom: 1px solid #eee; }
.breadcrumb a { color: #c59d5f; text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span.separator { color: #999; margin: 0 8px; }
.breadcrumb span.current-page { color: #555; }

/* Product Grid & Cards */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding-bottom: 2rem; }
.product-card { display: block; border: 1px solid #eee; border-radius: 8px; overflow: hidden; text-align: center; text-decoration: none; color: inherit; transition: box-shadow 0.3s ease, transform 0.3s ease; }
.product-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.15); transform: translateY(-5px); }
.product-card img { width: 100%; height: 350px; object-fit: cover; display: block; }
.product-info { padding: 1rem; }
.product-name { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.5rem; height: 40px; }
.product-price { font-weight: 600; color: #333; margin-bottom: 1rem; }
.add-to-cart-btn { width: 100%; padding: 0.75rem; border: none; background-color: #333; color: #fff; cursor: pointer; font-weight: 600; border-radius: 4px; transition: background-color 0.3s ease; }
.add-to-cart-btn:hover { background-color: #555; }

/* Footer */
footer { background-color: #f8f8f8; padding: 2rem; margin-top: 2rem; border-top: 1px solid #eee; }
.footer-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer-column h4 { margin-bottom: 1rem; }
.footer-column a, .footer-column p { display: block; color: #777; text-decoration: none; margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-column input { width: 100%; padding: 0.5rem; margin-bottom: 0.5rem; border: 1px solid #ddd; }
.footer-column button { width: 100%; padding: 0.5rem; border: none; background-color: #333; color: #fff; cursor: pointer; }
.footer-bottom { text-align: center; color: #999; font-size: 0.8rem; }

/* About Us Section (Homepage) */
.about-section { padding: 3rem 0; background-color: #f8f8f8; }
.about-container { display: flex; align-items: center; gap: 3rem; max-width: 1000px; margin: 0 auto; padding: 0 2rem; }
.about-image { flex: 0.7; }
.about-image img { width: 100%; border-radius: 8px; }
.about-text { flex: 1.5; text-align: left; }
.about-text h2 { font-size: 2rem; margin-bottom: 1rem; }
.about-text p { margin-bottom: 1.5rem; color: #555; }
.btn { display: inline-block; background-color: #333; color: #fff; padding: 10px 20px; text-decoration: none; border-radius: 4px; font-weight: 600; transition: background-color 0.3s ease; }
.btn:hover { background-color: #555; }

/* Product Detail Page Styles */
.product-detail-container { max-width: 1100px; margin: 0 auto; padding: 2rem; display: flex; gap: 2rem; }
.product-detail-image { flex: 1; }
.product-detail-image img { width: 100%; border-radius: 8px; border: 1px solid #eee; }
.product-detail-info { flex: 1; text-align: left; }
.product-title { font-size: 2.2rem; font-family: 'Poppins', sans-serif; font-weight: 600; margin-bottom: 1rem; }
.product-price-detail { font-size: 1.8rem; color: #d9534f; font-weight: 500; margin-bottom: 1.5rem; }
.description-heading { font-family: 'Poppins', sans-serif; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.5rem; border-bottom: 1px solid #eee; padding-bottom: 0.5rem; }
.product-description, .product-specs { color: #555; line-height: 1.8; }
.product-specs { list-style-position: inside; padding-left: 0; }
.product-specs li { margin-bottom: 0.5rem; }
.buy-now-btn { width: 100%; text-align: center; padding: 15px; font-size: 1.2rem; margin-top: 2rem; background-color: #25D366; }
.buy-now-btn:hover { background-color: #1DAA50; }

/* About Us Page Styles */
.page-header-about { background-image: url('harr-4.jpg'); background-size: cover; background-position: center; height: 40vh; position: relative; display: flex; align-items: center; justify-content: center; color: white; }
.page-header-overlay { background-color: rgba(0, 0, 0, 0.5); position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.page-header-about h1 { font-size: 3rem; font-family: 'Poppins', sans-serif; font-weight: 600; }
.page-content { max-width: 800px; margin: 3rem auto; padding: 0 2rem; text-align: center; }
.page-content h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.page-content h3 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1rem; font-family: 'Poppins', sans-serif; font-weight: 600; color: #333; }
.page-content p { color: #555; line-height: 1.8; text-align: justify; }

/* Contact Us Page Styles */
.contact-container { display: flex; gap: 2rem; margin-top: 2rem; padding-bottom: 2rem; }
.contact-info, .contact-form { flex: 1; padding: 2rem; background-color: #f8f8f8; border-radius: 8px; }
.contact-info h3, .contact-form h3 { margin-bottom: 1.5rem; font-size: 1.5rem; }
.contact-info p { margin-bottom: 1.5rem; line-height: 1.8; }
.info-item { margin-bottom: 1rem; }
.info-item a { color: #c59d5f; text-decoration: none; }
.info-item a:hover { text-decoration: underline; }
.contact-form form { display: flex; flex-direction: column; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; margin-bottom: 1rem; border: 1px solid #ddd; border-radius: 4px; font-family: 'Poppins', sans-serif; }
.contact-form button { align-self: flex-start; }

/* Responsive Design */
@media (max-width: 992px) { 
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-container { flex-direction: column; }
}
@media (max-width: 768px) {
    .top-bar { text-align: center; padding: 0.5rem 1rem; }
    .top-bar span, .top-bar a { display: block; margin: 0.2rem 0; }
    .nav-center { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; width: 100%; background-color: #fff; padding: 1rem; border-bottom: 1px solid #eee; }
    .nav-center.active { display: flex; }
    .menu-icon { display: block; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .about-container, .product-detail-container { flex-direction: column; }
    .about-text { text-align: center; }
}
@media (max-width: 576px) { .footer-container { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }