﻿@import url(/css/fonts.css);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'samim', sans-serif;
}

:root {
    --primary-color: #f4f4f4;
    --secondary-color: #1f4e79;
    --accent-color: #de7525;
    --text-color: #4a4a4a;
    --button-color: #1a3d5f;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}
a{
    text-decoration:none;
}
body {
    background-color: white;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 120px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-main {
    padding: 15px 0;
    transition: all 0.4s ease;
    position: relative;
}

    .header-main .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.4s ease;
        position: relative;
    }

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

    .logo img {
        height: 60px;
        width: auto;
        transition: all 0.4s ease;
        object-fit: contain;
    }

    /* Desktop Logo - Centered by default */
    .logo.upper-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Nav Logo - Hidden by default, shown when scrolled */
    .logo.nav-logo {
        display: none;
        order: 1;
        margin-left: auto;
    }

/* Desktop Sample Button in Nav - Hidden by default */
.nav-sample-btn {
    display: none;
    background: linear-gradient(135deg, var(--accent-color), #e87c2c);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    align-items: center;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(222, 117, 37, 0.3);
    white-space: nowrap;
    order: 3;
    margin-right: 15px;
}

    .nav-sample-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(222, 117, 37, 0.4);
    }

    .nav-sample-btn i {
        margin-right: 8px;
        font-size: 1rem;
    }

/* When scrolled on desktop - Hide desktop fixed sample button */
header.scrolled .fixed-sample-btn-desktop {
    display: none;
}

header.scrolled .logo.upper-logo {
    display: none;
}

header.scrolled .logo.nav-logo {
    display: flex;
}

header.scrolled .nav-sample-btn {
    display: flex;
}

.scrolled .header-main {
    padding: unset !important;
}

/* Navigation */
nav {
    background-color: var(--primary-color);
    border-top: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 999;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: all 0.4s ease;
}

/* Shrink header when scrolled on mobile */
header.compact .header-main {
    padding: 8px 0;
}

header.compact .logo img {
    height: 45px;
}

.main-menu {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    transition: all 0.3s ease;
    order: 2;
    margin-left: auto;
}

header.scrolled .main-menu {
    margin-right: 0;
    margin-left: 20px;
}

.main-menu > li {
    position: relative;
}

    .main-menu > li > a {
        color: var(--text-color);
        text-decoration: none;
        padding: 15px 20px;
        display: flex;
        align-items: center;
        transition: all 0.3s;
        font-size: 0.9rem;
        font-weight: 500;
        white-space: nowrap;
    }

        .main-menu > li > a:hover {
            color: var(--accent-color);
            background-color: rgba(222, 117, 37, 0.1);
        }

        .main-menu > li > a i {
            margin-left: 5px;
            font-size: 0.8rem;
        }

    .main-menu > li:hover .submenu {
        display: block;
    }

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    z-index: 100;
    padding: 10px 0;
    border: 1px solid var(--border-color);
}

    .submenu li {
        list-style: none;
    }

    .submenu a {
        color: var(--text-color);
        text-decoration: none;
        padding: 12px 20px;
        display: flex;
        align-items: center;
        transition: all 0.3s;
        font-size: 0.85rem;
    }

        .submenu a i {
            margin-left: 8px;
            font-size: 0.8rem;
            color: var(--accent-color);
        }

        .submenu a:hover {
            background: var(--primary-color);
            color: var(--accent-color);
            padding-right: 25px;
        }

/* Mobile Navigation Toggle - Right side in mobile */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 50px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.hamburger-line {
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

    .hamburger-line:nth-child(1) {
        top: 0;
        width: 100%;
    }

    .hamburger-line:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
        width: 80%;
    }

    .hamburger-line:nth-child(3) {
        bottom: 0;
        width: 60%;
    }

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(14px) rotate(45deg);
    width: 100%;
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-14px) rotate(-45deg);
    width: 100%;
}

/* Fixed Sample Button - Desktop Only - Left side in header */
.fixed-sample-btn-desktop {
    background: linear-gradient(135deg, var(--accent-color), #e87c2c);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(222, 117, 37, 0.3);
    white-space: nowrap;
}

    .fixed-sample-btn-desktop:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(222, 117, 37, 0.4);
    }

    .fixed-sample-btn-desktop i {
        margin-right: 8px;
        font-size: 1.1rem;
    }

/* Fixed Sample Button - Mobile Only */
.fixed-sample-btn-mobile {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), #e87c2c);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    display: none;
    align-items: center;
    box-shadow: 0 5px 20px rgba(222, 117, 37, 0.4);
    z-index: 998;
    transition: all 0.3s;
    animation: pulse 2s infinite;
    white-space: nowrap;
}

    .fixed-sample-btn-mobile:hover {
        transform: translateX(-50%) translateY(-3px);
        box-shadow: 0 8px 25px rgba(222, 117, 37, 0.5);
    }

    .fixed-sample-btn-mobile i {
        margin-right: 8px;
        font-size: 1.2rem;
    }

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(222, 117, 37, 0.4);
    }

    50% {
        box-shadow: 0 5px 25px rgba(222, 117, 37, 0.7);
    }

    100% {
        box-shadow: 0 5px 20px rgba(222, 117, 37, 0.4);
    }
}

/* Header Slider - Reduced height */
.header-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

    .header-slider .swiper-slide {
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

    .slide-content img {
        width: 100%;
    }

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

    .btn-primary:hover {
        background-color: #c45a09;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(222, 117, 37, 0.4);
    }

.btn i {
    margin-left: 8px;
}

/* Modern Slider Pagination - Only One */
.header-slider .swiper-pagination {
    bottom: 20px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.header-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 0 -3px !important;
}

    .header-slider .swiper-pagination-bullet::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--accent-color), #e87c2c);
        border-radius: 50%;
        transform: scale(0);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .header-slider .swiper-pagination-bullet::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);
        width: 8px;
        height: 8px;
        background: white;
        border-radius: 50%;
        opacity: 0;
        transition: all 0.3s;
    }

.header-slider .swiper-pagination-bullet-active {
    background: transparent;
    border-color: var(--accent-color);
    width: 24px;
    border-radius: 20px;
}

    .header-slider .swiper-pagination-bullet-active::before {
        transform: scale(1);
    }

    .header-slider .swiper-pagination-bullet-active::after {
        opacity: 1;
    }

.header-slider .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Custom Swiper Navigation - More Beautiful */
.header-slider .swiper-button-next,
.header-slider .swiper-button-prev {
    background: linear-gradient(135deg, rgba(222, 117, 37, 0.9), rgba(232, 124, 44, 0.9));
    backdrop-filter: blur(10px);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

    .header-slider .swiper-button-next:after,
    .header-slider .swiper-button-prev:after {
        font-size: 1.5rem;
        color: white;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .header-slider .swiper-button-next:hover,
    .header-slider .swiper-button-prev:hover {
        background: linear-gradient(135deg, var(--accent-color), #e87c2c);
        transform: scale(1.15) translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        border-color: rgba(255, 255, 255, 0.6);
    }

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    justify-content: space-around;
    padding: 12px 0;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid var(--border-color);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
    flex: 1;
    position: relative;
}

    .mobile-nav-item.active {
        color: var(--accent-color);
    }

    .mobile-nav-item:hover {
        color: var(--accent-color);
    }

.nav-icon {
    font-size: 1.4rem;
    margin-bottom: 5px;
    position: relative;
}

.nav-label {
    font-size: 0.7rem;
    font-weight: 500;
}

.nav-badge {
    position: absolute;
    top: -5px;
    left: -5px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: bold;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

    .mobile-menu.active {
        right: 0;
    }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

.mobile-menu-list {
    list-style: none;
}

    .mobile-menu-list li {
        margin-bottom: 5px;
    }

    .mobile-menu-list a {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        color: var(--text-color);
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s;
    }

        .mobile-menu-list a:hover {
            background: var(--primary-color);
            color: var(--accent-color);
        }

    .mobile-menu-list i {
        width: 24px;
        text-align: center;
        font-size: 1.1rem;
        margin-left: 10px;
    }

.mobile-submenu {
    display: none;
    margin-right: 20px;
    margin-top: 5px;
    border-right: 2px solid var(--accent-color);
}

    .mobile-submenu.active {
        display: block;
    }

    .mobile-submenu a {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .mobile-submenu i {
        font-size: 0.9rem;
    }

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    text-align: right;
    font-size: 1rem;
    padding: 12px 15px;
    border-radius: 8px;
}

    .mobile-menu-toggle:hover {
        background: var(--primary-color);
        color: var(--accent-color);
    }

    .mobile-menu-toggle i:last-child {
        transition: transform 0.3s ease;
        font-size: 0.9rem;
    }

    .mobile-menu-toggle.active i:last-child {
        transform: rotate(180deg);
    }

/* Products Slider */
.products-slider {
    padding: 60px 0;
    background-color: var(--primary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
        border-radius: 2px;
    }

.products-swiper-container {
    position: relative;
    padding: 0 60px;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid var(--border-color);
    position: relative;
}

    .product-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

.product-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        transition: transform 0.4s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.02);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: .70rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.3s;
    line-height: 1.4;
    height: 3.2em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-card:hover .product-title {
    color: var(--accent-color);
}

.product-description {
    margin-bottom: 5px;
    color: var(--text-color);
    font-size: .75rem;
    line-height: 1.6;
    height: 3.2em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

    .product-price i {
        margin-left: 5px;
        font-size: 0.9rem;
    }

.product-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.product-btn {
    background-color: var(--button-color);
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
    flex: 1;
    transition: all 0.3s;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration:none;
}

    .product-btn:hover {
        background-color: var(--accent-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(222, 117, 37, 0.3);
    }

    .product-btn i {
        margin-left: 5px;
    }

    .product-btn.secondary {
        background-color: transparent;
        color: var(--secondary-color);
        border: 1px solid var(--secondary-color);
    }

        .product-btn.secondary:hover {
            background-color: var(--secondary-color);
            color: white;
            border-color: var(--secondary-color);
        }

/* Beautiful Product Slider Navigation */
.products-swiper-container .swiper-button-next,
.products-swiper-container .swiper-button-prev {
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid var(--border-color);
    top: 50%;
    transform: translateY(-50%);
}

.products-swiper-container .swiper-button-next {
    left: 0;
    right: auto;
}

.products-swiper-container .swiper-button-prev {
    right: 0;
    left: auto;
}

    .products-swiper-container .swiper-button-next:after,
    .products-swiper-container .swiper-button-prev:after {
        font-size: 1.5rem;
        color: var(--secondary-color);
        font-weight: bold;
    }

    .products-swiper-container .swiper-button-next:hover,
    .products-swiper-container .swiper-button-prev:hover {
        background: var(--accent-color);
        color: white;
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 15px 40px rgba(222, 117, 37, 0.3);
        border-color: var(--accent-color);
    }

        .products-swiper-container .swiper-button-next:hover:after,
        .products-swiper-container .swiper-button-prev:hover:after {
            color: white;
        }

/* Remove pagination from products slider */
.productsSwiper .swiper-pagination {
    display: none;
}

/* Blog Section - Updated for Swiper */
.blog-section {
    padding: 60px 0;
}

.blog-swiper-container {
    position: relative;
    padding: 0 60px;
}

.blog-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid var(--border-color);
    position: relative;
    height: 100%;
}

    .blog-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.blog-image {
    height: 200px;
    position: relative;
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: #666;
}

    .blog-meta i {
        margin-left: 5px;
        color: var(--accent-color);
        font-size: 0.9rem;
    }

.blog-date {
    margin-left: 15px;
}

.blog-title {
    font-size: .65rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.4;
    height: 3.2em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-card:hover .blog-title {
    color: var(--accent-color);
}

.blog-excerpt {
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: .70rem;
    height: 4.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: match-parent;
}

.blog-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    font-size: 0.85rem;
}

    .blog-link:hover {
        color: var(--secondary-color);
    }

    .blog-link i {
        margin-right: 5px;
        transition: transform 0.3s;
        font-size: 0.9rem;
    }

    .blog-link:hover i {
        transform: translateX(-5px);
    }

/* Beautiful Blog Slider Navigation */
.blog-swiper-container .swiper-button-next,
.blog-swiper-container .swiper-button-prev {
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid var(--border-color);
    top: 50%;
    transform: translateY(-50%);
}

.blog-swiper-container .swiper-button-next {
    left: 0;
    right: auto;
}

.blog-swiper-container .swiper-button-prev {
    right: 0;
    left: auto;
}

    .blog-swiper-container .swiper-button-next:after,
    .blog-swiper-container .swiper-button-prev:after {
        font-size: 1.5rem;
        color: var(--secondary-color);
        font-weight: bold;
    }

    .blog-swiper-container .swiper-button-next:hover,
    .blog-swiper-container .swiper-button-prev:hover {
        background: var(--accent-color);
        color: white;
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 15px 40px rgba(222, 117, 37, 0.3);
        border-color: var(--accent-color);
    }

        .blog-swiper-container .swiper-button-next:hover:after,
        .blog-swiper-container .swiper-button-prev:hover:after {
            color: white;
        }

/* Remove pagination from blog slider */
.blogSwiper .swiper-pagination {
    display: none;
}

/* Floating Contact Button - Show on both desktop and mobile */
.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 997;
}

.contact-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), #2a5a8a);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(31, 78, 121, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1002;
}

    .contact-main-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(31, 78, 121, 0.5);
    }

    .contact-main-btn i {
        transition: transform 0.3s ease;
    }

.floating-contact.active .contact-main-btn i {
    transform: rotate(45deg);
}

.contact-buttons {
    position: absolute;
    bottom: 70px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.floating-contact.active .contact-buttons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

    .contact-btn:hover {
        transform: translateY(-3px);
    }

    .contact-btn.whatsapp {
        background-color: #25D366;
    }

    .contact-btn.telegram {
        background-color: #0088cc;
    }

    .contact-btn.instagram {
        background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    }

    .contact-btn.phone {
        background-color: var(--accent-color);
    }

.contact-tooltip {
    position: absolute;
    left: 60px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-btn:hover .contact-tooltip {
    opacity: 1;
    visibility: visible;
    left: 70px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

    .footer-column h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 3px;
        background-color: var(--accent-color);
        border-radius: 2px;
    }

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
    }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-right: 5px;
        }

        .footer-links a i {
            margin-left: 8px;
            font-size: 0.8rem;
        }

.contact-info {
    list-style: none;
}

    .contact-info li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
    }

    .contact-info i {
        color: var(--accent-color);
        margin-left: 10px;
        margin-top: 5px;
        min-width: 20px;
        font-size: 1rem;
    }

    .contact-info span {
        line-height: 1.5;
    }

.social-links {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        border-radius: 50%;
        transition: all 0.3s;
        font-size: 1.1rem;
    }

        .social-links a:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Scroll to Top Button - Desktop: 30px, Mobile: 90px */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

    .scroll-to-top.active {
        opacity: 1;
        visibility: visible;
    }

    .scroll-to-top:hover {
        background-color: #c45a09;
        transform: translateY(-3px);
    }

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .products-swiper-container,
    .blog-swiper-container {
        padding: 0 50px;
    }
}

@media (max-width: 992px) {
    body {
        padding-top: 110px;
    }

    .header-slider .swiper-button-next,
    .header-slider .swiper-button-prev {
        width: 60px;
        height: 60px;
    }

    .fixed-sample-btn-desktop {
        display: none;
    }

    .fixed-sample-btn-mobile {
        display: flex;
    }

    .products-swiper-container,
    .blog-swiper-container {
        padding: 0 40px;
    }

    .products-slider,
    .blog-section {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .logo img {
        height: 50px;
    }
    /* در موبایل: دکمه منو سمت چپ، لوگو سمت راست */
    .header-main .container {
        justify-content: space-between;
    }
    /* دکمه منو سمت چپ */
    .nav-toggle {
        display: block;
        order: 1;
        margin-right: auto;
        margin-left: 0;
    }
    /* لوگوی اصلی - همیشه نمایش داده شود */
    .logo.upper-logo {
        order: 0;
        position: relative;
        left: 0;
        transform: none;
        display: flex !important;
        margin-left: auto;
        margin-right: 0;
    }
    /* لوگوی داخل ناوبری را در موبایل مخفی کن */
    .logo.nav-logo {
        display: none !important;
    }
    /* دکمه نمونه رایگان در ناوبری مخفی */
    .nav-sample-btn {
        display: none !important;
    }
    /* در موبایل وقتی اسکرول می‌کنیم، کلاس scrolled را اعمال نکن */
    header.scrolled .logo.upper-logo {
        display: flex !important;
    }

    header.scrolled .logo.nav-logo {
        display: none !important;
    }

    header.scrolled .nav-sample-btn {
        display: none !important;
    }

    .main-menu {
        display: none;
    }

    .mobile-bottom-nav {
        display: flex;
    }

    .header-slider .swiper-button-next,
    .header-slider .swiper-button-prev {
        display: none;
    }

    .header-slider .swiper-pagination-bullet {
        width: 20px;
        height: 20px;
    }

    .header-slider .swiper-pagination-bullet-active {
        width: 30px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    /* Product slider adjustments for mobile */
    .products-swiper-container,
    .blog-swiper-container {
        padding: 0 15px;
    }

        .products-swiper-container .swiper-button-next,
        .products-swiper-container .swiper-button-prev,
        .blog-swiper-container .swiper-button-next,
        .blog-swiper-container .swiper-button-prev {
            width: 50px;
            height: 50px;
        }
    /* Position adjustments for mobile */
    .fixed-sample-btn-mobile {
        bottom: 90px;
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .floating-contact {
        left: 15px;
        bottom: 90px;
    }

    .contact-main-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .scroll-to-top {
        bottom: 90px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-slider,
    .blog-section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 70px;
    }

    .logo img {
        height: 40px;
    }

    .nav-toggle {
        width: 45px;
        height: 35px;
    }

    .header-slider .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
        margin: 0 6px !important;
    }

    .header-slider .swiper-pagination-bullet-active {
        width: 24px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .products-swiper-container .swiper-button-next,
    .products-swiper-container .swiper-button-prev,
    .blog-swiper-container .swiper-button-next,
    .blog-swiper-container .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

        .products-swiper-container .swiper-button-next:after,
        .products-swiper-container .swiper-button-prev:after,
        .blog-swiper-container .swiper-button-next:after,
        .blog-swiper-container .swiper-button-prev:after {
            font-size: 1.2rem;
        }

    .fixed-sample-btn-mobile {
        bottom: 90px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .floating-contact {
        left: 10px;
        bottom: 90px;
    }

    .contact-main-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .contact-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .scroll-to-top {
        bottom: 90px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .products-slider,
    .blog-section {
        padding: 30px 0;
    }

    .product-title,
    .blog-title {
        font-size: 1rem;
    }

    .product-description,
    .blog-excerpt {
        font-size: 0.8rem;
    }
}

@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none !important;
    }

    .mobile-menu-overlay, .mobile-menu {
        display: none !important;
    }

    .nav-toggle {
        display: none !important;
    }

    .main-menu {
        display: flex !important;
    }

    .fixed-sample-btn-mobile {
        display: none !important;
    }

    .floating-contact {
        display: block !important;
        bottom: 30px !important;
    }

    .scroll-to-top {
        bottom: 30px !important;
    }
}



/* About & Contact Pages Styles */
.page-hero {
    background: linear-gradient(135deg, var(--secondary-color), #2a5a8a);
    color: white;
    padding: 100px 0 60px;
    margin-top: -20px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 40px;
    }
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0 0v46.29c47.79 22.2 103.59 32.17 158 28 70.36-5.37 136.33-33.31 206.8-37.5 73.84-4.36 147.54 16.88 218.2 35.26 69.27 18 138.3 24.88 209.4 13.08 36.15-6 69.85-17.84 104.45-29.34C989.49 25 1113-14.29 1200 52.47V0z" opacity=".25"/><path d="M0 0v15.81c13 21.11 27.64 41.05 47.69 56.24C99.41 111.27 165 111 224.58 91.58c31.15-10.15 60.09-26.07 89.67-39.8 40.92-19 84.73-46 130.83-49.67 36.26-2.85 70.9 9.42 98.6 31.56 31.77 25.39 62.32 62 103.63 73 40.44 10.79 81.35 6.36 117.88-7.27C939.06 29.08 1073.14 7.6 1200 52.47V0z" opacity=".5"/></svg>');
    background-size: cover;
    opacity: 0.1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
    font-size: 0.9rem;
}

    .breadcrumb li {
        margin: 0 5px;
    }

        .breadcrumb li a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s;
        }

            .breadcrumb li a:hover {
                color: var(--accent-color);
            }

        .breadcrumb li.active {
            color: var(--accent-color);
        }

        .breadcrumb li.separator {
            color: rgba(255, 255, 255, 0.5);
        }

/* About Page Content */
.about-content {
    padding: 80px 0;
}

.section-title-about {
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

    .section-title-about::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
        border-radius: 2px;
    }

.about-intro {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .about-intro {
        flex-direction: column;
        gap: 30px;
    }
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
    }

.about-text {
    flex: 1;
}

    .about-text h2 {
        color: var(--secondary-color);
        margin-bottom: 20px;
        font-size: 1.8rem;
    }

    .about-text p {
        color: var(--text-color);
        line-height: 1.8;
        margin-bottom: 20px;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

    .feature-card:hover {
        transform: translateY(-10px);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #e87c2c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

    .contact-info-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

    .contact-form-card h2 {
        color: var(--secondary-color);
        margin-bottom: 30px;
        font-size: 1.8rem;
        text-align: center;
    }

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--secondary-color);
        font-weight: 500;
    }

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--primary-color);
}

    .form-control:focus {
        outline: none;
        border-color: var(--accent-color);
        box-shadow: 0 0 0 3px rgba(222, 117, 37, 0.1);
    }

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent-color), #e87c2c);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 200px;
}

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(222, 117, 37, 0.3);
    }

.map-container {
    margin-top: 60px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

    .map-container iframe {
        width: 100%;
        height: 400px;
        border: none;
        display: block;
    }

/* Working Hours */
.working-hours {
    margin-top: 40px;
}

    .working-hours h3 {
        color: var(--secondary-color);
        margin-bottom: 20px;
        font-size: 1.3rem;
    }

.hours-list {
    list-style: none;
}

    .hours-list li {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-color);
    }

        .hours-list li:last-child {
            border-bottom: none;
        }

    .hours-list .day {
        font-weight: 500;
    }

/* Responsive Styles for About & Contact */
@media (max-width: 768px) {
    .about-content,
    .contact-content {
        padding: 50px 0;
    }

    .section-title-about {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }

    .feature-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }

    .about-content,
    .contact-content {
        padding: 40px 0;
    }

    .contact-grid {
        gap: 20px;
    }
}
/* Blog Categories Menu Styles */
.blog-menu-desktop {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.blog-categories-mobile .dropdown-menu {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.blog-categories-mobile .dropdown-item {
    padding: 10px 20px;
    color: var(--text-color);
    transition: all 0.3s;
    border-radius: 5px;
    margin: 2px 10px;
}

    .blog-categories-mobile .dropdown-item:hover {
        background-color: var(--primary-color);
        color: var(--accent-color);
    }

    .blog-categories-mobile .dropdown-item.active {
        background-color: var(--accent-color);
        color: white;
    }

.blog-categories-mobile .btn-outline-secondary {
    border-color: var(--border-color);
    color: var(--text-color);
    border-radius: 10px;
    padding: 10px 20px;
}

    .blog-categories-mobile .btn-outline-secondary:hover {
        background-color: var(--primary-color);
        border-color: var(--accent-color);
        color: var(--accent-color);
    }
/* Blog Page Styles */
.blog-content {
    padding: 60px 0;
    background-color: var(--primary-color);
}

.blog-search {
    position: relative;
}

.search-box {
    position: relative;
    display: flex;
}

    .search-box input {
        padding-right: 50px;
        border-radius: 25px 0 0 25px;
        border: 2px solid var(--border-color);
        border-left: none;
        height: 45px;
        font-size: 0.9rem;
    }

.search-btn {
    background: linear-gradient(135deg, var(--accent-color), #e87c2c);
    color: white;
    border: none;
    border-radius: 0 25px 25px 0;
    width: 50px;
    height: 45px;
    cursor: pointer;
    transition: all 0.3s;
}

    .search-btn:hover {
        background: linear-gradient(135deg, #e87c2c, var(--accent-color));
    }

/* Categories Menu */
.blog-categories-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 10px;
}

    .blog-categories-list li {
        margin: 0;
    }

        .blog-categories-list li a {
            display: inline-block;
            padding: 8px 20px;
            background: white;
            color: var(--text-color);
            text-decoration: none;
            border-radius: 25px;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            font-size: 0.85rem;
            font-weight: 500;
        }

            .blog-categories-list li.active a,
            .blog-categories-list li a:hover {
                background: linear-gradient(135deg, var(--accent-color), #e87c2c);
                color: white;
                border-color: var(--accent-color);
            }

/* Blog Card Styles */
.blog-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid var(--border-color);
    height: 100%;
}

    .blog-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.blog-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: #666;
}

    .blog-meta i {
        margin-left: 5px;
        color: var(--accent-color);
        font-size: 0.9rem;
    }

.blog-title {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.4;
    height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-card:hover .blog-title {
    color: var(--accent-color);
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

    .blog-title a:hover {
        color: var(--accent-color);
    }

.blog-excerpt {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.85rem;
    height: 4.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.blog-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    font-size: 0.85rem;
}

    .blog-link:hover {
        color: var(--secondary-color);
    }

    .blog-link i {
        margin-right: 5px;
        transition: transform 0.3s;
        font-size: 0.9rem;
    }

    .blog-link:hover i {
        transform: translateX(-5px);
    }

.blog-read-time {
    font-size: 0.8rem;
    color: #666;
}

/* Loading Animation */
#loading-indicator {
    display: none;
}

    #loading-indicator .spinner-border {
        width: 3rem;
        height: 3rem;
        color: var(--accent-color);
    }

/* Pagination Styles */
.blog-pagination .pagination {
    margin-bottom: 0;
}

.blog-pagination .page-item .page-link {
    border: 1px solid var(--border-color);
    color: var(--text-color);
    margin: 0 3px;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.blog-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--accent-color), #e87c2c);
    border-color: var(--accent-color);
    color: white;
}

.blog-pagination .page-item .page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Mobile Dropdown Menu */
.dropdown-menu {
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    color: var(--text-color);
    transition: all 0.3s;
}

    .dropdown-item:hover,
    .dropdown-item.active {
        background-color: var(--primary-color);
        color: var(--accent-color);
    }

/* Responsive Styles */
@media (max-width: 992px) {
    .blog-content {
        padding: 40px 0;
    }

    .blog-image {
        height: 180px;
    }

    .blog-title {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .blog-header {
        margin-bottom: 30px;
    }

    .section-title-about {
        font-size: 1.5rem;
    }

    .blog-categories-list {
        justify-content: center;
    }

    .blog-image {
        height: 160px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-pagination .page-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .blog-content {
        padding: 30px 0;
    }

    .blog-image {
        height: 140px;
    }

    .blog-card {
        margin-bottom: 20px;
    }

    .blog-pagination .page-link {
        padding: 5px 10px;
        font-size: 0.8rem;
        margin: 0 2px;
    }

    .blog-categories-list {
        gap: 5px;
    }

        .blog-categories-list li a {
            padding: 6px 12px;
            font-size: 0.8rem;
        }
}
/* Blog Page Main Styles */
.blog-content-section {
    padding: 60px 0;
    background-color: var(--primary-color);
}

/* Sidebar Styles */
.blog-sidebar {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}

.sidebar-title {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.sidebar-search .input-group {
    display: flex;
}

.sidebar-search input {
    border-radius: 25px 0 0 25px;
    border: 2px solid var(--border-color);
    border-left: none;
    padding: 12px 20px;
    font-size: 0.9rem;
    flex: 1;
}

.sidebar-search .btn-search {
    background: linear-gradient(135deg, var(--accent-color), #e87c2c);
    color: white;
    border: none;
    border-radius: 0 25px 25px 0;
    padding: 0 25px;
    cursor: pointer;
    transition: all 0.3s;
}

    .sidebar-search .btn-search:hover {
        background: linear-gradient(135deg, #e87c2c, var(--accent-color));
    }

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .category-list li {
        margin-bottom: 8px;
    }

        .category-list li a {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            color: var(--text-color);
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s;
            font-size: 0.9rem;
        }

            .category-list li a:hover,
            .category-list li.active a {
                background: linear-gradient(135deg, var(--accent-color), #e87c2c);
                color: white;
                transform: translateX(-5px);
            }

            .category-list li a i {
                width: 20px;
                text-align: center;
                margin-left: 10px;
            }

        .category-list li .count {
            margin-right: auto;
            font-size: 0.8rem;
            opacity: 0.8;
        }

/* Mobile Accordion */
.accordion-button {
    background: linear-gradient(135deg, var(--secondary-color), #2a5a8a);
    color: white;
    font-weight: 600;
}

    .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, var(--accent-color), #e87c2c);
    }

/* Blog Grid */
.blog-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.search-result-info {
    color: var(--text-color);
    font-size: 1rem;
}

/* Blog Post Card */
.blog-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid var(--border-color);
    height: 100%;
}

    .blog-post-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.post-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

    .post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.blog-post-card:hover .post-image img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.post-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: #666;
}

    .post-meta i {
        color: var(--accent-color);
    }

.post-title {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.4;
    height: 2.9em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

    .post-title a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s;
    }

.blog-post-card:hover .post-title a {
    color: var(--accent-color);
}

.post-excerpt {
    color: var(--text-color);
    line-height: 1.4;
    font-size: 0.85rem;
    margin-bottom: 20px;
    height: 4.2em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

    .read-more:hover {
        color: var(--secondary-color);
    }

    .read-more i {
        transition: transform 0.3s;
    }

    .read-more:hover i {
        transform: translateX(-5px);
    }

.read-time {
    font-size: 0.8rem;
    color: #666;
}

    .read-time i {
        color: var(--accent-color);
    }

/* No Results */
.no-results {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.no-results-icon {
    color: var(--border-color);
}

/* Loading Indicator */
#loading-indicator .spinner-border {
    width: 3rem;
    height: 3rem;
    color: var(--accent-color);
}

/* Pagination */
.blog-pagination .page-link {
    border: 1px solid var(--border-color);
    color: var(--text-color);
    margin: 0 3px;
    border-radius: 8px;
    transition: all 0.3s;
}

.blog-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--accent-color), #e87c2c);
    border-color: var(--accent-color);
    color: white;
}

.blog-pagination .page-item .page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 1200px) {
    .blog-post-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .blog-content-section {
        padding: 40px 0;
    }

    .blog-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    .post-image {
        height: 180px;
    }

    .page-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .blog-content-section {
        padding: 30px 0;
    }

    .blog-sidebar {
        padding: 20px;
    }

    .post-image {
        height: 160px;
    }

    .post-content {
        padding: 20px;
    }

    .page-title {
        font-size: 1.4rem;
    }

    .category-list li a {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .post-image {
        height: 140px;
    }

    .blog-pagination .page-link {
        padding: 6px 10px;
        font-size: 0.85rem;
        margin: 0 2px;
    }
}

 
/* Blog Detail Section */
.blog-detail-section {
    padding: 60px 0;
    background-color: var(--primary-color);
}

/* Article Styles */
.blog-detail-article {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.article-meta {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.meta-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

    .meta-items span {
        display: flex;
        align-items: center;
        color: #666;
        font-size: 0.9rem;
    }

    .meta-items i {
        color: var(--accent-color);
        margin-left: 5px;
        font-size: 0.9rem;
    }

.meta-category a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

    .meta-category a:hover {
        color: var(--accent-color);
    }

.article-title {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
}

.article-featured-image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

    .article-featured-image img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
    }

    .article-featured-image:hover img {
        transform: scale(1.02);
    }

.article-abstract {
    background: var(--primary-color);
    border-right: 4px solid var(--accent-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.abstract-title {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.article-content {
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
}

    .article-content h2,
    .article-content h3,
    .article-content h4 {
        color: var(--secondary-color);
        margin: 25px 0 15px;
        font-weight: 600;
    }

    .article-content h2 {
        font-size: 1.8rem;
    }

    .article-content h3 {
        font-size: 1.5rem;
    }

    .article-content h4 {
        font-size: 1.3rem;
    }

    .article-content p {
        margin-bottom: 20px;
        text-align: justify;
    }

    .article-content ul,
    .article-content ol {
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .article-content li {
        margin-bottom: 10px;
    }

    .article-content img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin: 20px 0;
    }

.article-tags {
    margin-bottom: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.tags-title {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

    .tags-title i {
        margin-left: 10px;
        color: var(--accent-color);
    }

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: var(--primary-color);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

    .tag:hover {
        background: var(--accent-color);
        color: white;
        border-color: var(--accent-color);
        transform: translateY(-2px);
    }

.article-author {
    display: flex;
    align-items: center;
    background: var(--primary-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.author-avatar {
    margin-left: 20px;
}

    .author-avatar img {
        width: 80px;
        height: 80px;
        border: 3px solid white;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

.author-info {
    flex: 1;
}

.author-name {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-bio {
    color: #666;
    font-size: 0.9rem;
}

.article-share {
    padding: 25px;
    background: var(--primary-color);
    border-radius: 10px;
    text-align: center;
}

.share-title {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-decoration: none;
}

    .share-btn:hover {
        transform: translateY(-3px);
    }

    .share-btn.facebook {
        background: #1877F2;
    }

    .share-btn.twitter {
        background: #1DA1F2;
    }

    .share-btn.linkedin {
        background: #0077B5;
    }

    .share-btn.whatsapp {
        background: #25D366;
    }

    .share-btn.telegram {
        background: #0088cc;
    }

/* Related Posts */
.related-posts {
    margin-bottom: 40px;
}

.section-title {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
        border-radius: 2px;
    }

.related-post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid var(--border-color);
}

    .related-post-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }

.related-post-image {
    height: 150px;
    overflow: hidden;
}

    .related-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 20px;
}

.related-post-title {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

    .related-post-title a {
        color: var(--secondary-color);
        text-decoration: none;
        transition: color 0.3s;
    }

        .related-post-title a:hover {
            color: var(--accent-color);
        }

.related-post-meta {
    font-size: 0.8rem;
    color: #666;
}

.related-post-date i {
    color: var(--accent-color);
    margin-left: 5px;
}

/* Comments Section */
.comments-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.no-comments {
    color: #666;
}

.comment-form {
    margin-top: 30px;
}

.form-title {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--secondary-color);
        font-weight: 500;
    }

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    width: 100%;
    transition: all 0.3s;
}

    .form-control:focus {
        outline: none;
        border-color: var(--accent-color);
        box-shadow: 0 0 0 3px rgba(222, 117, 37, 0.1);
    }

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #e87c2c);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(222, 117, 37, 0.3);
    }

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.widget-title {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

    .widget-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 3px;
        background-color: var(--accent-color);
        border-radius: 2px;
    }

.search-form .input-group {
    display: flex;
}

.search-form input {
    border-radius: 25px 0 0 25px;
    border: 2px solid var(--border-color);
    border-left: none;
    padding: 12px 20px;
    flex: 1;
}

.search-form .btn-search {
    background: linear-gradient(135deg, var(--accent-color), #e87c2c);
    color: white;
    border: none;
    border-radius: 0 25px 25px 0;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.3s;
}

    .search-form .btn-search:hover {
        background: linear-gradient(135deg, #e87c2c, var(--accent-color));
    }

/* Recent Posts */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

    .recent-post-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

.recent-post-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

    .recent-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.recent-post-content {
    flex: 1;
}

.recent-post-title {
    font-size: 0.9rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

    .recent-post-title a {
        color: var(--secondary-color);
        text-decoration: none;
        transition: color 0.3s;
    }

        .recent-post-title a:hover {
            color: var(--accent-color);
        }

.recent-post-date {
    font-size: 0.8rem;
    color: #666;
}

    .recent-post-date i {
        color: var(--accent-color);
        margin-left: 5px;
    }

/* Advertisement */
.ad-banner {
    border-radius: 10px;
    overflow: hidden;
}

    .ad-banner img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
    }

    .ad-banner:hover img {
        transform: scale(1.02);
    }

/* Responsive */
@media (max-width: 992px) {
    .blog-detail-section {
        padding: 40px 0;
    }

    .blog-detail-article {
        padding: 30px;
    }

    .article-title {
        font-size: 1.6rem;
    }

    .meta-items {
        gap: 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .comments-section {
        padding: 30px;
    }

    .sidebar-widget {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .blog-detail-section {
        padding: 30px 0;
    }

    .blog-detail-article {
        padding: 25px;
    }

    .article-title {
        font-size: 1.4rem;
    }

    .meta-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .article-author {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .author-avatar {
        margin-left: 0;
        margin-bottom: 15px;
    }

    .share-buttons {
        gap: 10px;
    }

    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .comments-section {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .blog-detail-article {
        padding: 20px;
    }

    .article-title {
        font-size: 1.3rem;
    }

    .article-content h2 {
        font-size: 1.4rem;
    }

    .article-content h3 {
        font-size: 1.2rem;
    }

    .article-content h4 {
        font-size: 1.1rem;
    }

    .tags-list {
        gap: 5px;
    }

    .tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/*Product Page*/
 
/* Product Page Modern Styles */
:root {
    --product-primary: #1f4e79;
    --product-accent: #de7525;
    --product-success: #28a745;
    --product-danger: #dc3545;
    --product-warning: #ffc107;
    --product-light: #f8f9fa;
    --product-dark: #343a40;
    --product-border: #e9ecef;
    --product-text: #495057;
    --product-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --product-radius: 12px;
    --product-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-page-wrapper {
    padding: 40px 0 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    min-height: 100vh;
}

/* Breadcrumb Modern */
.product-breadcrumb-modern {
    background: white;
    padding: 16px 24px;
    border-radius: var(--product-radius);
    box-shadow: var(--product-shadow);
    margin-bottom: 30px;
    border: 1px solid var(--product-border);
}

.breadcrumb-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .breadcrumb-modern li {
        display: flex;
        align-items: center;
        font-size: 14px;
    }

        .breadcrumb-modern li a {
            color: var(--product-text);
            text-decoration: none;
            transition: var(--product-transition);
            padding: 4px 8px;
            border-radius: 6px;
        }

            .breadcrumb-modern li a:hover {
                color: var(--product-accent);
                background: rgba(222, 117, 37, 0.05);
            }

        .breadcrumb-modern li.active a {
            color: var(--product-accent);
            font-weight: 600;
        }

.breadcrumb-separator {
    color: var(--product-border);
    margin: 0 4px;
}

/* Product Main Grid */
.product-main-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .product-main-container {
        grid-template-columns: 1.2fr 1fr;
    }
}

/* Gallery Modern */
.product-gallery-modern {
    background: white;
    border-radius: var(--product-radius);
    overflow: hidden;
    box-shadow: var(--product-shadow);
    border: 1px solid var(--product-border);
}

.gallery-main {
    position: relative;
    height: 500px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .gallery-main img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: var(--product-transition);
    }

.gallery-thumbs {
    padding: 15px;
    background: white;
    border-top: 1px solid var(--product-border);
}

.thumb-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px;
}

.thumb-item {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--product-transition);
    opacity: 0.6;
}

    .thumb-item:hover,
    .thumb-item.active {
        opacity: 1;
        border-color: var(--product-accent);
        transform: translateY(-2px);
    }

    .thumb-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Product Info Modern */
.product-info-modern {
    background: white;
    border-radius: var(--product-radius);
    padding: 30px;
    box-shadow: var(--product-shadow);
    border: 1px solid var(--product-border);
    position: sticky;
    top: 100px;
}

/* Product Header */
.product-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--product-border);
}

.product-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--product-primary), #2a5a8a);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-title-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--product-primary);
    line-height: 1.4;
    margin-bottom: 8px;
}

.product-model {
    color: var(--product-text);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .product-model i {
        color: var(--product-accent);
    }

/* Rating Modern */
.rating-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stars-modern {
    display: flex;
    gap: 2px;
}

.star-modern {
    color: var(--product-warning);
    font-size: 18px;
}

    .star-modern.empty {
        color: #e4e5e9;
    }

.rating-text {
    color: var(--product-text);
    font-size: 14px;
}

    .rating-text strong {
        color: var(--product-primary);
    }

/* Price Section Modern */
.price-section-modern {
    background: linear-gradient(135deg, #f8fafc, #e9ecef);
    padding: 25px;
    border-radius: var(--product-radius);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

    .price-section-modern::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, rgba(222, 117, 37, 0.1), transparent);
        border-radius: 0 0 0 100px;
    }

.price-final {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--product-accent);
    line-height: 1;
}

.price-currency {
    color: var(--product-text);
    font-size: 16px;
}

.price-original {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.original-amount {
    text-decoration: line-through;
    color: #adb5bd;
    font-size: 18px;
    font-weight: 500;
}

.discount-badge-modern {
    background: var(--product-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.stock-status-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.stock-available {
    color: var(--product-success);
}

.stock-unavailable {
    color: var(--product-danger);
}
/* Product Page Modern Styles */
:root {
    --product-primary: #1f4e79;
    --product-accent: #de7525;
    --product-success: #28a745;
    --product-danger: #dc3545;
    --product-warning: #ffc107;
    --product-light: #f8f9fa;
    --product-dark: #343a40;
    --product-border: #e9ecef;
    --product-text: #495057;
    --product-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --product-radius: 12px;
    --product-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-page-wrapper {
    padding: 40px 0 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    min-height: 100vh;
}

/* Breadcrumb Modern */
.product-breadcrumb-modern {
    background: white;
    padding: 16px 24px;
    border-radius: var(--product-radius);
    box-shadow: var(--product-shadow);
    margin-bottom: 30px;
    border: 1px solid var(--product-border);
}

.breadcrumb-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .breadcrumb-modern li {
        display: flex;
        align-items: center;
        font-size: 14px;
    }

        .breadcrumb-modern li a {
            color: var(--product-text);
            text-decoration: none;
            transition: var(--product-transition);
            padding: 4px 8px;
            border-radius: 6px;
        }

            .breadcrumb-modern li a:hover {
                color: var(--product-accent);
                background: rgba(222, 117, 37, 0.05);
            }

        .breadcrumb-modern li.active a {
            color: var(--product-accent);
            font-weight: 600;
        }

.breadcrumb-separator {
    color: var(--product-border);
    margin: 0 4px;
}

/* Product Main Grid */
.product-main-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .product-main-container {
        grid-template-columns: 1.2fr 1fr;
    }
}

/* Gallery Modern */
.product-gallery-modern {
    background: white;
    border-radius: var(--product-radius);
    overflow: hidden;
    box-shadow: var(--product-shadow);
    border: 1px solid var(--product-border);
    position: relative;
}

.gallery-main {
    position: relative;
    height: 500px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .gallery-main img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: var(--product-transition);
    }

.zoom-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--product-transition);
    z-index: 10;
}

    .zoom-btn:hover {
        background: rgba(0, 0, 0, 0.9);
        transform: scale(1.1);
    }

/* Zoom Modal */
.zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

    .zoom-modal.active {
        display: flex;
    }

.zoom-modal-content {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1200px;
}

.zoom-close-btn {
    position: absolute;
    top: -40px;
    left: 0;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.zoom-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .zoom-image-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.gallery-thumbs {
    padding: 15px;
    background: white;
    border-top: 1px solid var(--product-border);
}

.thumb-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px;
}

.thumb-item {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--product-transition);
    opacity: 0.6;
}

    .thumb-item:hover,
    .thumb-item.active {
        opacity: 1;
        border-color: var(--product-accent);
        transform: translateY(-2px);
    }

    .thumb-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Product Info Modern */
.product-info-modern {
    background: white;
    border-radius: var(--product-radius);
    padding: 30px;
    box-shadow: var(--product-shadow);
    border: 1px solid var(--product-border);
    position: sticky;
    top: 100px;
}

/* Product Header */
.product-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--product-border);
}

.product-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--product-primary), #2a5a8a);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-title-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--product-primary);
    line-height: 1.4;
    margin-bottom: 8px;
}

.product-model {
    color: var(--product-text);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .product-model i {
        color: var(--product-accent);
    }

/* Rating Modern */
.rating-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stars-modern {
    display: flex;
    gap: 2px;
}

    .stars-modern i {
        color: var(--product-warning);
        font-size: 18px;
    }

        .stars-modern i.far {
            color: #e4e5e9;
        }

.rating-text {
    color: var(--product-text);
    font-size: 14px;
}

    .rating-text strong {
        color: var(--product-primary);
    }

/* Price Section Modern */
.price-section-modern {
    background: linear-gradient(135deg, #f8fafc, #e9ecef);
    padding: 25px;
    border-radius: var(--product-radius);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

    .price-section-modern::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, rgba(222, 117, 37, 0.1), transparent);
        border-radius: 0 0 0 100px;
    }

.price-final {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--product-accent);
    line-height: 1;
}

.price-currency {
    color: var(--product-text);
    font-size: 16px;
}

.price-original {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.original-amount {
    text-decoration: line-through;
    color: #adb5bd;
    font-size: 18px;
    font-weight: 500;
}

.discount-badge-modern {
    background: var(--product-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.stock-status-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.stock-available {
    color: var(--product-success);
}

.stock-unavailable {
    color: var(--product-danger);
}

/* Quantity Discount Tiers Modern */
.discount-tiers-modern {
    margin: 30px 0;
    padding: 25px;
    background: white;
    border-radius: var(--product-radius);
    border: 2px solid var(--product-border);
    position: relative;
    overflow: hidden;
}

    .discount-tiers-modern::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, rgba(31, 78, 121, 0.05), transparent);
        border-radius: 0 0 0 80px;
    }

.tiers-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--product-primary);
    font-size: 18px;
    font-weight: 600;
}

    .tiers-title i {
        color: var(--product-accent);
    }

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.tier-card {
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #e9ecef);
    border-radius: 10px;
    border-left: 4px solid var(--product-accent);
    transition: var(--product-transition);
    position: relative;
    overflow: hidden;
}

    .tier-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(222, 117, 37, 0.05), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .tier-card:hover::before {
        opacity: 1;
    }

    .tier-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .tier-card.active {
        background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), #f8fafc);
        border-color: var(--product-success);
        box-shadow: 0 5px 20px rgba(40, 167, 69, 0.15);
    }

        .tier-card.active .tier-discount {
            background: var(--product-success);
        }

.tier-range {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--product-primary);
    font-weight: 600;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

    .tier-range i {
        color: var(--product-accent);
    }

.tier-prices {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.tier-original {
    text-decoration: line-through;
    color: #adb5bd;
    font-size: 14px;
}

.tier-final {
    color: var(--product-accent);
    font-size: 20px;
    font-weight: 700;
}

.tier-discount {
    background: var(--product-accent);
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

/* Product Options Modern */
.options-modern {
    margin: 25px 0;
}

.option-label-modern {
    display: block;
    color: var(--product-primary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
}

.option-select-modern {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--product-border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--product-text);
    background: white;
    transition: var(--product-transition);
    cursor: pointer;
}

    .option-select-modern:focus {
        outline: none;
        border-color: var(--product-accent);
        box-shadow: 0 0 0 3px rgba(222, 117, 37, 0.1);
    }

/* Quantity Selector Modern */
.quantity-modern {
    margin: 25px 0;
    padding: 20px;
    background: white;
    border-radius: var(--product-radius);
    border: 2px solid var(--product-border);
}

.quantity-label-modern {
    display: block;
    color: var(--product-primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.quantity-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid var(--product-border);
    background: white;
    color: var(--product-text);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--product-transition);
}

    .quantity-btn:hover {
        border-color: var(--product-accent);
        background: var(--product-accent);
        color: white;
        transform: scale(1.05);
    }

    .quantity-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none !important;
    }

.quantity-input-modern {
    width: 80px;
    height: 48px;
    text-align: center;
    border: 2px solid var(--product-border);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--product-primary);
    background: white;
    transition: var(--product-transition);
}

    .quantity-input-modern:focus {
        outline: none;
        border-color: var(--product-accent);
        box-shadow: 0 0 0 3px rgba(222, 117, 37, 0.1);
    }

/* Add to Cart Button Modern */
.add-to-cart-modern {
    margin: 30px 0;
}

.btn-add-cart-modern {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--product-accent), #e87c2c);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--product-transition);
    position: relative;
    overflow: hidden;
}

    .btn-add-cart-modern:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(222, 117, 37, 0.3);
    }

    .btn-add-cart-modern:disabled {
        background: linear-gradient(135deg, #adb5bd, #6c757d);
        cursor: not-allowed;
        transform: none !important;
        box-shadow: none !important;
    }

    .btn-add-cart-modern::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transform: translateX(-100%);
    }

    .btn-add-cart-modern:hover::after {
        transform: translateX(100%);
        transition: transform 0.6s ease;
    }

/* Product Attributes Modern */
.attributes-modern {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid var(--product-border);
}

.attributes-title {
    color: var(--product-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.attributes-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

.attribute-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border-right: 3px solid var(--product-accent);
    transition: var(--product-transition);
}

    .attribute-item-modern:hover {
        transform: translateX(-5px);
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

.attribute-name-modern {
    color: var(--product-text);
    font-weight: 500;
    font-size: 14px;
}

.attribute-value-modern {
    color: var(--product-primary);
    font-weight: 600;
    font-size: 14px;
}

/* Product Tabs Modern */
.tabs-modern-container {
    background: white;
    border-radius: var(--product-radius);
    overflow: hidden;
    box-shadow: var(--product-shadow);
    margin-top: 40px;
    border: 1px solid var(--product-border);
}

.tabs-header-modern {
    display: flex;
    background: linear-gradient(135deg, #f8fafc, #e9ecef);
    border-bottom: 2px solid var(--product-border);
    overflow-x: auto;
    scrollbar-width: none;
}

    .tabs-header-modern::-webkit-scrollbar {
        display: none;
    }

.tab-btn-modern {
    padding: 18px 30px;
    background: none;
    border: none;
    color: var(--product-text);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--product-transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    min-width: 200px;
    justify-content: center;
}

    .tab-btn-modern:hover {
        color: var(--product-accent);
        background: rgba(222, 117, 37, 0.05);
    }

    .tab-btn-modern.active {
        color: var(--product-accent);
        background: white;
    }

        .tab-btn-modern.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--product-accent);
        }

.tab-badge {
    background: var(--product-accent);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.tabs-content-modern {
    padding: 40px;
}

.tab-pane-modern {
    display: none;
    animation: fadeInUp 0.5s ease;
}

    .tab-pane-modern.active {
        display: block;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Description Tab */
.description-content {
    line-height: 1.8;
    color: var(--product-text);
}

    .description-content h1,
    .description-content h2,
    .description-content h3,
    .description-content h4 {
        color: var(--product-primary);
        margin: 25px 0 15px;
        font-weight: 600;
    }

    .description-content h2 {
        font-size: 24px;
    }

    .description-content h3 {
        font-size: 20px;
    }

    .description-content p {
        margin-bottom: 20px;
        text-align: justify;
    }

    .description-content ul,
    .description-content ol {
        margin-right: 25px;
        margin-bottom: 20px;
    }

    .description-content li {
        margin-bottom: 10px;
        position: relative;
    }

        .description-content li::before {
            content: '›';
            color: var(--product-accent);
            font-weight: bold;
            position: absolute;
            right: -20px;
        }

    .description-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

/* Specifications Tab */
.specs-table-modern {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

    .specs-table-modern thead {
        background: linear-gradient(135deg, var(--product-primary), #2a5a8a);
    }

    .specs-table-modern th {
        color: white;
        font-weight: 600;
        padding: 18px 20px;
        text-align: right;
        font-size: 16px;
        border: none;
    }

    .specs-table-modern tbody tr {
        transition: var(--product-transition);
    }

        .specs-table-modern tbody tr:nth-child(even) {
            background: #f8fafc;
        }

        .specs-table-modern tbody tr:hover {
            background: rgba(222, 117, 37, 0.05);
            transform: translateX(-5px);
        }

    .specs-table-modern td {
        padding: 16px 20px;
        border-bottom: 1px solid var(--product-border);
        color: var(--product-text);
        font-size: 14px;
    }

        .specs-table-modern td:first-child {
            font-weight: 500;
            color: var(--product-primary);
            border-left: 3px solid var(--product-accent);
        }

/* Comments Tab */
.comments-modern-container {
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--product-transition);
}

    .loading-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--product-border);
    border-top-color: var(--product-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Toast Notification */
.toast-modern {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 99999;
    transition: var(--product-transition);
    opacity: 0;
}

    .toast-modern.show {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    .toast-modern.success {
        border-right: 4px solid var(--product-success);
    }

    .toast-modern.error {
        border-right: 4px solid var(--product-danger);
    }

    .toast-modern.warning {
        border-right: 4px solid var(--product-warning);
    }

.toast-icon {
    font-size: 20px;
}

.toast-success .toast-icon {
    color: var(--product-success);
}

.toast-error .toast-icon {
    color: var(--product-danger);
}

.toast-warning .toast-icon {
    color: var(--product-warning);
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .product-title-main {
        font-size: 22px;
    }

    .price-amount {
        font-size: 28px;
    }

    .gallery-main {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .product-main-container {
        grid-template-columns: 1fr;
    }

    .product-info-modern {
        position: static;
    }

    .gallery-main {
        height: 350px;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-page-wrapper {
        padding: 20px 0 40px;
    }

    .product-title-main {
        font-size: 20px;
    }

    .price-amount {
        font-size: 24px;
    }

    .gallery-main {
        height: 300px;
    }

    .tab-btn-modern {
        min-width: 150px;
        padding: 15px 20px;
        font-size: 14px;
    }

    .tabs-content-modern {
        padding: 25px;
    }

    .attributes-grid-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .product-title-main {
        font-size: 18px;
    }

    .price-amount {
        font-size: 22px;
    }

    .gallery-main {
        height: 250px;
    }

    .product-info-modern {
        padding: 20px;
    }

    .tab-btn-modern {
        min-width: 120px;
        padding: 12px 15px;
        font-size: 13px;
    }

    .tabs-content-modern {
        padding: 20px;
    }

    .quantity-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .quantity-input-modern {
        width: 60px;
        height: 40px;
        font-size: 16px;
    }
}
/* Quantity Discount Tiers Modern */
.discount-tiers-modern {
    margin: 30px 0;
    padding: 25px;
    background: white;
    border-radius: var(--product-radius);
    border: 2px solid var(--product-border);
    position: relative;
    overflow: hidden;
}

    .discount-tiers-modern::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, rgba(31, 78, 121, 0.05), transparent);
        border-radius: 0 0 0 80px;
    }

.tiers-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--product-primary);
    font-size: 18px;
    font-weight: 600;
}

    .tiers-title i {
        color: var(--product-accent);
    }

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.tier-card {
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #e9ecef);
    border-radius: 10px;
    border-left: 4px solid var(--product-accent);
    transition: var(--product-transition);
    position: relative;
    overflow: hidden;
}

    .tier-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .tier-card.active {
        background: linear-gradient(135deg, rgba(222, 117, 37, 0.1), #f8fafc);
        border-color: var(--product-success);
    }

.tier-range {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--product-primary);
    font-weight: 600;
    font-size: 16px;
}

    .tier-range i {
        color: var(--product-accent);
    }

.tier-prices {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tier-original {
    text-decoration: line-through;
    color: #adb5bd;
    font-size: 14px;
}

.tier-final {
    color: var(--product-accent);
    font-size: 20px;
    font-weight: 700;
}

.tier-discount {
    background: var(--product-accent);
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
}

/* Product Options Modern */
.options-modern {
    margin: 25px 0;
}

.option-label-modern {
    display: block;
    color: var(--product-primary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
}

.option-select-modern {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--product-border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--product-text);
    background: white;
    transition: var(--product-transition);
    cursor: pointer;
}

    .option-select-modern:focus {
        outline: none;
        border-color: var(--product-accent);
        box-shadow: 0 0 0 3px rgba(222, 117, 37, 0.1);
    }

/* Quantity Selector Modern - فقط اگر موجود و قیمت دارد */
@if (showQuantityInput) {
    <text >
    .quantity-modern {
        margin: 25px 0;
        padding: 20px;
        background: white;
        border-radius: var(--product-radius);
        border: 2px solid var(--product-border);
    }

    .quantity-label-modern {
        display: block;
        color: var(--product-primary);
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 16px;
    }

    .quantity-controls {
        display: flex;
        align-items: center;
        gap: 15px;
        justify-content: center;
    }

    .quantity-btn {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        border: 2px solid var(--product-border);
        background: white;
        color: var(--product-text);
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--product-transition);
    }

        .quantity-btn:hover {
            border-color: var(--product-accent);
            background: var(--product-accent);
            color: white;
            transform: scale(1.05);
        }

        .quantity-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none !important;
        }

    .quantity-input-modern {
        width: 80px;
        height: 48px;
        text-align: center;
        border: 2px solid var(--product-border);
        border-radius: 12px;
        font-size: 18px;
        font-weight: 700;
        color: var(--product-primary);
        background: white;
        transition: var(--product-transition);
    }

        .quantity-input-modern:focus {
            outline: none;
            border-color: var(--product-accent);
            box-shadow: 0 0 0 3px rgba(222, 117, 37, 0.1);
        }

    </text>
}

/* Add to Cart Button Modern */
.add-to-cart-modern {
    margin: 30px 0;
}

.btn-add-cart-modern {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--product-accent), #e87c2c);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--product-transition);
    position: relative;
    overflow: hidden;
}

    .btn-add-cart-modern:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(222, 117, 37, 0.3);
    }

    .btn-add-cart-modern:disabled {
        background: linear-gradient(135deg, #adb5bd, #6c757d);
        cursor: not-allowed;
        transform: none !important;
        box-shadow: none !important;
    }

    .btn-add-cart-modern::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transform: translateX(-100%);
    }

    .btn-add-cart-modern:hover::after {
        transform: translateX(100%);
        transition: transform 0.6s ease;
    }

/* Product Attributes Modern */
.attributes-modern {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid var(--product-border);
}

.attributes-title {
    color: var(--product-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.attributes-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

.attribute-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border-right: 3px solid var(--product-accent);
    transition: var(--product-transition);
}

    .attribute-item-modern:hover {
        transform: translateX(-5px);
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

.attribute-name-modern {
    color: var(--product-text);
    font-weight: 500;
    font-size: 14px;
}

.attribute-value-modern {
    color: var(--product-primary);
    font-weight: 600;
    font-size: 14px;
}

/* Product Tabs Modern */
.tabs-modern-container {
    background: white;
    border-radius: var(--product-radius);
    overflow: hidden;
    box-shadow: var(--product-shadow);
    margin-top: 40px;
    border: 1px solid var(--product-border);
}

.tabs-header-modern {
    display: flex;
    background: linear-gradient(135deg, #f8fafc, #e9ecef);
    border-bottom: 2px solid var(--product-border);
    overflow-x: auto;
    scrollbar-width: none;
}

    .tabs-header-modern::-webkit-scrollbar {
        display: none;
    }

.tab-btn-modern {
    padding: 18px 30px;
    background: none;
    border: none;
    color: var(--product-text);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--product-transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    min-width: 200px;
    justify-content: center;
}

    .tab-btn-modern:hover {
        color: var(--product-accent);
        background: rgba(222, 117, 37, 0.05);
    }

    .tab-btn-modern.active {
        color: var(--product-accent);
        background: white;
    }

        .tab-btn-modern.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--product-accent);
        }

.tab-badge {
    background: var(--product-accent);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.tabs-content-modern {
    padding: 40px;
}

.tab-pane-modern {
    display: none;
    animation: fadeInUp 0.5s ease;
}

    .tab-pane-modern.active {
        display: block;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Description Tab */
.description-content {
    line-height: 1.8;
    color: var(--product-text);
}

    .description-content h1,
    .description-content h2,
    .description-content h3,
    .description-content h4 {
        color: var(--product-primary);
        margin: 25px 0 15px;
        font-weight: 600;
    }

    .description-content h2 {
        font-size: 24px;
    }

    .description-content h3 {
        font-size: 20px;
    }

    .description-content p {
        margin-bottom: 20px;
        text-align: justify;
    }

    .description-content ul,
    .description-content ol {
        margin-right: 25px;
        margin-bottom: 20px;
    }

    .description-content li {
        margin-bottom: 10px;
        position: relative;
    }

        .description-content li::before {
            content: '›';
            color: var(--product-accent);
            font-weight: bold;
            position: absolute;
            right: -20px;
        }

    .description-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

/* Specifications Tab */
.specs-table-modern {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

    .specs-table-modern thead {
        background: linear-gradient(135deg, var(--product-primary), #2a5a8a);
    }

    .specs-table-modern th {
        color: white;
        font-weight: 600;
        padding: 18px 20px;
        text-align: right;
        font-size: 16px;
        border: none;
    }

    .specs-table-modern tbody tr {
        transition: var(--product-transition);
    }

        .specs-table-modern tbody tr:nth-child(even) {
            background: #f8fafc;
        }

        .specs-table-modern tbody tr:hover {
            background: rgba(222, 117, 37, 0.05);
            transform: translateX(-5px);
        }

    .specs-table-modern td {
        padding: 16px 20px;
        border-bottom: 1px solid var(--product-border);
        color: var(--product-text);
        font-size: 14px;
    }

        .specs-table-modern td:first-child {
            font-weight: 500;
            color: var(--product-primary);
            border-left: 3px solid var(--product-accent);
        }

/* Comments Tab */
.comments-modern-container {
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .product-title-main {
        font-size: 22px;
    }

    .price-amount {
        font-size: 28px;
    }

    .gallery-main {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .product-main-container {
        grid-template-columns: 1fr;
    }

    .product-info-modern {
        position: static;
    }

    .gallery-main {
        height: 350px;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-page-wrapper {
        padding: 20px 0 40px;
    }

    .product-title-main {
        font-size: 20px;
    }

    .price-amount {
        font-size: 24px;
    }

    .gallery-main {
        height: 300px;
    }

    .tab-btn-modern {
        min-width: 150px;
        padding: 15px 20px;
        font-size: 14px;
    }

    .tabs-content-modern {
        padding: 25px;
    }

    .attributes-grid-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .product-title-main {
        font-size: 18px;
    }

    .price-amount {
        font-size: 22px;
    }

    .gallery-main {
        height: 250px;
    }

    .product-info-modern {
        padding: 20px;
    }

    .tab-btn-modern {
        min-width: 120px;
        padding: 12px 15px;
        font-size: 13px;
    }

    .tabs-content-modern {
        padding: 20px;
    }

    .quantity-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .quantity-input-modern {
        width: 60px;
        height: 40px;
        font-size: 16px;
    }
}

/* Utility Classes */
.text-accent {
    color: var(--product-accent) !important;
}

.text-primary {
    color: var(--product-primary) !important;
}

.text-success {
    color: var(--product-success) !important;
}

.text-danger {
    color: var(--product-danger) !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 8px !important;
}

.mb-2 {
    margin-bottom: 16px !important;
}

.mb-3 {
    margin-bottom: 24px !important;
}

.mb-4 {
    margin-bottom: 32px !important;
}

.mb-5 {
    margin-bottom: 40px !important;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--product-transition);
}

    .loading-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--product-border);
    border-top-color: var(--product-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Toast Notification */
.toast-modern {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 99999;
    transition: var(--product-transition);
    opacity: 0;
}

    .toast-modern.show {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    .toast-modern.success {
        border-right: 4px solid var(--product-success);
    }

    .toast-modern.error {
        border-right: 4px solid var(--product-danger);
    }

    .toast-modern.warning {
        border-right: 4px solid var(--product-warning);
    }

.toast-icon {
    font-size: 20px;
}

.toast-success .toast-icon {
    color: var(--product-success);
}

.toast-error .toast-icon {
    color: var(--product-danger);
}

.toast-warning .toast-icon {
    color: var(--product-warning);
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
}



/* به بخش CSS اضافه کنید: */

/* Zoom functionality */
.gallery-main {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

    .gallery-main.zoomed {
        cursor: zoom-out;
    }

    .gallery-main img {
        transition: transform 0.3s ease;
    }

    .gallery-main.zoomed img {
        transform: scale(2);
    }

/* Fix for empty option text */
.option-select-modern option:empty {
    display: none;
}

.option-select-modern option[value="0"] {
    color: #6c757d;
    font-style: italic;
}

/* Enhance tier cards */
.tier-card {
    position: relative;
    overflow: hidden;
}

    .tier-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(222, 117, 37, 0.05), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .tier-card:hover::before {
        opacity: 1;
    }

    .tier-card.active {
        background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), #f8fafc);
        border-color: #28a745;
        box-shadow: 0 5px 20px rgba(40, 167, 69, 0.15);
    }

        .tier-card.active .tier-discount {
            background: #28a745;
        }

/* Fix for discount tiers display */
.discount-tiers-modern:empty {
    display: none;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .tiers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .tier-final {
        font-size: 18px;
    }
}

/*commnet*/
 
/* Rating Summary Styles */
.rating-summary-modern {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.overall-rating {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
}

.rating-score {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stars-large {
    font-size: 24px;
    color: #ffc107;
    margin-bottom: 10px;
    direction: ltr;
}

    .stars-large .far {
        color: #e4e5e9;
    }

.rating-count {
    color: #6c757d;
    font-size: 14px;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-label {
    width: 70px;
    font-size: 14px;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-progress {
    flex: 1;
}

    .rating-progress .progress {
        background-color: #e9ecef;
        border-radius: 4px;
        overflow: hidden;
    }

    .rating-progress .progress-bar {
        background: linear-gradient(90deg, #ffc107, #ff9800);
        border-radius: 4px;
    }

.rating-count {
    width: 40px;
    text-align: left;
    font-size: 14px;
    color: #6c757d;
}

/* Comment Card Styles */
.comments-list-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

    .comment-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    position: relative;
    width: 50px;
    height: 50px;
}

.avatar-initials {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.verified-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid white;
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.user-name {
    font-weight: 600;
    color: #343a40;
    font-size: 16px;
}

.comment-date {
    color: #6c757d;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.comment-rating .stars {
    color: #ffc107;
    font-size: 16px;
    direction: ltr;
}

    .comment-rating .stars .far {
        color: #e4e5e9;
    }

/* Pros & Cons Styles */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .pros-cons {
        grid-template-columns: 1fr 1fr;
    }
}

.pros, .cons {
    padding: 15px;
    border-radius: 8px;
}

.pros {
    background: rgba(40, 167, 69, 0.05);
    border-right: 3px solid #28a745;
}

.cons {
    background: rgba(220, 53, 69, 0.05);
    border-right: 3px solid #dc3545;
}

.pros-cons-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 15px;
}

.pros .pros-cons-title {
    color: #28a745;
}

.cons .pros-cons-title {
    color: #dc3545;
}

.pros-cons-content {
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
}

/* Comment Text */
.comment-text {
    margin-top: 15px;
}

    .comment-text p {
        color: #495057;
        line-height: 1.8;
        font-size: 15px;
        margin: 0;
    }

/* Comment Actions (Hidden) */
.comment-actions {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.action-text {
    color: #6c757d;
    font-size: 14px;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.btn-like, .btn-dislike {
    background: none;
    border: 1px solid #e9ecef;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .btn-like:hover {
        background: #28a745;
        color: white;
        border-color: #28a745;
    }

    .btn-dislike:hover {
        background: #dc3545;
        color: white;
        border-color: #dc3545;
    }

/* Load More Button */
.btn-load-more {
    background: linear-gradient(135deg, var(--accent-color), #e87c2c);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .btn-load-more:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(222, 117, 37, 0.3);
    }

    .btn-load-more.loading span {
        display: none;
    }

    .btn-load-more.loading .fa-spinner {
        display: inline-block !important;
    }

/* No Comments */
.no-comments {
    background: white;
    border-radius: 12px;
    padding: 60px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.no-comments-icon {
    font-size: 64px;
    color: #e9ecef;
    margin-bottom: 20px;
}

.no-comments h5 {
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 576px) {
    .comment-header {
        flex-direction: column;
        gap: 15px;
    }

    .comment-rating {
        align-self: flex-start;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }
}

