/* ============================================
   PRODUCT CARD LAYOUTS - 25 STYLES
   ============================================ */

/* Base Product Card */
.product-card-wrapper {
    height: 100%;
}

/* ============================================
   CLASSIC STYLES (1-5)
   ============================================ */

/* Classic 1 - Simple */
.card-style-classic-1 .skc-product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.card-style-classic-1 .skc-product-card:hover {
    transform: translateY(-5px);
}

/* Classic 2 - With Shadow */
.card-style-classic-2 .skc-product-card {
    background: #fff;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    overflow: hidden;
    transition: all 0.3s ease;
}
.card-style-classic-2 .skc-product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-8px);
}

/* Classic 3 - Rounded */
.card-style-classic-3 .skc-product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.card-style-classic-3 .skc-product-image {
    border-radius: 20px 20px 0 0;
}
.card-style-classic-3 .skc-product-card:hover {
    transform: scale(1.02);
}

/* Classic 4 - Border */
.card-style-classic-4 .skc-product-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.card-style-classic-4 .skc-product-card:hover {
    border-color: #3a5a40;
    box-shadow: 0 5px 20px rgba(58,90,64,0.15);
}

/* Classic 5 - Gradient */
.card-style-classic-5 .skc-product-card {
    background: linear-gradient(145deg, #fff 0%, #f8f9fa 100%);
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.card-style-classic-5 .skc-product-card:hover {
    background: linear-gradient(145deg, #fff 0%, #e8f5e9 100%);
}

/* ============================================
   MODERN STYLES (1-5)
   ============================================ */

/* Modern 1 - Minimal */
.card-style-modern-1 .skc-product-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}
.card-style-modern-1 .skc-product-card:hover {
    border-bottom-color: #3a5a40;
}
.card-style-modern-1 .skc-product-info {
    padding: 20px 10px;
}

/* Modern 2 - Floating */
.card-style-modern-2 .skc-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card-style-modern-2 .skc-product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Modern 3 - Glass */
.card-style-modern-3 .skc-product-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.5);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.card-style-modern-3 .skc-product-card:hover {
    background: rgba(255,255,255,0.95);
    transform: translateY(-5px);
}

/* Modern 4 - Neumorphic */
.card-style-modern-4 .skc-product-card {
    background: #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 8px 8px 16px #c5c5c5, -8px -8px 16px #ffffff;
    transition: all 0.3s ease;
}
.card-style-modern-4 .skc-product-card:hover {
    box-shadow: 4px 4px 8px #c5c5c5, -4px -4px 8px #ffffff;
}

/* Modern 5 - Flat */
.card-style-modern-5 .skc-product-card {
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}
.card-style-modern-5 .skc-product-card:hover {
    background: #eeeeee;
}
.card-style-modern-5 .skc-add-to-cart {
    border-radius: 0;
}

/* ============================================
   ELEGANT STYLES (1-5)
   ============================================ */

/* Elegant 1 - Gold Accent */
.card-style-elegant-1 .skc-product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
}
.card-style-elegant-1 .skc-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.card-style-elegant-1 .skc-product-card:hover {
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

/* Elegant 2 - Dark Theme */
.card-style-elegant-2 .skc-product-card {
    background: #1a1a1a;
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}
.card-style-elegant-2 .skc-product-name,
.card-style-elegant-2 .skc-product-price {
    color: #fff;
}
.card-style-elegant-2 .original-price {
    color: #888 !important;
}
.card-style-elegant-2 .skc-add-to-cart {
    background: #fff;
    color: #1a1a1a;
}
.card-style-elegant-2 .skc-product-card:hover {
    background: #2a2a2a;
}

/* Elegant 3 - Luxury */
.card-style-elegant-3 .skc-product-card {
    background: linear-gradient(135deg, #fff 0%, #faf8f5 100%);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e8e0d5;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.card-style-elegant-3 .skc-product-name {
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}
.card-style-elegant-3 .skc-product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Elegant 4 - Premium */
.card-style-elegant-4 .skc-product-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #000;
    transition: all 0.3s ease;
}
.card-style-elegant-4 .skc-add-to-cart {
    background: #000;
    border-radius: 0;
}
.card-style-elegant-4 .skc-product-card:hover {
    background: #000;
}
.card-style-elegant-4 .skc-product-card:hover .skc-product-name,
.card-style-elegant-4 .skc-product-card:hover .skc-product-price {
    color: #fff;
}

/* Elegant 5 - Royal */
.card-style-elegant-5 .skc-product-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}
.card-style-elegant-5 .skc-product-name,
.card-style-elegant-5 .skc-product-price {
    color: #fff;
}
.card-style-elegant-5 .sale-price {
    color: var(--gold) !important;
}
.card-style-elegant-5 .skc-add-to-cart {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: #1a1a2e;
}

/* ============================================
   CREATIVE STYLES (1-5)
   ============================================ */

/* Creative 1 - Polaroid */
.card-style-creative-1 .skc-product-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    padding: 15px 15px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}
.card-style-creative-1 .skc-product-card:hover {
    transform: rotate(0deg) scale(1.05);
}
.card-style-creative-1 .skc-product-image {
    border: 1px solid #eee;
}

/* Creative 2 - Magazine */
.card-style-creative-2 .skc-product-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}
.card-style-creative-2 .skc-product-image {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.card-style-creative-2 .skc-product-card:hover .skc-product-image {
    filter: grayscale(0%);
}
.card-style-creative-2 .skc-product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 15px 15px;
}
.card-style-creative-2 .skc-product-name,
.card-style-creative-2 .skc-product-price {
    color: #fff;
}

/* Creative 3 - Stacked */
.card-style-creative-3 .skc-product-card {
    background: #fff;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    position: relative;
    transition: all 0.3s ease;
}
.card-style-creative-3 .skc-product-card::before,
.card-style-creative-3 .skc-product-card::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    height: 100%;
    background: #f0f0f0;
    border-radius: 12px !important;
    z-index: -1;
}
.card-style-creative-3 .skc-product-card::before {
    bottom: -8px;
}
.card-style-creative-3 .skc-product-card::after {
    bottom: -16px;
    left: 20px;
    right: 20px;
    background: #e0e0e0;
}

/* Creative 4 - Tilted */
.card-style-creative-4 .skc-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}
.card-style-creative-4 .skc-product-card:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    box-shadow: 15px 15px 30px rgba(0,0,0,0.15);
}

/* Creative 5 - Ribbon */
.card-style-creative-5 .skc-product-card {
    background: #fff;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    position: relative;
    transition: all 0.3s ease;
}
.card-style-creative-5 .skc-product-card::before {
    content: 'NEW';
    position: absolute;
    top: 15px;
    right: -8px;
    background: #e74c3c;
    color: #fff;
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.card-style-creative-5 .skc-product-card::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -8px;
    border: 4px solid transparent;
    border-top-color: #c0392b;
    border-left-color: #c0392b;
}

/* ============================================
   E-COMMERCE STYLES (1-5)
   ============================================ */

/* E-com 1 - Amazon Style */
.card-style-ecom-1 .skc-product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
    transition: all 0.2s ease;
}
.card-style-ecom-1 .skc-product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.card-style-ecom-1 .skc-product-name {
    font-size: 14px;
    line-height: 1.4;
    color: #0066c0;
}
.card-style-ecom-1 .sale-price {
    color: #B12704 !important;
    font-size: 20px !important;
}

/* E-com 2 - Flipkart Style */
.card-style-ecom-2 .skc-product-card {
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}
.card-style-ecom-2 .skc-product-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.card-style-ecom-2 .skc-product-image {
    padding: 20px;
    background: #f5f5f5;
}
.card-style-ecom-2 .sale-price {
    color: #388e3c !important;
}
.card-style-ecom-2 .skc-add-to-cart {
    background: #ff9f00;
}

/* E-com 3 - Myntra Style */
.card-style-ecom-3 .skc-product-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.card-style-ecom-3 .skc-product-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.card-style-ecom-3 .skc-product-info {
    padding: 12px 10px;
    border-top: 1px solid #f5f5f5;
}
.card-style-ecom-3 .skc-product-name {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #535766;
}
.card-style-ecom-3 .sale-price {
    color: #ff3f6c !important;
}

/* E-com 4 - BigBasket Style */
.card-style-ecom-4 .skc-product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: all 0.2s ease;
}
.card-style-ecom-4 .skc-product-card:hover {
    border-color: #84c225;
    box-shadow: 0 4px 15px rgba(132,194,37,0.2);
}
.card-style-ecom-4 .skc-add-to-cart {
    background: #84c225;
    border-radius: 6px;
}
.card-style-ecom-4 .skc-product-image {
    padding: 15px;
}

/* E-com 5 - Swiggy Style */
.card-style-ecom-5 .skc-product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.card-style-ecom-5 .skc-product-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.card-style-ecom-5 .skc-product-info {
    padding: 16px;
}
.card-style-ecom-5 .skc-add-to-cart {
    background: #fc8019;
    border-radius: 12px !important;
    font-weight: 700;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .card-style-creative-1 .skc-product-card {
        transform: rotate(0);
    }
    .card-style-creative-4 .skc-product-card:hover {
        transform: none;
    }
}
/* ============================================
   SHOP COLLECTION BASE STYLES
   ============================================ */
.shop-collection .skc-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.shop-collection .skc-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.shop-collection .skc-product-image {
    display: block;
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #f8f8f8;
}

.shop-collection .skc-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-collection .skc-product-info {
    padding: 15px;
}

.shop-collection .skc-product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.shop-collection .skc-product-name a {
    color: #333;
    text-decoration: none;
}

.shop-collection .skc-product-price {
    margin-bottom: 12px;
}

.shop-collection .skc-add-to-cart {
    width: 100%;
    padding: 10px 15px;
    background: #3a5a40;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.shop-collection .skc-add-to-cart:hover {
    background: #2d4a34;
}

/* Collection Grid Responsive */
@media (max-width: 992px) {
    .shop-collection #collection-products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .shop-collection #collection-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

@media (max-width: 480px) {
    .shop-collection #collection-products-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   FEATURED PRODUCTS SECTION STYLES
   ============================================ */
.featured-section .products-grid,
.featured-products .products-grid,
.skc-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.featured-section .product-card,
.featured-products .product-card,
.skc-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.featured-section .product-card:hover,
.featured-products .product-card:hover,
.skc-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.featured-section .product-image,
.featured-products .product-image,
.skc-product-image {
    display: block;
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #f8f8f8;
}

.featured-section .product-image img,
.featured-products .product-image img,
.skc-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-section .product-info,
.featured-products .product-info,
.skc-product-info {
    padding: 15px;
}

.featured-section .product-name,
.featured-products .product-name,
.skc-product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Responsive for Featured Products */
@media (max-width: 992px) {
    .featured-section .products-grid,
    .featured-products .products-grid,
    .skc-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-section .products-grid,
    .featured-products .products-grid,
    .skc-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .featured-section .products-grid,
    .featured-products .products-grid,
    .skc-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FORCE PRODUCT CARD SIZES - HIGH PRIORITY
   ============================================ */
.skc-products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
}

.skc-product-card {
    background: #fff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
}

.skc-product-image {
    display: block !important;
    position: relative !important;
    padding-top: 75% !important;
    overflow: hidden !important;
    background: #f8f8f8 !important;
}

.skc-product-image a {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.skc-product-image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.skc-product-info {
    padding: 15px !important;
}

.skc-product-name {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

@media (max-width: 992px) {
    .skc-products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .skc-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

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

/* ============================================
   PRODUCT CARD INFO SPACING
   ============================================ */
.skc-product-info {
    padding: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.skc-product-name {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 0 !important;
    line-height: 1.3 !important;
}

.skc-product-tags {
    display: flex !important;
    gap: 5px !important;
    flex-wrap: wrap !important;
    margin: 5px 0 !important;
}

.skc-product-tag {
    font-size: 11px !important;
    padding: 2px 8px !important;
    background: #f5f5f5 !important;
    border-radius: 4px !important;
    color: #666 !important;
}

.skc-product-rating {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 13px !important;
    margin: 5px 0 !important;
}

.skc-product-variants {
    margin: 8px 0 !important;
}

.skc-product-variants select {
    padding: 5px 10px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    font-size: 13px !important;
}

.skc-product-discount {
    font-size: 13px !important;
    color: #e74c3c !important;
    font-weight: 600 !important;
    margin: 5px 0 !important;
}

.skc-product-price {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 8px 0 !important;
}

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

.skc-product-price .sale-price {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #333 !important;
}

.skc-add-to-cart {
    margin-top: 10px !important;
    padding: 10px 15px !important;
    background: var(--maroon) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.3s !important;
    width: 100% !important;
}

.skc-add-to-cart:hover {
    background: var(--maroon-dark) !important;
}

/* ============================================
   PRODUCT BADGES ON IMAGE
   ============================================ */
.skc-product-image {
    position: relative !important;
}

.skc-product-badges {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    z-index: 5 !important;
}

.skc-badge {
    padding: 5px 10px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
}

.skc-badge-featured {
    background: var(--gold) !important;
    color: var(--maroon) !important;
}

.skc-badge-sale {
    background: #e74c3c !important;
    color: #fff !important;
}

.skc-badge-new {
    background: var(--maroon) !important;
    color: #fff !important;
}

/* Hide discount text in card info - show only on image */
.skc-product-discount {
    display: none !important;
}

/* ============================================
   PRICE STYLING - ORIGINAL VS SALE
   ============================================ */
.skc-product-price {
    display: flex !important;
    align-items: baseline !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}

.skc-product-price .original-price,
.skc-product-price del,
.skc-product-price s {
    font-size: 14px !important;
    color: #999 !important;
    text-decoration: line-through !important;
    font-weight: 400 !important;
}

.skc-product-price .sale-price,
.skc-product-price .current-price,
.skc-product-price strong {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--maroon) !important;
}

/* Wishlist button on image */
.skc-product-wishlist {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    width: 36px !important;
    height: 36px !important;
    background: #fff !important;
    border: none !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    z-index: 5 !important;
    transition: all 0.3s !important;
}

.skc-product-wishlist:hover {
    background: var(--maroon) !important;
    color: #fff !important;
}

/* ============================================
   FEATURED PRODUCTS SPECIFIC CLASSES
   ============================================ */

/* Hide discount label in card info - it shows as badge on image */
.skc-discount-label {
    display: none !important;
}

/* Price styling for featured products */
.skc-product-pricing {
    margin: 10px 0 !important;
}

.skc-price-row {
    display: flex !important;
    align-items: baseline !important;
    gap: 10px !important;
}

.skc-price-original {
    font-size: 14px !important;
    color: #999 !important;
    text-decoration: line-through !important;
    font-weight: 400 !important;
}

.skc-price-sale {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--maroon) !important;
}

/* Variant selector */
.skc-product-variant {
    margin: 8px 0 !important;
}

.skc-product-variant select {
    padding: 6px 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    background: #fff !important;
}

/* Rating and Variant on same line */
.skc-product-card .skc-product-info {
    position: relative !important;
}

.skc-product-card .skc-product-rating,
.skc-product-card .skc-product-variant {
    display: inline-flex !important;
    vertical-align: middle !important;
}

/* Create a flex row for rating and variant */
.skc-product-card .skc-product-rating {
    width: auto !important;
    margin-right: 10px !important;
}

.skc-product-card .skc-product-variant {
    width: auto !important;
}

/* Wrap rating and variant together */
.skc-product-info > .skc-product-rating,
.skc-product-info > .skc-product-variant {
    display: inline-flex !important;
    align-items: center !important;
}

/* Make rating and variant row */
.skc-product-rating + .skc-product-variant {
    margin-left: 0 !important;
}

/* Force same line using flex-wrap */
.skc-product-info {
    flex-wrap: wrap !important;
}

.skc-product-info > .skc-product-rating,
.skc-product-info > .skc-product-variant {
    flex: 0 0 auto !important;
}

/* Rating and Variant Row - Display on Same Line */
.skc-rating-variant-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
}

.skc-rating-variant-row .skc-product-rating {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    font-size: 13px !important;
}

.skc-rating-variant-row .skc-product-variant {
    flex: 0 0 auto !important;
}

.skc-rating-variant-row .skc-product-variant select {
    padding: 4px 8px !important;
    font-size: 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    background: #fff !important;
    min-width: 70px !important;
}

/* Reduce Vertical Spacing in Product Cards */
.skc-product-card .skc-product-info {
    padding: 12px 15px !important;
    gap: 5px !important;
}

.skc-product-card .skc-product-name {
    margin-bottom: 3px !important;
    font-size: 16px !important;
    line-height: 1.3 !important;
}

.skc-product-card .skc-product-name a {
    font-size: 16px !important;
}

.skc-product-card .skc-product-tags {
    margin-bottom: 5px !important;
    gap: 5px !important;
}

.skc-product-card .skc-product-tag {
    padding: 2px 8px !important;
    font-size: 11px !important;
}

.skc-rating-variant-row {
    margin: 3px 0 !important;
    padding: 0 !important;
}

.skc-product-card .skc-product-pricing {
    margin: 5px 0 !important;
    padding: 0 !important;
}

.skc-product-card .skc-price-row {
    gap: 8px !important;
}

.skc-product-card .skc-add-to-cart {
    margin-top: 8px !important;
    padding: 10px 15px !important;
}

/* Center Section Header */
.skc-section-header {
    text-align: center !important;
    margin-bottom: 30px !important;
}

.skc-section-header h2 {
    text-align: center !important;
    margin-bottom: 8px !important;
}

.skc-section-header p {
    text-align: center !important;
    color: #666 !important;
    font-size: 16px !important;
    margin: 0 auto !important;
}
/* ============================================
   CARD STYLE OVERRIDES - HIGHEST PRIORITY
   These override the base styles above
   ============================================ */

/* Elegant 2 - Dark Theme - FULL OVERRIDE */
.card-style-elegant-2 .skc-product-card,
.card-style-elegant-2 .collection-product-item .skc-product-card {
    background: #1a1a1a !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    border: none !important;
}
.card-style-elegant-2 .skc-product-card:hover {
    background: #2a2a2a !important;
}
.card-style-elegant-2 .skc-product-info {
    background: #1a1a1a !important;
}
.card-style-elegant-2 .skc-product-name,
.card-style-elegant-2 .skc-product-name a {
    color: #fff !important;
}
.card-style-elegant-2 .skc-product-price,
.card-style-elegant-2 .sale-price,
.card-style-elegant-2 .regular-price {
    color: #fff !important;
}
.card-style-elegant-2 .original-price {
    color: #888 !important;
}
.card-style-elegant-2 .skc-add-to-cart {
    background: #fff !important;
    color: #1a1a1a !important;
}
.card-style-elegant-2 .skc-add-to-cart:hover {
    background: #f0f0f0 !important;
    color: #1a1a1a !important;
}

/* Elegant 5 - Royal - FULL OVERRIDE */
.card-style-elegant-5 .skc-product-card,
.card-style-elegant-5 .collection-product-item .skc-product-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    border: 2px solid var(--gold) !important;
    border-radius: 16px !important;
}
.card-style-elegant-5 .skc-product-info {
    background: transparent !important;
}
.card-style-elegant-5 .skc-product-name,
.card-style-elegant-5 .skc-product-name a {
    color: #fff !important;
}
.card-style-elegant-5 .skc-product-price,
.card-style-elegant-5 .sale-price,
.card-style-elegant-5 .regular-price {
    color: var(--gold) !important;
}
.card-style-elegant-5 .skc-add-to-cart {
    background: linear-gradient(90deg, var(--gold), var(--gold-light)) !important;
    color: #1a1a2e !important;
}

/* Elegant 4 - Premium (Black hover) */
.card-style-elegant-4 .skc-product-card {
    background: #fff !important;
    border: 2px solid #000 !important;
    border-radius: 0 !important;
}
.card-style-elegant-4 .skc-product-card:hover {
    background: #000 !important;
}
.card-style-elegant-4 .skc-product-card:hover .skc-product-name,
.card-style-elegant-4 .skc-product-card:hover .skc-product-name a,
.card-style-elegant-4 .skc-product-card:hover .skc-product-price,
.card-style-elegant-4 .skc-product-card:hover .sale-price {
    color: #fff !important;
}
.card-style-elegant-4 .skc-add-to-cart {
    background: #000 !important;
    border-radius: 0 !important;
}

/* Elegant 1 - Gold Accent */
.card-style-elegant-1 .skc-product-card {
    background: #fff !important;
    border-radius: 8px !important;
    border: 1px solid #e0e0e0 !important;
    position: relative !important;
}
.card-style-elegant-1 .skc-product-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)) !important;
    z-index: 10 !important;
}
.card-style-elegant-1 .skc-product-card:hover {
    box-shadow: 0 10px 30px rgba(212,175,55,0.2) !important;
}

/* Elegant 3 - Luxury */
.card-style-elegant-3 .skc-product-card {
    background: linear-gradient(135deg, #fff 0%, #faf8f5 100%) !important;
    border: 1px solid #e8e0d5 !important;
    border-radius: 4px !important;
}

/* E-com 1 - Amazon Style */
.card-style-ecom-1 .skc-product-card {
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
}
.card-style-ecom-1 .skc-product-name a {
    color: #0066c0 !important;
}
.card-style-ecom-1 .sale-price {
    color: #B12704 !important;
    font-size: 20px !important;
}

/* E-com 2 - Flipkart Style */
.card-style-ecom-2 .skc-product-card {
    background: #fff !important;
    border-radius: 2px !important;
}
.card-style-ecom-2 .skc-product-image {
    padding: 20px !important;
    background: #f5f5f5 !important;
}
.card-style-ecom-2 .sale-price {
    color: #388e3c !important;
}
.card-style-ecom-2 .skc-add-to-cart {
    background: #ff9f00 !important;
}

/* E-com 3 - Myntra Style */
.card-style-ecom-3 .skc-product-card {
    background: #fff !important;
    border-radius: 0 !important;
}
.card-style-ecom-3 .skc-product-name a {
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #535766 !important;
}
.card-style-ecom-3 .sale-price {
    color: #ff3f6c !important;
}

/* E-com 4 - BigBasket Style */
.card-style-ecom-4 .skc-product-card {
    background: #fff !important;
    border: 1px solid #e8e8e8 !important;
    border-radius: 10px !important;
}
.card-style-ecom-4 .skc-product-card:hover {
    border-color: #84c225 !important;
}
.card-style-ecom-4 .skc-add-to-cart {
    background: #84c225 !important;
}

/* E-com 5 - Swiggy Style */
.card-style-ecom-5 .skc-product-card {
    background: #fff !important;
    border-radius: 20px !important;
}
.card-style-ecom-5 .skc-add-to-cart {
    background: #fc8019 !important;
    border-radius: 12px !important;
}

/* Modern 2 - Floating */
.card-style-modern-2 .skc-product-card {
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
}
.card-style-modern-2 .skc-product-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}

/* Modern 3 - Glass */
.card-style-modern-3 .skc-product-card {
    background: rgba(255,255,255,0.8) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255,255,255,0.5) !important;
    border-radius: 16px !important;
}

/* Modern 4 - Neumorphic */
.card-style-modern-4 .skc-product-card {
    background: #e8e8e8 !important;
    border-radius: 20px !important;
    box-shadow: 8px 8px 16px #c5c5c5, -8px -8px 16px #ffffff !important;
}

/* Creative 1 - Polaroid */
.card-style-creative-1 .skc-product-card {
    background: #fff !important;
    border-radius: 4px !important;
    padding: 15px 15px 30px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
    transform: rotate(-1deg) !important;
}
.card-style-creative-1 .skc-product-card:hover {
    transform: rotate(0deg) scale(1.05) !important;
}

/* Creative 2 - Magazine */
.card-style-creative-2 .skc-product-card {
    background: #fff !important;
    border-radius: 0 !important;
    position: relative !important;
    overflow: hidden !important;
}
.card-style-creative-2 .skc-product-image img {
    filter: grayscale(100%) !important;
    transition: filter 0.3s ease !important;
}
.card-style-creative-2 .skc-product-card:hover .skc-product-image img {
    filter: grayscale(0%) !important;
}
.card-style-creative-2 .skc-product-info {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(transparent, rgba(0,0,0,0.8)) !important;
    padding: 40px 15px 15px !important;
}
.card-style-creative-2 .skc-product-name,
.card-style-creative-2 .skc-product-name a,
.card-style-creative-2 .skc-product-price,
.card-style-creative-2 .sale-price {
    color: #fff !important;
}

/* Classic 2 - With Shadow */
.card-style-classic-2 .skc-product-card {
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}
.card-style-classic-2 .skc-product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15) !important;
    transform: translateY(-8px) !important;
}

/* Classic 3 - Rounded */
.card-style-classic-3 .skc-product-card {
    background: #fff !important;
    border-radius: 20px !important;
}
.card-style-classic-3 .skc-product-image {
    border-radius: 20px 20px 0 0 !important;
}

/* Classic 4 - Border */
.card-style-classic-4 .skc-product-card {
    background: #fff !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 10px !important;
}
.card-style-classic-4 .skc-product-card:hover {
    border-color: #3a5a40 !important;
}

/* Classic 5 - Gradient */
.card-style-classic-5 .skc-product-card {
    background: linear-gradient(145deg, #fff 0%, #f8f9fa 100%) !important;
    border-radius: 12px !important;
}
.card-style-classic-5 .skc-product-card:hover {
    background: linear-gradient(145deg, #fff 0%, #e8f5e9 100%) !important;
}
