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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

/* Top Banner */
.top-banner {
    background: #000;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.close-banner {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

/* Fallback styles for text logo if needed */
.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.logo sup {
    font-size: 12px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #e91e63;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown-menu a {
    font-size: 13px;
    color: #666;
}

.dropdown-menu a:hover {
    color: #e91e63;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions button {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    color: #333;
    font-size: 18px;
    transition: color 0.3s;
}

.header-actions button:hover {
    color: #e91e63;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e91e63;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency {
    font-weight: 600;
    color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    background: #fff;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Banner Slide Styles */
.banner-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #fff;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 0 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.banner-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-offer {
    margin-bottom: 30px;
}

.banner-offer p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.banner-offer h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ff6b6b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-cta-btn {
    background: #333;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
    border-radius: 5px;
}

.banner-cta-btn:hover {
    background: #e91e63;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.banner-website {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

/* Responsive Banner Styles */
@media (max-width: 768px) {
    .banner-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-offer h3 {
        font-size: 26px;
    }
    
    .banner-cta-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .banner-content {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .banner-content h2 {
        font-size: 24px;
    }
    
    .banner-offer h3 {
        font-size: 22px;
    }
    
    .banner-cta-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}



/* Products Section Styles */
.products-section {
    padding: 80px 0 60px 0;
    background: #fff;
}

/* Premium Promo Banner above footer */
.promo-banner {
    position: relative;
    margin: 50px auto 40px auto;
    max-width: 1280px;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.promo-banner .promo-banner-inner {
    width: 100%;
    min-height: 260px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

@media (max-width: 992px) {
    .promo-banner { margin: 40px 16px 24px 16px; }
    .promo-banner .promo-banner-inner { min-height: 220px; }
}

@media (max-width: 600px) {
    .promo-banner .promo-banner-inner { min-height: 85px; }
}

/* Premium Page Header (clean, minimal) */
.page-header {
    background: #ffffff;
    padding: 28px 0;
    border-bottom: 1px solid #eef1f5;
}

.page-header .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-header h1 {
    margin: 0 0 6px 0;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #111111;
    position: relative;
}

.page-header h1::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin-top: 12px;
    border-radius: 2px;
    background: linear-gradient(90deg, #111111, #6b7280);
}

.page-header p {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .page-header { padding: 22px 0; }
    .page-header h1 { font-size: 28px; }
    .page-header p { font-size: 14px; }
}

@media (max-width: 600px) {
    .page-header { padding: 18px 0; }
    .page-header h1 { font-size: 24px; }
}

.products-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

/* Product Card Styles */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 0;
    min-width: 100%;
}

.product-card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    min-width: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    width: 100%;
    border-radius: 18px 18px 0 0;
    background: #f8f9fa;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
    display: block;
}

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

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e91e63;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand-name {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

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

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffd700;
    font-size: 14px;
}

.star.empty {
    color: #ddd;
}

.review-count {
    font-size: 12px;
    color: #666;
}

.add-to-cart-btn {
    width: 100%;
    background: transparent;
    color: #111111;
    border: 1.5px solid #111111;
    padding: 12px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: auto;
}

.add-to-cart-btn:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

/* Saree Categories Section */
.saree-categories {
    padding: 60px 0;
    background: #f8f9fa;
}

.saree-categories h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.category-item {
    display: block;
    padding: 20px 30px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #666;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.category-item:hover {
    color: #e91e63;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-color: #e91e63;
}

.category-item span {
    display: block;
    width: 100%;
}

/* Responsive Product Cards */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-image-container {
        height: 280px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 14px;
    }
    
    .current-price {
        font-size: 16px;
    }
    
    .saree-categories h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .category-item {
        padding: 15px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-image-container {
        height: 250px;
    }
    
    .saree-categories h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .category-item {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* Responsive Products Section */
@media (max-width: 768px) {
    .products-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 30px 0;
    }
}

.hero-slider {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.slide {
    display: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    width: 100%;
}

.slide-text h2 {
    font-size: 48px;
    font-weight: 300;
    color: #666;
    line-height: 1.2;
}

.slide-center {
    text-align: center;
    flex: 1;
    max-width: 400px;
}

.slide-center h3 {
    font-size: 24px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 300;
}

.slide-center h1 {
    font-size: 72px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 8px;
}

.slide-center p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-btn {
    background: #333;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.cta-btn:hover {
    background: #e91e63;
    transform: translateY(-2px);
}

.website-url {
    color: #999;
    font-size: 14px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 300px;
}

.hero-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 1);
    color: #e91e63;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow-left {
    left: 30px;
}

.slider-arrow-right {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.8);
}

.dot.active {
    background: white;
}

/* Collections */
.collections {
    padding: 80px 0;
    background: #f8f9fa;
    width: 100%;
}

.collections h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 60px;
    color: #333;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.collection-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    min-width: 350px;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.collection-overlay h3 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.2;
}

.collection-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 10px;
}

.collection-btn:hover {
    background: white;
    color: #333;
}

/* Product Sections */
.best-selling, .new-arrivals {
    padding: 80px 0;
    width: 100%;
}

.best-selling h2, .new-arrivals h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

.best-selling h2::after, .new-arrivals h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #e91e63;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    min-width: 100%;
}

.product-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s;
    position: relative;
    min-width: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    width: 100%;
    border-radius: 18px 18px 0 0;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e91e63;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.action-btn:hover {
    background: #e91e63;
    color: white;
}

.product-info {
    padding: 20px;
}

.product-brand {
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

.product-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

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

.stars {
    display: flex;
    color: #ffc107;
}

.rating-text {
    font-size: 12px;
    color: #666;
}

.add-to-cart {
    width: 100%;
    background: transparent;
    color: #111111;
    border: 1.5px solid #111111;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.add-to-cart:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    font-size: 20px;
    font-weight: 600;
}

.close-cart {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

.cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

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

.cart-item-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #e91e63;
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #f5f5f5;
}

.quantity {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 5px;
}

.remove-item {
    background: none;
    border: none;
    color: #e91e63;
    cursor: pointer;
    font-size: 16px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.whatsapp-enquiry {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
}

.whatsapp-enquiry:hover {
    background: #128C7E;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #e91e63;
}

.social-links h4 {
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #555;
    color: white;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #e91e63;
}

.working-hours p {
    margin-bottom: 10px;
    color: #ccc;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
}

.whatsapp-float a:hover {
    background: #128C7E;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .collection-card {
        min-width: 280px;
    }
    
    .product-card {
        min-width: 320px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slide-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-grid {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo-img {
        height: 50px;
        max-width: 200px;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .nav a {
        font-size: 12px;
    }
    
    .slide-center h1 {
        font-size: 48px;
        letter-spacing: 4px;
    }
    
    .slide-text h2 {
        font-size: 32px;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .logo-img {
        height: 40px;
        max-width: 160px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-grid img {
        height: 150px;
    }
    
    .slide-center h1 {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #e91e63;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Mobile Responsive Styles - Matching sastabazaar.in Design */

/* Listing Page Mobile Styles */
@media (max-width: 768px) {
    
    .category-nav {
        padding: 15px 0;
    }
    
    .category-tabs {
        gap: 8px;
        padding: 0 15px;
    }
    
    .category-tab {
        padding: 10px 18px;
        font-size: 0.9rem;
        border-radius: 20px;
    }
    
    .filters-section {
        padding: 20px 0;
    }
    
    .filters-row {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    .filter-group select {
        min-width: 100%;
        padding: 12px 15px;
    }
    
    .products-section {
        padding: 30px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h3 {
        font-size: 1rem;
    }
    
    .product-description {
        font-size: 0.8rem;
    }
    
    .current-price {
        font-size: 1.1rem;
    }
    
    
}



.category-nav {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.category-tab {
    background: white;
    border: 2px solid #e9ecef;
    color: #6c757d;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-tab:hover,
.category-tab.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.filters-section {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
}

.filters-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
}

.filter-group select {
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    color: #495057;
    font-size: 0.9rem;
    min-width: 150px;
    transition: border-color 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: #667eea;
}

.products-section {
    padding: 50px 0;
    background: #f8f9fa;
}



/* Product Card Enhancements */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 450px;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}


.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-info {
    padding: 20px;
}

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

.product-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

.original-price {
    font-size: 1rem;
    color: #6c757d;
    text-decoration: line-through;
}

.discount {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.add-to-cart-btn {
    width: 100%;
    background: transparent;
    color: #111111;
    border: 1.5px solid #111111;
    padding: 12px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.add-to-cart-btn:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

/* Hide mobile elements on desktop */
.mobile-menu-toggle,
.mobile-bottom-nav,
.mobile-hero-text,
.mobile-hero-center,
.mobile-hero-grid,
.mobile-hero-content {
    display: none;
}

/* Mobile Navigation and Header */
@media (max-width: 768px) {
    /* Show mobile elements */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 20px;
        color: #333;
        cursor: pointer;
        padding: 5px;
    }
    
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #eee;
        z-index: 1000;
        padding: 8px 0;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
    
    .mobile-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #666;
        font-size: 11px;
        gap: 4px;
        padding: 8px 5px;
        position: relative;
    }
    
    .mobile-nav-item.active {
        color: #e91e63;
    }
    
    .mobile-nav-item i {
        font-size: 18px;
    }
    
    .mobile-nav-badge {
        background: #333;
        color: white;
        border-radius: 50%;
        width: 14px;
        height: 14px;
        font-size: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 2px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .mobile-nav-badge.red {
        background: #e91e63;
    }
    
    /* Hide desktop navigation */
    .nav {
        display: none;
    }
    
    /* Mobile Header Layout */
    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        flex-direction: row;
        gap: 0;
    }
    
    /* Mobile Logo */
    .logo-img {
        height: 35px;
        max-width: 100px;
    }
    
    /* Mobile Header Actions */
    .header-actions {
        gap: 12px;
    }
    
    .header-actions button {
        font-size: 16px;
    }
    
    .currency {
        display: none;
    }
    
    .badge {
        width: 14px;
        height: 14px;
        font-size: 8px;
        top: -5px;
        right: -5px;
    }
    
    /* Add bottom padding to body for mobile nav */
    body {
        padding-bottom: 70px;
    }
}

/* Mobile Hero Section */
@media (max-width: 768px) {
    .hero {
        height: 35vh;
        min-height: 250px;
        max-height: 280px;
    }
    
    /* Hide desktop hero content */
    .slide-content {
        display: none;
    }
    
    /* Show mobile hero content */
    .mobile-hero-text,
    .mobile-hero-center,
    .mobile-hero-grid {
        display: block;
    }
    
    /* Mobile Banner Layout */
    .banner-slide {
        position: relative;
        height: 100%;
        background: #f5f5f5;
    }
    
    .banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Mobile Hero Text */
    .mobile-hero-text {
        position: absolute;
        top: 20px;
        left: 20px;
        color: white;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    }
    
    .mobile-hero-text h2 {
        font-size: 20px;
        font-weight: 700;
        margin: 0;
    }
    
    /* Mobile Hero Center Panel */
    .mobile-hero-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(255,255,255,0.95);
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .mobile-hero-center h3 {
        font-size: 16px;
        color: #333;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .mobile-hero-center .mobile-cta-btn {
        background: #333;
        color: white;
        border: none;
        padding: 10px 25px;
        font-size: 12px;
        font-weight: 600;
        border-radius: 4px;
        cursor: pointer;
        letter-spacing: 1px;
        transition: all 0.3s;
    }
    
    .mobile-hero-center .mobile-cta-btn:hover {
        background: #e91e63;
    }
    
    /* Mobile Hero Grid */
    .mobile-hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 15px;
        position: absolute;
        bottom: 80px;
        left: 0;
        right: 0;
    }
    
    .mobile-hero-grid img {
        width: 100%;
        height: 70px;
        object-fit: cover;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
}

/* Mobile Collections Section */
@media (max-width: 768px) {
    .collections {
        padding: 20px 0;
    }
    
    .collections h2 {
        font-size: 18px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 10px;
    }
    
    .collection-card {
        height: 200px;
        border-radius: 12px;
        min-width: 160px;
    }
    
    .collection-overlay {
        background: rgba(0,0,0,0.6);
        padding: 12px;
    }
    
    .collection-overlay h3 {
        font-size: 16px;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .collection-btn {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 6px;
    }
}

/* Mobile Products Section */
@media (max-width: 768px) {
    .best-selling, .new-arrivals {
        padding: 20px 0;
    }
    
    .best-selling h2, .new-arrivals h2 {
        font-size: 18px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 10px;
        width: 100%;
    }
    
    .product-card {
        border-radius: 8px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-card {
        min-width: 160px;
    }
    
    .product-info {
        padding: 8px;
        flex: 1;
    }
    
    .product-title {
        font-size: 12px;
        margin-bottom: 4px;
        min-height: 28px;
    }
    
    .product-price {
        margin-bottom: 8px;
    }
    
    .current-price {
        font-size: 13px;
    }
    
    .add-to-cart {
        padding: 8px;
        font-size: 11px;
        border-radius: 6px;
    }
}

/* Extra Mobile Optimizations for smaller screens */
@media (max-width: 480px) {
    .hero {
        height: 30vh;
        min-height: 220px;
        max-height: 250px;
    }
    
    .collections, .best-selling, .new-arrivals {
        padding: 15px 0;
    }
    
    .collections h2, .best-selling h2, .new-arrivals h2 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .collection-card {
        height: 180px;
    }
    
    .collection-overlay h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .collection-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 6px;
    }
    
    .product-title {
        font-size: 11px;
        min-height: 24px;
    }
    
    .current-price {
        font-size: 12px;
    }
    
    .add-to-cart {
        padding: 6px;
        font-size: 10px;
    }
}

/* Mobile Container Optimizations */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 80px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .footer-section p, .footer-section li {
        font-size: 13px;
    }
}

/* Mobile WhatsApp Float */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 85px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

/* Mobile Cart Sidebar */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-sidebar.open {
        right: 0;
    }
}

/* Mobile Slider Adjustments */
@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-arrow-left {
        left: 10px;
    }
    
    .slider-arrow-right {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Mobile Top Banner */
@media (max-width: 768px) {
    .top-banner {
        padding: 6px;
        font-size: 11px;
    }
    
    .close-banner {
        right: 10px;
        font-size: 12px;
    }
}

/* Product Detail Page Styles */
.product-detail {
    padding: 40px 0;
    background: #f8f9fa;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #e91e63;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-images {
    position: relative;
}

.main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.thumbnail {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #eee;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.3s;
}

.thumbnail.active {
    border-color: #111111;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail {
    padding: 20px;
}

.product-info-detail h1 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.brand-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.brand-name {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffd700;
    font-size: 16px;
}

.review-count {
    color: #666;
    font-size: 14px;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.price-section .current-price {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.price-section .original-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.discount-percentage {
    background: #e91e63;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.product-options {
    margin-bottom: 30px;
}

.size-selection, .quantity-selection {
    margin-bottom: 25px;
}

.size-selection h3, .quantity-selection h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.size-options {
    display: flex;
    gap: 10px;
}

.size-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.size-btn:hover {
    border-color: #e91e63;
}

.size-btn.active {
    border-color: #e91e63;
    background: #e91e63;
    color: white;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.qty-btn:hover {
    border-color: #e91e63;
    color: #e91e63;
}

#quantity-input {
    width: 60px;
    height: 40px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart-btn-large, .wishlist-btn-large {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn-large {
    background: #333;
    color: white;
}

.add-to-cart-btn-large:hover {
    background: #555;
    transform: translateY(-2px);
}


.wishlist-btn-large {
    background: white;
    color: #333;
    border: 2px solid #ddd;
}

.wishlist-btn-large:hover {
    border-color: #e91e63;
    color: #e91e63;
}

/* Wishlist Sidebar */
.wishlist-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.wishlist-sidebar.open {
    right: 0;
}

.wishlist-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.wishlist-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.close-wishlist {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

.close-wishlist:hover {
    color: #e91e63;
}

.wishlist-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.wishlist-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.wishlist-item:last-child {
    border-bottom: none;
}

.wishlist-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.wishlist-item-info {
    flex: 1;
}

.wishlist-item-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.3;
}

.wishlist-item-price {
    font-size: 16px;
    font-weight: 600;
    color: #e91e63;
    margin-bottom: 8px;
}

.wishlist-item-actions {
    display: flex;
    gap: 10px;
}

.wishlist-item-actions button {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
}

.add-to-cart-from-wishlist {
    background: #e91e63;
    color: white;
}

.add-to-cart-from-wishlist:hover {
    background: #c2185b;
}

.remove-from-wishlist {
    background: #f5f5f5;
    color: #666;
}

.remove-from-wishlist:hover {
    background: #e0e0e0;
    color: #333;
}

.wishlist-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.wishlist-total {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.empty-wishlist {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.empty-wishlist i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 15px;
}

.empty-wishlist h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.empty-wishlist p {
    margin: 0;
    font-size: 14px;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .wishlist-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .wishlist-item {
        padding: 12px 0;
    }
    
    .wishlist-item img {
        width: 60px;
        height: 60px;
    }
    
    .wishlist-item-title {
        font-size: 13px;
    }
    
    .wishlist-item-price {
        font-size: 14px;
    }
}


.product-description {
    margin-bottom: 30px;
}

.product-description h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.product-description p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.delivery-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid #eee;
}

.delivery-option i {
    font-size: 24px;
    color: #e91e63;
}

.delivery-option strong {
    color: #333;
    font-size: 16px;
}

.delivery-option p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.related-products {
    margin-top: 60px;
}

.related-products h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: #28a745;
}

.notification-error {
    background: #dc3545;
}

.notification-info {
    background: #17a2b8;
}

/* Cart Item Styles */
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.cart-item-details p {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.cart-item-price {
    font-weight: 600;
    color: #333;
}

.remove-cart-item {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
}

.empty-cart {
    text-align: center;
    color: #666;
    padding: 20px;
}

.checkout-btn {
    width: 100%;
    background: #e91e63;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: #d81b60;
}

/* WhatsApp Note Styling */
.whatsapp-note {
    margin: 10px 0;
    padding: 8px 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    text-align: center;
}

.whatsapp-note p {
    margin: 0;
    font-size: 12px;
    color: #6c757d;
    font-style: italic;
}

/* Mobile Grid Adjustments for Very Small Screens */
@media (max-width: 480px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-image img {
        height: 400px;
    }
    
    .product-info-detail h1 {
        font-size: 24px;
    }
    
    .action-buttons {
        gap: 10px;
    }
    
    .add-to-cart-btn-large, .wishlist-btn-large {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .size-options {
        gap: 8px;
    }
    
    .size-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    .quantity-controls {
        gap: 10px;
    }
    
    .qty-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    #quantity-input {
        width: 50px;
        height: 35px;
        font-size: 14px;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }
    
    .mobile-hero-grid {
        grid-template-columns: 1fr;
        gap: 6px;
        bottom: 60px;
    }
    
    .mobile-hero-grid img {
        height: 50px;
    }
    
    .collection-card {
        height: 220px;
        min-width: 200px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-card {
        min-width: 250px;
    }
    
    .mobile-hero-center {
        padding: 15px;
    }
    
    .mobile-hero-center h3 {
        font-size: 14px;
    }
    
    .mobile-hero-center .mobile-cta-btn {
        padding: 8px 20px;
        font-size: 11px;
    }
}
