/*
Theme Name: CMILO Theme
Theme URI: https://www.cmilo.com
Author: CMILO
Author URI: https://www.cmilo.com
Description: A modern and elegant WordPress theme for CMILO cosmetics website
Version: 1.0.55
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cmilo
Tags: e-commerce, woocommerce, cosmetics, modern, elegant
*/

/* ========================================
   CSS Variables
   ======================================== */

:root {
    --primary-color: #ff7f50;
    --secondary-color: #f39c12;
    --accent-color: #25D366;
    --messenger-color: #0084FF;
    --dark-color: #2c3e50;
    --light-color: #ffffff;
    --gray-color: #fffaf0;
    --border-color: #E0E0E0;
    --text-color: #333333;
    --link-color: #ff7f50;
    --hover-color: #ff6347;
}

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

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

body {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--hover-color);
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

/* ========================================
   Container
   ======================================== */

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

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

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

.header-top {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px 0;
}

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

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

.header-top-info a {
    color: var(--light-color);
    font-size: 14px;
}

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

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

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

.header-main-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.site-branding {
    flex: 0 0 auto;
}

.site-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
}

.main-navigation {
    flex: 1;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.primary-menu {
    display: flex !important;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.primary-menu li {
    margin: 0;
    padding: 0;
}

.primary-menu a {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
}

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

.primary-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.primary-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--light-color);
}

.hero-slide-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

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

.hero-slide-content .btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-slide-content .btn:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* ========================================
   Product Section
   ======================================== */

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

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

.section-title h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
}

.section-title p {
    font-size: 16px;
    color: var(--gray-color);
}

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

.product-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 450px;
}

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

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

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

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.add-to-cart-button,
.view-details-button {
    flex: 1;
    padding: 12px 15px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.add-to-cart-button {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.add-to-cart-button:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.view-details-button {
    background-color: var(--light-color);
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.view-details-button:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Customer Feedback
   ======================================== */

.customer-feedback {
    padding: 60px 0;
    background-color: var(--gray-color);
}

.reviews-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
}

.review-card {
    flex: 0 0 300px;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.review-text {
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-author {
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 5px;
}

.review-verified {
    color: var(--accent-color);
    font-size: 14px;
}

/* ========================================
   Notification
   ======================================== */

.notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--light-color);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 300px;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-icon {
    font-size: 24px;
}

.notification-text {
    font-size: 14px;
    color: var(--text-color);
}

.notification-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--gray-color);
}

.notification-close:hover {
    color: var(--text-color);
}

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

.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-color);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-color);
}

/* ========================================
   Main Content
   ======================================== */

.main-content {
    padding: 40px 0;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
    margin-bottom: 60px;
    position: relative;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    padding: 40px;
}

.hero-slide.active {
    display: flex;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
}

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

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

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

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

.hero-slider-dot.active {
    background-color: var(--light-color);
    opacity: 1;
    transform: scale(1.2);
}

.hero-slider-dot:hover {
    opacity: 0.8;
}

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

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

.featured-products h2 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--text-color);
}

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

/* WooCommerce Products Grid Override */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 18px !important;
    font-weight: bold !important;
    margin: 15px 0 10px !important;
    color: var(--text-color) !important;
}

.woocommerce ul.products li.product .price {
    font-size: 16px !important;
    font-weight: bold !important;
    color: var(--primary-color) !important;
    margin-bottom: 15px !important;
}

.woocommerce ul.products li.product .button {
    display: inline-block !important;
    padding: 12px 20px !important;
    background-color: var(--primary-color) !important;
    color: var(--light-color) !important;
    text-decoration: none !important;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
    font-size: 15px !important;
}

.woocommerce ul.products li.product .button:hover {
    background-color: var(--hover-color) !important;
}

/* ========================================
   Categories Section
   ======================================== */

.categories-section {
    padding: 60px 0;
    background-color: var(--gray-color);
}

.categories-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--text-color);
}

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

.category-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    padding: 30px;
}

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

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 15px;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.btn-secondary:hover {
    background-color: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.customer-reviews-section {
    padding: 60px 0;
    background-color: var(--gray-color);
}

.customer-reviews-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--text-color);
}

.reviews-slider {
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 20px;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-card {
    flex: 0 0 300px;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.review-rating {
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--secondary-color);
}

.review-text {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-color);
}

.review-author {
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 5px;
}

.review-verified {
    color: var(--accent-color);
    font-size: 14px;
}

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

.trust-badges-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.trust-badges-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--text-color);
}

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

.trust-badge {
    text-align: center;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

.trust-badge h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-color);
}

.trust-badge p {
    font-size: 16px;
    color: var(--text-color);
    opacity: 0.8;
}

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

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
    color: var(--light-color);
    margin-bottom: 60px;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--light-color);
}

.about-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--light-color);
}

/* Section Styles */
.about-section {
    padding: 60px 0;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.8;
}

.about-section-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    margin-bottom: 60px;
    background-color: var(--gray-color);
}

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

.team-member {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.team-member-photo {
    height: 300px;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info {
    padding: 25px;
}

.team-member-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-color);
}

.team-member-title {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.team-member-bio {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Certificates Section */
.certificates-section {
    padding: 60px 0;
    margin-bottom: 60px;
}

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

.certificate-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

.certificate-image {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.certificate-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-color);
}

.certificate-desc {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 10px;
    opacity: 0.8;
}

.certificate-date {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: bold;
}

/* Expertise Section */
.expertise-section {
    padding: 60px 0;
    margin-bottom: 60px;
    background-color: var(--gray-color);
}

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

.expertise-item {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

.expertise-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-color);
}

.expertise-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    margin-bottom: 60px;
}

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

.trust-item {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.trust-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    opacity: 0.3;
}

.trust-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-color);
}

.trust-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Process Section */
.process-section {
    padding: 60px 0;
    margin-bottom: 60px;
    background-color: var(--gray-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.process-step {
    background-color: var(--light-color);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.process-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-color);
}

.process-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: var(--light-color);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--light-color);
}

.cta-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--light-color);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--light-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--gray-color);
    transform: translateY(-2px);
}

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

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

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

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

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

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-subtitle {
        font-size: 18px;
    }

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

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

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

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

    .process-steps {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-subtitle {
        font-size: 16px;
    }

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

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

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

.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.floating-cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

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

.cart-icon {
    font-size: 24px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count.empty {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-cart {
        bottom: 20px;
        right: 20px;
    }

    .floating-cart-link {
        width: 50px;
        height: 50px;
    }

    .cart-icon {
        font-size: 20px;
    }

    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
}


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

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

.contact-info-section,
.contact-form-section,
.social-section {
    margin-bottom: 60px;
}

.contact-info-section h2,
.contact-form-section h2,
.social-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-color);
}

.contact-info-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

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

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form-success,
.contact-form-error {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-form-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}

/* ========================================
   Single Product Page
   ======================================== */

.woocommerce-breadcrumb {
    padding: 20px 0 !important;
    margin-bottom: 30px !important;
    font-size: 14px !important;
}

.woocommerce-breadcrumb a {
    color: var(--text-color) !important;
    text-decoration: none !important;
}

.woocommerce-breadcrumb a:hover {
    color: var(--primary-color) !important;
}

.product-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    margin-bottom: 60px !important;
}

.product-images {
    position: relative;
}

.product-main-image {
    margin-bottom: 20px;
}

.product-main-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-item {
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
}

.product-summary {
    padding: 20px;
}

.product-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-color);
}

.product-short-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.product-price {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.product-price .regular-price {
    text-decoration: line-through;
    color: var(--text-color);
    margin-right: 10px;
    font-size: 20px;
}

.product-price .sale-price {
    color: var(--secondary-color);
}

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

.sku-label {
    font-weight: bold;
    margin-right: 10px;
}

.sku-value {
    color: var(--text-color);
}

.product-stock-status {
    margin-bottom: 20px;
}

.in-stock {
    color: var(--accent-color);
    font-weight: bold;
}

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

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

.product-quantity label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-quantity input {
    width: 100px;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
}

.product-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    margin-bottom: 30px !important;
}

.product-actions .btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-actions .btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.product-actions .btn-primary:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-actions .btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.product-actions .btn-secondary:hover {
    background-color: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.product-actions .btn-whatsapp {
    background-color: #25D366;
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-actions .btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-actions .btn-messenger {
    background-color: #0084FF;
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-actions .btn-messenger:hover {
    background-color: #0066CC;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon,
.messenger-icon {
    font-size: 20px;
}

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

.categories-label,
.tags-label {
    font-weight: bold;
    margin-right: 10px;
}

.categories-list,
.tags-list {
    color: var(--text-color);
}

.product-description-section,
.product-additional-info,
.product-shipping-returns {
    margin-bottom: 60px;
}

.product-description-section h2,
.product-additional-info h2,
.product-shipping-returns h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-color);
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.shipping-info h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-color);
}

.shipping-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
}

.related-products-section {
    margin-top: 60px;
}

.related-products-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--text-color);
}

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

.shop-layout {
    display: grid !important;
    grid-template-columns: 300px 1fr !important;
    gap: 40px !important;
    margin-bottom: 60px !important;
    width: 100% !important;
    max-width: 100% !important;
}

.shop-sidebar {
    padding: 20px !important;
    background-color: var(--gray-color) !important;
    border-radius: 10px !important;
    width: 100% !important;
    max-width: 300px !important;
}

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

.sidebar-widget h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

.product-categories-list li {
    margin-bottom: 10px;
}

.product-categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.product-categories-list .count {
    font-size: 14px;
    color: var(--text-color);
}

.price-filter {
    padding: 15px;
    background-color: var(--light-color);
    border-radius: 5px;
}

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

.price-range-values {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-color);
}

.filter-button {
    width: 100%;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-button:hover {
    background-color: var(--hover-color);
}

.product-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-link {
    padding: 8px 16px;
    background-color: var(--light-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.featured-products-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.featured-products-list li {
    margin-bottom: 15px;
}

.featured-products-list a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.featured-products-list img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.featured-products-list .product-name {
    font-size: 14px;
    font-weight: bold;
}

.shop-main {
    padding: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
}

.shop-toolbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 20px !important;
    background-color: var(--gray-color) !important;
    border-radius: 10px !important;
    margin-bottom: 30px !important;
}

.shop-toolbar-left {
    display: flex;
    align-items: center;
}

.products-count {
    font-size: 14px;
    color: var(--text-color);
}

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

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

.shop-sort label,
.shop-per-page label {
    font-size: 14px;
    font-weight: bold;
    color: var(--text-color);
}

.shop-sort select,
.shop-per-page select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    background-color: var(--light-color);
    color: var(--text-color);
}

.shop-pagination {
    margin-top: 40px !important;
    text-align: center !important;
}

.shop-pagination .page-numbers {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.shop-pagination .page-numbers li {
    display: inline-block !important;
}

.shop-pagination .page-numbers a,
.shop-pagination .page-numbers span {
    display: inline-block !important;
    padding: 10px 15px !important;
    background-color: var(--light-color) !important;
    color: var(--text-color) !important;
    text-decoration: none !important;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
}

.shop-pagination .page-numbers a:hover {
    background-color: var(--primary-color) !important;
    color: var(--light-color) !important;
}

.shop-pagination .page-numbers .current {
    background-color: var(--primary-color) !important;
    color: var(--light-color) !important;
}

/* ========================================
   Advanced Features
   ======================================== */

.visitor-count {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.quick-view-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
}

.quick-view-button:hover {
    background-color: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.quick-view-modal.active {
    display: flex;
}

.quick-view-content {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.quick-view-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.quick-view-close:hover {
    color: var(--primary-color);
}

.loading {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: var(--text-color);
}

.product-categories-list a.active,
.product-tags-list a.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

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

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

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

    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }

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

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

@media (max-width: 768px) {
    .header-main .container {
        flex-direction: column;
        gap: 20px;
    }

    .header-main-inner {
        flex-direction: column;
        gap: 15px;
    }

    .main-navigation {
        width: 100%;
        justify-content: center;
    }

    .primary-menu {
        gap: 20px;
    }

    .primary-menu a {
        font-size: 14px;
        padding: 8px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .shop-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .shop-sidebar {
        display: none !important;
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

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

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

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

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

    .hero-slide h1 {
        font-size: 32px;
    }

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

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

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

    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

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

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

    .header-top-info {
        flex-direction: column;
        gap: 10px;
    }

    .hero-slide h1 {
        font-size: 24px;
    }

    .hero-slide p {
        font-size: 14px;
    }
}
