 
        /* ========== GENERAL STYLES ========== */
        .section-spacing {
            margin: 60px 0;
            padding: 40px 0;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #06e5b6;
        }
        
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: #333;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -17px;
            left: 0;
            width: 60px;
            height: 3px;
            background: #06e5b6;
        }
        
        .view-all {
            color: #06e5b6;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 16px;
            border: 2px solid #06e5b6;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .view-all:hover {
            background: #06e5b6;
            color: white;
            text-decoration: none;
        }
        
        /* ========== PRODUCT CARD STYLES ========== */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        .product-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .product-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 10;
        }
        
        .product-badge.sale {
            background: #f44336;
        }
        
        .product-badge.new {
            background: #4CAF50;
        }
        
        .product-badge.top-rated {
            background: #ff9800;
        }
        
        .product-badge.hot {
            background: #e91e63;
        }
        
        .product-badge.recommended {
            background: #2196F3;
        }
        
        .product-badge.offer {
            background: #ff9800;
        }
        
        .product-badge.trending {
            background: #9c27b0;
        }
        
        .product-badge.best-seller {
            background: #ff5722;
        }
        
        .product-badge.featured {
            background: #06e5b6;
        }
        
        .product-image {
            position: relative;
            overflow: hidden;
            background: #f8f8f8;
            padding: 20px;
            text-align: center;
            flex: 0 0 auto;
            height: 220px;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.4s ease;
        }
        
        .video-indicator {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 5px 8px;
            border-radius: 4px;
            font-size: 12px;
            z-index: 2;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-info {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-title {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            text-decoration: none;
            line-height: 1.4;
            margin-bottom: 10px;
            transition: color 0.3s ease;
            height: 40px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .product-title:hover {
            color: #06e5b6;
        }
        
        .product-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            margin: 10px 0;
        }
        
        .stars {
            color: #ffa200;
        }
        
        .rating-count {
            font-size: 12px;
            color: #666;
        }
        
        .product-price-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }
        
        .current-price {
            font-size: 18px;
            font-weight: 700;
            color: #06e5b6;
        }
        
        .original-price {
            font-size: 14px;
            color: #999;
            text-decoration: line-through;
        }
        
        .discount-percent {
            font-size: 12px;
            color: #f44336;
            font-weight: 600;
        }
        
        .add-to-cart {
            display: block;
            width: 100%;
            background: #06e5b6;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 15px;
            text-align: center;
            text-decoration: none;
        }
        
        .add-to-cart:hover {
            background: #05c49a;
        }
        
        .add-to-cart.sold-out {
            background: #ccc;
            cursor: not-allowed;
        }
        
        /* ========== MINIMAL PRODUCT CARD ========== */
        .products-grid-minimal {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
        }
        
        .product-card-minimal {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }
        
        .product-card-minimal:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .product-image-minimal {
            position: relative;
            height: 180px;
            overflow: hidden;
        }
        
        .product-image-minimal img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .product-overlay-minimal {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.95);
            padding: 10px;
            transform: translateY(100%);
            transition: transform 0.3s;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .product-card-minimal:hover .product-overlay-minimal {
            transform: translateY(0);
        }
        
        .price-overlay {
            display: flex;
            flex-direction: column;
        }
        
        .price-overlay .current-price {
            font-size: 16px;
            font-weight: 700;
            color: #06e5b6;
        }
        
        .price-overlay .original-price {
            font-size: 12px;
            color: #999;
        }
        
        .quick-add-btn {
            background: #06e5b6;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        
        /* ========== COMPACT PRODUCT CARD ========== */
        .products-grid-compact {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 10px;
        }
        
        .product-card-compact {
            background: #fff;
            border-radius: 8px;
            padding: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: all 0.3s;
            text-align: center;
        }
        
        .product-card-compact:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .product-image-compact {
            height: 100px;
            margin-bottom: 8px;
        }
        
        .product-image-compact img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .product-info-compact {
            text-align: center;
        }
        
        .product-info-compact .product-title {
            font-size: 12px;
            height: auto;
            margin-bottom: 5px;
        }
        
        .product-info-compact .product-price {
            font-size: 14px;
            font-weight: 700;
            color: #06e5b6;
        }
        
        /* ========== CATEGORY STYLES ========== */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
        }
        
        .category-card {
            background: #fff;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }
        
        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .category-card img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-bottom: 10px;
        }
        
        .category-icon {
            width: 80px;
            height: 80px;
            background: #06e5b6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
        }
        
        .category-icon i {
            color: white;
            font-size: 32px;
        }
        
        .category-name {
            font-weight: 600;
            margin-bottom: 5px;
            color: #333;
        }
        
        .product-count {
            font-size: 12px;
            color: #999;
        }
        
        /* ========== LARGE CATEGORY CARD ========== */
        .categories-grid-large {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        .category-card-large {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }
        
        .category-card-large:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .category-image-large {
            height: 200px;
            overflow: hidden;
        }
        
        .category-image-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .category-card-large:hover .category-image-large img {
            transform: scale(1.1);
        }
        
        .category-icon-large {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #06e5b6, #05c49a);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .category-icon-large i {
            color: white;
            font-size: 64px;
        }
        
        .category-info-large {
            padding: 20px;
            text-align: center;
        }
        
        .category-info-large .category-name {
            font-size: 18px;
            margin-bottom: 8px;
        }
        
        /* ========== TAB STYLES ========== */
        .product-tabs {
            margin: 40px 0;
            background: #f9f9f9;
            padding: 30px;
            border-radius: 15px;
        }
        
        .tab-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            border-bottom: 2px solid #eee;
            background: none;
        }
        
        .tab-buttons {
            display: flex;
            gap: 15px;
        }
        
        .tab-btn {
            padding: 10px 20px;
            background: none;
            border: none;
            font-size: 16px;
            font-weight: 600;
            color: #666;
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
            border-radius: 6px;
        }
        
        .tab-btn:hover {
            color: #06e5b6;
            background: rgba(6, 229, 182, 0.1);
        }
        
        .tab-btn.active {
            color: #06e5b6;
            background: rgba(6, 229, 182, 0.1);
        }
        
        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #06e5b6;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        /* ========== SUBCATEGORY STYLES ========== */
        .subcategories-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 15px;
        }
        
        .subcategory-card {
            background: #fff;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: all 0.3s;
        }
        
        .subcategory-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background: #06e5b6;
        }
        
        .subcategory-card:hover .subcategory-name,
        .subcategory-card:hover .product-count {
            color: white;
        }
        
        .subcategory-name {
            font-size: 13px;
            font-weight: 600;
            color: #333;
            margin-top: 8px;
        }
        
        /* ========== BANNER STYLES ========== */
        .promo-banner {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }
        
        .promo-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.1);
            transform: rotate(45deg);
        }
        
        .promo-content {
            position: relative;
            z-index: 2;
        }
        
        .promo-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .promo-subtitle {
            font-size: 18px;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .promo-btn {
            background: white;
            color: #667eea;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
        }
        
        .promo-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        /* ========== NEW ADDITIONS ========== */
        
        /* 1. CRAZY ATTENTION SECTION */
        .crazy-attention-section {
            background: linear-gradient(135deg, #06e5b6, #667eea);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            margin: 40px 0;
            text-align: center;
        }
        
        .crazy-attention-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.1);
            transform: rotate(45deg);
            animation: shimmer 3s infinite linear;
        }
        
        @keyframes shimmer {
            0% { transform: rotate(45deg) translateX(-100%); }
            100% { transform: rotate(45deg) translateX(100%); }
        }
        
        .attention-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .attention-subtitle {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .attention-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 14px;
            opacity: 0.8;
        }
        
        /* 2. NON-CLICKABLE BANNER WITH SHAPES - UPDATED */
        .shapes-banner {
            padding: 30px 0;
            margin: 30px 0;
        }
        
        .shapes-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        .shape-item {
            height: 180px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            cursor: default;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #06e5b6, #05c49a);
        }
        
        .shape-item:nth-child(2) {
            background: linear-gradient(135deg, #667eea, #9d50bb);
        }
        
        .shape-item:nth-child(3) {
            background: linear-gradient(135deg, #ff6b6b, #ff8a00);
        }
        
        .shape-item:nth-child(4) {
            background: linear-gradient(135deg, #00c6ff, #0072ff);
        }
        
        .shape-content {
            color: white;
            text-align: center;
            font-weight: 600;
            font-size: 20px;
            padding: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* 3. VISUAL SHOWCASE - UPDATED (Only 2 images) */
        .visual-showcase {
            background: #f9f9f9;
            padding: 60px 0;
        }
        
        .visual-showcase-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .showcase-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
            height: 400px;
        }
        
        .showcase-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        
        .showcase-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .showcase-item:hover img {
            transform: scale(1.05);
        }
        
        /* 4. SHOP BY SUBCATEGORY - UPDATED (Grid with different sizes) */
        .shop-subcategory-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(3, 200px);
            gap: 20px;
        }
        
        .subcategory-item {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .subcategory-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .subcategory-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
        }
        
        .subcategory-item:nth-child(2) {
            grid-column: span 1;
            grid-row: span 1;
        }
        
        .subcategory-item:nth-child(3) {
            grid-column: span 1;
            grid-row: span 1;
        }
        
        .subcategory-item:nth-child(4) {
            grid-column: span 2;
            grid-row: span 1;
        }
        
        .subcategory-item:nth-child(5) {
            grid-column: span 1;
            grid-row: span 1;
        }
        
        .subcategory-item:nth-child(6) {
            grid-column: span 1;
            grid-row: span 1;
        }
        
        .subcategory-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .subcategory-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px;
        }
        
        .subcategory-overlay h4 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
        }
        
        /* 5. FEATURED COLLECTIONS - UPDATED */
        .featured-collections {
            background: linear-gradient(135deg, rgba(6, 229, 182, 0.05), #ffffff);
            padding: 60px 0;
            border-radius: 20px;
            margin: 40px 0;
        }
        
        .collection-tabs {
            margin-top: 30px;
        }
        
        .collection-tab-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .collection-tab-btn {
            padding: 12px 30px;
            background: white;
            border: 2px solid #06e5b6;
            border-radius: 30px;
            color: #06e5b6;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .collection-tab-btn:hover,
        .collection-tab-btn.active {
            background: #06e5b6;
            color: white;
        }
        
        .collection-tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .collection-tab-content.active {
            display: block;
        }
        
        .collection-card-large {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            height: 450px;
            transition: all 0.3s ease;
        }
        
        .collection-card-large:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .collection-image-large {
            height: 300px;
            overflow: hidden;
        }
        
        .collection-image-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .collection-card-large:hover .collection-image-large img {
            transform: scale(1.1);
        }
        
        .collection-info-large {
            padding: 25px;
            text-align: center;
        }
        
        .collection-info-large h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #333;
        }
        
        .collection-info-large p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        /* 6. POPULAR CATEGORIES - UPDATED (Two rows) */
        .popular-categories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 25px;
        }
        
        .popular-category-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 200px;
            position: relative;
        }
        
        .popular-category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .popular-category-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .popular-category-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .popular-category-overlay h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        /* 7. TOP PICKS OF THE WEEK - UPDATED */
        .top-picks-section {
            background: linear-gradient(135deg, #fff8e1, #ffffff);
            padding: 60px 0;
            border-radius: 20px;
             position: relative;
            overflow: hidden;
        }
        
        .top-picks-section::before {
            content: '⭐';
            position: absolute;
            top: -30px;
            right: -30px;
            font-size: 200px;
            opacity: 0.1;
            transform: rotate(30deg);
        }
        
        .top-picks-carousel {
            position: relative;
            padding: 20px 0;
        }
        
        /* 8. CUSTOMER REVIEWS - UPDATED */
        .customer-reviews-section {
             color: white; 
            position: relative;
            overflow: hidden;
        }
        
        .reviews-carousel {
            position: relative;
            padding: 20px 40px;
        }
        
        .review-card-enhanced {
            background: rgba(255,255,255,0.95);
            border-radius: 15px;
            padding: 30px;
            margin: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .review-card-enhanced:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        
        .review-header-enhanced {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .review-avatar-enhanced {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #06e5b6;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: 600;
        }
        
        .reviewer-info h4 {
            color: #333;
            margin: 0 0 5px 0;
            font-size: 18px;
        }
        
        .review-date-enhanced {
            color: #666;
            font-size: 14px;
        }
        
        .review-text-enhanced {
            color: #555;
            line-height: 1.7;
            font-style: italic;
            flex-grow: 1;
            margin-bottom: 20px;
        }
        
        .review-rating-enhanced {
            color: #ffd700;
            font-size: 18px;
        }
        
        .slick-prev, .slick-next {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            z-index: 10;
            display: flex !important;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            border: none;
        }
        
        .slick-prev:hover, .slick-next:hover {
            background: #06e5b6;
            color: white;
        }
        
        .slick-prev {
            left: -20px;
        }
        
        .slick-next {
            right: -20px;
        }
        
        .slick-prev i, .slick-next i {
            color: #06e5b6;
            font-size: 20px;
        }
        
        .slick-prev:hover i, .slick-next:hover i {
            color: white;
        }
        
        /* 9. NEW ARRIVALS CAROUSEL */
        .new-arrivals-carousel {
            position: relative;
            padding: 20px 0;
        }
        
        .new-arrivals-carousel .product-card-compact {
            margin: 0 10px;
        }
        
        /* 10. JOIN OUR COMMUNITY - UPDATED */
        .join-community-section {
            background: linear-gradient(135deg, rgba(6, 229, 182, 0.1), rgba(102, 126, 234, 0.1));
            padding: 80px 0;
            border-radius: 20px;
            margin: 40px 0;
        }
        
        .join-community-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .community-text {
            flex: 1;
        }
        
        .community-text h2 {
            font-size: 36px;
            color: #333;
            margin-bottom: 20px;
        }
        
        .community-text p {
            font-size: 18px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 30px;
        }
        
        .community-form {
            flex: 1;
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .community-form h3 {
            color: #333;
            margin-bottom: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus {
            border-color: #06e5b6;
            outline: none;
        }
        
        /* 11. SHOP BY COLLECTIONS - UPDATED (Working tabs) */
        .shop-collections-section {
            padding: 60px 0;
            background: #f9f9f9;
            border-radius: 20px;
            margin: 40px 0;
        }
        
        .collections-tabs {
            margin-top: 30px;
        }
        
        .collections-tab-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .collections-tab-btn {
            padding: 12px 30px;
            background: white;
            border: 2px solid #06e5b6;
            border-radius: 30px;
            color: #06e5b6;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .collections-tab-btn:hover,
        .collections-tab-btn.active {
            background: #06e5b6;
            color: white;
        }
        
        .collection-tabs-grid {
            display: none;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            animation: fadeIn 0.5s ease;
        }
        
        .collection-tabs-grid.active {
            display: grid;
        }
        
        .collection-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 250px;
        }
        
        .collection-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .collection-item img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .collection-item-content {
            padding: 15px;
            text-align: center;
        }
        
        .collection-item-content h4 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin: 0;
        }
        
        /* 12. ULTIMATE SHOPPING EXPERIENCE - UPDATED */
        .ultimate-shopping-section {
            background: linear-gradient(135deg, #06e5b6, #667eea);
            color: white;
            padding: 60px 0;
             margin: 40px 0;
            position: relative;
            overflow: hidden;
        }
        
        .ultimate-shopping-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.1);
            transform: rotate(45deg);
        }
        
        .ultimate-content {
            position: relative;
            z-index: 2;
            background: rgba(255,255,255,0.95);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }
        
        .ultimate-content h2 {
            color: #333;
            font-size: 32px;
            margin-bottom: 20px;
        }
        
        .ultimate-content p {
            color: #666;
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 30px;
        }
        
        /* ========== ANIMATIONS ========== */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.5s ease-out;
        }
        
        /* ========== RESPONSIVE STYLES ========== */
        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .products-grid-minimal {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .products-grid-compact {
                grid-template-columns: repeat(6, 1fr);
            }
            
            .categories-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .categories-grid-large {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .subcategories-grid {
                grid-template-columns: repeat(6, 1fr);
            }
            
            .shapes-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .visual-showcase-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .shop-subcategory-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(4, 200px);
            }
            
            .popular-categories-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 1fr);
            }
            
            .join-community-content {
                flex-direction: column;
                gap: 40px;
            }
            
            .collection-tabs-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .products-grid-minimal {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .products-grid-compact {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .categories-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .categories-grid-large {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .subcategories-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .promo-title {
                font-size: 28px;
            }
            
            .attention-title {
                font-size: 36px;
            }
            
            .attention-stats {
                flex-wrap: wrap;
                gap: 20px;
            }
            
            .collection-tabs-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .products-grid-minimal {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .products-grid-compact {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .categories-grid-large {
                grid-template-columns: repeat(1, 1fr);
            }
            
            .subcategories-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .tab-buttons {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .tab-btn {
                padding: 8px 15px;
                font-size: 14px;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .view-all {
                align-self: flex-start;
            }
            
            .shapes-grid {
                grid-template-columns: 1fr;
            }
            
            .visual-showcase-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .showcase-item {
                height: 300px;
            }
            
            .shop-subcategory-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(6, 200px);
            }
            
            .subcategory-item:nth-child(1),
            .subcategory-item:nth-child(2),
            .subcategory-item:nth-child(3),
            .subcategory-item:nth-child(4),
            .subcategory-item:nth-child(5),
            .subcategory-item:nth-child(6) {
                grid-column: span 1;
                grid-row: span 1;
            }
            
            .popular-categories-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(6, 200px);
            }
            
            .attention-stats {
                flex-direction: column;
            }
            
            .stat-item {
                margin-bottom: 20px;
            }
            
            .collection-tabs-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .products-grid-minimal {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .products-grid-compact {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .subcategories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .promo-banner {
                padding: 20px;
            }
            
            .promo-title {
                font-size: 24px;
            }
            
            .promo-subtitle {
                font-size: 16px;
            }
            
            .attention-title {
                font-size: 28px;
            }
            
            .attention-subtitle {
                font-size: 16px;
            }
        }
    /* join community */
    .join-community-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.join-community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9900, #06e5b6, #146eb4);
    z-index: 1;
}

.join-community-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.community-text {
    flex: 1;
    min-width: 300px;
}

.community-form {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.community-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #146eb4, #06e5b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.community-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    max-width: 500px;
}

.community-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.community-benefits li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(6, 229, 182, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.community-benefits li:hover {
    background: rgba(6, 229, 182, 0.1);
    border-left: 3px solid #06e5b6;
    transform: translateX(5px);
}

.community-benefits i {
    font-size: 20px;
    color: #06e5b6;
    flex-shrink: 0;
}

.community-benefits span {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.community-form h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #146eb4;
}

.community-form p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.ps-form--download-app .form-group {
    margin-bottom: 25px;
}

.ps-form--download-app .form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e1e5eb;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.ps-form--download-app .form-control:focus {
    border-color: #06e5b6;
    box-shadow: 0 0 0 3px rgba(6, 229, 182, 0.1);
    background: white;
    outline: none;
}

.ps-form--download-app .form-control::placeholder {
    color: #999;
}

.subscribe-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, #ff9900, #ff6b00);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.subscribe-btn:hover {
    background: linear-gradient(90deg, #e68a00, #e55a00);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.subscribe-btn i {
    font-size: 20px;
}

.member-btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(90deg, #146eb4, #06e5b6);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(20, 110, 180, 0.2);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.member-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.member-btn:hover::before {
    left: 100%;
}

.member-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(20, 110, 180, 0.3);
}

/* Decorative Elements */
.community-decoration {
    position: absolute;
    z-index: 1;
    opacity: 0.05;
}

.decoration-1 {
    top: 10%;
    right: 5%;
    font-size: 150px;
    color: #146eb4;
}

.decoration-2 {
    bottom: 10%;
    left: 5%;
    font-size: 120px;
    color: #06e5b6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .join-community-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .community-text, .community-form {
        width: 100%;
    }
    
    .community-text h2 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .join-community-section {
        padding: 50px 0;
    }
    
    .community-text h2 {
        font-size: 30px;
    }
    
    .community-form {
        padding: 25px;
    }
    
    .member-btn, .subscribe-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* Animation for form on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.community-form {
    animation: fadeInUp 0.6s ease-out;
}

/* Stats Counter for Trust Building */
.community-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #146eb4;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}