/* -------------------- 1. GLOBAL STYLE AND RESET -------------------- */
:root {
    /* Freshio Colors */
    --primary-color: #55792f; /* Dark Green */
    --secondary-color: #a2b852; /* Light Olive Green/Yellowish */
    --dark-color: #212529; 
    --light-bg: #f5f5f0; 
    --white: #ffffff;
    --font-family: 'Arial', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background-color: var(--white); /* White background like Freshio */
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #416024;
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    font-size: 2.2em;
    margin: 40px 0 30px;
    color: var(--dark-color);
    position: relative;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

/* -------------------- 2. HEADER/NAVIGATION BAR (Freshio Look) -------------------- */
.main-header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Top Bar (White) */
.top-bar {
    background-color: var(--white);
    font-size: 0.9em;
    border-bottom: 1px solid #eee;
}

.top-bar .top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.account-actions a, .contact-info {
    margin-left: 15px;
    color: var(--dark-color);
}

/* Middle Header (Logo and Search) */
.middle-header {
    padding: 20px 0;
    background-color: var(--white);
}

.middle-header .middle-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo {
    height: 60px; /* Logo Size */
    width: auto;
}

.search-box-large {
    display: flex;
    flex-grow: 1;
    max-width: 600px;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
}

.search-input {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    font-size: 1em;
}

.search-btn {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: 0;
    font-weight: bold;
}

/* Main Navigation Bar (Green Strip) */
.main-nav-bar {
    background-color: var(--primary-color); /* Dark Green */
}

.main-nav-bar .nav-flex {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.main-nav ul {
    display: flex;
    gap: 40px;
}

.main-nav a {
    color: var(--white);
    font-weight: bold;
    font-size: 1.1em;
    padding: 5px 0;
    transition: color 0.3s, border-bottom 0.3s;
}

.main-nav a:hover, .main-nav .active-link a {
    color: var(--secondary-color);
}

/* -------------------- 3. HERO SECTION (Freshio Style Layout) -------------------- */
.hero-section {
    padding: 30px 0;
    background-color: var(--light-bg);
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 3fr 1fr; /* Main banner wider than small banners */
    gap: 20px;
}

/* Main Banner (Left) */
.hero-main-banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px; 
}

.hero-main-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-overlay p {
    font-size: 1.2em;
    margin-bottom: 25px;
}

/* Small Banners (Right) */
.hero-small-banners {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.small-banner-item {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    height: calc((100% - 40px) / 3); /* Divide remaining space among 3 items */
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background-color 0.3s;
}

.small-banner-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.small-banner-item h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.small-banner-item p {
    font-size: 0.9em;
}

/* -------------------- 4. PRODUCT GRID AND CARD (Freshio Style) -------------------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    text-align: center;
    padding-bottom: 15px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 220px; /* Fixed height for product images */
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.product-card h4 {
    font-size: 1em;
    margin: 10px 10px 5px 10px;
    color: var(--dark-color);
}

.product-price {
    font-size: 1.2em;
    color: #e74c3c; /* Red color for price */
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-add-to-cart {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    width: 80%; 
    padding: 10px 20px;
}

/* -------------------- 5. FOOTER (Freshio Style) -------------------- */
.main-footer {
    background-color: var(--primary-color); /* Dark Green */
    color: var(--white);
    padding-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col p, .footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
    margin-bottom: 8px;
    display: block;
}

.footer-col a:hover {
    color: var(--white);
}

.social-icons a, .payment-icons i {
    font-size: 1.5em;
    margin-right: 15px;
    color: var(--white);
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
    background-color: #416024; /* Slightly darker green */
}

/* -------------------- 6. PRODUCT DETAIL PAGE STYLES -------------------- */
/* (Previous Product Detail CSS is retained and compatible with new Header) */

.product-detail-page {
    padding: 50px 0;
}
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
/* ... (Rest of Product Detail CSS: .product-gallery, .main-image, .thumbnail-selector, .product-info etc. as in previous response) ... */
/* -------------------- 7. SHOP PAGE STYLES -------------------- */

.shop-page-main {
    padding: 30px 0;
}

.shop-grid-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr; /* Sidebar (250px) and Main Content */
    gap: 30px;
}

/* Sidebar Styling */
.shop-sidebar {
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    height: fit-content; /* Stop sidebar from stretching to full height */
}

.sidebar-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--secondary-color);
}

.category-list {
    margin-bottom: 30px;
}

.category-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
}

.category-list a {
    color: var(--dark-color);
    display: block;
    transition: color 0.2s;
}

.category-list a:hover, .category-list .view-all a {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Price Filter */
.price-filter {
    margin-bottom: 30px;
    text-align: center;
}

.price-filter p {
    margin: 10px 0;
    font-weight: bold;
}

.price-filter .btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
}

/* Help Box */
.help-box {
    background-color: var(--white);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.help-box p {
    margin-bottom: 10px;
}

.whatsapp-btn {
    background-color: #25D366;
    color: var(--white);
    padding: 8px 15px;
    width: 100%;
}


/* Product Listing Area */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.toolbar select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.shop-grid {
    /* Product grid columns defined in section 4 */
}

/* Pagination */
.pagination {
    text-align: center;
    margin: 30px 0;
}

.pagination a {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
}

.pagination a.current, .pagination a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* -------------------- Responsive Design -------------------- */
@media (max-width: 768px) {
    .shop-grid-wrapper {
        grid-template-columns: 1fr; /* Sidebar Stacked on Top */
    }
    .shop-sidebar {
        margin-bottom: 20px;
    }
    .toolbar {
        flex-direction: column;
        gap: 10px;
    }
}
/* -------------------- 1. GLOBAL STYLE AND RESET -------------------- */
:root {
    /* Freshio Colors */
    --primary-color: #55792f; /* Dark Green */
    --secondary-color: #a2b852; /* Light Olive Green/Yellowish */
    --dark-color: #212529; 
    --light-bg: #f5f5f0; 
    --white: #ffffff;
    --font-family: 'Arial', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background-color: var(--white); 
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #416024;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.section-title {
    text-align: center;
    font-size: 2.2em;
    margin: 40px 0 30px;
    color: var(--dark-color);
    position: relative;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

/* Add to Cart Button Styling (used on index.html and shop.html) */
.btn-add-to-cart {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    width: 80%; 
    padding: 10px 20px;
    display: block;
    margin: 0 auto;
}

/* -------------------- 2. HEADER/NAVIGATION BAR (Freshio Look) -------------------- */
.main-header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Top Bar (White) */
.top-bar {
    background-color: var(--white);
    font-size: 0.9em;
    border-bottom: 1px solid #eee;
}

.top-bar .top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.account-actions a, .contact-info {
    margin-left: 15px;
    color: var(--dark-color);
}

/* Middle Header (Logo and Search) */
.middle-header {
    padding: 20px 0;
    background-color: var(--white);
}

.middle-header .middle-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo {
    height: 60px; /* Logo Size */
    width: auto;
}

.search-box-large {
    display: flex;
    flex-grow: 1;
    max-width: 600px;
    border: 2px solid var(--primary-color); /* Dark Green border for Freshio look */
    border-radius: 8px;
    overflow: hidden;
}

.search-input {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    font-size: 1em;
}

.search-btn {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: 0;
    font-weight: bold;
}

/* Main Navigation Bar (Green Strip) */
.main-nav-bar {
    background-color: var(--primary-color); /* Dark Green */
}

.main-nav-bar .nav-flex {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.main-nav ul {
    display: flex;
    gap: 40px;
}

.main-nav a {
    color: var(--white);
    font-weight: bold;
    font-size: 1.1em;
    padding: 5px 0;
    transition: color 0.3s, border-bottom 0.3s;
}

.main-nav a:hover, .main-nav .active-link a {
    color: var(--secondary-color);
}


/* -------------------- 3. HERO SECTION (Freshio Style Layout) -------------------- */
.hero-section {
    padding: 30px 0;
    background-color: var(--light-bg);
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 3fr 1fr; /* Main banner wider than small banners */
    gap: 20px;
}

/* Main Banner (Left) */
.hero-main-banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px; 
}

.hero-main-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-overlay p {
    font-size: 1.2em;
    margin-bottom: 25px;
}

/* Small Banners (Right) */
.hero-small-banners {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.small-banner-item {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    height: calc((100% - 40px) / 3); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background-color 0.3s;
}

.small-banner-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.small-banner-item h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.small-banner-item p {
    font-size: 0.9em;
}


/* -------------------- 4. PRODUCT GRID AND CARD (Freshio Style) -------------------- */
.featured-products-section {
    padding-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    text-align: center;
    padding-bottom: 15px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 220px; /* Fixed height for product images */
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.product-card h4 {
    font-size: 1em;
    margin: 10px 10px 5px 10px;
    color: var(--dark-color);
}

.product-price {
    font-size: 1.2em;
    color: #e74c3c; /* Red color for price */
    font-weight: bold;
    margin-bottom: 10px;
}


/* -------------------- 5. FOOTER (Freshio Style) -------------------- */
.main-footer {
    background-color: var(--primary-color); /* Dark Green */
    color: var(--white);
    padding-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col p, .footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
    margin-bottom: 8px;
    display: block;
}

.footer-col a:hover {
    color: var(--white);
}

.social-icons a, .payment-icons i {
    font-size: 1.5em;
    margin-right: 15px;
    color: var(--white);
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
    background-color: #416024; /* Slightly darker green */
}


/* -------------------- 6. PRODUCT DETAIL PAGE STYLES -------------------- */

.product-detail-page {
    padding: 50px 0;
}
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Image Gallery and Video */
.product-gallery {
    /* Contains the main image/video and the thumbnails */
}

.main-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 15px;
}

.video-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.video-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
}

.thumbnail-selector {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border-color 0.2s;
    position: relative;
    flex-shrink: 0; /* Prevents shrinking */
}

.thumbnail:hover, .thumbnail.active {
    border-color: var(--primary-color);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 2em;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Product Info */
.product-info {
    /* Right side content */
}

.product-name {
    font-size: 2em;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.product-pricing {
    margin-bottom: 20px;
}

.current-price {
    font-size: 1.8em;
    color: #e74c3c;
    font-weight: bold;
    margin-right: 15px;
}

.old-price {
    color: #888;
    margin-right: 10px;
}

.discount-badge {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    font-weight: bold;
}

.availability span {
    color: var(--primary-color);
    font-weight: bold;
}

.short-description {
    margin: 20px 0;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.option-group {
    margin-bottom: 15px;
}

.option-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.option-group select, .option-group input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.purchase-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.quantity-input-wrapper {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.qty-btn {
    background-color: var(--light-bg);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
    padding: 10px 0;
}

.btn-lg {
    padding: 15px 30px;
    flex-grow: 1;
    font-size: 1.1em;
}

.whatsapp-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}

.whatsapp-btn {
    background-color: #25D366; /* WhatsApp Green */
    color: var(--white);
    padding: 10px 20px;
    margin-top: 10px;
    display: inline-block;
    border-radius: 5px;
}

.product-full-description {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
}


/* -------------------- 7. SHOP PAGE STYLES (SIDEBAR AND GRID LAYOUT) -------------------- */
.shop-page-main {
    padding: 30px 0;
}

.shop-grid-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr; /* Sidebar (250px) and Main Content */
    gap: 30px;
}

/* Sidebar Styling */
.shop-sidebar {
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    height: fit-content; 
}

.sidebar-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--secondary-color);
}

.category-list {
    margin-bottom: 30px;
}

.category-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
}

.category-list a {
    color: var(--dark-color);
    display: block;
    transition: color 0.2s;
}

.category-list a:hover, .category-list .view-all a {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Price Filter */
.price-filter {
    margin-bottom: 30px;
    text-align: center;
}

.price-filter p {
    margin: 10px 0;
    font-weight: bold;
}

.price-filter .btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
}

/* Help Box */
.help-box {
    background-color: var(--white);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.help-box p {
    margin-bottom: 10px;
}

/* Product Listing Area */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.toolbar select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.shop-grid {
    /* Inherits grid-template-columns from .product-grid */
}

/* Pagination */
.pagination {
    text-align: center;
    margin: 30px 0;
}

.pagination a {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
}

.pagination a.current, .pagination a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}


/* -------------------- 8. RESPONSIVE DESIGN (Optional but Important) -------------------- */

@media (max-width: 992px) {
    .middle-header .middle-flex {
        flex-direction: column;
        gap: 10px;
    }
    .site-logo {
        height: 50px;
    }
    .main-nav ul {
        gap: 20px;
    }
    .hero-content-grid {
        grid-template-columns: 1fr; /* Stack hero banners on smaller screens */
        height: auto;
    }
    .hero-main-banner {
        height: 350px;
    }
    .hero-overlay h1 {
        font-size: 2.5em;
    }
    .hero-small-banners {
        flex-direction: row; /* Small banners side by side */
        height: 150px;
    }
    .small-banner-item {
        height: 100%;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns in footer */
    }
    .product-detail-grid {
        grid-template-columns: 1fr; /* Stack product details */
    }
    .shop-grid-wrapper {
        grid-template-columns: 1fr; /* Sidebar Stacked on Top */
    }
    .shop-sidebar {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .top-bar .top-flex {
        flex-direction: column;
        gap: 5px;
    }
    .search-box-large {
        width: 100%;
    }
    .main-nav ul {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-overlay h1 {
        font-size: 2em;
    }
    .hero-small-banners {
        flex-direction: column;
        height: auto;
    }
}
/* -------------------- 8. YOUTUBE PAGE STYLES -------------------- */
.youtube-page-main {
    padding: 30px 0 60px 0;
}

.youtube-intro {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #555;
}

.youtube-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.video-card {
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    text-align: center;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.video-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio for YouTube Videos */
}
.video-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card h3 {
    font-size: 1.1em;
    padding: 15px;
    color: var(--dark-color);
}

.youtube-cta {
    text-align: center;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.youtube-cta p {
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: bold;
}
/* -------------------- 9. CONTACT PAGE STYLES -------------------- */
.contact-page-main {
    padding: 30px 0 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Form is wider than contact details */
    gap: 40px;
    margin-bottom: 50px;
}

.contact-form-wrapper, .contact-info-wrapper {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3, .contact-info-wrapper h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.6em;
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 5px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
}

/* Contact Info Details */
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-right: 15px;
}

.info-item p {
    margin: 0;
}

.info-item a {
    font-weight: bold;
    color: var(--dark-color);
}

.whatsapp-cta {
    text-align: center;
    padding: 15px;
    background-color: var(--white);
    border-radius: 5px;
}

.whatsapp-cta .whatsapp-btn {
    background-color: #25D366; 
    margin-top: 10px;
    font-size: 1em;
    padding: 10px 20px;
}

/* Map Section */
.map-section {
    margin-top: 40px;
}

.map-section iframe {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Stack form and info vertically */
    }
}
/* -------------------- 10. ABOUT PAGE STYLES -------------------- */
.about-page-main {
    padding: 30px 0 60px 0;
}

.about-hero-image {
    margin: 30px 0;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-hero-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.story-section h3, .mission-vision h3, .team-title {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 15px;
}

.story-section p {
    margin-bottom: 20px;
    font-size: 1.05em;
    line-height: 1.7;
}

.mission-vision {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.vision-box {
    flex: 1;
    padding: 25px;
    background-color: var(--light-bg);
    border-radius: 8px;
    border-left: 5px solid var(--secondary-color);
}

.vision-box h3 {
    font-size: 1.5em;
    margin-top: 0;
    color: var(--dark-color);
}

.promise-text {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    padding: 20px;
    background-color: #e8f0e3; /* Very light green background */
    border-radius: 8px;
}

hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), var(--secondary-color), rgba(0, 0, 0, 0));
    margin: 40px 0;
}

@media (max-width: 768px) {
    .mission-vision {
        flex-direction: column;
    }
}
/* -------------------- 11. PRIVACY/LEGAL PAGE STYLES -------------------- */
.privacy-page-main {
    padding: 40px 0 60px 0;
}

.last-updated {
    text-align: center;
    font-size: 0.9em;
    color: #888;
    margin-bottom: 30px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 15px;
}

.policy-section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
    border-left: 5px solid var(--secondary-color);
}

.policy-section h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.policy-section ul {
    list-style: disc;
    margin-left: 30px;
}

.policy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.photo-policy {
    border-left: 5px solid #e74c3c; /* Special border color for photo policy */
}

.photo-policy p:first-of-type {
    font-weight: bold;
    color: #e74c3c;
    font-size: 1.1em;
}
/* -------------------- 12. ACCOUNT PAGE STYLES -------------------- */
.account-page-main {
    padding: 40px 0 60px 0;
    background-color: var(--light-bg);
}

.account-dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr; /* Sidebar and main content */
    gap: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Sidebar Styling */
.account-sidebar {
    padding: 30px 0;
    background-color: var(--primary-color); /* Dark Green Background */
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    color: var(--white);
}

.user-profile-summary {
    text-align: center;
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.user-profile-summary h4 {
    margin-top: 10px;
}

.profile-icon {
    font-size: 3em;
    color: var(--secondary-color);
}

.account-nav-list a {
    display: block;
    color: var(--white);
    padding: 12px 30px;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.account-nav-list a:hover, .account-nav-list li.active a {
    background-color: #416024; /* Slightly darker green */
    color: var(--secondary-color);
}

.account-nav-list i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Main Content Styling */
.account-content {
    padding: 30px;
}

.dashboard-info-box {
    background-color: var(--light-bg);
    padding: 20px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px;
    margin-bottom: 30px;
}

.welcome-box a {
    font-weight: bold;
}

.dashboard-grid-quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.quick-link-card {
    display: block;
    padding: 20px 10px;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s, transform 0.3s;
    color: var(--dark-color);
}

.quick-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.quick-link-card i {
    font-size: 2em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.quick-link-card h4 {
    margin-bottom: 5px;
    font-size: 1.1em;
}

.support-box {
    border-left: 5px solid #25D366; /* WhatsApp color */
    text-align: center;
}

.support-box h3 {
    margin: 10px 0;
    color: #25D366;
}

/* Responsive adjustments for Account Page */
@media (max-width: 992px) {
    .account-dashboard-grid {
        grid-template-columns: 1fr; /* Stack sidebar and content */
    }
    .account-sidebar {
        border-radius: 8px; /* Remove specific side borders */
    }
}

@media (max-width: 576px) {
    .dashboard-grid-quick-links {
        grid-template-columns: 1fr;
    }
}
/* -------------------- 13. ORDERS PAGE STYLES -------------------- */

.order-list-table {
    width: 100%;
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.order-table-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; /* Defines column widths */
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background-color: var(--white);
    font-size: 0.95em;
}

.order-table-row.header {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: bold;
    padding: 15px 20px;
}

.order-table-row:last-child {
    border-bottom: none;
}

.order-table-row span, .order-table-row a {
    text-align: left;
}

.status {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Status Colors */
.status.delivered {
    color: var(--primary-color);
}
.status.processing {
    color: #f39c12; /* Yellow/Orange */
}
.status.shipped {
    color: #3498db; /* Blue */
}
.status.cancelled {
    color: #e74c3c; /* Red */
}

/* Small Button for Actions */
.btn-sm {
    padding: 6px 12px;
    font-size: 0.85em;
    border-radius: 4px;
    display: inline-block;
}

.no-orders-message {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

/* Responsive adjustments for Orders Table */
@media (max-width: 768px) {
    .order-list-table {
        /* On smaller screens, make the table scrollable */
        overflow-x: auto;
    }
    .order-table-row {
        /* Force table to maintain minimum width for readability */
        min-width: 600px; 
    }
}
/* -------------------- 14. LOGIN/REGISTER PAGE STYLES -------------------- */
.login-page-main {
    padding: 50px 0 80px 0;
}

.login-register-container {
    max-width: 450px;
    margin: 40px auto 0;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Tab Selector Styling */
.tab-selector {
    display: flex;
    justify-content: space-around;
    border-bottom: 2px solid var(--light-bg);
}

.tab-btn {
    flex: 1;
    padding: 15px 10px;
    background: transparent;
    border: none;
    font-size: 1.1em;
    font-weight: bold;
    color: var(--dark-color);
    cursor: pointer;
    transition: color 0.3s, background-color 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    background-color: var(--light-bg);
}

/* Form Box Styling */
.auth-form-box {
    padding: 30px;
}

.auth-form-box h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.95em;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"],
.auth-form input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
}

.remember-forgot label {
    font-weight: normal;
}

.auth-form .btn-lg {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
}
/* -------------------- 15. PROFILE PAGE STYLES -------------------- */

.profile-form-box {
    background-color: var(--white);
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.profile-form-box h3 {
    color: var(--dark-color);
    font-size: 1.5em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-bg);
}

.profile-form .form-group {
    margin-bottom: 20px;
}

.profile-form .form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.95em;
}

.profile-form input[type="text"],
.profile-form input[type="email"],
.profile-form input[type="tel"],
.profile-form input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.form-group-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0; /* Handled by internal form-groups */
}

.profile-form small {
    display: block;
    color: #888;
    margin-top: 5px;
    font-size: 0.9em;
}

.profile-form .btn {
    padding: 12px 30px;
    font-size: 1em;
}

/* Specific styling for password box */
.change-password-box {
    border-left: 5px solid var(--secondary-color);
}

/* Responsive adjustments for Profile Form */
@media (max-width: 576px) {
    .form-group-half {
        grid-template-columns: 1fr;
    }
}
/* -------------------- 16. ADDRESSES PAGE STYLES -------------------- */

.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.address-box {
    background-color: var(--white);
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s;
}

.address-box:hover {
    border-color: var(--secondary-color);
}

.address-icon {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.address-box h3 {
    font-size: 1.4em;
    color: var(--dark-color);
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.address-details p {
    margin-bottom: 5px;
    line-height: 1.5;
}

.address-details strong {
    color: var(--primary-color);
}

.address-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.edit-btn {
    background-color: var(--primary-color);
    color: var(--white);
}

.default-tag {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    font-weight: bold;
    cursor: default;
}

/* Add New Address Specific Style */
.add-address-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed #ddd;
}

.add-address-box .address-icon {
    font-size: 3em;
    color: var(--secondary-color);
}

.addresses-note {
    background-color: #e8f0e3; /* Very light green */
    padding: 15px;
    border-radius: 5px;
    color: var(--dark-color);
}

.addresses-note i {
    color: var(--primary-color);
    margin-right: 8px;
}
/* -------------------- 17. WISHLIST PAGE STYLES -------------------- */

.wishlist-table-wrapper {
    margin-top: 20px;
    overflow-x: auto; /* Enable horizontal scrolling on small screens */
    width: 100%;
}

.wishlist-table {
    min-width: 700px; /* Ensure table is readable on small screens */
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.wishlist-row {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr; /* Product, Price, Stock, Actions */
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background-color: var(--white);
    font-size: 0.95em;
}

.wishlist-row.header {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: bold;
    padding: 15px 20px;
}

.product-info-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-info-cell img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.product-name-link {
    color: var(--dark-color);
    font-weight: bold;
    transition: color 0.3s;
}

.product-name-link:hover {
    color: var(--secondary-color);
}

.price {
    font-weight: bold;
    color: #e74c3c;
}

/* Stock Status Styling */
.stock-status {
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    text-align: center;
}

.in-stock {
    background-color: #e6f7e6; /* Light Green */
    color: var(--primary-color);
}

.low-stock {
    background-color: #fff8e6; /* Light Yellow */
    color: #f39c12;
}

.out-of-stock {
    background-color: #fbe6e6; /* Light Red */
    color: #e74c3c;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.btn-remove {
    background-color: #e74c3c;
    color: var(--white);
    padding: 6px 10px;
}

.continue-shopping-box {
    margin-top: 30px;
    text-align: right;
}

/* Responsive adjustments for Wishlist Table */
@media (max-width: 768px) {
    .wishlist-row {
        min-width: 650px; /* Ensure it scrolls */
    }
}
/* -------------------- 18. CART PAGE STYLES -------------------- */
.cart-page-main {
    padding: 40px 0 80px 0;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Cart table wider than totals */
    gap: 40px;
}

/* Cart Table Styling */
.cart-table-wrapper {
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.cart-table {
    width: 100%;
    min-width: 600px; 
    overflow-x: auto;
}

.cart-row {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr; /* Columns: Product, Price, Qty, Subtotal, Remove */
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-size: 0.95em;
}

.cart-row.header {
    background-color: var(--light-bg);
    color: var(--dark-color);
    font-weight: bold;
}

.product-info-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-info-cell img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.product-name-link {
    color: var(--dark-color);
    font-weight: bold;
    display: block;
}

.custom-note {
    font-size: 0.8em;
    color: #555;
    margin-top: 5px;
}

.quantity-control input {
    width: 60px;
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-remove-cart {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 1.1em;
    transition: color 0.3s;
}

.btn-remove-cart:hover {
    color: var(--dark-color);
}

.cart-actions-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-top: 1px solid #eee;
}

/* Cart Totals Styling (Right Section) */
.cart-totals-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coupon-section {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
}

.coupon-section h3, .cart-summary-box h3 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 5px;
}

.coupon-input-group {
    display: flex;
    gap: 10px;
}

.coupon-input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.cart-summary-box {
    background-color: var(--white);
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cart-summary-box table {
    width: 100%;
    margin-bottom: 25px;
    border-collapse: collapse;
}

.cart-summary-box td {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-total-final td {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--dark-color);
    border-bottom: none;
}

.text-right {
    text-align: right;
    font-weight: 500;
}

.shipping-calculator-link {
    font-size: 0.9em;
    color: var(--secondary-color);
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
}

/* Empty Cart Message */
.empty-cart-message {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
    margin-top: 30px;
}
.cart-icon-large {
    font-size: 4em;
    color: #ccc;
    margin-bottom: 20px;
}

/* Responsive adjustments for Cart Page */
@media (max-width: 992px) {
    .cart-grid {
        grid-template-columns: 1fr; /* Stack cart items and totals vertically */
    }
}
@media (max-width: 600px) {
    .cart-actions-bottom {
        flex-direction: column-reverse;
        gap: 15px;
    }
    .cart-actions-bottom .btn {
        width: 100%;
    }
}
/* -------------------- 19. CHECKOUT PAGE STYLES -------------------- */
.checkout-page-main {
    padding: 40px 0 80px 0;
    background-color: var(--light-bg);
}

.checkout-form-grid {
    display: grid;
    grid-template-columns: 3fr 2fr; /* Billing wider than summary */
    gap: 40px;
    margin-top: 30px;
}

.checkout-section-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.checkout-section-box h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 10px;
}

.login-prompt {
    background-color: #fffbe6; /* Light yellow background */
    padding: 15px;
    border: 1px solid #ffcc00;
    border-radius: 5px;
    margin-bottom: 30px;
    color: var(--dark-color);
}
.login-prompt i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Form Styles (Reusing profile.html styles where applicable) */
.checkout-billing-shipping label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.checkout-billing-shipping input[type="text"],
.checkout-billing-shipping input[type="email"],
.checkout-billing-shipping input[type="tel"],
.checkout-billing-shipping textarea,
.checkout-billing-shipping select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.form-group-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

/* Shipping Methods */
.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.shipping-option-label {
    display: block;
    cursor: pointer;
    font-weight: normal !important;
}

/* Order Review Table */
.order-review-table {
    width: 100%;
    border-collapse: collapse;
}

.order-review-table th, .order-review-table td {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.order-review-table thead th {
    font-weight: bold;
    color: var(--dark-color);
    border-bottom: 2px solid #ddd;
}

.order-review-table .subtotal-row td, 
.order-review-table .shipping-row td {
    font-size: 1em;
}

.order-review-table .total-row th {
    font-size: 1.2em;
    color: var(--primary-color);
    border-bottom: none;
}

/* Payment Methods */
.payment-option {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
}

.payment-option label {
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 5px;
    display: inline-block;
}

.payment-option i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.payment-info {
    font-size: 0.9em;
    color: #777;
    padding-left: 25px;
    margin-top: 5px;
}

.place-order-wrapper {
    text-align: center;
}

.terms-note {
    font-size: 0.9em;
    margin-bottom: 15px;
    color: #555;
}

.place-order-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.2em;
}

/* Responsive adjustments for Checkout Page */
@media (max-width: 992px) {
    .checkout-form-grid {
        grid-template-columns: 1fr; /* Stack columns vertically */
        gap: 20px;
    }
}
@media (max-width: 576px) {
    .form-group-half {
        grid-template-columns: 1fr;
    }
}
/* -------------------- 20. ORDER CONFIRMATION PAGE STYLES -------------------- */
.confirmation-page-main {
    padding: 50px 0 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.confirmation-box {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 40px;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.confirmation-icon {
    font-size: 5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.confirmation-title {
    font-size: 2em;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.confirmation-message {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}

.order-meta-summary {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-size: 1em;
}

.order-meta-summary .highlight {
    font-weight: bold;
    color: var(--secondary-color);
}

/* Details Grid */
.order-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.detail-box {
    text-align: left;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.detail-box h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--light-bg);
    padding-bottom: 5px;
}

.support-detail-box {
    border-left: 5px solid #25D366; /* WhatsApp Green */
}

.support-detail-box .whatsapp-btn {
    background-color: #25D366;
    margin-top: 15px;
    width: 100%;
    padding: 10px;
}
.mt-10 {
    margin-top: 10px;
}

/* Order Items Review Table */
.order-items-review {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.order-items-review h3 {
    font-size: 1.4em;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.order-review-table {
    width: 100%;
}
/* Reusing table styles from checkout.html but removing borders on the top/bottom */
.order-review-table th, .order-review-table td {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.order-review-table .total-row th {
    font-size: 1.2em;
    color: var(--primary-color);
    border-bottom: none;
    border-top: 2px solid #ddd;
}
.text-right {
    text-align: right;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .order-details-grid {
        grid-template-columns: 1fr;
    }
    .order-meta-summary {
        flex-direction: column;
        gap: 10px;
        text-align: left;
        padding: 15px 20px;
    }
}
/* -------------------- 21. 404 ERROR PAGE STYLES -------------------- */
.error-page-main {
    padding: 80px 0;
    text-align: center;
    background-color: var(--light-bg);
}

.error-content-box {
    max-width: 650px;
    margin: 0 auto;
    padding: 50px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.error-code {
    font-size: 8em;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.05);
}

.error-message h3 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.error-message p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}

.error-suggestions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.error-suggestions h4 {
    color: var(--dark-color);
    font-size: 1.3em;
    margin-bottom: 15px;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-suggestions li {
    margin-bottom: 10px;
    font-size: 1em;
}

.error-suggestions li a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s;
}

.error-suggestions li a:hover {
    color: var(--secondary-color);
}

.error-suggestions i {
    color: var(--secondary-color);
    margin-right: 10px;
}
/* -------------------- 22. PRODUCTS LISTING PAGE STYLES (Filters) -------------------- */

.product-listing-page-main {
    padding: 40px 0 80px 0;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9em;
    color: #888;
}
.breadcrumb a {
    color: var(--primary-color);
}
.breadcrumb a:hover {
    text-decoration: underline;
}

.product-listing-grid {
    display: grid;
    grid-template-columns: 280px 1fr; /* Sidebar and main content */
    gap: 40px;
}

/* Sidebar Filters */
.sidebar-filters {
    padding-top: 20px;
}

.filter-box {
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.filter-box h3 {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.category-filter ul {
    list-style: none;
    padding: 0;
}
.category-filter li a {
    display: block;
    padding: 8px 0;
    color: var(--dark-color);
    transition: color 0.3s;
}
.category-filter li a:hover {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Price Filter */
.price-range-slider {
    width: 100%;
    margin: 15px 0;
}
.price-range-display {
    font-weight: bold;
    margin-bottom: 15px;
}
.price-filter .btn {
    width: 100%;
}

/* Stock Filter */
.stock-filter label {
    display: block;
    margin-bottom: 8px;
    font-weight: normal;
}
.stock-filter input[type="checkbox"] {
    margin-right: 8px;
}

/* Product Grid Content */
.sorting-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 30px;
}

.product-count {
    font-size: 0.9em;
    color: #555;
}

.sort-dropdown label {
    margin-right: 10px;
    font-weight: 500;
}

.sort-dropdown select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Pagination (Reusing styles from shop.html/product_detail.html if defined) */
.pagination {
    margin-top: 30px;
    text-align: center;
}
.pagination a {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    color: var(--primary-color);
    transition: background-color 0.3s, color 0.3s;
}
.pagination a.active, .pagination a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-listing-grid {
        grid-template-columns: 1fr; /* Stack sidebar and content */
    }
    .sidebar-filters {
        padding: 0;
        /* Optional: Move sidebar filters to a collapsing block if needed */
    }
}

@media (max-width: 600px) {
    .sorting-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .sort-dropdown {
        width: 100%;
    }
    .sort-dropdown select {
        width: calc(100% - 70px); /* Adjust width to fit the label */
    }
}
/* ========================================================= */
/* 0. GLOBAL STYLES & VARIABLES */
/* ========================================================= */

:root {
    /* Freshio Theme Colors (Based on your logos/images: Green/Yellow/Red) */
    --primary-color: #558B2F; /* Dark Green - Main button, links */
    --secondary-color: #FFC107; /* Amber/Yellow - Highlight, accent */
    --dark-color: #46846a; /* Dark text */
    --light-color: #f4f4f4; /* Light text on dark bg */
    --white: #ffffff;
    --light-bg: #f9f9f9; /* Light background for sections */
    --error-color: #e74c3c; /* Red for errors/removals */

    /* Typography */
    --font-primary: 'Arial', sans-serif; /* Use a common font for simplicity */
    --font-heading: 'Georgia', serif; /* A distinguished font for headings/branding */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-bg);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    line-height: 1.2;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 40px;
    padding-bottom: 10px;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: #457224; /* Slightly darker green */
    border-color: #457224;
    color: var(--white);
}

.btn-primary-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border-color: var(--secondary-color);
}
.btn-secondary:hover {
    background-color: #ffb300;
    border-color: #ffb300;
}


/* ========================================================= */
/* 1. HEADER & NAVIGATION STYLES */
/* (UPDATED: Enhanced Logo/Name Styling) */
/* ========================================================= */

/* Top Bar */
.top-bar {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 8px 0;
    font-size: 0.85em;
}

.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: var(--secondary-color);
    margin-left: 5px;
}

.account-actions a {
    color: var(--light-color);
    margin-left: 15px;
}
.account-actions a:hover {
    color: var(--secondary-color);
}
.account-actions .active-account {
    color: var(--secondary-color);
    font-weight: bold;
}
.price-display {
    margin-left: 10px;
    font-weight: bold;
    color: var(--white);
}

/* Middle Header */
.middle-header {
    padding: 20px 0;
    background-color: var(--white);
}

.middle-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo and Name Styling */
.header-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    width: 60px; 
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    padding: 2px;
}

.site-title-branding {
    line-height: 1.1;
}

.site-title-branding .main-name {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.site-title-branding .tagline {
    font-size: 0.9em;
    color: #888;
    display: block;
}


/* Search Bar */
.search-form {
    display: flex;
    width: 450px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    overflow: hidden;
}

.search-input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    font-size: 1em;
}
.search-input::placeholder {
    color: #aaa;
}

.search-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.search-button:hover {
    background-color: #457224;
}

/* Main Navigation Bar */
.main-nav-bar {
    background-color: var(--primary-color);
}

.nav-flex {
    display: flex;
    justify-content: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li a {
    display: block;
    padding: 15px 25px;
    color: var(--white);
    font-weight: bold;
    transition: background-color 0.3s;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

/* ========================================================= */
/* 2. FOOTER STYLES */
/* (UPDATED: Enhanced Social Links) */
/* ========================================================= */

.main-footer {
    background-color: #384F2D; /* A darker, richer green for the footer */
    color: var(--light-color);
    padding: 40px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid h4 {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin-bottom: 20px;
}

.footer-grid p, .footer-grid a, .footer-grid li {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-grid ul {
    list-style: none;
    padding: 0;
}

.footer-grid .address-info i {
    margin-right: 5px;
    color: var(--secondary-color);
}

/* Social Icons & Payment */
.social-links {
    display: flex;
    flex-direction: column;
}

.social-icons-list {
    display: flex;
    gap: 15px;
    list-style: none;
    margin-bottom: 20px;
}

.social-icons-list a {
    font-size: 1.5em;
    color: var(--secondary-color);
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background-color 0.3s, color 0.3s;
}

.social-icons-list a:hover {
    background-color: var(--secondary-color);
    color: #384F2D;
}

.payment-methods img {
    height: 25px;
    margin-right: 5px;
    opacity: 0.8;
}

.copyright {
    text-align: center;
    font-size: 0.8em;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.5);
}


/* ========================================================= */
/* 3. INDEX/HOME PAGE STYLES */
/* ========================================================= */

.hero-slider {
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 500px; 
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--white);
    max-width: 500px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.slide-content h2 {
    font-size: 3em;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.slide-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Feature Boxes Section */
.feature-boxes {
    padding: 40px 0;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-box {
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.feature-box i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 1.1em;
    margin-bottom: 5px;
}

/* Featured Products/Shop Grid (Common Style) */
.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-title a {
    font-size: 1.1em;
    color: var(--dark-color);
    display: block;
    margin-bottom: 10px;
}
.product-title a:hover {
    color: var(--primary-color);
}

.product-price {
    font-size: 1.3em;
    font-weight: bold;
    color: var(--error-color);
    margin-bottom: 15px;
}

.btn-add-cart {
    width: 100%;
    padding: 10px 0;
}

/* Banners Section */
.banner-section {
    padding: 40px 0;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.banner-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: var(--white);
    max-width: 80%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 5px;
}

.banner-content h3 {
    font-size: 1.8em;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

/* ========================================================= */
/* 4. SHOP PAGE STYLES */
/* ========================================================= */

.shop-page-main {
    padding: 40px 0 80px 0;
}

/* Hero Section specific to Shop */
.shop-hero {
    background: url('images/shop_hero_bg.jpg') center/cover no-repeat;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 8px;
}

.shop-hero h1 {
    font-size: 3em;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
}

/* ========================================================= */
/* 5. PRODUCT DETAIL PAGE STYLES */
/* ========================================================= */

.product-detail-page-main {
    padding: 40px 0 80px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Image wider than details */
    gap: 50px;
}

.product-gallery img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.product-details {
    padding: 10px 0;
}

.product-details h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.product-rating {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.detail-price {
    font-size: 2em;
    color: var(--error-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.product-short-description {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* Customization/Option Forms */
.customization-form .form-group {
    margin-bottom: 15px;
}

.customization-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.customization-form select,
.customization-form input[type="file"],
.customization-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.customization-form .quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.customization-form .qty-input {
    width: 80px;
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.action-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1em;
}

.wishlist-btn {
    background-color: var(--light-bg);
    color: var(--dark-color);
    border: 1px solid #ddd;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
}
.wishlist-btn:hover {
    color: var(--error-color);
    border-color: var(--error-color);
}

/* Tabs for Description/Reviews */
.detail-tabs {
    margin-top: 40px;
}

.tab-nav {
    display: flex;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.tab-nav button {
    background: none;
    border: none;
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    color: #888;
    transition: color 0.3s, border-bottom 0.3s;
}

.tab-nav button.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.tab-content {
    background-color: var(--white);
    padding: 20px;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

/* Related Products */
.related-products {
    margin-top: 50px;
}

/* ========================================================= */
/* 6. YOUTUBE VIDEO PAGE STYLES */
/* ========================================================= */

.youtube-page-main {
    padding: 40px 0 80px 0;
}

.youtube-video-section {
    margin-bottom: 40px;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description-box {
    background-color: var(--white);
    padding: 25px;
    margin-top: 30px;
    border-radius: 8px;
}

.video-description-box h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.video-description-box p {
    color: #555;
}

.featured-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.video-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.video-card-info {
    padding: 15px;
}

.video-card-info h4 a {
    font-size: 1.1em;
    color: var(--dark-color);
    display: block;
    margin-bottom: 5px;
}

.video-card-info p {
    font-size: 0.9em;
    color: #777;
}

/* ========================================================= */
/* 7. CONTACT US PAGE STYLES */
/* ========================================================= */

.contact-page-main {
    padding: 40px 0 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.contact-form-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-form-box h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.contact-info-box {
    padding: 30px;
}

.contact-info-box h4 {
    font-size: 1.4em;
    color: var(--dark-color);
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.info-item i {
    font-size: 1.5em;
    color: var(--secondary-color);
}

.info-details p {
    margin-bottom: 5px;
}
.info-details a {
    color: #555;
}

.map-responsive {
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #ddd;
}
.map-responsive iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================================= */
/* 8. ABOUT US PAGE STYLES */
/* ========================================================= */

.about-page-main {
    padding: 40px 0 80px 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--secondary-color);
    margin-bottom: 15px;
}

.team-member h4 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-member p {
    color: var(--primary-color);
    font-weight: bold;
}

/* ========================================================= */
/* 9. UTILITY/PRIVACY/TERMS PAGE STYLES */
/* ========================================================= */

.utility-page-main {
    padding: 40px 0 80px 0;
}

.utility-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.utility-content h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.utility-content h3 {
    font-size: 1.6em;
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.utility-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.utility-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 15px;
}

/* ========================================================= */
/* 10. ACCOUNT DASHBOARD STYLES */
/* (Used by account.html, orders.html, profile.html, addresses.html, wishlist.html) */
/* ========================================================= */

.account-page-main {
    padding: 40px 0 80px 0;
}

.account-dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr; /* Sidebar and content */
    gap: 40px;
    margin-top: 30px;
}

/* Sidebar */
.account-sidebar {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: fit-content;
    overflow: hidden;
}

.user-profile-summary {
    text-align: center;
    padding: 20px;
    background-color: var(--primary-color);
    color: var(--white);
}

.profile-icon {
    font-size: 3em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.user-profile-summary h4 {
    color: var(--white);
    margin-bottom: 5px;
}
.user-profile-summary p {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
}

.account-nav-list {
    list-style: none;
    padding: 0;
}

.account-nav-list li a {
    display: block;
    padding: 15px 20px;
    color: var(--dark-color);
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.account-nav-list li a i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.account-nav-list li.active a,
.account-nav-list li a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
    border-left: 5px solid var(--primary-color);
}

/* Content Area */
.account-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.dashboard-widget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.dashboard-widget {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-bottom: 4px solid var(--secondary-color);
}

.dashboard-widget i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.dashboard-widget h4 {
    font-size: 1.1em;
    color: #555;
}

.dashboard-widget p {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--dark-color);
}

/* ========================================================= */
/* 11. ORDERS PAGE STYLES */
/* ========================================================= */

.orders-table-wrapper {
    overflow-x: auto;
    width: 100%;
}

.orders-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}

.orders-table th, .orders-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.orders-table thead th {
    background-color: var(--light-bg);
    font-weight: bold;
    color: var(--dark-color);
    border-top: 1px solid #eee;
}

.orders-table tbody tr:hover {
    background-color: #fcfcfc;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9em;
}

.status-processing {
    background-color: #fffbe6;
    color: #f39c12;
}

.status-completed {
    background-color: #e6f7e6;
    color: var(--primary-color);
}

.status-cancelled {
    background-color: #fbe6e6;
    color: var(--error-color);
}

.btn-view {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 8px 12px;
}

/* ========================================================= */
/* 12. LOGIN/REGISTER PAGE STYLES */
/* ========================================================= */

.login-page-main {
    padding: 50px 0 80px 0;
}

.login-register-container {
    max-width: 450px;
    margin: 40px auto 0;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Tab Selector Styling */
.tab-selector {
    display: flex;
    justify-content: space-around;
    border-bottom: 2px solid var(--light-bg);
}

.tab-btn {
    flex: 1;
    padding: 15px 10px;
    background: transparent;
    border: none;
    font-size: 1.1em;
    font-weight: bold;
    color: var(--dark-color);
    cursor: pointer;
    transition: color 0.3s, background-color 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    background-color: var(--light-bg);
}

/* Form Box Styling */
.auth-form-box {
    padding: 30px;
}

.auth-form-box h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.95em;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"],
.auth-form input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
}

.remember-forgot label {
    font-weight: normal;
}

.auth-form .btn-lg {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
}


/* ========================================================= */
/* 13. PROFILE PAGE STYLES */
/* ========================================================= */

.profile-form-box {
    background-color: var(--white);
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.profile-form-box h3 {
    color: var(--dark-color);
    font-size: 1.5em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-bg);
}

.profile-form .form-group {
    margin-bottom: 20px;
}

.profile-form .form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.95em;
}

.profile-form input[type="text"],
.profile-form input[type="email"],
.profile-form input[type="tel"],
.profile-form input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.form-group-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0; /* Handled by internal form-groups */
}

.profile-form small {
    display: block;
    color: #888;
    margin-top: 5px;
    font-size: 0.9em;
}

.profile-form .btn {
    padding: 12px 30px;
    font-size: 1em;
}

/* Specific styling for password box */
.change-password-box {
    border-left: 5px solid var(--secondary-color);
}

/* ========================================================= */
/* 14. ADDRESSES PAGE STYLES */
/* ========================================================= */

.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.address-box {
    background-color: var(--white);
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s;
}

.address-box:hover {
    border-color: var(--secondary-color);
}

.address-icon {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.address-box h3 {
    font-size: 1.4em;
    color: var(--dark-color);
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.address-details p {
    margin-bottom: 5px;
    line-height: 1.5;
}

.address-details strong {
    color: var(--primary-color);
}

.address-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.edit-btn {
    background-color: var(--primary-color);
    color: var(--white);
}

.default-tag {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    font-weight: bold;
    cursor: default;
}

/* Add New Address Specific Style */
.add-address-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed #ddd;
}

.add-address-box .address-icon {
    font-size: 3em;
    color: var(--secondary-color);
}

.addresses-note {
    background-color: #e8f0e3; /* Very light green */
    padding: 15px;
    border-radius: 5px;
    color: var(--dark-color);
}

.addresses-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* ========================================================= */
/* 15. WISHLIST PAGE STYLES */
/* ========================================================= */

.wishlist-table-wrapper {
    margin-top: 20px;
    overflow-x: auto; 
    width: 100%;
}

.wishlist-table {
    min-width: 700px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.wishlist-row {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr; 
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background-color: var(--white);
    font-size: 0.95em;
}

.wishlist-row.header {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: bold;
    padding: 15px 20px;
}

.product-info-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-info-cell img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.product-name-link {
    color: var(--dark-color);
    font-weight: bold;
    transition: color 0.3s;
}

.product-name-link:hover {
    color: var(--secondary-color);
}

.price {
    font-weight: bold;
    color: var(--error-color);
}

/* Stock Status Styling */
.stock-status {
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    text-align: center;
}

.in-stock {
    background-color: #e6f7e6; 
    color: var(--primary-color);
}

.low-stock {
    background-color: #fff8e6; 
    color: #f39c12;
}

.out-of-stock {
    background-color: #fbe6e6; 
    color: var(--error-color);
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.btn-remove {
    background-color: var(--error-color);
    color: var(--white);
    padding: 6px 10px;
}

.continue-shopping-box {
    margin-top: 30px;
    text-align: right;
}

/* ========================================================= */
/* 16. CART PAGE STYLES */
/* ========================================================= */
.cart-page-main {
    padding: 40px 0 80px 0;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; 
    gap: 40px;
}

/* Cart Table Styling */
.cart-table-wrapper {
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.cart-table {
    width: 100%;
    min-width: 600px; 
    overflow-x: auto;
}

.cart-row {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr; 
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-size: 0.95em;
}

.cart-row.header {
    background-color: var(--light-bg);
    color: var(--dark-color);
    font-weight: bold;
}

.cart-row.item-row:last-child {
    border-bottom: none;
}

.product-info-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-info-cell img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.product-name-link {
    color: var(--dark-color);
    font-weight: bold;
    display: block;
}

.custom-note {
    font-size: 0.8em;
    color: #555;
    margin-top: 5px;
}

.quantity-control input {
    width: 60px;
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-remove-cart {
    background: none;
    border: none;
    color: var(--error-color);
    cursor: pointer;
    font-size: 1.1em;
    transition: color 0.3s;
}

.btn-remove-cart:hover {
    color: var(--dark-color);
}

.cart-actions-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-top: 1px solid #eee;
}

/* Cart Totals Styling (Right Section) */
.cart-totals-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coupon-section {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
}

.coupon-section h3, .cart-summary-box h3 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 5px;
}

.coupon-input-group {
    display: flex;
    gap: 10px;
}

.coupon-input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.cart-summary-box {
    background-color: var(--white);
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cart-summary-box table {
    width: 100%;
    margin-bottom: 25px;
    border-collapse: collapse;
}

.cart-summary-box td {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-total-final td {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--dark-color);
    border-bottom: none;
}

.text-right {
    text-align: right;
    font-weight: 500;
}

.shipping-calculator-link {
    font-size: 0.9em;
    color: var(--secondary-color);
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
}

/* Empty Cart Message */
.empty-cart-message {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
    margin-top: 30px;
}
.cart-icon-large {
    font-size: 4em;
    color: #ccc;
    margin-bottom: 20px;
}

/* ========================================================= */
/* 17. CHECKOUT PAGE STYLES */
/* ========================================================= */
.checkout-page-main {
    padding: 40px 0 80px 0;
    background-color: var(--light-bg);
}

.checkout-form-grid {
    display: grid;
    grid-template-columns: 3fr 2fr; 
    gap: 40px;
    margin-top: 30px;
}

.checkout-section-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.checkout-section-box h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 10px;
}

.login-prompt {
    background-color: #fffbe6; 
    padding: 15px;
    border: 1px solid #ffcc00;
    border-radius: 5px;
    margin-bottom: 30px;
    color: var(--dark-color);
}
.login-prompt i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Form Styles */
.checkout-billing-shipping label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.checkout-billing-shipping input[type="text"],
.checkout-billing-shipping input[type="email"],
.checkout-billing-shipping input[type="tel"],
.checkout-billing-shipping textarea,
.checkout-billing-shipping select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

/* Shipping Methods */
.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.shipping-option-label {
    display: block;
    cursor: pointer;
    font-weight: normal !important;
}

/* Order Review Table */
.order-review-table {
    width: 100%;
    border-collapse: collapse;
}

.order-review-table th, .order-review-table td {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.order-review-table thead th {
    font-weight: bold;
    color: var(--dark-color);
    border-bottom: 2px solid #ddd;
}

.order-review-table .total-row th {
    font-size: 1.2em;
    color: var(--primary-color);
    border-bottom: none;
}

/* Payment Methods */
.payment-option {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
}

.payment-option label {
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 5px;
    display: inline-block;
}

.payment-option i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.payment-info {
    font-size: 0.9em;
    color: #777;
    padding-left: 25px;
    margin-top: 5px;
}

.place-order-wrapper {
    text-align: center;
}

.terms-note {
    font-size: 0.9em;
    margin-bottom: 15px;
    color: #555;
}

.place-order-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.2em;
}

/* ========================================================= */
/* 18. ORDER CONFIRMATION PAGE STYLES */
/* ========================================================= */
.confirmation-page-main {
    padding: 50px 0 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.confirmation-box {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 40px;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.confirmation-icon {
    font-size: 5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.confirmation-title {
    font-size: 2em;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.order-meta-summary {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-size: 1em;
}

.order-meta-summary .highlight {
    font-weight: bold;
    color: var(--secondary-color);
}

/* Details Grid */
.order-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.detail-box {
    text-align: left;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.detail-box h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--light-bg);
    padding-bottom: 5px;
}

.support-detail-box {
    border-left: 5px solid #25D366; /* WhatsApp Green */
}

.support-detail-box .whatsapp-btn {
    background-color: #25D366;
    margin-top: 15px;
    width: 100%;
    padding: 10px;
}
.mt-10 {
    margin-top: 10px;
}

/* Order Items Review Table */
.order-items-review {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ========================================================= */
/* 19. 404 ERROR PAGE STYLES */
/* ========================================================= */
.error-page-main {
    padding: 80px 0;
    text-align: center;
    background-color: var(--light-bg);
}

.error-content-box {
    max-width: 650px;
    margin: 0 auto;
    padding: 50px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.error-code {
    font-size: 8em;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.05);
}

.error-message h3 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.error-suggestions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.error-suggestions h4 {
    color: var(--dark-color);
    font-size: 1.3em;
    margin-bottom: 15px;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-suggestions i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* ========================================================= */
/* 20. PRODUCTS LISTING PAGE STYLES (FILTERS) */
/* ========================================================= */

.product-listing-page-main {
    padding: 40px 0 80px 0;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9em;
    color: #888;
}

.product-listing-grid {
    display: grid;
    grid-template-columns: 280px 1fr; /* Sidebar and main content */
    gap: 40px;
}

/* Sidebar Filters */
.sidebar-filters {
    padding-top: 20px;
}

.filter-box {
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.filter-box h3 {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.category-filter ul {
    list-style: none;
    padding: 0;
}
.category-filter li a {
    display: block;
    padding: 8px 0;
    color: var(--dark-color);
    transition: color 0.3s;
}

/* Price Filter */
.price-range-slider {
    width: 100%;
    margin: 15px 0;
}
.price-range-display {
    font-weight: bold;
    margin-bottom: 15px;
}

/* Stock Filter */
.stock-filter label {
    display: block;
    margin-bottom: 8px;
    font-weight: normal;
}

/* Product Grid Content */
.sorting-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 30px;
}

.product-count {
    font-size: 0.9em;
    color: #555;
}

.sort-dropdown label {
    margin-right: 10px;
    font-weight: 500;
}

.sort-dropdown select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}


/* ========================================================= */
/* 21. RESPONSIVE DESIGN (Media Queries) */
/* ========================================================= */

@media (max-width: 992px) {
    /* General */
    .container {
        padding: 0 15px;
    }
    .section-title {
        font-size: 2em;
    }
    
    /* Header/Nav */
    .middle-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .search-form {
        width: 100%;
    }
    .main-nav ul {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Index/Home */
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .slide-content {
        left: 5%;
        padding: 20px;
        max-width: 90%;
    }
    .slide-content h2 {
        font-size: 2.5em;
    }

    /* Product Detail */
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Contact/About */
    .contact-grid, .about-content-grid {
        grid-template-columns: 1fr;
    }

    /* Account Pages */
    .account-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .account-sidebar {
        height: auto;
    }
    
    /* Cart/Checkout */
    .cart-grid, .checkout-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Products Listing */
    .product-listing-grid {
        grid-template-columns: 1fr;
    }
    .sidebar-filters {
        padding: 0;
    }
    
    /* Confirmation */
    .order-details-grid {
        grid-template-columns: 1fr;
    }
    .order-meta-summary {
        flex-direction: column;
        gap: 10px;
        text-align: left;
        padding: 15px 20px;
    }
}

@media (max-width: 600px) {
    /* Header/Nav */
    .top-flex {
        flex-direction: column;
        gap: 5px;
    }
    .main-nav ul {
        display: block; /* Stack links vertically on smaller screens */
    }
    .main-nav ul li a {
        text-align: center;
        padding: 10px 0;
    }

    /* Index/Home */
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .slide {
        height: 400px;
    }
    .slide-content {
        top: 60%;
    }
    .slide-content h2 {
        font-size: 2em;
    }
    .banner-grid {
        grid-template-columns: 1fr;
    }
    .banner-item {
        height: 200px;
    }

    /* Cart */
    .cart-actions-bottom {
        flex-direction: column-reverse;
        gap: 15px;
    }
    .cart-actions-bottom .btn {
        width: 100%;
    }

    /* Checkout */
    .form-group-half {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-left: 5px;
}
.top-bar {
    border-bottom: 2px solid #2196f3; /* यहां अपना नया color डालो */
}
