/*
Theme Name: CHNMNA
Theme URI: https://www.chnmna.com
Author: XHA
Author URI: https://www.chnmna.com
Description: Custom WordPress theme for CHNMNA - featuring optimized home page with 9 modules (hero slider [5 customizable images, titles, and button links, 3-second auto-play], promotion banner [WhatsApp coupon link], featured products [6 products], new arrivals [3 products], best sellers [3 products], customer reviews, trust badges [4 trust elements with modern design], newsletter, social media), 4 category pages (Baby & Maternity [Pink #FFB6C1], Medical Supplies [Green #90EE90], Cosmetics [Gold #FFD700], Small Appliances [Blue #87CEEB]) with 6 products per page and Add to Cart functionality, optimized product detail page with modern left-right layout (breadcrumb, product gallery, product info, tabs, related products), WooCommerce default pages (cart, checkout, COD payment), footer with 4 widgets (About Us, Quick Links, Business Hours, Social Media) in horizontal layout, optimized for extra large desktop displays (>1800px) with 6-column layouts, customizer settings for header, footer, and slider customization.
Version: 1.1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chnmna
*/

/* ========================================
   Global Styles
   ======================================== */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #FFF8E7;
}

a {
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

a:hover {
    color: #FF6600;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ========================================
   Header Styles
   ======================================== */

.header-top {
    background-color: #f39c12;
    color: #fff;
    padding: 10px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top .contact-info {
    display: flex;
    gap: 20px;
}

.header-top .contact-info a {
    color: #fff;
    font-size: 14px;
}

.header-top .contact-info a:hover {
    color: #fff;
}

.header-top .social-links {
    display: flex;
    gap: 15px;
}

.header-top .social-links a {
    color: #fff;
    font-size: 14px;
}

.header-top .social-links a:hover {
    color: #fff;
}

.header-main {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-main .logo {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
}

.header-main .logo a {
    color: #2c3e50;
}

.header-main .logo a:hover {
    color: #FF6600;
}

.header-main .main-menu {
    display: flex;
    gap: 30px;
}

.header-main .main-menu a {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 500;
}

.header-main .main-menu a:hover {
    color: #FF6600;
}

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

.header-main .header-actions a {
    color: #2c3e50;
    font-size: 16px;
}

.header-main .header-actions a:hover {
    color: #FF6600;
}

.header-main .cart-count {
    background-color: #FF6600;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}

/* ========================================
   Hero Slider Styles
   ======================================== */

.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
}

.hero-slider .slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-slider .slide-content p {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-slider .slide-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero-slider .slide-buttons .btn {
    padding: 15px 40px;
    background-color: #FF6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-slider .slide-buttons .btn:hover {
    background-color: #f39c12;
}

.hero-slider .slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-slider .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-slider .slider-dot.active {
    background-color: #fff;
}

.hero-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.5);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-slider .slider-arrow:hover {
    background-color: rgba(255,255,255,0.8);
}

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

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

/* ========================================
   Promotion Banner Styles
   ======================================== */

.promotion-banner {
    background: linear-gradient(135deg, #FF6600 0%, #f39c12 100%);
    color: #fff;
    padding: 40px 0;
}

.promotion-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promotion-banner .promotion-text {
    flex: 1;
}

.promotion-banner .promotion-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.promotion-banner .promotion-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.promotion-banner .promotion-code {
    margin-top: 20px;
}

.promotion-banner .whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: #FF6600;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.promotion-banner .whatsapp-link:hover {
    background-color: #f39c12;
    color: #fff;
}

.promotion-banner .whatsapp-icon {
    font-size: 24px;
}

.promotion-banner .promotion-countdown {
    display: flex;
    gap: 20px;
}

.promotion-banner .countdown-item {
    text-align: center;
    background-color: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 10px;
    min-width: 80px;
}

.promotion-banner .countdown-number {
    font-size: 32px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.promotion-banner .countdown-label {
    font-size: 14px;
    text-transform: uppercase;
}

/* ========================================
   Section Styles
   ======================================== */

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 18px;
    color: #666;
}

/* ========================================
   Shop Page Styles
   ======================================== */

/* Shop Page */
.shop-page {
    padding: 40px 0;
}

/* Shop Header */
.shop-header {
    margin-bottom: 40px;
}

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

.shop-header .breadcrumb a {
    color: #666;
}

.shop-header .breadcrumb .separator {
    margin: 0 10px;
}

.shop-header .breadcrumb .current {
    color: #2c3e50;
    font-weight: bold;
}

.shop-header h1 {
    font-size: 36px;
    color: #ff7f50;
    margin-bottom: 10px;
    font-weight: bold;
}

.shop-header p {
    font-size: 16px;
    color: #666;
}

.shop-header .shop-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.shop-header .product-count {
    font-size: 14px;
    color: #666;
}

.shop-header .shop-controls {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.shop-header .view-toggle {
    display: flex;
    gap: 10px;
}

.shop-header .view-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #eee;
    background: white;
    color: #666;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-header .view-btn.active {
    background: #ff7f50;
    color: white;
    border-color: #ff7f50;
}

.shop-header .view-btn:hover {
    background: #f39c12;
    color: white;
    border-color: #f39c12;
}

.shop-header .sort-select select {
    padding: 10px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    color: #2c3e50;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.shop-header .sort-select select:focus {
    outline: none;
    border-color: #ff7f50;
}

/* Quick Filters */
.quick-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #eee;
    background: white;
    color: #666;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #ff7f50;
    color: white;
    border-color: #ff7f50;
}

.filter-btn.active {
    background: #ff7f50;
    color: white;
    border-color: #ff7f50;
}

/* Shop Content */
.shop-content {
    display: flex;
    gap: 30px;
}

/* Sidebar */
.shop-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: bold;
}

.category-list,
.rating-list,
.availability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li,
.rating-list li,
.availability-list li {
    margin-bottom: 10px;
}

.category-list a,
.rating-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-list a:hover,
.rating-list a:hover {
    color: #ff7f50;
}

.category-list a.active,
.rating-list a.active {
    color: #ff7f50;
    font-weight: bold;
}

.availability-list label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.availability-list input[type="checkbox"] {
    margin-right: 8px;
}

/* Price Range */
.price-range {
    margin-top: 20px;
}

.price-range input[type="range"] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: #ddd;
    border-radius: 3px;
    outline: none;
}

.price-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #ff7f50;
    border-radius: 50%;
    cursor: pointer;
}

.price-range input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #ff7f50;
    border-radius: 50%;
    cursor: pointer;
}

.price-range input[type="range"]::-ms-thumb {
    width: 18px;
    height: 18px;
    background: #ff7f50;
    border-radius: 50%;
    cursor: pointer;
}

.price-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* Products Container */
.products-container {
    flex: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

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

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

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

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

.product-image .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff7f50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

.product-image .product-badge.new {
    background-color: #f39c12;
}

.product-image .product-badge.best-seller {
    background-color: #2c3e50;
}

.product-actions-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

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

.action-btn:hover {
    background: #ff7f50;
    color: white;
    transform: scale(1.1);
}

.product-content {
    padding: 20px;
}

.product-category {
    font-size: 14px;
    color: #f39c12;
    margin-bottom: 10px;
}

.product-title {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: bold;
}

.product-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.product-rating {
    margin-bottom: 10px;
    font-size: 14px;
    color: #f39c12;
}

.product-price {
    font-size: 20px;
    color: #ff7f50;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-price .old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.product-stock {
    font-size: 14px;
    margin-bottom: 15px;
}

.product-stock .in-stock {
    color: #27ae60;
    font-weight: bold;
}

.product-stock .out-of-stock {
    color: #e74c3c;
    font-weight: bold;
}

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

.product-actions .btn {
    flex: 1;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-actions .btn-primary {
    background-color: #ff7f50;
    color: white;
    border: none;
}

.product-actions .btn-primary:hover {
    background-color: #f39c12;
    transform: translateY(-2px);
}

.product-actions .btn-secondary {
    background-color: #f39c12;
    color: white;
    border: none;
}

.product-actions .btn-secondary:hover {
    background-color: #ff7f50;
    transform: translateY(-2px);
}

.product-actions .btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 20px;
    background: #fffaf0;
    border-radius: 10px;
}

.pagination-info {
    font-size: 14px;
    color: #666;
}

.pagination-links {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.pagination-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-links a:hover,
.pagination-links a.current {
    background: #ff7f50;
    color: white;
    border-color: #ff7f50;
}

.pagination-links a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-per-page {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination-per-page select {
    padding: 8px 12px;
    border: 2px solid #eee;
    border-radius: 6px;
    font-size: 14px;
    color: #2c3e50;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.pagination-per-page select:focus {
    outline: none;
    border-color: #ff7f50;
}

/* Shop Page Responsive Design */
@media (max-width: 1024px) {
    .shop-content {
        flex-direction: row;
    }

    .shop-sidebar {
        width: 200px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .shop-header .shop-info {
        flex-direction: column;
        gap: 15px;
    }

    .shop-header .shop-controls {
        flex-direction: column;
        gap: 15px;
    }

    .shop-header .view-toggle {
        justify-content: center;
    }

    .shop-header .sort-select {
        width: 100%;
    }

    .pagination {
        flex-direction: column;
        gap: 20px;
    }

    .pagination-info,
    .pagination-links,
    .pagination-per-page {
        width: 100%;
        text-align: center;
    }

    .pagination-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pagination-per-page select {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .shop-header h1 {
        font-size: 28px;
    }

    .shop-header p {
        font-size: 14px;
    }

    .quick-filters {
        flex-wrap: wrap;
    }

    .filter-btn {
        flex: 1 1 1 100px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .shop-header .shop-info {
        flex-direction: column;
        gap: 15px;
    }

    .shop-header .shop-controls {
        flex-direction: column;
        gap: 15px;
    }

    .shop-header .view-toggle {
        justify-content: center;
    }

    .shop-header .sort-select {
        width: 100%;
    }

    .shop-content {
        flex-direction: column;
    }

    .shop-sidebar {
        width: 100%;
    }

    .pagination {
        flex-direction: column;
        gap: 20px;
    }

    .pagination-info,
    .pagination-links,
    .pagination-per-page {
        width: 100%;
        text-align: center;
    }

    .pagination-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pagination-per-page select {
        width: 100%;
    }
}

/* ========================================
   Category Pages Styles
   ======================================== */

.category-header {
    background: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.category-baby-maternity .category-header {
    background: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%);
}

.category-medical-supplies .category-header {
    background: linear-gradient(135deg, #90EE90 0%, #32CD32 100%);
}

.category-cosmetics .category-header {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.category-small-appliances .category-header {
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
}

.category-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.category-header p {
    font-size: 18px;
    margin-bottom: 20px;
}

.category-header img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    margin-top: 20px;
    border-radius: 10px;
}

.products-section {
    padding: 60px 0;
}

.pagination {
    padding: 40px 0;
}

.pagination-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-links a,
.pagination-links span {
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.pagination-links a:hover {
    background-color: #FF6600;
    color: #fff;
    border-color: #FF6600;
}

.pagination-links .current {
    background-color: #FF6600;
    color: #fff;
    border-color: #FF6600;
}

/* ========================================
   Product Card Styles
   ======================================== */

.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card .product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #FF6600;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.product-card .product-badge.new {
    background-color: #2ecc71;
}

.product-card .product-badge.best-seller {
    background-color: #f39c12;
}

.product-card .product-content {
    padding: 20px;
}

.product-card .product-category {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.product-card .product-title {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.product-card .product-title a {
    color: #2c3e50;
}

.product-card .product-title a:hover {
    color: #FF6600;
}

.product-card .product-price {
    font-size: 20px;
    color: #FF6600;
    font-weight: bold;
    margin-bottom: 15px;
}

.product-card .product-price .old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.product-card .product-actions {
    display: flex;
    gap: 10px;
}

.product-card .product-actions .btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
}

.product-card .product-actions .btn-primary {
    background-color: #FF6600;
    color: #fff;
}

.product-card .product-actions .btn-primary:hover {
    background-color: #f39c12;
}

/* Medical Supplies Category Styles */
.category-medical-supplies .product-card .product-actions .btn-primary {
    background-color: #32CD32;
}

.category-medical-supplies .product-card .product-actions .btn-primary:hover {
    background-color: #228B22;
}

.category-medical-supplies .pagination-links a:hover {
    background-color: #32CD32;
    color: #fff;
    border-color: #32CD32;
}

.category-medical-supplies .pagination-links .current {
    background-color: #32CD32;
    color: #fff;
    border-color: #32CD32;
}

.product-card .product-actions .btn-secondary {
    background-color: #95a5a6;
    color: #fff;
}

.product-card .product-actions .btn-secondary:hover {
    background-color: #7f8c8d;
}

/* ========================================
   Products Grid Styles
   ======================================== */

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

/* ========================================
   Featured Products Styles
   ======================================== */

.featured-products {
    background-color: #fff;
}

/* ========================================
   New Arrivals Styles
   ======================================== */

.new-arrivals {
    background-color: #FFF8E7;
}

/* ========================================
   Best Sellers Styles
   ======================================== */

.best-sellers {
    background-color: #fff;
}

/* ========================================
   Customer Reviews Styles
   ======================================== */

.customer-reviews {
    background-color: #FFF8E7;
}

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

.review-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.review-rating {
    font-size: 24px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-author strong {
    font-size: 16px;
    color: #2c3e50;
}

.review-date {
    font-size: 14px;
    color: #999;
}

/* ========================================
   Trust Badges Styles
   ======================================== */

.trust-badges {
    background-color: #fff;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.trust-badge-item {
    text-align: center;
    padding: 30px;
    background-color: #FFF8E7;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.trust-badge-item:hover {
    transform: translateY(-10px);
}

.trust-badge-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.trust-badge-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.trust-badge-item p {
    font-size: 14px;
    color: #666;
}

/* ========================================
   Newsletter Styles
   ======================================== */

.newsletter {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
}

.newsletter .container {
    text-align: center;
}

.newsletter .newsletter-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.newsletter .newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.newsletter .newsletter-form .form-group {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.newsletter .newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter .newsletter-form button {
    padding: 15px 30px;
    background-color: #FF6600;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter .newsletter-form button:hover {
    background-color: #f39c12;
}

/* ========================================
   Social Media Styles
   ======================================== */

.social-media {
    background-color: #fff;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.social-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.social-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.social-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.social-card p a {
    color: #FF6600;
    font-weight: bold;
}

.social-card p a:hover {
    color: #f39c12;
}

/* ========================================
   Footer Styles
   ======================================== */

.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer .widget h3 {
    font-size: 20px;
    color: #f39c12;
    margin-bottom: 20px;
}

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

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

.footer .widget ul li a {
    color: #fff;
    font-size: 14px;
}

.footer .widget ul li a:hover {
    color: #FF6600;
}

.footer .widget p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* ========================================
   Responsive Design
   ======================================== */

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

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-slider .slide-content h2 {
        font-size: 32px;
    }

    .hero-slider .slide-content p {
        font-size: 18px;
    }

    .promotion-banner .container {
        flex-direction: column;
        gap: 30px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .footer .container {
        grid-template-columns: 1fr;
    }
}

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

    .hero-slider .slide-content h2 {
        font-size: 24px;
    }

    .hero-slider .slide-content p {
        font-size: 16px;
    }
}

/* ========================================
   Extra Large Desktop (>1800px)
   ======================================== */

@media (min-width: 1800px) {
    .products-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-badges-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
