/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF9800;
    --secondary-color: #FF5722;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --gray-color: #666;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
    direction: rtl;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.top-bar {
    background-color: var(--dark-color);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: #fff;
    margin-right: 15px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 24px;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
}

.dropdown-menu a:hover {
    background-color: var(--light-color);
}

.nav-icons {
    display: flex;
    gap: 15px;
}

.nav-icons button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--dark-color);
    transition: var(--transition);
    position: relative;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icons button:hover {
    background: #f5f5f5;
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    left: -8px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.google-rating .stars {
    color: #FFB400;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Vazirmatn', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-add-to-cart {
    background-color: var(--secondary-color);
    color: white;
    width: 100%;
    margin-top: 15px;
}

.btn-add-to-cart:hover {
    background-color: #e64a19;
}

.btn-view-all {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-top: 40px;
}

.btn-view-all:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-title p {
    color: var(--gray-color);
    font-size: 16px;
    margin-top: 20px;
}

/* Features */
.features {
    padding: 80px 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), #ffcc80);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 1.3rem;
}

/* Products - استایل‌های اصلی (برای صفحات دیگر) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.product-desc {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 15px;
    flex: 1;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary-color);
}

.old-price {
    font-size: 16px;
    color: var(--gray-color);
    text-decoration: line-through;
}

.text-center {
    text-align: center;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 30px;
    color: var(--gray-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.about-list i {
    color: var(--primary-color);
}

/* Recent Articles */
.recent-articles {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.article-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.article-content h3 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.article-content h3 a:hover {
    color: var(--primary-color);
}

.article-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-color);
    gap: 10px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.testimonial-text p {
    font-style: italic;
    color: var(--gray-color);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.testimonial-author span {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-item summary {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: var(--transition);
}

.faq-item summary:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 25px 25px;
    color: var(--gray-color);
    line-height: 1.7;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.newsletter-content p {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 600;
}

.privacy-notice {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.privacy-notice a {
    color: white;
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: white;
    font-size: 1.2rem;
}

.footer-col p {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary-color);
    padding-right: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: white;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-info li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.contact-info a {
    color: #ccc;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* Sitemap */
.sitemap-links {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sitemap-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    color: #ccc;
}

.sitemap-categories a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.sitemap-categories a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #ccc;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.certificates {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.cert-badge {
    font-size: 1.5rem;
    cursor: help;
    transition: var(--transition);
}

.cert-badge:hover {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .products-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .sitemap-categories {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .feature-card,
    .product-card,
    .article-card {
        margin: 0 10px;
    }

    .footer {
        padding: 40px 0 20px;
    }
}

/* Performance Optimizations */
picture img {
    max-width: 100%;
    height: auto;
}

/* Print Styles */
@media print {
    .nav-icons,
    .hero-buttons,
    .btn-add-to-cart,
    .footer-social,
    .newsletter {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* استایل ساده برای تیک روی آیکون */
.user-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 20px;
    color: #666;
    transition: color 0.3s;
}

.user-btn:hover {
    color: #2196F3;
}

.login-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #4CAF50;
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.user-icon {
    position: relative;
}

/* ============================================
   🎯 استایل پاکتی و ۶ ظلعی فقط برای صفحه اصلی
   ============================================ */

/* محصولات ویژه - نمایش پاکتی */
.featured-products .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
    margin: 40px 0;
}

.featured-products .product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(255, 152, 0, 0.1);
    /* شکل ۶ ظلعی با کلیپ‌پث */
    clip-path: polygon(
        0% 0%,
        100% 0%,
        100% 85%,
        95% 100%,
        5% 100%,
        0% 85%
    );
    padding-bottom: 10px;
    transform: perspective(1000px) rotateX(2deg);
}

.featured-products .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.03), rgba(255, 87, 34, 0.03));
    z-index: 0;
    pointer-events: none;
}

.featured-products .product-card:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-12px);
    box-shadow: 0 25px 60px rgba(255, 152, 0, 0.2);
    border-color: var(--primary-color);
}

.featured-products .product-card .product-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #f8f9fa;
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 95% 90%, 5% 90%, 0% 85%);
    transition: clip-path 0.4s ease;
    z-index: 1;
}

.featured-products .product-card:hover .product-image {
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 95% 95%, 5% 95%, 0% 90%);
}

.featured-products .product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-products .product-card:hover .product-image img {
    transform: scale(1.08);
}

.featured-products .product-card .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF9800, #FF5722);
    color: white;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.35);
    z-index: 5;
}

.featured-products .product-card .product-badge.new {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.35);
}

/* پس‌زمینه افکت پاکتی */
.featured-products .product-card .product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
    z-index: 2;
    pointer-events: none;
}

.featured-products .product-card .product-info {
    padding: 22px 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
    background: white;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 95% 100%, 5% 100%, 0% 100%);
}

.featured-products .product-card .product-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.featured-products .product-card:hover .product-info h3 {
    color: var(--primary-color);
}

.featured-products .product-card .product-desc {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-products .product-card .product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.featured-products .product-card .product-price .price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #FF5722;
}

.featured-products .product-card .product-price .old-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.featured-products .product-card .product-price .discount-tag {
    background: #FFEBEE;
    color: #FF5722;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.featured-products .product-card .btn-add-to-cart {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #FF9800, #FF5722);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
    position: relative;
    overflow: hidden;
}

.featured-products .product-card .btn-add-to-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.featured-products .product-card .btn-add-to-cart:hover::before {
    width: 300px;
    height: 300px;
}

.featured-products .product-card .btn-add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.35);
}

.featured-products .product-card .btn-add-to-cart:active {
    transform: translateY(0);
}

/* انیمیشن ورود پاکتی */
@keyframes hexSlideIn {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateX(10deg) translateY(40px);
    }
    to {
        opacity: 1;
        transform: perspective(1000px) rotateX(2deg) translateY(0);
    }
}

.featured-products .product-card {
    animation: hexSlideIn 0.6s ease forwards;
    opacity: 0;
}

.featured-products .product-card:nth-child(1) { animation-delay: 0.05s; }
.featured-products .product-card:nth-child(2) { animation-delay: 0.15s; }
.featured-products .product-card:nth-child(3) { animation-delay: 0.25s; }
.featured-products .product-card:nth-child(4) { animation-delay: 0.35s; }
.featured-products .product-card:nth-child(5) { animation-delay: 0.45s; }
.featured-products .product-card:nth-child(6) { animation-delay: 0.55s; }

/* واکنش‌گرا برای پاکتی */
@media (max-width: 992px) {
    .featured-products .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .featured-products .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 25px;
    }

    .featured-products .product-card .product-image {
        height: 180px;
    }

    .featured-products .product-card {
        clip-path: polygon(
            0% 0%,
            100% 0%,
            100% 80%,
            92% 100%,
            8% 100%,
            0% 80%
        );
    }

    .featured-products .product-card .product-image {
        clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 90% 85%, 10% 85%, 0% 80%);
    }

    .featured-products .product-card .product-info h3 {
        font-size: 1rem;
    }

    .featured-products .product-card .product-price .price {
        font-size: 1.1rem;
    }

    .featured-products .product-card .btn-add-to-cart {
        font-size: 0.85rem;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .featured-products .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        margin: 25px 0;
    }

    .featured-products .product-card .product-image {
        height: 150px;
    }

    .featured-products .product-card {
        clip-path: polygon(
            0% 0%,
            100% 0%,
            100% 75%,
            90% 100%,
            10% 100%,
            0% 75%
        );
        border-radius: 16px;
    }

    .featured-products .product-card .product-image {
        clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 85% 80%, 15% 80%, 0% 75%);
        height: 130px;
    }

    .featured-products .product-card .product-info {
        padding: 14px 12px 18px;
    }

    .featured-products .product-card .product-info h3 {
        font-size: 0.9rem;
        min-height: 38px;
    }

    .featured-products .product-card .product-desc {
        font-size: 0.75rem;
        display: none;
    }

    .featured-products .product-card .product-price .price {
        font-size: 1rem;
    }

    .featured-products .product-card .product-price .old-price {
        font-size: 0.75rem;
    }

    .featured-products .product-card .btn-add-to-cart {
        font-size: 0.75rem;
        padding: 8px 10px;
        border-radius: 8px;
    }

    .featured-products .product-card .product-badge {
        font-size: 0.6rem;
        padding: 4px 12px;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 380px) {
    .featured-products .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .featured-products .product-card .product-image {
        height: 110px;
    }

    .featured-products .product-card .product-info h3 {
        font-size: 0.8rem;
        min-height: 32px;
    }

    .featured-products .product-card .product-price .price {
        font-size: 0.85rem;
    }
}