* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Bengali', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.header h1 a {
    color: #fff;
    text-decoration: none;
}

.header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Slider */
.slider {
    position: relative;
    height: 50px;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    margin: 20px auto;
    max-width: 500px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    color: #fff;
}

/* Products */
.main-content {
    padding: 30px 0;
}

.products-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.product-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    height: 400px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
    line-height: 1.4;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Footer */
.footer {
    background: #34495e;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}

.footer p {
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: white;
    text-decoration: none;
}

.footer-link:hover {
    color: #3498db;
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .products-showcase {
        max-width: 320px;
        gap: 20px;
    }
    
    .product-image {
        height: 300px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .slider {
        max-width: 350px;
    }
    
    .slide p {
        font-size: 1rem;
    }
}

/* WooCommerce specific styles */
.woocommerce-products-header {
    margin-bottom: 2rem;
    text-align: center;
}

.woocommerce-products-header__title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* WooCommerce Product Gallery */
.woocommerce-product-gallery {
    margin-bottom: 2rem;
}

.woocommerce-product-gallery__wrapper {
    position: relative;
}

.woocommerce-product-gallery__image {
    display: block;
    text-align: center;
}

/* Single Product Layout */
.single-product .product-info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.single-product .product-images {
    text-align: center;
}

.single-product .product-details {
    padding: 1rem;
}

/* WooCommerce Price */
.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e74c3c;
    margin: 1rem 0;
}

.price .amount {
    font-size: 1.8rem;
}

/* WooCommerce Add to Cart */
.cart {
    margin: 2rem 0;
}

.single_add_to_cart_button {
    background-color: #28a745 !important;
    color: white !important;
    padding: 15px 30px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-family: 'Noto Sans Bengali', sans-serif !important;
    width: 100%;
    text-align: center;
}

.single_add_to_cart_button:hover {
    background-color: #218838 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
}

.single_add_to_cart_button:disabled {
    background-color: #6c757d !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* Quantity Input */
.quantity {
    margin-bottom: 1rem;
}

.quantity .qty {
    width: 60px;
    padding: 8px;
    border: 2px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
}

/* WooCommerce Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    border-left: 4px solid;
}

.woocommerce-message {
    background-color: #d4edda;
    border-left-color: #28a745;
    color: #155724;
}

.woocommerce-info {
    background-color: #d1ecf1;
    border-left-color: #17a2b8;
    color: #0c5460;
}

.woocommerce-error {
    background-color: #f8d7da;
    border-left-color: #dc3545;
    color: #721c24;
}

/* Product Meta */
.product_meta {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.product_meta > span {
    display: block;
    margin-bottom: 0.5rem;
}

/* No products message */
.no-products-message {
    text-align: center;
    padding: 3rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 2rem 0;
}

.no-products-message h3 {
    color: #6c757d;
    margin-bottom: 1rem;
}

.no-products-message p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* Product links */
.product-title a {
    color: inherit;
    text-decoration: none;
}

.product-title a:hover {
    color: #28a745;
}

.product-image a {
    display: block;
}

/* Direct order form */
.direct-order-form {
    margin-top: 1rem;
}

.direct-order-btn {
    width: 100%;
    margin: 0;
}

/* WooCommerce Mobile Responsive */
@media (max-width: 768px) {
    .single-product .product-info-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .single_add_to_cart_button {
        padding: 12px 20px !important;
        font-size: 16px !important;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .price .amount {
        font-size: 1.5rem;
    }
    
    .no-products-message {
        padding: 2rem 1rem;
    }
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    color: white;
    font-size: 28px;
}

.icon-circle i {
    color: white;
}

.phone-icon i {
    transform: rotate(96deg);
}

.phone-icon {
    background: linear-gradient(135deg, #ff1744 0%, #f50057 100%);
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.5), 0 0 40px rgba(255, 23, 68, 0.3);
}

.phone-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 23, 68, 0.6), 0 0 50px rgba(255, 23, 68, 0.4);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 0 0 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6), 0 0 50px rgba(37, 211, 102, 0.4);
}

/* Mobile responsive for floating buttons */
@media (max-width: 768px) {
    .floating-contact-buttons {
        right: 4px;
        bottom: 15px;
        gap: 12px;
    }
    
    .icon-circle {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}