/*
Theme Name: CMiLO Cosmetics
Theme URI: https://www.cmilo.com
Author: XHA
Author URI: https://www.cmilo.com
Description: Custom WordPress theme for CMiLO Cosmetics - featuring optimized home page with 8 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), optimized shop page with 5 modules (shop header, quick filters, sidebar, products grid [4 columns], pagination), optimized product detail page with modern left-right layout (breadcrumb, product gallery, product info, tabs, related products), About page with 3 team members (founder, marketing director, operations director) and 4 product certificates (ISO 9001, CE, Halal, RoHS, CF), Contact page with form, map, FAQ, and social media (Facebook & WhatsApp only), footer with 3 widgets (About Us, Quick Links, Business Hours) in horizontal layout, optimized for extra large desktop displays (>1800px) with 6-column layouts, shop sidebar with customizable WordPress widgets, customizer settings for header, footer, shop, and slider customization, and fixed products grid layout (4 columns).
Version: 3.5.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cmilo
*/

/* ========================================
   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 & Navigation
   ======================================== */

.site-header {
    background-color: #FFF8E7;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.header-contact {
    font-size: 14px;
}

.header-contact span {
    margin-right: 20px;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.header-actions a {
    color: #fff;
    font-size: 14px;
}

.header-main {
    padding: 20px 0;
}

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

.site-logo {
    font-size: 28px;
    font-weight: bold;
    color: #FF6600;
}

.site-logo a {
    color: #FF6600;
}

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

.main-navigation ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation ul li {
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #2c3e50;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    display: block;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF6600;
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

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

.header-icons a {
    font-size: 20px;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #FF6600;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}

/* ========================================
   Floating Cart
   ======================================== */

.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background-color: #FF6600;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-cart:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.floating-cart a {
    font-size: 32px;
    color: #fff;
    position: relative;
}

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

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

@media (max-width: 768px) {
    .header-main .container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .site-logo {
        font-size: 20px;
    }

    .main-navigation {
        order: 3;
        width: 100%;
        gap: 10px;
    }

    .main-navigation ul {
        flex-wrap: wrap;
        gap: 10px;
    }

    .main-navigation a {
        font-size: 14px;
        padding: 5px 0;
    }

    .header-icons {
        order: 2;
        gap: 10px;
    }

    .header-icons a {
        font-size: 18px;
    }

    .cart-count {
        top: -5px;
        right: -5px;
        font-size: 10px;
        padding: 1px 4px;
    }

    .floating-cart {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .floating-cart a {
        font-size: 20px;
    }

    .floating-cart .cart-count {
        top: -3px;
        right: -3px;
        font-size: 10px;
        padding: 1px 4px;
    }
}

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

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

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

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

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

.slide-content .btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #FF6600;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.slide-content .btn:hover {
    background-color: #f39c12;
}

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

.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;
}

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

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

.slider-arrow:hover {
    background-color: #fff;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* ========================================
   Product Categories
   ======================================== */

.product-categories {
    padding: 60px 0;
    background-color: #fff;
}

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

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

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

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: #fff;
}

.category-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.category-content p {
    font-size: 14px;
}

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

.featured-products {
    padding: 60px 0;
    background-color: #FFF8E7;
}

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

.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(-5px);
}

.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-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #f39c12;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.product-content {
    padding: 20px;
}

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

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

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

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

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

.product-card .btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.product-card .btn-secondary {
    background-color: #f39c12;
    color: #fff;
}

.product-card .btn-secondary:hover {
    background-color: #e67e22;
}

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

.shop-page {
    padding: 60px 0;
}

.shop-header {
    margin-bottom: 40px;
}

.shop-header h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.shop-search {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.shop-search input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.shop-search input:focus {
    outline: none;
    border-color: #FF6600;
}

.shop-search button {
    padding: 12px 30px;
    background-color: #FF6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.shop-search button:hover {
    background-color: #f39c12;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

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

.pagination a:hover,
.pagination span.current {
    background-color: #FF6600;
    color: #fff;
    border-color: #FF6600;
}

/* ========================================
   Cart Page
   ======================================== */

.cart-page {
    padding: 60px 0;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-table th,
.cart-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cart-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.cart-summary {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cart-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.cart-summary .summary-row.total {
    font-size: 20px;
    font-weight: bold;
    color: #FF6600;
    border-bottom: none;
    padding-bottom: 0;
}

.cart-summary .btn-checkout {
    width: 100%;
    padding: 15px;
    background-color: #FF6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cart-summary .btn-checkout:hover {
    background-color: #f39c12;
}

/* ========================================
   Checkout Page
   ======================================== */

.checkout-page {
    padding: 60px 0;
}

.checkout-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.checkout-form h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.checkout-form .form-group {
    margin-bottom: 20px;
}

.checkout-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.checkout-summary {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.checkout-summary h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.payment-methods {
    margin-bottom: 20px;
}

.payment-method {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover,
.payment-method.selected {
    background-color: #FFF8E7;
    border-color: #FF6600;
}

.payment-method input {
    margin-right: 10px;
}

.payment-method .payment-info {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* ========================================
   Contact Page
   ======================================== */

.contact-page {
    padding: 60px 0;
}

.contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.contact-info h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background-color: #FF6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
}

.contact-info-item .info h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-info-item .info p {
    color: #666;
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form .btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #FF6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .btn-submit:hover {
    background-color: #f39c12;
}

/* ========================================
   About Page
   ======================================== */

.about-page {
    padding: 60px 0;
}

.about-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #FF6600;
    padding-bottom: 10px;
}

.about-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.about-section ul li:before {
    content: "•";
    color: #FF6600;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

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

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.about-section a {
    color: #FF6600;
    text-decoration: none;
    font-weight: bold;
}

.about-section a:hover {
    text-decoration: underline;
}

/* ========================================
   My Account Page
   ======================================== */

.account-page {
    padding: 60px 0;
}

.account-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.account-tab {
    padding: 15px 30px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-tab:hover,
.account-tab.active {
    background-color: #FF6600;
    color: #fff;
    border-color: #FF6600;
}

.account-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.account-content h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

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

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

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

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

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

.footer-widget ul li a {
    color: #fff;
    transition: color 0.3s ease;
}

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

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

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

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

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

    .product-categories {
        grid-template-columns: repeat(6, 1fr);
    }

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

    .new-arrivals {
        grid-template-columns: repeat(6, 1fr);
    }

    .best-sellers {
        grid-template-columns: repeat(6, 1fr);
    }

    .team-members {
        grid-template-columns: repeat(6, 1fr);
    }

    .product-certificates {
        grid-template-columns: repeat(6, 1fr);
    }

    .why-choose-us {
        grid-template-columns: repeat(6, 1fr);
    }

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

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

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

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

    .shop-sidebar {
        width: 300px;
    }
}

/* ========================================
   Large Desktop (>1400px)
   ======================================== */

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

    .product-categories {
        grid-template-columns: repeat(5, 1fr);
    }

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

    .new-arrivals {
        grid-template-columns: repeat(5, 1fr);
    }

    .best-sellers {
        grid-template-columns: repeat(5, 1fr);
    }

    .team-members {
        grid-template-columns: repeat(5, 1fr);
    }

    .product-certificates {
        grid-template-columns: repeat(5, 1fr);
    }

    .why-choose-us {
        grid-template-columns: repeat(5, 1fr);
    }

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

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

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

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

    .shop-sidebar {
        width: 280px;
    }
}

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

@media (max-width: 768px) {
    .shop-content {
        flex-direction: column;
    }

    .shop-sidebar {
        width: 100%;
        margin-bottom: 30px;
    }

    .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%;
    }

    .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%;
    }

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

/* ========================================
   Shop Page Optimized 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%;
    }

    .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%;
    }
}

/* ========================================
   About Page Styles
   ======================================== */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ff7f50 0%, #f39c12 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-section p {
    font-size: 24px;
    opacity: 0.9;
}

/* Brand Story */
.brand-story {
    padding: 80px 0;
    background: #fffaf0;
}

.brand-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.brand-text {
    flex: 1;
}

.brand-text h2 {
    font-size: 36px;
    color: #ff7f50;
    margin-bottom: 30px;
    font-weight: bold;
}

.brand-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2c3e50;
}

.brand-image {
    flex: 1;
}

.brand-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Team Members */
.team-members {
    padding: 80px 0;
}

.team-members h2 {
    font-size: 36px;
    color: #ff7f50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

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

.team-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;
}

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

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 4px solid #ff7f50;
}

.team-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: bold;
}

.team-position {
    font-size: 16px;
    color: #f39c12;
    margin-bottom: 15px;
    font-weight: bold;
}

.team-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Product Certificates */
.product-certificates {
    padding: 80px 0;
    background: #fffaf0;
}

.product-certificates h2 {
    font-size: 36px;
    color: #ff7f50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

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

.certificate-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;
}

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

.certificate-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

.cert-issuer {
    font-size: 16px;
    color: #f39c12;
    margin-bottom: 5px;
    font-weight: bold;
}

.cert-valid {
    font-size: 14px;
    color: #666;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
}

.why-choose-us h2 {
    font-size: 36px;
    color: #ff7f50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

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

.feature-item {
    background: white;
    border-radius: 15px;
    padding: 40px 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;
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: bold;
}

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

/* Our Products */
.our-products {
    padding: 80px 0;
    background: #fffaf0;
}

.our-products h2 {
    font-size: 36px;
    color: #ff7f50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

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

.product-category {
    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;
    cursor: pointer;
}

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

.product-category img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-category h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: bold;
}

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

/* Our Commitment */
.our-commitment {
    padding: 80px 0;
}

.our-commitment h2 {
    font-size: 36px;
    color: #ff7f50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.our-commitment ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.our-commitment li {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.6;
}

.our-commitment li:last-child {
    border-bottom: none;
}

/* Contact Us */
.contact-us {
    padding: 80px 0;
    background: #fffaf0;
}

.contact-us h2 {
    font-size: 36px;
    color: #ff7f50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.contact-grid {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    gap: 30px;
}

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

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

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-item p {
    font-size: 16px;
    color: #666;
}

.contact-item a {
    color: #ff7f50;
    font-weight: bold;
}

.contact-item a:hover {
    color: #f39c12;
}

/* About Page Responsive Design */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 32px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .brand-content {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

    .contact-grid {
        flex-direction: column;
    }

    .brand-text h2,
    .team-members h2,
    .product-certificates h2,
    .why-choose-us h2,
    .our-products h2,
    .our-commitment h2,
    .contact-us h2 {
        font-size: 28px;
    }
}

/* ========================================
   Contact Page Styles
   ======================================== */

/* Contact Page Hero Section */
.contact-page .hero-section {
    background: linear-gradient(135deg, #ff7f50 0%, #f39c12 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-page .hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-page .hero-section p {
    font-size: 24px;
    opacity: 0.9;
}

/* Contact Information */
.contact-info {
    padding: 80px 0;
}

.contact-info h2 {
    font-size: 36px;
    color: #ff7f50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

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

.info-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;
}

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

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

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

/* Contact Form */
.contact-form {
    padding: 80px 0;
    background: #fffaf0;
}

.contact-form h2 {
    font-size: 36px;
    color: #ff7f50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #2c3e50;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff7f50;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: #ff7f50;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    width: 100%;
}

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

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-section h2 {
    font-size: 36px;
    color: #ff7f50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fffaf0;
}

.faq-section h2 {
    font-size: 36px;
    color: #ff7f50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #2c3e50;
    font-size: 18px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fffaf0;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #ff7f50;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social Media */
.social-media {
    padding: 80px 0;
}

.social-media h2 {
    font-size: 36px;
    color: #ff7f50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

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

.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;
    cursor: pointer;
}

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

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

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

.social-card p {
    font-size: 16px;
    color: #666;
}

.social-card a {
    color: #ff7f50;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Contact Page Responsive Design */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-page .hero-section h1 {
        font-size: 32px;
    }

    .contact-page .hero-section p {
        font-size: 18px;
    }

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

    .contact-info h2,
    .contact-form h2,
    .map-section h2,
    .faq-section h2,
    .social-media h2 {
        font-size: 28px;
    }

    .map-container {
        height: 300px;
    }
}

/* ========================================
   Home Page Optimized Styles
   ======================================== */

/* Hero Slider Optimized */
.slide-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.slide-buttons .btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.slide-buttons .btn-primary {
    background-color: #ff7f50;
    color: white;
    border: none;
}

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

.slide-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.slide-buttons .btn-secondary:hover {
    background-color: white;
    color: #ff7f50;
    transform: translateY(-2px);
}

.slide-trust {
    margin-top: 25px;
}

.trust-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

/* Promotion Banner */
.promotion-banner {
    background: linear-gradient(135deg, #ff7f50 0%, #f39c12 100%);
    color: white;
    padding: 60px 0;
}

.promotion-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.promotion-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
}

.promotion-text p {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.promotion-code {
    display: inline-block;
    background-color: white;
    color: #ff7f50;
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
}

.promotion-code span {
    color: #666;
    margin-right: 10px;
}

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

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

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

.countdown-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Trust Badges */
.trust-badges {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffaf0 0%, #fff5e6 100%);
}

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

.trust-badge-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-badge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff7f50, #f39c12);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-badge-item:hover::before {
    transform: scaleX(1);
}

.trust-badge-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 127, 80, 0.2);
}

.trust-badge-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.trust-badge-item:nth-child(1) .trust-badge-icon {
    animation-delay: 0s;
}

.trust-badge-item:nth-child(2) .trust-badge-icon {
    animation-delay: 0.2s;
}

.trust-badge-item:nth-child(3) .trust-badge-icon {
    animation-delay: 0.4s;
}

.trust-badge-item:nth-child(4) .trust-badge-icon {
    animation-delay: 0.6s;
}

.trust-badge-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-badge-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Trust Badges */
@media (max-width: 1024px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trust-badge-item {
        padding: 30px 20px;
    }

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

    .trust-badge-item h3 {
        font-size: 18px;
    }

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

@media (max-width: 768px) {
    .trust-badges {
        padding: 60px 0;
    }

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

    .trust-badge-item {
        padding: 25px 20px;
    }

    .trust-badge-icon {
        font-size: 42px;
    }

    .trust-badge-item h3 {
        font-size: 16px;
    }

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

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

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

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

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

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

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

/* Product Categories Optimized */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.category-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;
    cursor: pointer;
}

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

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-content {
    padding: 20px;
}

.category-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: bold;
}

.category-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

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

.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-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-badge.new {
    background-color: #f39c12;
}

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

.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-price {
    font-size: 20px;
    color: #ff7f50;
    font-weight: bold;
    margin-bottom: 15px;
}

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

.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;
    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);
}

/* New Arrivals */
.new-arrivals {
    padding: 80px 0;
    background: #fffaf0;
}

/* Best Sellers */
.best-sellers {
    padding: 80px 0;
}

/* Customer Reviews */
.customer-reviews {
    padding: 80px 0;
    background: #fffaf0;
}

.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;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff7f50 0%, #f39c12 100%);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.newsletter-form {
    display: flex;
    gap: 10px;
}

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

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

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

/* Social Media */
.social-media {
    padding: 80px 0;
}

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

/* Home Page Responsive Design */
@media (max-width: 1024px) {
    .promotion-content {
        flex-direction: column;
        text-align: center;
    }

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

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

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

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

@media (max-width: 768px) {
    .promotion-content {
        flex-direction: column;
        text-align: center;
    }

    .promotion-text h2 {
        font-size: 28px;
    }

    .promotion-text p {
        font-size: 16px;
    }

    .promotion-countdown {
        flex-wrap: wrap;
        justify-content: center;
    }

    .countdown-item {
        min-width: 60px;
        padding: 15px;
    }

    .countdown-number {
        font-size: 24px;
    }

    .trust-grid,
    .categories-grid,
    .products-grid,
    .reviews-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .slide-content h2 {
        font-size: 32px;
    }

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

    .slide-buttons {
        flex-direction: column;
    }
}

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

/* Shop Header */
.shop-header {
    padding: 40px 0;
    background: #fffaf0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #ff7f50;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #f39c12;
}

.breadcrumb .separator {
    color: #999;
}

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

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

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

.shop-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

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

.shop-controls {
    display: flex;
    gap: 20px;
    align-items: center;
}

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

.view-btn {
    background: white;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn.active {
    border-color: #ff7f50;
    background: #ff7f50;
}

.view-btn svg {
    fill: #666;
    transition: fill 0.3s ease;
}

.view-btn:hover svg,
.view-btn.active svg {
    fill: white;
}

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

.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;
    background: white;
    border: 2px solid #eee;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.price-range {
    margin-top: 15px;
}

.price-range input[type="range"] {
    width: 100%;
    margin-bottom: 10px;
}

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

.availability-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #666;
}

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

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

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

.products-grid.list-view .product-card {
    display: flex;
    gap: 20px;
}

.products-grid.list-view .product-image {
    width: 300px;
    flex-shrink: 0;
}

.products-grid.list-view .product-content {
    flex: 1;
}

/* Product Card */
.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-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-badge.new {
    background-color: #f39c12;
}

.product-badge.sale {
    background-color: #2c3e50;
}

/* ========================================
   Checkout Button Styles
   ======================================== */

.woocommerce-checkout-payment .button {
    font-size: 18px;
    padding: 15px 30px;
    height: auto;
    line-height: 1.5;
}

.woocommerce-checkout-payment .button:hover {
    font-size: 18px;
    padding: 15px 30px;
    height: auto;
    line-height: 1.5;
}

.product-actions-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

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

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

.action-btn svg {
    fill: #666;
    transition: fill 0.3s ease;
}

.action-btn:hover svg {
    fill: white;
}

.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 {
    font-size: 14px;
    color: #f39c12;
    margin-bottom: 10px;
}

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

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

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

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

.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;
    transition: all 0.3s ease;
}

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

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

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

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

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.pagination-links a,
.pagination-links span {
    padding: 10px 15px;
    background: white;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.pagination-per-page select {
    padding: 10px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

/* Shop Page Responsive Design */
@media (max-width: 1024px) {
    .shop-sidebar {
        width: 200px;
    }

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

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

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

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

    .shop-sidebar {
        width: 100%;
        margin-bottom: 30px;
    }

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

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

    .quick-filters {
        flex-direction: column;
    }

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

    .products-grid.list-view .product-card {
        flex-direction: column;
    }

    .products-grid.list-view .product-image {
        width: 100%;
    }

    .product-card {
        padding: 15px;
    }

    .product-image {
        min-height: 250px;
    }

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

    .product-price {
        font-size: 18px;
    }

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

    .product-actions .btn {
        width: 100%;
    }
}
/* ============================================
   产品详情页样式
   ============================================ */

/* 面包屑导航 */
.product-breadcrumb {
    padding: 20px 0;
    margin-bottom: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px 20px;
}

.product-breadcrumb a {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.product-breadcrumb .separator {
    margin: 0 10px;
    color: #6c757d;
}

.product-breadcrumb .current {
    color: #2c3e50;
    font-weight: 500;
}

/* 产品详情区域 */
.product-detail {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

/* 产品图片区域 */
.product-gallery {
    flex: 1;
    max-width: 50%;
}

.main-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.thumbnail-images {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

.thumbnail:hover,
.thumbnail.active {
    border-color: #ff7f50;
    transform: scale(1.05);
}

/* 产品信息区域 */
.product-info {
    flex: 1;
    max-width: 50%;
}

.product-title {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

.product-price .old-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #999;
}

.product-price .current-price {
    font-size: 32px;
    font-weight: bold;
    color: #ff7f50;
}

.product-price .discount-badge {
    background-color: #ff7f50;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
}

.product-rating {
    margin-bottom: 15px;
    color: #ffc107;
    font-size: 18px;
}

.product-rating .star {
    color: #ffc107;
}

.product-rating .count {
    color: #999;
    font-size: 14px;
    margin-left: 5px;
}

.product-short-description {
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.product-features {
    margin-bottom: 25px;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
}

.product-features li::before {
    content: "✅";
    margin-right: 10px;
    font-size: 16px;
}

/* 产品元信息 */
.product-meta {
    margin-bottom: 25px;
}

.stock-status {
    font-size: 14px;
    margin-bottom: 15px;
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
}

.stock-status.in-stock {
    background-color: #d4edda;
    color: #155724;
}

.stock-status.out-of-stock {
    background-color: #f8d7da;
    color: #721c24;
}

.product-quantity {
    margin-bottom: 20px;
}

.product-quantity label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity-selector input[type="number"] {
    width: 60px;
    height: 45px;
    text-align: center;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 16px;
    padding: 0 10px;
}

.quantity-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background-color: #e9ecef;
    border-color: #ff7f50;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #ff7f50;
    color: white;
    width: 100%;
    margin-bottom: 10px;
}

.btn-primary:hover {
    background-color: #e66a40;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 127, 80, 0.3);
}

.btn-secondary {
    background-color: #f39c12;
    color: white;
    width: 100%;
    margin-bottom: 10px;
}

.btn-secondary:hover {
    background-color: #d68b10;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.btn-outline {
    background-color: #f8f9fa;
    color: #2c3e50;
    border: 1px solid #dee2e6;
    width: 48%;
    margin-right: 2%;
}

.btn-outline:hover {
    background-color: #e9ecef;
    border-color: #ff7f50;
}

.product-actions {
    display: flex;
    margin-bottom: 20px;
}

.product-categories,
.product-tags {
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.product-categories strong,
.product-tags strong {
    color: #2c3e50;
}

/* Tab切换区域 */
.product-tabs {
    margin-bottom: 60px;
}

.tab-nav {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #f8f9fa;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #ff7f50;
}

.tab-btn.active {
    color: #ff7f50;
    font-weight: 500;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff7f50;
}

.tab-content {
    min-height: 200px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table td {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
}

.specifications-table td:first-child {
    font-weight: 500;
    color: #2c3e50;
    width: 40%;
}

.specifications-table td:last-child {
    color: #666;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item h4 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 相关产品区域 */
.related-products {
    margin-bottom: 60px;
}

.related-products h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 30px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .product-detail {
        flex-direction: column;
        gap: 30px;
    }

    .product-gallery,
    .product-info {
        max-width: 100%;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn-outline {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 24px;
    }

    .product-price .current-price {
        font-size: 28px;
    }

    .tab-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .tab-btn {
        font-size: 14px;
    }
}
