:root {
    --emerald: #50C878;
    --emerald-dark: #3DA162;
    --emerald-light: #7DDFA3;
    --cream: #F8F9F2;
    --taupe: #C4B7A6;
    --charcoal: #333333;
    --light-gray: #f5f5f5;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

        
        body {
                     
			
			  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
	 overflow-x: hidden;
        }
		.breadcrumb-area {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

        
        /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 90vh;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease;
            display: flex;
            align-items: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-content {
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 30px;
            max-width: 700px;
            border-radius: 10px;
            margin-left: 10%;
            animation: fadeIn 1s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .slide-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background: var(--emerald);
            transform: scale(1.3);
        }
        
        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(80, 200, 120, 0.05) 0%, rgba(61, 161, 98, 0.05) 100%);
        }
        
        .feature-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            text-align: center;
            padding: 30px 20px;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--emerald);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 30px;
        }
        
        /* Products Section */
        .products-section {
            padding: 80px 0;
            background-color: var(--cream);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            text-align: center;
            color: var(--emerald-dark);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--emerald);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .product-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(80, 200, 120, 0.07) 0%, rgba(61, 161, 98, 0.07) 100%);
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
            padding: 30px;
            margin: 15px;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            font-size: 50px;
            color: var(--emerald);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .owl-carousel .owl-nav {
            position: absolute;
            top: -70px;
            right: 0;
        }
        
        .owl-carousel .owl-nav button {
            background: var(--emerald) !important;
            color: white !important;
            width: 40px;
            height: 40px;
            border-radius: 50% !important;
            margin: 0 5px;
            transition: all 0.3s;
        }
        
        .owl-carousel .owl-nav button:hover {
            background: var(--emerald-dark) !important;
        }
        
        /* Blog Section */
        .blog-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .blog-card {
            background: var(--cream);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .blog-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .blog-date {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--emerald);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-slider {
                height: 70vh;
            }
            
            .slide-content {
                margin: 0 auto;
                width: 90%;
            }
            
            .owl-carousel .owl-nav {
                position: relative;
                top: 0;
                text-align: center;
                margin-top: 20px;
            }
        }
		
		
	/* Custom Cart Styling */
.cart-main-wrapper {
    padding: 30px 0;
}

.cart-table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cart-table th {
    background-color: #50C878;
    color: white;
    font-weight: 600;
}

.cart-table tbody tr:nth-child(even) {
    background-color: rgba(80, 200, 120, 0.05);
}

.cart-table tbody tr:hover {
    background-color: rgba(80, 200, 120, 0.08);
}

.cart-table .pro-thumbnail img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.cart-table .pro-thumbnail:hover img {
    transform: scale(1.05);
}

.cart-table .pro-title a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.cart-table .pro-title a:hover {
    color: #50C878;
}

.cart-table .pro-remove .btn-delete {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    transition: all 0.3s;
}

.cart-table .pro-remove .btn-delete:hover {
    background: #dc3545;
    color: white;
    transform: rotate(15deg);
}

.cart-table .pro-quantity .qty-input-group {
    display: flex;
    max-width: 120px;
}

.cart-table .pro-quantity .qty-btn {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.cart-table .pro-quantity .qty-btn:hover {
    background: #50C878;
    color: white;
}

.cart-table .pro-quantity .qty-input {
    width: 50px;
    height: 36px;
    border: 1px solid #e9ecef;
    border-left: none;
    border-right: none;
    text-align: center;
    font-weight: 500;
}

.cart-calculator-wrapper {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cart-calculator-wrapper h3 {
    border-bottom: 2px solid #50C878;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #333;
}

.empty-cart-message {
    text-align: center;
    padding: 60px 0;
}

.empty-cart-message i {
    font-size: 80px;
    color: #e9ecef;
    margin-bottom: 20px;
}

.empty-cart-message h2 {
    color: #6c757d;
    margin-bottom: 15px;
}

.empty-cart-message .btn {
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 18px;
}

@media (max-width: 767px) {
    .cart-table {
        display: block;
        overflow-x: auto;
    }
    
    .cart-table .pro-thumbnail img {
        width: 80px;
        height: 80px;
    }
    
    .pro-remove, .pro-quantity, .pro-price, .pro-title, .pro-thumbnail {
        min-width: 120px;
    }
}




.checkout-page-wrapper {
    padding: 40px 0;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--charcoal);
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--emerald);
}

.cart-table {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.cart-table table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    background-color: var(--emerald);
    color: white;
    padding: 15px;
    text-align: left;
}

.cart-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.cart-table tr:nth-child(even) {
    background-color: var(--light-gray);
}

.cart-table tr:last-child td {
    border-bottom: none;
}

.cart-table .pro-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.address-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.address-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.address-card h3 {
    color: var(--emerald);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.address-table {
    width: 100%;
}

.address-table td {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.address-table td:first-child {
    font-weight: 600;
    width: 40%;
}

.payment-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.payment-method {
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    padding: 20px;
    transition: var(--transition);
    cursor: pointer;
}

.payment-method:hover {
    border-color: var(--emerald);
}

.payment-method.active {
    border-color: var(--emerald);
    background-color: rgba(80, 200, 120, 0.05);
}

.payment-method h4 {
    margin-top: 0;
    color: var(--charcoal);
    display: flex;
    align-items: center;
}

.payment-method h4 i {
    margin-right: 10px;
    color: var(--emerald);
}

.payment-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: none;
}

.payment-method.active .payment-details {
    display: block;
}

.paypal-details {
    background: #f5f5f5;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 15px;
}

.bank-details {
    background: #f5f5f5;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 15px;
    white-space: pre-line;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--emerald);
    outline: none;
    box-shadow: 0 0 0 3px rgba(80, 200, 120, 0.2);
}



.btn:hover {
    background: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(80, 200, 120, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--emerald);
    color: var(--emerald);
}

.btn-outline:hover {
    background: var(--emerald);
    color: white;
}

.cart-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.alert {
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

.alert-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}

.summary-box {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.summary-total {
    font-weight: 700;
    font-size: 18px;
    color: var(--emerald);
}

.summary-footer-area {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .address-section {
        grid-template-columns: 1fr;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
}	