:root {
    --green: #4caf50;
    --dark-green: #2e7d32;
    --black: #130f40;
    --light-color: #666;
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,0.1);
    --white: #fff;
    --light-bg: #f8f9fa;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding: 7rem;
}

body {
    background: var(--light-bg);
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    padding: .8rem 2rem;
    border: .2rem solid var(--green);
    border-radius: .5rem;
    color: var(--green);
    background: transparent;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 500;
}

.btn:hover {
    background: var(--green);
    color: white;
    border-color: var(--green);
}

/* Header Section */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 7%;
    background: var(--white);
    box-shadow: var(--box-shadow);
    z-index: 1000;
}

.header .logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--green);
}

.header .logo i {
    color: var(--green);
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.navbar a {
    font-size: 1.4rem;
    margin: 0 0.5rem;
    color: var(--black);
    transition: 0.3s;
    white-space: nowrap;
}

.navbar a:hover {
    color: var(--green);
}

/* Icons */
.icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.icons label {
    height: 3.8rem;
    width: 3.8rem;
    line-height: 3.8rem;
    border-radius: .5rem;
    background: var(--light-bg);
    color: var(--black);
    font-size: 1.6rem;
    text-align: center;
    cursor: pointer;
}

.icons label:hover {
    background: var(--green);
    color: white;
}

/* Search Form */
.search-form {
    position: absolute;
    top: 110%;
    right: -110%;
    width: 30rem;
    background: var(--white);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    padding: 1rem;
    transition: 0.3s;
}

.search-form.active {
    right: 2rem;
}

.search-form input {
    width: 100%;
    padding: 1rem;
    border: .1rem solid var(--light-color);
    border-radius: .5rem;
    font-size: 1.4rem;
}

/* Shopping Cart */
.shopping-cart {
    position: absolute;
    top: 110%;
    right: -110%;
    padding: 1rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    width: 35rem;
    background: var(--white);
    transition: 0.3s;
    z-index: 1001;
    max-height: 80vh;
    overflow-y: auto;
}

.shopping-cart.active {
    right: 2rem;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 1.3rem;
}

.cart-item-details p {
    font-size: 1.1rem;
    color: var(--green);
}

.cart-item-actions button {
    background: var(--green);
    color: white;
    border: none;
    width: 22px;
    height: 22px;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 3px;
    font-size: 1rem;
}

.remove-btn {
    background: #f44336 !important;
    width: auto !important;
    padding: 0 6px;
}

.cart-total {
    font-size: 1.8rem;
    padding: 1rem 0;
    text-align: center;
    color: var(--black);
    font-weight: bold;
}

.shopping-cart .btn {
    display: block;
    text-align: center;
    margin: 1rem 0;
}

.empty-cart {
    text-align: center;
    padding: 2rem;
    color: var(--light-color);
}

/* Login Forms */
.login-form {
    position: fixed;
    top: 50%;
    right: -110%;
    transform: translateY(-50%);
    width: 32rem;
    max-width: 90vw;
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
    border-radius: 1rem;
    background: var(--white);
    text-align: center;
    transition: all 0.3s ease;
    z-index: 1002;
    display: block;
}

.login-form.active {
    right: 2rem;
    display: block !important;
}

.login-form h3 {
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.login-form .box {
    margin: 1rem 0;
    background: var(--light-bg);
    border-radius: .5rem;
    width: 100%;
    padding: 1.2rem;
    font-size: 1.4rem;
    color: var(--black);
    text-transform: none;
    border: 1px solid #ddd;
}

.login-form .box:focus {
    border-color: var(--green);
    outline: none;
}

#menu-btn {
    display: none;
}

/* Hero Section */
.home {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('images/banner8.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 12rem;
    padding-bottom: 8rem;
    min-height: 85vh;
}

.home .content {
    text-align: center;
    width: 100%;
    max-width: 70rem;
    padding: 3rem;
    border-radius: 1rem;
}

.home .content h3 {
    color: black;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideInFromLeft 0.8s ease-out;
}

.home .content h3 span {
    color: var(--green);
    font-size: 4rem;
    display: inline-block;
    animation: pulse 1s ease-in-out infinite;
}

.home .content .highlight {
    background: var(--green);
    color: white;
    padding: 0 1rem;
    border-radius: 0.5rem;
    display: inline-block;
    animation: zoomIn 0.5s ease-out 0.3s both;
}

.home .content .highlight-text {
    color: var(--green);
    font-weight: bold;
}

.home .content p {
    font-size: 1.6rem;
    color: black;
    padding: 1rem 0;
    line-height: 1.8;
}

/* Shop Now Button */
.shop-now-btn {
    background: linear-gradient(45deg, #4caf50, #45a049);
    color: white !important;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.6rem;
    font-weight: bold;
    border-radius: 50px;
    animation: pulse 1.5s ease-in-out infinite, glow 2s ease-in-out infinite;
    transition: transform 0.3s;
}

.shop-now-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #45a049, #4caf50);
    color: white !important;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(76,175,80,0.3); }
    50% { box-shadow: 0 0 20px rgba(76,175,80,0.5); }
}

.urgency-text {
    font-size: 1.3rem;
    color: #ff6b6b;
    margin-top: 1rem;
    animation: blink 1s ease-in-out infinite;
    font-weight: 500;
}

/* Section Padding */
section {
    padding: 2rem 7%;
}

/* Heading */
.heading {
    text-align: center;
    padding: 2rem 0;
    padding-bottom: 3rem;
    font-size: 2.8rem;
    color: var(--black);
}

.heading span {
    background: var(--green);
    color: var(--white);
    display: inline-block;
    padding: .5rem 3rem;
    clip-path: polygon(100% 0, 93% 50%, 100% 100%, 0% 100%, 7% 50%, 0% 0%);
}

/* Lifestyle Section */
.lifestyle {
    background: var(--white);
    margin: 2rem 0;
}

.lifestyle-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.lifestyle-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 1rem;
    transition: transform 0.3s;
}

.lifestyle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 1.5rem rgba(76,175,80,0.2);
}

.lifestyle-card i {
    font-size: 4rem;
    color: var(--green);
    margin-bottom: 1rem;
}

.lifestyle-card h3 {
    font-size: 1.8rem;
    margin: 1rem 0;
}

.lifestyle-card p {
    font-size: 1.3rem;
    color: var(--light-color);
}

/* Features Grid */
.features .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.features .box {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    transition: 0.3s;
}

.features .box:hover {
    box-shadow: 0 0 1.5rem rgba(76,175,80,0.3);
}

.features .box img {
    height: 12rem;
    width: 100%;
    object-fit: contain;
}

.features .box h3 {
    font-size: 1.8rem;
    margin-top: 1rem;
}

.features .box p {
    font-size: 1.3rem;
    margin: 0.5rem 0;
    color: var(--light-color);
}

/* Category Buttons */
.category-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    padding: 0.8rem 1.8rem;
    background: var(--white);
    border: 1px solid var(--green);
    border-radius: 3rem;
    cursor: pointer;
    font-size: 1.3rem;
    transition: 0.3s;
}

.category-btn:hover, .category-btn.active {
    background: var(--green);
    color: white;
}

/* Product Controls */
.product-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background: var(--white);
    border-radius: .5rem;
}

.sort-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.sort-btn {
    padding: 0.5rem 1rem;
    background: var(--light-bg);
    border: none;
    border-radius: .5rem;
    cursor: pointer;
    font-size: 1.2rem;
}

.sort-btn:hover, .sort-btn.active {
    background: var(--green);
    color: white;
}

.product-info {
    font-size: 1.3rem;
    color: var(--light-color);
}

/* Products Grid */
.products .box-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .products .box-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products .box-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products .box-container {
        grid-template-columns: 1fr;
    }
}

.products .box {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    transition: 0.3s;
    position: relative;
}

.products .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 1rem rgba(76,175,80,0.3);
}

.products .box img {
    height: 12rem;
    width: 100%;
    object-fit: contain;
}

.products .box h3 {
    font-size: 1.5rem;
    margin: 0.8rem 0;
}

.products .box p {
    font-size: 1.5rem;
    color: var(--green);
    font-weight: bold;
    margin: 0.3rem 0;
}

/* Discount Badges */
.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 10;
    animation: pulse 1s ease-in-out infinite;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.discount-badge::before {
    content: "⚡ ";
}

.discount-badge::after {
    content: " OFF";
}

.hot-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f44336;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: bold;
    animation: blink 1s ease-in-out infinite;
}

/* Categories Grid */
.categories .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.categories .box {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    transition: 0.3s;
}

.categories .box:hover {
    transform: scale(1.02);
    box-shadow: 0 0 1rem rgba(76,175,80,0.3);
}

.categories .box img {
    height: 12rem;
    width: 100%;
    object-fit: contain;
}

.categories .box h3 {
    font-size: 1.8rem;
    margin: 1rem 0;
}

.categories .box p {
    font-size: 1.3rem;
    color: var(--green);
    font-weight: bold;
}

/* Blogs Section */
.blogs .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.blogs .box {
    background: var(--white);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.blogs .box img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
}

.blogs .box .content {
    padding: 1.5rem;
}

.blogs .box .content .icons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blogs .box .content .icons a {
    font-size: 1.2rem;
    color: var(--light-color);
}

.blogs .box .content .icons a:hover {
    color: var(--green);
}

.blogs .box .content h3 {
    font-size: 1.6rem;
    color: var(--black);
    margin: 0.8rem 0;
}

.blogs .box .content p {
    font-size: 1.3rem;
    color: var(--light-color);
    line-height: 1.6;
    margin: 0.8rem 0;
}

/* Wishlist Section */
.wishlist-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.wishlist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.2rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    transition: 0.3s;
}

.wishlist-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 1rem rgba(76,175,80,0.3);
}

.wishlist-item img {
    width: 7rem;
    height: 7rem;
    object-fit: cover;
    border-radius: .5rem;
}

.wishlist-content {
    flex: 1;
}

.wishlist-content h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.wishlist-content p {
    font-size: 1.3rem;
    color: var(--light-color);
    margin-bottom: 0.5rem;
}

.wishlist-content .btn {
    margin-right: 0.5rem;
    font-size: 1.1rem;
    padding: 0.3rem 0.8rem;
}

/* Newsletter Section */
.newsletter {
    background: var(--white);
    margin: 2rem 0;
    padding: 3rem;
    text-align: center;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
}

.newsletter p {
    font-size: 1.5rem;
    color: var(--light-color);
    margin-bottom: 2rem;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 50rem;
    margin: 0 auto;
}

.newsletter form input {
    flex: 1;
    padding: 1rem;
    border: .1rem solid #ddd;
    border-radius: .5rem;
    font-size: 1.4rem;
}

.newsletter form .btn {
    margin-top: 0;
}

/* Footer */
.footer {
    background-color: white;
    color: green;
    padding: 50px 0 20px;
    font-family: Arial, sans-serif;
    font-size: 15px;
}

.footer-tagline {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e8f5e9);
    border-radius: 10px;
    margin: 0 20px 30px 20px;
}

.footer-tagline h2 {
    color: #2e7d32;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-tagline p {
    color: #666;
    margin: 10px 0;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
}

.footer-box {
    flex: 1 1 calc(25% - 20px);
    min-width: 220px;
}

.footer-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: green;
    border-bottom: 2px solid #e8f5e9;
    padding-bottom: 5px;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 8px;
}

.footer-box ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-box ul li a:hover {
    color: var(--green);
}

.social-links a {
    display: inline-block;
    margin: 5px;
    padding: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 20px;
    font-size: 20px;
    color: #fff;
    background-color: var(--green);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--dark-green);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: #aaa;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: 0.3s;
}

#back-to-top:hover {
    background: var(--dark-green);
    transform: scale(1.1);
}

/* Animations */
@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 991px) {
    html {
        font-size: 55%;
    }
    .header {
        padding: 1.5rem;
    }
    section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    #menu-btn {
        display: inline-block;
    }
    
    .navbar {
        position: absolute;
        top: 110%;
        left: -100%;
        width: 100%;
        background: var(--white);
        box-shadow: var(--box-shadow);
        flex-direction: column;
        transition: 0.3s;
        padding: 1rem 0;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar a {
        display: block;
        padding: 1rem;
        margin: 0;
        text-align: center;
        font-size: 1.5rem;
    }
    
    .search-form, .shopping-cart {
        width: 90% !important;
        right: -90% !important;
    }
    
    .search-form.active, .shopping-cart.active {
        right: 5% !important;
    }
    
    .login-form {
        width: 90% !important;
    }
    
    .login-form.active {
        right: 5% !important;
    }
    
    .home .content h3 {
        font-size: 2.5rem;
    }
    
    .home .content h3 span {
        font-size: 2.8rem;
    }
    
    .product-controls {
        flex-direction: column;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-box h3 {
        display: inline-block;
    }
    
    .social-links {
        justify-content: center;
    }
    
    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }
    .heading {
        font-size: 2.2rem;
    }
}

/* Smart Recommendations */
.recommendations-section {
    margin-top: 4rem;
    background: var(--white);
    padding: 2rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .recommendations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
}

.recommendations-section .box {
    border: 1px solid #eee;
    position: relative;
}

/* Smart Cart Upselling */
.smart-suggestion {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    z-index: 10001;
    font-size: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    max-width: 280px;
}

.smart-suggestion button {
    margin-top: 10px;
    background: white;
    color: #4caf50;
    border: none;
    padding: 6px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

/* Delivery Time Slot & Payment Methods */
.delivery-slot-section label, .payment-methods-section label {
    cursor: pointer;
    transition: 0.3s;
}

.delivery-slot-section label:hover, .payment-methods-section label:hover {
    border-color: #4caf50;
    background: #e8f5e9;
}

/* Verified Reviews */
.verified-reviews {
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    margin: 2rem 0;
    padding: 2rem 7%;
    border-radius: 1rem;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 4px solid #4caf50;
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76,175,80,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: bold;
    color: #2e7d32;
}

.verified-badge {
    background: #4caf50;
    color: white;
    padding: 2px 8px;
    border-radius: 15px;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.review-rating {
    color: #ff9800;
    margin: 8px 0;
    font-size: 1.2rem;
}

.review-text {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin: 10px 0;
}

.review-date {
    color: #999;
    font-size: 10px;
    margin-top: 10px;
}

.add-review-section {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.add-review-section textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    margin-bottom: 15px;
}

.add-review-section textarea:focus {
    outline: none;
    border-color: #4caf50;
}

.rating-input {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.rating-input .stars {
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.rating-input .stars:hover {
    transform: scale(1.1);
}

/* Order Status Colors */
.status-pending {
    background: #fff3e0;
    color: #ff9800;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    display: inline-block;
}

.status-processing {
    background: #e3f2fd;
    color: #2196f3;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    display: inline-block;
}

.status-delivered, .status-completed {
    background: #e8f5e9;
    color: #4caf50;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    display: inline-block;
}

.status-cancelled {
    background: #ffebee;
    color: #f44336;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    display: inline-block;
}

/* Order Success Modal */
.order-success-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    max-width: 90vw;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 100000;
    overflow: hidden;
}

.order-success-modal .modal-header {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    padding: 20px;
    text-align: center;
    color: white;
}

.order-success-modal .modal-header i {
    font-size: 50px;
    margin-bottom: 10px;
}

.order-success-modal .modal-body {
    padding: 25px;
    text-align: center;
}

.order-success-modal .order-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    text-align: left;
}

.order-details p {
    margin: 8px 0;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.order-details .label {
    font-weight: 600;
    color: #555;
}

.order-details .value {
    color: #2e7d32;
    font-weight: 500;
}

.modal-footer {
    padding: 15px 20px 20px;
    text-align: center;
}

.modal-footer button {
    background: #4caf50;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
}

/* Reorder Button */
.reorder-btn {
    background: #4caf50;
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 11px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.reorder-btn:hover {
    background: #2e7d32;
    transform: scale(1.05);
}

 /* ========== WISHLIST BUTTON - SAME AS ADD TO CART ========== */
.add-to-wishlist {
    margin-top: 5px;
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 0.2rem solid var(--green);
    border-radius: 0.5rem;
    color: var(--green);
    background: transparent;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.add-to-wishlist:hover {
    background: var(--green);
    color: white;
    border-color: var(--green);
    transform: scale(1.02);
}
#add-review-section {
    display: block !important;
}
/* Cart count badge animation */
#cart-count {
    transition: transform 0.2s ease;
}

#cart-count:not(:empty) {
    animation: bounce 0.3s ease;
}

@keyframes bounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}
/* ========================================== */
/* CART COUNT BADGE STYLING (ADD THIS) */
/* ========================================== */

/* Cart icon wrapper - for proper badge positioning */
.cart-icon-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Cart count badge */
.cart-badge {
    position: absolute;
    top: -10px;
    right: -15px;
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 11px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    text-align: center;
    line-height: 14px;
    display: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    border: 1.5px solid white;
    font-family: 'Poppins', sans-serif;
    z-index: 10;
    animation: cartBump 0.3s ease-out;
}

/* Animation when count updates */
@keyframes cartBump {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Cart icon hover effect */
.cart-icon-wrapper:hover .cart-badge {
    transform: scale(1.1);
}

/* ========================================== */
/* DASHBOARD BUTTON IN CART (ADD THIS) */
/* ========================================== */

.dashboard-link {
    background: linear-gradient(135deg, --dark-green, --box-shadow) !important;
    color: white !important;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 10px;
    transition: all 0.3s ease;
    border: none !important;
}

.dashboard-link:hover {
    background: linear-gradient(135deg, #1976d2, #0d47a1) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33,150,243,0.3);
}

/* ========================================== */
/* EXISTING CART BADGE ANIMATION (FIX) */
/* ========================================== */

#cart-count {
    transition: transform 0.2s ease;
}

#cart-count:not(:empty) {
    animation: bounce 0.3s ease;
}

@keyframes bounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* ========================================== */
/* WISHLIST BUTTON HOVER EFFECT */
/* ========================================== */

.add-to-wishlist {
    margin-top: 5px;
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 0.2rem solid var(--green);
    border-radius: 0.5rem;
    color: var(--green);
    background: transparent;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.add-to-wishlist:hover {
    background: var(--green);
    color: white;
    border-color: var(--green);
    transform: scale(1.02);
}

/* ========================================== */
/* REMOVE BUTTON IN CART */
/* ========================================== */

.remove-btn {
    background: #f44336 !important;
    color: white !important;
    width: auto !important;
    padding: 2px 10px !important;
    border-radius: 3px !important;
}

.remove-btn:hover {
    background: #d32f2f !important;
}

/* ========================================== */
/* CART ITEM ACTIONS BUTTONS */
/* ========================================== */

.cart-item-actions button {
    background: var(--green);
    color: white;
    border: none;
    width: 26px;
    height: 26px;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.2s;
}

.cart-item-actions button:hover {
    background: var(--dark-green);
    transform: scale(1.05);
}

/* ========================================== */
/* CHECKOUT BUTTON STYLING */
/* ========================================== */

#checkout-btn {
    background: linear-gradient(135deg, #4caf50, #2e7d32) !important;
    color: white !important;
    border: none !important;
    margin-top: 5px;
}

#checkout-btn:hover {
    background: linear-gradient(135deg, #2e7d32, #1b5e20) !important;
    transform: translateY(-2px);
}
/* Cart icon wrapper */
.cart-icon-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Cart count badge */
.cart-badge {
    position: absolute;
    top: -10px;
    right: -15px;
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 11px;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
    display: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    border: 1.5px solid white;
    animation: cartBump 0.3s ease-out;
}

@keyframes cartBump {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.dashboard-link {
    background: #2196f3 !important;
    color: white !important;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 10px;
}

.dashboard-link:hover {
    background: #1976d2 !important;
}
/* Dashboard Button - Green Color */
.dashboard-link {
    background: linear-gradient(135deg, #4caf50, #2e7d32) !important;
    color: white !important;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.dashboard-link:hover {
    background: linear-gradient(135deg, #2e7d32, #1b5e20) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

/* ========================================== */
/* PRODUCT ACTIONS - BUTTONS IN ONE LINE & SMALLER */
/* ========================================== */

.product-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-actions .btn,
.product-actions .add-to-wishlist {
    flex: 1;
    min-width: 90px;
    text-align: center;
    margin: 0 !important;
    font-size: 1rem;
    padding: 0.4rem 0.6rem;
    border-radius: 0.4rem;
}

/* Mobile view - stack buttons */
@media (max-width: 480px) {
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn,
    .product-actions .add-to-wishlist {
        width: 100%;
    }
}

/* ========================================== */
/* EMPTY WISHLIST - PROFESSIONAL STYLING */
/* ========================================== */

.empty-wishlist {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 16px;
    margin: 20px 0;
    border: 2px dashed #4caf50;
    grid-column: 1 / -1;
}

.empty-wishlist i {
    font-size: 56px;
    color: #4caf50;
    margin-bottom: 20px;
    display: block;
}

.empty-wishlist h3 {
    color: #2e7d32;
    font-size: 22px;
    margin-bottom: 10px;
}

.empty-wishlist p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.empty-wishlist .btn {
    background: #4caf50;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
    display: inline-block;
}

.empty-wishlist .btn:hover {
    background: #2e7d32;
    transform: translateY(-2px);
}


/* ========================================== */
/* ADD TO CART & WISHLIST BUTTONS - EQUAL SIZE */
/* ========================================== */

.add-to-cart,
.add-to-wishlist {
    display: inline-block;
    padding: 0.45rem 0.8rem;
    border: 0.15rem solid var(--green);
    border-radius: 0.4rem;
    color: var(--green);
    background: transparent;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.add-to-cart:hover,
.add-to-wishlist:hover {
    background: var(--green);
    color: white;
    border-color: var(--green);
    transform: translateY(-2px);
}

/* Product Actions Container - Ensures both buttons are same size */
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    justify-content: center;
    width: 100%;
}

.product-actions .add-to-cart,
.product-actions .add-to-wishlist {
    flex: 1;
    min-width: 95px;
    max-width: 110px;
    text-align: center;
    margin: 0 !important;
}

/* Mobile view */
@media (max-width: 480px) {
    .product-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .product-actions .add-to-cart,
    .product-actions .add-to-wishlist {
        width: 100%;
        max-width: none;
        white-space: normal;
    }
}


/* ========================================== */
/* FONT AWESOME ICONS COLOR - FINAL */
/* ========================================== */

/* Website ke andar sab icons green */
i, .fas, .far, [class*="fa-"] {
    color: #4caf50;
}

/* Stars - Green */
.fa-star, .fas.fa-star, .far.fa-star, .stars i {
    color: #4caf50 !important;
}

/* Heart (Wishlist) - Green */
.fa-heart, .fas.fa-heart {
    color: #4caf50 !important;
}

/* Trash/Delete - Light Red */
.fa-trash, .fa-trash-can {
    color: #e74c3c !important;
}

/* ========================================== */
/* FOOTER ICONS */
/* ========================================== */

/* Quick links icons - Green */
.footer-box ul li a i {
    display: inline-block !important;
    width: 20px !important;
    margin-right: 10px !important;
    color: #4caf50 !important;
    font-size: 14px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-box ul li a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.footer-box ul li a:hover i {
    color: white !important;
}

/* Social media icons - White (background green hai) */
.social-links a i {
    color: white !important;
}

/* Footer tagline icons - White */
.footer-tagline i {
    color: white !important;
}

/* Contact us icons - Green */
.footer-box .fa-location-dot,
.footer-box .fa-phone,
.footer-box .fa-envelope {
    color: #4caf50 !important;
}


/* ========================================== */
/* FONT AWESOME ICONS COLOR - FINAL */
/* ========================================== */

/* Sab icons default green */
i, .fas, .far, [class*="fa-"] {
    color: #4caf50;
}

/* Hero section icons - Green */
.home i, .home .fas {
    color: #4caf50 !important;
}

/* Stars - Green */
.fa-star, .fas.fa-star, .far.fa-star, .stars i {
    color: #4caf50 !important;
}

/* Heart (Wishlist) - Green */
.fa-heart, .fas.fa-heart {
    color: #4caf50 !important;
}

/* Trash/Delete - Light Red */
.fa-trash, .fa-trash-can {
    color: #e74c3c !important;
}

/* ========================================== */
/* FOOTER ICONS */
/* ========================================== */

/* Quick links icons - Green (visible) */
.footer-box ul li a i {
    display: inline-block !important;
    width: 20px !important;
    margin-right: 10px !important;
    color: #4caf50 !important;
    font-size: 14px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-box ul li a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.footer-box ul li a:hover i {
    color: white !important;
}

/* Social media icons - White (background green hai) */
.social-links a i {
    color: white !important;
}

/* Footer tagline icons - White (but visible - background dark green hai) */
.footer-tagline i {
    color: white !important;
    font-size: 1.6rem;
    margin: 0 5px;
}

/* Contact us icons - Green */
.footer-box .fa-location-dot,
.footer-box .fa-phone,
.footer-box .fa-envelope {
    color: #4caf50 !important;
}


/* ========================================== */
/* FONT AWESOME ICONS COLOR - FINAL */
/* ========================================== */

/* Sab icons default green */
i, .fas, .far, [class*="fa-"] {
    color: #4caf50;
}

/* Hero section icons - Force Green */
.home i, .home .fas, .shop-now-btn i {
    color: white !important;  /* Yeh change karo - button ke andar icons white */
}

/* Button ke andar gift icons - white rakhna better hai */
.shop-now-btn i {
    color: white !important;
}

/* Stars - Green */
.fa-star, .fas.fa-star, .far.fa-star, .stars i {
    color: #4caf50 !important;
}

/* Heart (Wishlist) - Green */
.fa-heart, .fas.fa-heart {
    color: #4caf50 !important;
}

/* Trash/Delete - Light Red */
.fa-trash, .fa-trash-can {
    color: #e74c3c !important;
}

/* ========================================== */
/* FOOTER ICONS */
/* ========================================== */

/* Quick links icons - Green */
.footer-box ul li a i {
    display: inline-block !important;
    width: 20px !important;
    margin-right: 10px !important;
    color: #4caf50 !important;
    font-size: 14px !important;
}

.footer-box ul li a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

/* Social media icons - White */
.social-links a i {
    color: white !important;
}

/* Footer tagline icons - White (dark green background pe dikhenge) */
.footer-tagline i {
    color: white !important;
    font-size: 1.8rem;
    margin: 0 5px;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Contact us icons - Green */
.footer-box .fa-location-dot,
.footer-box .fa-phone,
.footer-box .fa-envelope {
    color: #4caf50 !important;
}


/* Force footer tagline icons to GREEN */
.footer-tagline i {
    color: #4caf50 !important;
    font-size: 20px !important;
    margin: 0 8px !important;
}

