/**
 * Homepage Sections Styles
 * 
 * This file contains all styles for homepage sections.
 * Classes are named in a human-readable, manageable way.
 * 
 * Naming Convention:
 * - Section: homepage-section-name
 * - Component: section-component-name
 * - Modifier: component-modifier-name
 */

/* ============================================
   COMPACT PRODUCT ITEMS (NO IMAGES)
   ============================================ */

.product-item-compact {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-item-compact .product-info {
    text-align: center;
}

.product-item-compact .product-category {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.product-item-compact .product-name {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
}

.product-item-compact .product-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.product-item-compact .product-name a:hover {
    color: #f0a402;
}

.product-item-compact .product-rating {
    margin: 8px 0;
}

.product-item-compact .product-price {
    font-size: 18px;
    font-weight: 700;
    color: #f0a402;
    margin-top: 10px;
}

/* ============================================
   GENERAL HOMEPAGE SECTION STYLES
   ============================================ */

/* Base styles for all homepage sections */
.homepage-section {
    padding: 60px 0;
    position: relative;
}

/* Section headers with title and view all link */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header.text-center {
    justify-content: center;
    flex-direction: column;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.section-view-all {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.section-view-all:hover {
    color: var(--primary-color-dark);
    transform: translateX(5px);
}

.section-view-all i {
    font-size: 14px;
}

/* ============================================
   FEATURED PRODUCTS SECTION
   ============================================ */

.homepage-featured-products {
    background-color: #ffffff;
}

/* Products Grid - Using Bootstrap Row/Col */
.homepage-featured-products .row,
.homepage-new-arrivals .row {
    margin-bottom: 30px;
}

/* Product item container - Card Box Style */
.product-item.product-card-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.product-item.product-card-box:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: #f0a402;
}

/* Hidden products */
.product-item.product-hidden {
    display: none;
}

.product-item.product-visible {
    display: block;
    animation: fadeInUp 0.4s ease-out;
}

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

/* Product image container - Compact size */
.product-card-box .product-image {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 10px;
    background: #f8f8f8;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-box .product-image img {
    width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Product badge (sale, new, etc.) */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.product-badge-sale .badge-text {
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

/* Product actions (add to cart, wishlist, etc.) */
.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.product-item:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

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

.product-action-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

/* Product information - Compact */
.product-card-box .product-info {
    padding: 15px 12px;
    text-align: center;
}

.product-card-box .product-info .product-category {
    font-size: 11px;
    margin-bottom: 6px;
}

.product-card-box .product-info .product-name {
    font-size: 14px;
    margin: 8px 0;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-box .product-info .product-rating {
    margin: 6px 0;
    font-size: 12px;
}

.product-card-box .product-info .product-price {
    font-size: 16px;
    margin-top: 8px;
}

/* Show More Button */
.products-show-more-wrapper {
    margin-top: 30px;
    padding: 20px 0;
}

.btn-show-more-products {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    background: #f0a402;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-show-more-products:hover {
    background: #d89402;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 164, 2, 0.3);
}

.btn-show-more-products i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-show-more-products.active i {
    transform: rotate(180deg);
}

.product-category {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.product-category a {
    color: #999;
    text-decoration: none;
}

.product-category a:hover {
    color: var(--primary-color);
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.product-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-rating {
    margin-bottom: 10px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price del {
    color: #999;
    font-size: 14px;
    margin-right: 8px;
}

/* ============================================
   NEW ARRIVALS SECTION - Theme Color Design
   ============================================ */

.new-arrivals-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff9e6 0%, #fff 50%, #fff9e6 100%);
}

.new-arrivals-section .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.new-arrivals-section .section-title-wrap {
    flex: 1;
}

.new-arrivals-section .section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
}

.new-arrivals-section .section-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: #666;
    margin: 0;
}

.new-arrivals-section .view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--primary-color);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s;
}

.new-arrivals-section .view-all-link:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(240, 164, 2, 0.3);
}

.new-arrivals-section .view-all-link i {
    transition: transform 0.3s;
}

.new-arrivals-section .view-all-link:hover i {
    transform: translateX(4px);
}

/* Arrivals Grid */
.arrivals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Arrival Card */
.arrival-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.arrival-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(240, 164, 2, 0.15);
}

/* Badges */
.arrival-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    padding: 5px 12px;
    border-radius: 6px;
    text-transform: uppercase;
}

.arrival-sale {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    padding: 5px 10px;
    border-radius: 6px;
}

/* Arrival Image */
.arrival-image {
    position: relative;
    display: block;
    height: 200px;
    overflow: hidden;
    background: #f8f8f8;
}

.arrival-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 20px;
}

.arrival-card:hover .arrival-image img {
    transform: scale(1.08);
}

/* Hover Actions */
.arrival-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.arrival-actions .action-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.arrival-actions .action-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

/* Arrival Content */
.arrival-content {
    padding: 20px;
}

.arrival-category {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.arrival-category a {
    color: var(--primary-color);
    text-decoration: none;
}

.arrival-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.arrival-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.arrival-title a:hover {
    color: var(--primary-color);
}

.arrival-rating {
    margin-bottom: 12px;
    min-height: 18px;
}

.arrival-rating .star-rating {
    font-size: 13px;
}

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

.arrival-price .price-old {
    font-family: var(--font-body);
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.arrival-price .price-new {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.arrival-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.arrival-btn:hover {
    background: var(--primary-color-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* Arrivals Responsive */
@media (max-width: 1199px) {
    .arrivals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .new-arrivals-section {
        padding: 40px 0;
    }

    .new-arrivals-section .section-title {
        font-size: 26px;
    }

    .arrivals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .arrival-image {
        height: 180px;
    }
    
    .arrival-actions {
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .new-arrivals-section {
        padding: 30px 0;
    }

    .new-arrivals-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }

    .new-arrivals-section .section-title {
        font-size: 22px;
    }

    .new-arrivals-section .section-subtitle {
        font-size: 13px;
    }

    .new-arrivals-section .view-all-link {
        font-size: 13px;
        padding: 10px 18px;
    }

    .arrivals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .arrival-badge {
        font-size: 9px;
        padding: 4px 8px;
        top: 8px;
        left: 8px;
    }

    .arrival-sale {
        font-size: 10px;
        padding: 4px 8px;
        top: 8px;
        right: 8px;
    }

    .arrival-image {
        height: 140px;
    }

    .arrival-image img {
        padding: 10px;
    }
    
    .arrival-actions .action-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .arrival-content {
        padding: 14px;
    }

    .arrival-category {
        font-size: 11px;
    }

    .arrival-title {
        font-size: 14px;
        height: 40px;
        margin-bottom: 8px;
    }

    .arrival-price {
        gap: 8px;
        margin-bottom: 12px;
    }

    .arrival-price .price-old {
        font-size: 12px;
    }

    .arrival-price .price-new {
        font-size: 16px;
    }

    .arrival-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .arrivals-grid {
        gap: 10px;
    }

    .arrival-image {
        height: 120px;
    }

    .arrival-content {
        padding: 12px;
    }

    .arrival-title {
        font-size: 13px;
    }

    .arrival-price .price-new {
        font-size: 15px;
    }

    .arrival-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
}

/* ============================================
   WHY CHOOSE US - Professional Design
   ============================================ */

.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.1;
}

.why-choose-wrapper {
    position: relative;
    z-index: 1;
}

/* Left Content */
.why-choose-content {
    padding-right: 40px;
}

.why-choose-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.why-choose-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 20px;
}

.why-choose-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin: 0 0 32px;
}

/* Stats */
.why-choose-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* Right Features */
.why-choose-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    border-radius: 12px;
    color: #fff;
    font-size: 22px;
}

.feature-info h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
}

.feature-info p {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.5;
}

/* Why Choose Responsive */
@media (max-width: 1199px) {
    .why-choose-title {
        font-size: 30px;
    }
    
    .why-choose-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .why-choose-title {
        font-size: 28px;
    }
    
    .why-choose-stats {
        justify-content: center;
    }
    
    .why-choose-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 50px 0;
    }
    
    .why-choose-section::before {
        display: none;
    }
    
    .why-choose-title {
        font-size: 24px;
    }
    
    .why-choose-desc {
        font-size: 14px;
    }
    
    .why-choose-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .why-choose-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-card {
        padding: 18px;
        gap: 14px;
    }
    
    .feature-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 18px;
    }
    
    .feature-info h3 {
        font-size: 15px;
    }
    
    .feature-info p {
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .why-choose-title {
        font-size: 22px;
    }
    
    .why-choose-stats {
        gap: 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .feature-card {
        padding: 14px;
    }
    
    .feature-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 16px;
        border-radius: 10px;
    }
}

/* ============================================
   TRUSTED BRANDS - Clean Professional Design
   ============================================ */

.brands-section {
    padding: 50px 0 !important;
    background: #f8f8f8 !important;
    display: block !important;
}

.brands-header {
    text-align: center;
    margin-bottom: 40px;
}

.brands-title {
    font-family: 'Poppins', var(--font-heading, sans-serif);
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #222 !important;
    margin: 0 0 8px !important;
    text-transform: none;
}

.brands-subtitle {
    font-family: 'Poppins', var(--font-body, sans-serif);
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* Brands Slider/Grid */
.brands-slider {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.brand-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: calc(12.5% - 14px);
    min-width: 120px;
    height: 80px;
    padding: 16px 20px;
    background: #fff !important;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid #eee !important;
}

.brand-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(240, 164, 2, 0.15);
    border-color: #f0a402 !important;
    border-color: var(--primary-color, #f0a402) !important;
}

.brand-item img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-text {
    font-family: 'Poppins', var(--font-heading, sans-serif);
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #666 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    text-decoration: none !important;
}

.brand-item:hover .brand-text {
    color: #f0a402 !important;
    color: var(--primary-color, #f0a402) !important;
}

/* OLD BRANDS - Hide */
.homepage-brands {
    display: none !important;
}

/* Brands Responsive */
@media (max-width: 1199px) {
    .brand-item {
        width: calc(16.66% - 14px) !important;
    }
}

@media (max-width: 991px) {
    .brands-section {
        padding: 40px 0 !important;
    }
    
    .brands-title {
        font-size: 24px !important;
    }
    
    .brand-item {
        width: calc(25% - 12px) !important;
        min-width: 100px;
        height: 70px;
        padding: 12px 16px;
    }
}

@media (max-width: 767px) {
    .brands-section {
        padding: 30px 0 !important;
    }
    
    .brands-header {
        margin-bottom: 25px;
    }
    
    .brands-title {
        font-size: 20px !important;
    }
    
    .brands-subtitle {
        font-size: 13px;
    }
    
    .brands-slider {
        gap: 10px;
    }
    
    .brand-item {
        width: calc(33.33% - 8px);
        min-width: 90px;
        height: 60px;
        padding: 10px 12px;
        border-radius: 8px;
    }
    
    .brand-item img {
        max-height: 40px;
    }
    
    .brand-text {
        font-size: 11px;
    }
}

@media (max-width: 375px) {
    .brand-item {
        width: calc(50% - 6px);
        min-width: 80px;
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet styles */
@media (max-width: 991px) {
    .homepage-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .brand-logo-wrap {
        height: 70px;
        padding: 12px 15px;
    }
    
    .brand-logo {
        max-height: 50px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .benefit-item {
        margin-bottom: 30px;
    }
}

/* Mobile styles */
@media (max-width: 767px) {
    .homepage-section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 20px;
    }

    .product-card-box .product-image {
        height: 140px;
        padding: 8px;
    }

    .product-card-box .product-image img {
        max-height: 120px;
    }

    .product-card-box .product-info {
        padding: 12px 8px;
    }

    .product-card-box .product-info .product-name {
        font-size: 12px;
        min-height: 32px;
    }

    .product-card-box .product-info .product-price {
        font-size: 14px;
    }

    .product-info {
        padding: 15px 10px;
    }

    .product-name {
        font-size: 14px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .benefit-title {
        font-size: 16px;
    }

    .homepage-brands .row {
        margin-top: 30px;
    }
    
    .brand-logo-wrap {
        height: 60px;
        padding: 10px 12px;
    }

    .brand-logo {
        max-height: 45px;
    }
    
    .brand-name {
        font-size: 12px;
    }
    
    .brands-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

/* ============================================
   HOW IT WORKS SECTION - Reference Design Match
   ============================================ */

.homepage-how-it-works {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 35px;
}

.how-it-works-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-heading);
    margin: 0 0 8px;
    text-transform: uppercase;
}

.how-it-works-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text-muted);
    margin: 0;
}

/* Cards container */
.how-it-works-cards {
    margin-top: 25px;
}

/* Individual card */
.hiw-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.hiw-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Card header with number badge and title */
.hiw-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hiw-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.hiw-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-heading);
    margin: 0;
    line-height: 1.3;
}

/* Card body */
.hiw-card-body {
    text-align: center;
}

.hiw-image {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.hiw-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hiw-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .hiw-card {
        margin-bottom: 16px;
    }
}

@media (max-width: 767px) {
    .homepage-how-it-works {
        padding: 35px 0;
    }
    
    .how-it-works-title {
        font-size: 22px;
    }
    
    .how-it-works-subtitle {
        font-size: 14px;
    }
}

/* ============================================
   TESTIMONIALS / REVIEWS SECTION - Pro Design
   ============================================ */

.reviews-section {
    padding: 70px 0;
    background: #fff;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.reviews-header-content {
    flex: 1;
}

.reviews-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
}

.reviews-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* Rating Box */
.reviews-rating-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
}

.rating-score {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-stars {
    color: var(--primary-color);
    font-size: 16px;
    display: flex;
    gap: 2px;
}

.rating-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: #666;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Review Card */
.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(240, 164, 2, 0.15);
}

/* Review Header */
.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
}

.review-author-info {
    flex: 1;
}

.review-author {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0 0 4px;
}

.review-stars {
    color: var(--primary-color);
    font-size: 13px;
    display: flex;
    gap: 2px;
}

.review-verified {
    font-family: var(--font-body);
    font-size: 12px;
    color: #27ae60;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-verified i {
    font-size: 14px;
}

/* Review Content */
.review-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0 0 12px;
}

.review-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 16px;
    flex-grow: 1;
}

.review-date {
    font-family: var(--font-body);
    font-size: 12px;
    color: #999;
}

/* Reviews Responsive */
@media (max-width: 1199px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .reviews-section {
        padding: 50px 0;
    }
    
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .reviews-title {
        font-size: 26px;
    }
    
    .reviews-rating-box {
        padding: 16px 24px;
    }
    
    .rating-score {
        font-size: 40px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .review-card {
        padding: 22px;
    }
}

@media (max-width: 767px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-title {
        font-size: 22px;
    }
    
    .reviews-subtitle {
        font-size: 14px;
    }
    
    .reviews-rating-box {
        padding: 14px 20px;
        gap: 12px;
    }
    
    .rating-score {
        font-size: 32px;
    }
    
    .rating-stars {
        font-size: 14px;
    }
    
    .rating-text {
        font-size: 12px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-avatar {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .review-author {
        font-size: 15px;
    }
    
    .review-title {
        font-size: 16px;
    }
    
    .review-text {
        font-size: 13px;
    }
}

@media (max-width: 375px) {
    .reviews-rating-box {
        width: 100%;
        justify-content: center;
    }
    
    .review-card {
        padding: 16px;
    }
    
    .review-header {
        gap: 10px;
    }
    
    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* OLD TESTIMONIALS - Hide */
.homepage-testimonials {
    display: none;
}

.testimonials-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.testimonials-title .title-highlight {
    color: #f0a402;
}

/* Testimonials Section - Using Bootstrap Grid */
.homepage-testimonials .row {
    margin-top: 50px;
    padding-bottom: 50px;
}

/* Enhanced Testimonial Card Design */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f0a402, #ffb733);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(240, 164, 2, 0.2);
    border-color: #f0a402;
}

/* Quote Icon - Large Background */
.testimonial-quote-icon {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 70px;
    color: #f5f5f5;
    opacity: 0.4;
    line-height: 1;
    z-index: 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
    opacity: 0.6;
    transform: scale(1.1);
}

/* Testimonial Title - Red/Bold */
.testimonial-title {
    font-size: 22px;
    font-weight: 700;
    color: #f0a402;
    margin: 15px 0 18px 0;
    padding-left: 0;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

/* Testimonial Text - Main Content */
.testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    min-height: 70px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* Testimonial Meta - Author and Date */
.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: #999;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.testimonial-date {
    color: #999;
    font-size: 12px;
}

/* Owl Carousel Dots Styling */
.testimonials-slider .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.testimonials-slider .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonials-slider .owl-dots .owl-dot:hover,
.testimonials-slider .owl-dots .owl-dot.active {
    background: #f0a402;
    border-color: #f0a402;
    transform: scale(1.2);
}

/* Responsive Testimonials */
@media (max-width: 991px) {
    .homepage-testimonials {
        padding: 40px 0;
    }
    
    .testimonials-slider {
        margin-top: 30px;
        padding-bottom: 40px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-title {
        font-size: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
        min-height: 60px;
    }
}

@media (max-width: 576px) {
    .testimonials-title {
        font-size: 22px;
    }
    
    .testimonial-card {
        padding: 20px 18px;
    }
    
    .testimonial-title {
        font-size: 18px;
        margin: 12px 0 15px 0;
    }
    
    .testimonial-text {
        font-size: 13px;
        min-height: 50px;
    }
    
    .testimonial-quote-icon {
        font-size: 50px;
        top: 10px;
        left: 15px;
    }
}

/* ============================================
   BRANDS SECTION UPDATES
   ============================================ */

.homepage-brands .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}

.homepage-brands .section-title .title-highlight {
    color: #f0a402;
}

/* ============================================
   SHOP CATEGORIES SECTION
   ============================================ */

.category-section {
    padding: 60px 0;
    background-color: #ffffff;
    position: relative;
}

.category-section .title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    text-transform: uppercase;
}

.category-section .sicon-title {
    color: #f0a402;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.category-section .sicon-title:hover {
    color: #d89402;
    transform: translateX(5px);
}

.category-section .sicon-title i {
    transition: transform 0.3s ease;
}

.category-section .sicon-title:hover i {
    transform: translateX(5px);
}

/* Category Item Container */
.category-section .product-category {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Grid layout specific styles */
.category-section .row .product-category {
    margin-bottom: 0;
}

.category-section .product-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(240, 164, 2, 0.25);
}

/* Category Image Container */
.category-section .product-category figure {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px 12px 0 0;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-section .product-category figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(240, 164, 2, 0) 0%, rgba(240, 164, 2, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.category-section .product-category:hover figure::before {
    opacity: 1;
}

.category-section .product-category figure::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 80%;
    height: 80%;
    border: 3px solid #f0a402;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.category-section .product-category:hover figure::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
}

.category-section .product-category figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.category-section .product-category:hover figure img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.1);
}

/* Category Content */
.category-section .product-category .category-content {
    padding: 20px 15px;
    text-align: center;
    background: #fff;
    position: relative;
    z-index: 2;
}

.category-section .product-category .category-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: capitalize;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.category-section .product-category .category-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 3px;
    background: #f0a402;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.category-section .product-category:hover .category-title {
    color: #f0a402;
}

.category-section .product-category:hover .category-title::after {
    transform: translateX(-50%) scaleX(1);
}

/* Category Link Overlay Effect */
.category-section .product-category .category-link {
    position: relative;
    display: block;
    text-decoration: none;
    z-index: 1;
}

/* Add a subtle shine effect on hover */
.category-section .product-category::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.category-section .product-category:hover::before {
    transform: rotate(45deg) translateX(100%);
}

/* Category Count Badge (if you want to add product count) */
.category-section .product-category .category-count {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0a402;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 4;
}

.category-section .product-category:hover .category-count {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Category Section */
@media (max-width: 991px) {
    .category-section {
        padding: 40px 0;
    }
    
    .category-section .product-category figure {
        height: 200px;
    }
    
    .category-section .product-category .category-title {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .category-section {
        padding: 30px 0;
    }
    
    .category-section .title {
        font-size: 22px;
    }
    
    .category-section .product-category {
        margin: 10px;
    }
    
    .category-section .product-category figure {
        height: 180px;
    }
    
    .category-section .product-category .category-content {
        padding: 15px 10px;
    }
}

/* ============================================
   ANIMATION ENHANCEMENTS
   ============================================ */

/* Fade in animation for sections */
.homepage-section {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Smooth transitions for all interactive elements */
.product-item,
.benefit-item,
.brand-link,
.hiw-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   GLOBAL SECTION HEADER - Professional Design
   ============================================ */

.section-header-pro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header-left {
    flex: 1;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-label i {
    font-size: 11px;
}

.section-title-pro {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #1a1a1a;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateX(5px);
}

.btn-view-all i {
    transition: transform 0.3s;
}

.btn-view-all:hover i {
    transform: translateX(4px);
}

/* ============================================
   SHOP CATEGORIES - Matches Hot Deals Style
   ============================================ */

.shop-categories-section {
    padding: 60px 0;
    background: #fff;
}

.shop-categories-section .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.shop-categories-section .section-title-wrap {
    flex: 1;
}

.shop-categories-section .section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
}

.shop-categories-section .section-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: #666;
    margin: 0;
}

.shop-categories-section .view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--primary-color);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s;
}

.shop-categories-section .view-all-link:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(240, 164, 2, 0.3);
}

.shop-categories-section .view-all-link i {
    transition: transform 0.3s;
}

.shop-categories-section .view-all-link:hover i {
    transform: translateX(4px);
}

/* Categories Grid - 4 columns like Hot Deals */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Category Card - Same style as Deal Card */
.category-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(240, 164, 2, 0.15);
}

/* Category Image */
.category-image {
    display: block;
    height: 200px;
    overflow: hidden;
    background: #f8f8f8;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 20px;
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

/* Category Content */
.category-content {
    padding: 20px;
    text-align: center;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 6px;
    transition: color 0.3s;
}

.category-card:hover .category-title {
    color: var(--primary-color);
}

.category-count {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    color: #888;
    margin-bottom: 16px;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s;
}

.category-btn i {
    font-size: 11px;
    transition: transform 0.3s;
}

.category-card:hover .category-btn {
    color: var(--primary-color-dark);
}

.category-card:hover .category-btn i {
    transform: translateX(4px);
}

/* Categories Responsive */
@media (max-width: 1199px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .shop-categories-section {
        padding: 40px 0;
    }

    .shop-categories-section .section-title {
        font-size: 26px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .category-image {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .shop-categories-section {
        padding: 30px 0;
    }

    .shop-categories-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }

    .shop-categories-section .section-title {
        font-size: 22px;
    }

    .shop-categories-section .section-subtitle {
        font-size: 13px;
    }

    .shop-categories-section .view-all-link {
        font-size: 13px;
        padding: 10px 18px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        border-radius: 12px;
    }

    .category-image {
        height: 140px;
    }

    .category-image img {
        padding: 15px;
    }

    .category-content {
        padding: 14px;
    }

    .category-title {
        font-size: 15px;
    }

    .category-count {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .category-btn {
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .categories-grid {
        gap: 10px;
    }

    .category-image {
        height: 120px;
    }

    .category-content {
        padding: 12px;
    }

    .category-title {
        font-size: 14px;
    }

    .category-count {
        font-size: 11px;
    }
}

/* ============================================
   HOT DEALS SECTION - Professional Design
   ============================================ */

.hot-deals-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff9e6 0%, #fff 50%, #fff9e6 100%);
}

.hot-deals-section .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.hot-deals-section .section-title-wrap {
    flex: 1;
}

.hot-deals-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #ff6b35 0%, var(--primary-color) 100%);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hot-deals-section .section-badge i {
    color: #fff;
}

.hot-deals-section .section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
}

.hot-deals-section .section-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: #666;
    margin: 0;
}

.hot-deals-section .view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--primary-color);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s;
}

.hot-deals-section .view-all-link:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(240, 164, 2, 0.3);
}

.hot-deals-section .view-all-link i {
    transition: transform 0.3s;
}

.hot-deals-section .view-all-link:hover i {
    transform: translateX(4px);
}

/* Deals Grid */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.deal-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(240, 164, 2, 0.15);
}

.deal-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    padding: 6px 12px;
    border-radius: 6px;
}

.deal-image {
    display: block;
    height: 200px;
    overflow: hidden;
    background: #f8f8f8;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 20px;
}

.deal-card:hover .deal-image img {
    transform: scale(1.08);
}

.deal-content {
    padding: 20px;
}

.deal-category {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.deal-category a {
    color: var(--primary-color);
    text-decoration: none;
}

.deal-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.deal-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.deal-title a:hover {
    color: var(--primary-color);
}

.deal-rating {
    margin-bottom: 12px;
}

.deal-rating .star-rating {
    font-size: 13px;
}

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

.deal-price .price-old {
    font-family: var(--font-body);
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.deal-price .price-new {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.deal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.deal-btn:hover {
    background: var(--primary-color-dark);
    color: #fff;
    transform: translateY(-2px);
}

.no-deals {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #666;
}

/* Deals Responsive */
@media (max-width: 1199px) {
    .deals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .hot-deals-section {
        padding: 40px 0;
    }

    .hot-deals-section .section-title {
        font-size: 26px;
    }

    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .deal-image {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .hot-deals-section {
        padding: 30px 0;
    }

    .hot-deals-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }

    .hot-deals-section .section-title {
        font-size: 22px;
    }

    .hot-deals-section .section-subtitle {
        font-size: 13px;
    }

    .hot-deals-section .view-all-link {
        font-size: 13px;
        padding: 10px 18px;
    }

    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .deal-badge {
        font-size: 11px;
        padding: 4px 10px;
        top: 8px;
        left: 8px;
    }

    .deal-image {
        height: 140px;
    }

    .deal-image img {
        padding: 10px;
    }

    .deal-content {
        padding: 14px;
    }

    .deal-category {
        font-size: 11px;
    }

    .deal-title {
        font-size: 14px;
        height: 40px;
        margin-bottom: 8px;
    }

    .deal-price {
        gap: 8px;
        margin-bottom: 12px;
    }

    .deal-price .price-old {
        font-size: 12px;
    }

    .deal-price .price-new {
        font-size: 16px;
    }

    .deal-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .deals-grid {
        gap: 10px;
    }

    .deal-image {
        height: 120px;
    }

    .deal-content {
        padding: 12px;
    }

    .deal-title {
        font-size: 13px;
    }

    .deal-price .price-new {
        font-size: 15px;
    }

    .deal-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
}

/* ============================================
   FEATURED PRODUCTS - Same as Hot Deals
   ============================================ */

.featured-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.featured-section .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.featured-section .section-title-wrap {
    flex: 1;
}

.featured-section .section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
}

.featured-section .section-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: #666;
    margin: 0;
}

.featured-section .view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--primary-color);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s;
}

.featured-section .view-all-link:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(240, 164, 2, 0.3);
}

.featured-section .view-all-link i {
    transition: transform 0.3s;
}

.featured-section .view-all-link:hover i {
    transform: translateX(4px);
}

/* Featured Grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Featured Card */
.featured-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(240, 164, 2, 0.15);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    padding: 6px 12px;
    border-radius: 6px;
}

/* Featured Image */
.featured-image {
    position: relative;
    display: block;
    height: 200px;
    overflow: hidden;
    background: #f8f8f8;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 20px;
}

.featured-card:hover .featured-image img {
    transform: scale(1.08);
}

/* Hover Actions */
.featured-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.featured-actions .action-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.featured-actions .action-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

/* Featured Content */
.featured-content {
    padding: 20px;
}

.featured-category {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.featured-category a {
    color: var(--primary-color);
    text-decoration: none;
}

.featured-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.featured-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.featured-title a:hover {
    color: var(--primary-color);
}

.featured-rating {
    margin-bottom: 12px;
    min-height: 18px;
}

.featured-rating .star-rating {
    font-size: 13px;
}

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

.featured-price .price-old {
    font-family: var(--font-body);
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.featured-price .price-new {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.featured-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.featured-btn:hover {
    background: var(--primary-color-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* Featured Responsive */
@media (max-width: 1199px) {
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .featured-section {
        padding: 40px 0;
    }

    .featured-section .section-title {
        font-size: 26px;
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .featured-image {
        height: 180px;
    }
    
    .featured-actions {
        opacity: 1;
    }
}

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

    .featured-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }

    .featured-section .section-title {
        font-size: 22px;
    }

    .featured-section .section-subtitle {
        font-size: 13px;
    }

    .featured-section .view-all-link {
        font-size: 13px;
        padding: 10px 18px;
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .featured-badge {
        font-size: 11px;
        padding: 4px 10px;
        top: 8px;
        left: 8px;
    }

    .featured-image {
        height: 140px;
    }

    .featured-image img {
        padding: 10px;
    }
    
    .featured-actions .action-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .featured-content {
        padding: 14px;
    }

    .featured-category {
        font-size: 11px;
    }

    .featured-title {
        font-size: 14px;
        height: 40px;
        margin-bottom: 8px;
    }

    .featured-price {
        gap: 8px;
        margin-bottom: 12px;
    }

    .featured-price .price-old {
        font-size: 12px;
    }

    .featured-price .price-new {
        font-size: 16px;
    }

    .featured-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .featured-grid {
        gap: 10px;
    }

    .featured-image {
        height: 120px;
    }

    .featured-content {
        padding: 12px;
    }

    .featured-title {
        font-size: 13px;
    }

    .featured-price .price-new {
        font-size: 15px;
    }

    .featured-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
}

/* ============================================
   OLD FEATURED (keeping for backward compat)
   ============================================ */

.featured-products-pro {
    display: none;
}

.products-pro-grid {
    display: none;
}

.product-pro-card {
    display: none;
}

.product-pro-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
}

.product-pro-badge.badge-sale {
    color: #fff;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.product-pro-badge.badge-featured {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
}

/* Product Image */
.product-pro-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-pro-image img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

/* Product Actions */
.product-pro-actions {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-pro-card:hover .product-pro-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-pro-actions .action-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.product-pro-actions .action-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

/* Product Content */
.product-pro-content {
    padding: 20px;
    text-align: center;
}

.product-pro-category {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-pro-category a {
    color: var(--primary-color);
    text-decoration: none;
}

.product-pro-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-pro-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.product-pro-title a:hover {
    color: var(--primary-color);
}

.product-pro-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
    min-height: 20px;
}

.product-pro-rating .star-rating {
    font-size: 13px;
}

.product-pro-rating .rating-count {
    font-family: var(--font-body);
    font-size: 12px;
    color: #999;
}

.product-pro-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.product-pro-price .price-old {
    font-family: var(--font-body);
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.product-pro-price .price-current {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-pro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-pro-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.product-pro-btn i {
    font-size: 14px;
}

/* Featured Products Responsive */
@media (max-width: 1199px) {
    .products-pro-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .featured-products-pro {
        padding: 50px 0;
    }
    
    .products-pro-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-pro-image {
        height: 180px;
    }
    
    .product-pro-actions {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 767px) {
    .featured-products-pro {
        padding: 40px 0;
    }
    
    .products-pro-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-pro-card {
        border-radius: 12px;
    }
    
    .product-pro-badge {
        font-size: 10px;
        padding: 4px 8px;
        top: 10px;
        left: 10px;
    }
    
    .product-pro-image {
        height: 150px;
        padding: 15px;
    }
    
    .product-pro-image img {
        max-height: 120px;
    }
    
    .product-pro-actions {
        bottom: 10px;
    }
    
    .product-pro-actions .action-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .product-pro-content {
        padding: 14px;
    }
    
    .product-pro-category {
        font-size: 10px;
    }
    
    .product-pro-title {
        font-size: 14px;
        min-height: 38px;
    }
    
    .product-pro-price .price-old {
        font-size: 12px;
    }
    
    .product-pro-price .price-current {
        font-size: 16px;
    }
    
    .product-pro-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .products-pro-grid {
        gap: 10px;
    }
    
    .product-pro-image {
        height: 130px;
    }
    
    .product-pro-content {
        padding: 12px;
    }
    
    .product-pro-title {
        font-size: 13px;
    }
    
    .product-pro-price .price-current {
        font-size: 15px;
    }
    
    .product-pro-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
}

