/**
 * WTheme Luxury - Main Stylesheet
 * 
 * @package WTheme
 * @version 1.2.0
 */

/* ===== Base Styles ===== */
* {
    font-family: 'Vazir', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    background: #fafaf9;
    direction: rtl;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    color: #374151;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ===== Luxury Gradients ===== */
.luxury-gradient {
    background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #10b981 100%);
}

.gold-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
}

.emerald-gold-gradient {
    background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #d4af37 100%);
}

/* ===== Typography ===== */
.gold-text {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emerald-text {
    background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn-luxury {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
}

.btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.4);
    color: white !important;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #064e3b !important;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-decoration: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: #064e3b !important;
}

/* ===== Header ===== */
.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.1);
}

.header-top {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.header-top-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-top-left,
.header-top-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.header-top-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top-item i {
    color: #f4d03f;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.3);
    position: relative;
    flex-shrink: 0;
}

.logo-icon i {
    color: #f4d03f;
    font-size: 24px;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: #d4af37;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.site-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.site-title a {
    color: inherit;
}

.site-description {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== Search Form ===== */
.header-search {
    flex: 1;
    max-width: 500px;
    min-width: 200px;
}

.search-form {
    position: relative;
    display: flex;
}

.search-form input[type="search"] {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid #f3f4f6;
    border-radius: 50px;
    background: #f9fafb;
    font-size: 14px;
    transition: all 0.3s;
    font-family: 'Vazir', sans-serif;
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: #047857;
    background: white;
}

.search-form button {
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #047857;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.search-form button:hover {
    background: #064e3b;
}

/* ===== Navigation ===== */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.main-navigation a {
    color: #374151;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.main-navigation a:hover {
    color: #047857;
}

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

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

/* ===== Header Icons ===== */
.header-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.header-icon-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    font-size: 18px;
    text-decoration: none;
}

.header-icon-btn:hover {
    background: #ecfdf5;
    color: #047857;
}

.header-icon-btn .count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #d4af37;
    color: #064e3b;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Hero Section ===== */
.hero-section {
    background:
        linear-gradient(135deg, rgba(6, 78, 59, 0.95) 0%, rgba(4, 120, 87, 0.85) 50%, rgba(212, 175, 55, 0.7) 100%),
        url('logo.png?1551434678-e076c223a692?w=1920') center/cover fixed;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.hero-badge i {
    color: #f4d03f;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Products Section ===== */
.products-section {
    padding: 80px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.section-badge i {
    margin-left: 8px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #1f2937;
}

.section-description {
    color: #6b7280;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Luxury Divider ===== */
.luxury-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.luxury-divider::before,
.luxury-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    max-width: 100px;
}

.luxury-divider i {
    margin: 0 15px;
    color: #d4af37;
}

/* ===== Product Card ===== */
.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(6, 78, 59, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.3);
}

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

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #064e3b;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
    z-index: 10;
}

.product-actions {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s;
    z-index: 10;
}

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

.product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    color: #374151;
    text-decoration: none;
}

.product-action-btn:hover {
    background: #047857;
    color: white;
}

.product-info {
    padding: 24px;
}

.product-category {
    display: inline-block;
    background: #fef3c7;
    color: #d4af37;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: #064e3b;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.product-title a {
    color: inherit;
}

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

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #d4af37;
    margin-bottom: 16px;
    font-size: 14px;
}

.product-rating .rating-count {
    color: #6b7280;
    font-size: 12px;
    margin-right: 8px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
    flex-wrap: wrap;
    gap: 10px;
}

.price-current {
    font-size: 22px;
    font-weight: 700;
    color: #047857;
}

.price-old {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 14px;
    margin-right: 8px;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Vazir', sans-serif;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.4);
}

/* ===== Footer ===== */
.site-footer {
    background: #064e3b;
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23d4af37" fill-opacity="0.4"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

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

.footer-widget h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-widget h3 i {
    color: #d4af37;
}

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

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

.footer-widget ul li a {
    color: #9ca3af;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-widget ul li a i {
    font-size: 10px;
    color: #d4af37;
}

.footer-contact-item {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon i {
    color: #d4af37;
}

.footer-contact-text {
    color: #9ca3af;
    padding-top: 8px;
}

.footer-contact-text a {
    color: #9ca3af;
}

.footer-contact-text a:hover {
    color: #d4af37;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #064e3b;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
}

/* ===== Mobile Navigation ===== */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(6, 78, 59, 0.1);
    z-index: 1000;
    padding: 12px 0;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-family: 'Vazir', sans-serif;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: #047857;
}

.mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.mobile-nav-item .count {
    position: absolute;
    top: -4px;
    right: 50%;
    transform: translateX(16px);
    background: #d4af37;
    color: #064e3b;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== WooCommerce Specific ===== */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce ul.products li.product {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
}

.woocommerce ul.products li.product a img {
    border-radius: 24px 24px 0 0;
    height: 240px;
    object-fit: cover;
}

.woocommerce ul.products li.product .price {
    color: #047857;
    font-size: 20px;
    font-weight: 700;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product button.button,
.woocommerce ul.products li.product a.button {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.woocommerce ul.products li.product .button:hover {
    background: linear-gradient(135deg, #047857 0%, #10b981 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.4);
}

.woocommerce nav.woocommerce-pagination ul {
    border: none;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    padding: 10px 20px;
    border-radius: 50px;
    background: white;
    color: #374151;
    border: 2px solid #f3f4f6;
    transition: all 0.3s;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    color: white;
    border-color: transparent;
}

/* ===== Single Product ===== */
.woocommerce div.product {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
}

.woocommerce div.product div.images {
    border-radius: 24px;
    overflow: hidden;
}

.woocommerce div.product .product_title {
    font-size: 36px;
    color: #064e3b;
    margin-bottom: 20px;
}

.woocommerce div.product p.price {
    font-size: 32px;
    color: #047857;
    font-weight: 700;
    margin-bottom: 30px;
}

.woocommerce div.product .single_add_to_cart_button {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    color: white !important;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.3);
    font-family: 'Vazir', sans-serif;
}

.woocommerce div.product .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.4);
}

/* ===== Cart & Checkout ===== */
.woocommerce table.shop_table {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
}

.woocommerce table.shop_table th {
    background: #f9fafb;
    color: #374151;
    font-weight: 700;
    padding: 16px;
}

.woocommerce table.shop_table td {
    padding: 16px;
    border-top: 1px solid #f3f4f6;
}

.woocommerce #place_order {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    color: white !important;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    font-size: 18px;
    width: 100%;
    font-family: 'Vazir', sans-serif;
}

.woocommerce #place_order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.4);
}

/* ===== Owl Carousel Custom ===== */
.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.2);
    transition: all 0.3s;
}

.owl-carousel .owl-nav button:hover {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%) !important;
    color: white !important;
}

.owl-carousel .owl-nav button.owl-prev {
    right: -25px;
}

.owl-carousel .owl-nav button.owl-next {
    left: -25px;
}

.owl-carousel .owl-dots .owl-dot span {
    background: rgba(6, 78, 59, 0.3) !important;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%) !important;
    width: 30px;
}

/* ===== Notification ===== */
.wtheme-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.wtheme-notification.show {
    transform: translateX(0);
}

.wtheme-notification.notification-success {
    border-right: 4px solid #10b981;
}

.wtheme-notification.notification-success i {
    color: #10b981;
    font-size: 20px;
}

.wtheme-notification.notification-error {
    border-right: 4px solid #ef4444;
}

.wtheme-notification.notification-error i {
    color: #ef4444;
    font-size: 20px;
}

/* ===== Skip Link (Accessibility) ===== */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    right: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

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

    .hero-title {
        font-size: 42px;
    }

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

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .header-search {
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    .main-navigation {
        display: none;
    }

    .hero-section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mobile-nav {
        display: flex;
    }

    body {
        padding-bottom: 80px;
    }

    .header-icons .btn-luxury span {
        display: none;
    }

    .header-icons .btn-luxury {
        padding: 10px 15px;
    }

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

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

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

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

    .hero-buttons .btn-luxury,
    .hero-buttons .btn-gold {
        width: 100%;
        justify-content: center;
    }

    .product-price {
        flex-direction: column;
        align-items: stretch;
    }

    .add-to-cart-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* ===== Print Styles ===== */
@media print {

    .site-header,
    .site-footer,
    .mobile-nav,
    .hero-section {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

/* ========================================
   WOOCOMMERCE - SHOP & PRODUCT PAGES
   Luxury Green & Gold Theme
   ======================================== */

/* ===== SHOP PAGE HEADER ===== */
.woocommerce-page .page-title,
.woocommerce-page h1.page-title {
    font-size: 36px;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.woocommerce-page .page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
    border-radius: 2px;
}

/* ===== PRODUCTS GRID ===== */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.woocommerce ul.products li.product {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Product Image */
.woocommerce ul.products li.product a img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.05);
}

/* Product Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .product-title {
    font-size: 18px;
    font-weight: 600;
    color: #064e3b;
    padding: 20px 20px 10px;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

/* Product Price */
.woocommerce ul.products li.product .price {
    display: block;
    text-align: center;
    padding: 10px 20px;
    font-size: 22px;
    font-weight: 700;
    color: #047857;
}

.woocommerce ul.products li.product .price del {
    color: #9ca3af;
    font-size: 16px;
    margin-left: 8px;
    font-weight: 400;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    color: #047857;
}

/* Add to Cart Button */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
    display: block;
    margin: 15px 20px 20px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    color: #ffffff !important;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.25);
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover {
    background: linear-gradient(135deg, #047857 0%, #10b981 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.35);
}

/* Sale Badge */
.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #064e3b;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    min-height: auto;
    min-width: auto;
    line-height: 1.5;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 10;
}

.onsale {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #064e3b;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    min-height: auto;
    min-width: auto;
    line-height: 1.5;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 10;
}

/* ===== SINGLE PRODUCT PAGE ===== */
.woocommerce div.product {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Product Title */
.woocommerce div.product .product_title {
    font-size: 38px;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Product Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-size: 32px;
    font-weight: 700;
    color: #047857;
    margin: 20px 0 30px;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
    color: #9ca3af;
    font-size: 22px;
    margin-left: 12px;
    font-weight: 400;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
    text-decoration: none;
}

/* Add to Cart Button - Single Product */
.woocommerce div.product .single_add_to_cart_button {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    color: #ffffff !important;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.25);
}

.woocommerce div.product .single_add_to_cart_button:hover {
    background: linear-gradient(135deg, #047857 0%, #10b981 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.35);
}

/* Quantity Input */
.woocommerce div.product .quantity .qty {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #064e3b;
    width: 80px;
    text-align: center;
    transition: border-color 0.3s;
}

.woocommerce div.product .quantity .qty:focus {
    outline: none;
    border-color: #047857;
}

/* Product Meta */
.woocommerce div.product .product_meta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.woocommerce div.product .product_meta span {
    display: block;
    margin-bottom: 10px;
    color: #6b7280;
    font-size: 14px;
}

.woocommerce div.product .product_meta span strong {
    color: #064e3b;
    font-weight: 600;
    margin-left: 8px;
}

.woocommerce div.product .product_meta a {
    color: #047857;
    transition: color 0.3s;
}

.woocommerce div.product .product_meta a:hover {
    color: #d4af37;
}

/* Product Tabs */
.woocommerce div.product .woocommerce-tabs {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #f3f4f6;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #f3f4f6;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 15px 30px;
    color: #6b7280;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: #047857;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #064e3b;
    border-bottom-color: #d4af37;
}

.woocommerce div.product .woocommerce-tabs .panel {
    padding: 20px 0;
    color: #4b5563;
    line-height: 1.8;
}

/* Related Products */
.woocommerce div.product .related.products {
    margin-top: 80px;
}

.woocommerce div.product .related.products h2 {
    font-size: 32px;
    font-weight: 700;
    color: #064e3b;
    text-align: center;
    margin-bottom: 40px;
}

/* ===== CATEGORY PAGE ===== */
.woocommerce .woocommerce-result-count {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 20px;
}

.woocommerce .woocommerce-ordering {
    margin-bottom: 30px;
}

.woocommerce .woocommerce-ordering select {
    padding: 12px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 14px;
    color: #064e3b;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.3s;
    background: white;
}

.woocommerce .woocommerce-ordering select:focus {
    outline: none;
    border-color: #047857;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
    margin-top: 60px;
}

.woocommerce nav.woocommerce-pagination ul {
    border: none;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    padding: 12px 20px;
    border-radius: 50px;
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
    font-weight: 500;
    transition: all 0.3s;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    color: white;
    border-color: transparent;
}

/* ===== CART PAGE ===== */
.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.woocommerce table.shop_table {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: white;
}

.woocommerce table.shop_table th {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    color: white;
    padding: 16px;
    font-weight: 600;
    border: none;
}

.woocommerce table.shop_table td {
    padding: 16px;
    border-top: 1px solid #f3f4f6;
}

.woocommerce .cart-collaterals .cart_totals {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.08);
}

.woocommerce #place_order {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.woocommerce #place_order:hover {
    background: linear-gradient(135deg, #047857 0%, #10b981 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .woocommerce ul.products li.product a img {
        height: 220px;
    }

    .woocommerce-page .page-title,
    .woocommerce-page h1.page-title {
        font-size: 28px;
    }

    .woocommerce div.product .product_title {
        font-size: 28px;
    }

    .woocommerce div.product p.price,
    .woocommerce div.product span.price {
        font-size: 24px;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs {
        flex-wrap: wrap;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
        padding: 12px 20px;
        font-size: 14px;
    }
}

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

    .woocommerce ul.products li.product a img {
        height: 280px;
    }
}

/* ========================================
   PRODUCT TABS - FIXED & BEAUTIFUL
   ======================================== */

/* Tabs Container */
.woocommerce div.product .woocommerce-tabs {
    margin-top: 80px;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.08);
}

/* Tabs List */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 40px !important;
    display: flex !important;
    gap: 15px !important;
    border-bottom: 2px solid #e5e7eb !important;
    flex-wrap: wrap !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    position: relative !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: block !important;
    padding: 15px 30px !important;
    color: #6b7280 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    margin-bottom: -2px !important;
    transition: all 0.3s ease !important;
    border-radius: 12px 12px 0 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: #047857 !important;
    background: rgba(4, 120, 87, 0.05) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #064e3b !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 208, 63, 0.1) 100%) !important;
    border-bottom-color: #d4af37 !important;
    font-weight: 700 !important;
}

/* Tabs Panel */
.woocommerce div.product .woocommerce-tabs .panel {
    padding: 30px 0 !important;
    color: #4b5563 !important;
    line-height: 1.8 !important;
    animation: fadeIn 0.5s ease !important;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #064e3b !important;
    margin-bottom: 24px !important;
}

.woocommerce div.product .woocommerce-tabs .panel p {
    margin-bottom: 16px !important;
    color: #4b5563 !important;
}

/* FAQ Tab Styling */
.wtheme-faq-tab .faq-item {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 20px;
    border-right: 4px solid #d4af37;
    box-shadow: 0 2px 10px rgba(6, 78, 59, 0.05);
    transition: all 0.3s ease;
}

.wtheme-faq-tab .faq-item:hover {
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.1);
    transform: translateX(-4px);
}

.wtheme-faq-tab .faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #064e3b;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wtheme-faq-tab .faq-item h4 i {
    color: #d4af37;
    font-size: 20px;
}

.wtheme-faq-tab .faq-item p {
    margin: 0;
    color: #4b5563;
    line-height: 1.8;
    padding-right: 30px;
}

/* ========================================
   COMMENTS & REVIEWS - BEAUTIFUL FORM
   ======================================== */

/* Reviews Container */
.woocommerce #reviews {
    background: white;
}

.woocommerce #reviews h2 {
    font-size: 28px;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f3f4f6;
}

.woocommerce #reviews h3 {
    font-size: 22px;
    font-weight: 600;
    color: #064e3b;
    margin-bottom: 20px;
}

/* Review List */
.woocommerce #reviews .commentlist {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.woocommerce #reviews .commentlist li {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 24px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 2px 10px rgba(6, 78, 59, 0.05);
    transition: all 0.3s ease;
}

.woocommerce #reviews .commentlist li:hover {
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.1);
    transform: translateY(-2px);
}

.woocommerce #reviews .commentlist li .comment_container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.woocommerce #reviews .commentlist li img.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #d4af37;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.woocommerce #reviews .commentlist li .comment-text {
    flex: 1;
}

.woocommerce #reviews .commentlist li .meta {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.woocommerce #reviews .commentlist li .meta strong {
    color: #064e3b;
    font-weight: 600;
    font-size: 16px;
}

.woocommerce #reviews .commentlist li .meta time {
    color: #6b7280;
    font-size: 14px;
    margin-right: 15px;
}

.woocommerce #reviews .commentlist li .star-rating {
    color: #d4af37;
    font-size: 16px;
    margin-bottom: 10px;
}

.woocommerce #reviews .commentlist li p {
    margin: 0;
    color: #4b5563;
    line-height: 1.8;
}

/* Review Form */
.woocommerce #review_form #respond {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.08);
}

.woocommerce #review_form #respond h3 {
    font-size: 24px;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 24px;
}

.woocommerce #review_form #respond p {
    margin-bottom: 20px;
}

.woocommerce #review_form #respond label {
    display: block;
    margin-bottom: 8px;
    color: #064e3b;
    font-weight: 600;
    font-size: 15px;
}

.woocommerce #review_form #respond input[type="text"],
.woocommerce #review_form #respond input[type="email"],
.woocommerce #review_form #respond textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Vazirmatn', sans-serif;
    color: #374151;
    background: white;
    transition: all 0.3s ease;
}

.woocommerce #review_form #respond input[type="text"]:focus,
.woocommerce #review_form #respond input[type="email"]:focus,
.woocommerce #review_form #respond textarea:focus {
    outline: none;
    border-color: #047857;
    box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.1);
}

.woocommerce #review_form #respond textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.8;
}

/* Star Rating Input */
.woocommerce #review_form #respond p.stars {
    margin-bottom: 20px;
}

.woocommerce #review_form #respond p.stars label {
    display: inline-block;
    margin-left: 10px;
}

.woocommerce #review_form #respond p.stars a {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    overflow: hidden;
}

.woocommerce #review_form #respond p.stars a::before {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    color: #d1d5db;
    font-size: 24px;
    transition: color 0.3s;
}

.woocommerce #review_form #respond p.stars a:hover::before,
.woocommerce #review_form #respond p.stars a.active::before {
    color: #d4af37;
    font-weight: 700;
}

/* Submit Button */
.woocommerce #review_form #respond input[type="submit"] {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    color: white !important;
    padding: 14px 40px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.25);
    font-family: 'Vazirmatn', sans-serif;
}

.woocommerce #review_form #respond input[type="submit"]:hover {
    background: linear-gradient(135deg, #047857 0%, #10b981 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.35);
}

/* Rating Stars Display */
.star-rating {
    color: #d4af37;
    font-size: 18px;
    letter-spacing: 2px;
}

.star-rating span {
    color: #d4af37;
}

/* No Reviews Message */
.woocommerce-noreviews {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px dashed #e5e7eb;
}

.woocommerce-noreviews p {
    color: #6b7280;
    font-size: 16px;
    margin: 0;
}

/* ========================================
   RESPONSIVE TABS & COMMENTS
   ======================================== */

@media (max-width: 768px) {
    .woocommerce div.product .woocommerce-tabs {
        padding: 25px !important;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs {
        gap: 10px !important;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }

    .woocommerce #reviews .commentlist li .comment_container {
        flex-direction: column;
    }

    .woocommerce #reviews .commentlist li img.avatar {
        width: 50px;
        height: 50px;
    }

    .woocommerce #review_form #respond {
        padding: 25px !important;
    }
}

@media (max-width: 480px) {
    .woocommerce div.product .woocommerce-tabs ul.tabs {
        flex-direction: column;
        gap: 5px !important;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs li {
        width: 100%;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
        text-align: center;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   PRODUCT TABS - COMPLETE REWRITE
   ======================================== */

/* Tabs Wrapper */
.woocommerce div.product .woocommerce-tabs {
    margin-top: 80px !important;
    background: #ffffff !important;
    border-radius: 24px !important;
    padding: 40px !important;
    box-shadow: 0 10px 40px rgba(6, 78, 59, 0.1) !important;
}

/* Tabs List */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 40px !important;
    display: flex !important;
    gap: 20px !important;
    border-bottom: 3px solid #e5e7eb !important;
    flex-wrap: wrap !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    position: relative !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: block !important;
    padding: 16px 32px !important;
    color: #6b7280 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    border: none !important;
    border-bottom: 4px solid transparent !important;
    margin-bottom: -3px !important;
    transition: all 0.3s ease !important;
    border-radius: 12px 12px 0 0 !important;
    background: transparent !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: #047857 !important;
    background: rgba(4, 120, 87, 0.05) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: transparent !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #064e3b !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(244, 208, 63, 0.15) 100%) !important;
    border-bottom-color: #d4af37 !important;
    font-weight: 700 !important;
}

/* Panel Content */
.woocommerce div.product .woocommerce-tabs .panel {
    padding: 30px 0 !important;
    color: #4b5563 !important;
    line-height: 1.8 !important;
    animation: fadeIn 0.5s ease !important;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #064e3b !important;
    margin-bottom: 24px !important;
    border-bottom: 2px solid #f3f4f6 !important;
    padding-bottom: 15px !important;
}

.woocommerce div.product .woocommerce-tabs .panel p {
    margin-bottom: 16px !important;
    color: #4b5563 !important;
    font-size: 15px !important;
}

/* FAQ Items */
.wtheme-faq-tab {
    display: block !important;
}

.wtheme-faq-tab .faq-item {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%) !important;
    padding: 24px !important;
    border-radius: 16px !important;
    margin-bottom: 20px !important;
    border-right: 4px solid #d4af37 !important;
    box-shadow: 0 2px 10px rgba(6, 78, 59, 0.05) !important;
    transition: all 0.3s ease !important;
}

.wtheme-faq-tab .faq-item:hover {
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.1) !important;
    transform: translateX(-4px) !important;
}

.wtheme-faq-tab .faq-item h4 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #064e3b !important;
    margin: 0 0 12px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.wtheme-faq-tab .faq-item h4 i {
    color: #d4af37 !important;
    font-size: 20px !important;
}

.wtheme-faq-tab .faq-item p {
    margin: 0 !important;
    color: #4b5563 !important;
    line-height: 1.8 !important;
    padding-right: 30px !important;
}

/* ========================================
   REVIEWS & COMMENTS - BEAUTIFUL
   ======================================== */

/* Reviews Container */
.woocommerce #reviews {
    background: transparent !important;
}

.woocommerce #reviews h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #064e3b !important;
    margin-bottom: 30px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid #f3f4f6 !important;
}

.woocommerce #reviews h3 {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #064e3b !important;
    margin-bottom: 20px !important;
}

/* Comment List */
.woocommerce #reviews .commentlist {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 40px !important;
}

.woocommerce #reviews .commentlist li {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%) !important;
    padding: 30px !important;
    border-radius: 20px !important;
    margin-bottom: 24px !important;
    border: 1px solid #f3f4f6 !important;
    box-shadow: 0 2px 10px rgba(6, 78, 59, 0.05) !important;
    transition: all 0.3s ease !important;
}

.woocommerce #reviews .commentlist li:hover {
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.1) !important;
    transform: translateY(-2px) !important;
}

.woocommerce #reviews .commentlist li .comment_container {
    display: flex !important;
    gap: 20px !important;
    align-items: flex-start !important;
}

.woocommerce #reviews .commentlist li img.avatar {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    border: 3px solid #d4af37 !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.woocommerce #reviews .commentlist li .comment-text {
    flex: 1 !important;
}

.woocommerce #reviews .commentlist li .meta {
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid #e5e7eb !important;
}

.woocommerce #reviews .commentlist li .meta strong {
    color: #064e3b !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}

.woocommerce #reviews .commentlist li .meta time {
    color: #6b7280 !important;
    font-size: 14px !important;
    margin-right: 15px !important;
}

.woocommerce #reviews .commentlist li .star-rating {
    color: #d4af37 !important;
    font-size: 16px !important;
    margin-bottom: 10px !important;
}

.woocommerce #reviews .commentlist li p {
    margin: 0 !important;
    color: #4b5563 !important;
    line-height: 1.8 !important;
}

/* Review Form */
.woocommerce #review_form #respond {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%) !important;
    padding: 40px !important;
    border-radius: 24px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.08) !important;
}

.woocommerce #review_form #respond h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #064e3b !important;
    margin-bottom: 24px !important;
}

.woocommerce #review_form #respond p {
    margin-bottom: 20px !important;
}

.woocommerce #review_form #respond label {
    display: block !important;
    margin-bottom: 8px !important;
    color: #064e3b !important;
    font-weight: 600 !important;
    font-size: 15px !important;
}

.woocommerce #review_form #respond input[type="text"],
.woocommerce #review_form #respond input[type="email"],
.woocommerce #review_form #respond textarea {
    width: 100% !important;
    padding: 14px 18px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-family: 'Vazirmatn', sans-serif !important;
    color: #374151 !important;
    background: white !important;
    transition: all 0.3s ease !important;
}

.woocommerce #review_form #respond input[type="text"]:focus,
.woocommerce #review_form #respond input[type="email"]:focus,
.woocommerce #review_form #respond textarea:focus {
    outline: none !important;
    border-color: #047857 !important;
    box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.1) !important;
}

.woocommerce #review_form #respond textarea {
    min-height: 150px !important;
    resize: vertical !important;
    line-height: 1.8 !important;
}

/* Star Rating */
.woocommerce #review_form #respond p.stars {
    margin-bottom: 20px !important;
}

.woocommerce #review_form #respond p.stars label {
    display: inline-block !important;
    margin-left: 10px !important;
}

.woocommerce #review_form #respond p.stars a {
    position: relative !important;
    display: inline-block !important;
    width: 30px !important;
    height: 30px !important;
    overflow: hidden !important;
}

.woocommerce #review_form #respond p.stars a::before {
    content: '\f005' !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 400 !important;
    color: #d1d5db !important;
    font-size: 24px !important;
    transition: color 0.3s !important;
}

.woocommerce #review_form #respond p.stars a:hover::before,
.woocommerce #review_form #respond p.stars a.active::before {
    color: #d4af37 !important;
    font-weight: 700 !important;
}

/* Submit Button */
.woocommerce #review_form #respond input[type="submit"] {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%) !important;
    color: white !important;
    padding: 14px 40px !important;
    border-radius: 50px !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.25) !important;
    font-family: 'Vazirmatn', sans-serif !important;
}

.woocommerce #review_form #respond input[type="submit"]:hover {
    background: linear-gradient(135deg, #047857 0%, #10b981 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.35) !important;
}

/* No Reviews */
.woocommerce-noreviews {
    text-align: center !important;
    padding: 60px 20px !important;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%) !important;
    border-radius: 20px !important;
    border: 2px dashed #e5e7eb !important;
}

.woocommerce-noreviews p {
    color: #6b7280 !important;
    font-size: 16px !important;
    margin: 0 !important;
}

/* ========================================
   RELATED PRODUCTS
   ======================================== */

.woocommerce div.product .related.products {
    margin-top: 80px !important;
}

.woocommerce div.product .related.products h2 {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #064e3b !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
}

.woocommerce div.product .related.products ul {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0 !important;
        transform: translateY(10px) !important;
    }

    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce div.product .woocommerce-tabs {
        padding: 25px !important;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs {
        gap: 10px !important;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }

    .woocommerce #reviews .commentlist li .comment_container {
        flex-direction: column !important;
    }

    .woocommerce #reviews .commentlist li img.avatar {
        width: 50px !important;
        height: 50px !important;
    }

    .woocommerce #review_form #respond {
        padding: 25px !important;
    }
}

@media (max-width: 480px) {
    .woocommerce div.product .woocommerce-tabs ul.tabs {
        flex-direction: column !important;
        gap: 5px !important;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs li {
        width: 100% !important;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
        text-align: center !important;
    }
}

/* ========================================
   WOOCOMMERCE SINGLE PRODUCT - FINAL
   ======================================== */

/* Wrapper */
.wtheme-single-product-wrapper {
    background: #fafaf9;
    padding: 40px 0 80px;
}

.wtheme-single-product-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.wtheme-breadcrumb {
    margin-bottom: 30px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    font-size: 14px;
}

.wtheme-breadcrumb a {
    color: #047857 !important;
}

/* Main Layout */
.wtheme-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.08);
    margin-bottom: 40px;
}

/* Images */
.wtheme-product-images .woocommerce-product-gallery {
    border-radius: 16px;
    overflow: hidden;
}

.wtheme-product-images img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Product Title */
.wtheme-product-summary .product_title {
    font-size: 38px !important;
    font-weight: 700 !important;
    color: #064e3b !important;
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
}

/* Price */
.wtheme-product-summary .price {
    font-size: 32px !important;
    color: #047857 !important;
    font-weight: 700 !important;
    margin: 20px 0 !important;
}

/* Short Description */
.wtheme-product-summary .woocommerce-product-details__short-description {
    color: #4b5563 !important;
    line-height: 1.8 !important;
    margin: 20px 0 !important;
    font-size: 16px !important;
}

/* Add to Cart Form */
.wtheme-product-summary form.cart {
    margin: 30px 0;
    padding: 24px;
    background: #f9fafb;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
}

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

.wtheme-product-summary .qty {
    width: 100px;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #064e3b;
    text-align: center;
}

.wtheme-product-summary .single_add_to_cart_button {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%) !important;
    color: white !important;
    padding: 16px 48px !important;
    border-radius: 50px !important;
    border: none !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.3);
    width: 100%;
}

.wtheme-product-summary .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.4);
}

/* Product Meta */
.wtheme-product-summary .product_meta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.wtheme-product-summary .product_meta>span {
    display: block;
    margin-bottom: 10px;
    color: #6b7280;
    font-size: 14px;
}

.wtheme-product-summary .product_meta strong {
    color: #064e3b !important;
    font-weight: 600;
    margin-left: 8px;
}

/* ========================================
   TABS - BEAUTIFUL DESIGN
   ======================================== */

.wtheme-product-tabs-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.08);
    margin-bottom: 40px;
}

/* Hide default WooCommerce tabs */
.wtheme-product-tabs-wrapper .woocommerce-tabs>ul.tabs,
.wtheme-product-tabs-wrapper .woocommerce-tabs>.panel {
    display: none !important;
}

/* Custom Tabs */
.wtheme-tabs-nav {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 30px !important;
    display: flex !important;
    gap: 15px !important;
    border-bottom: 3px solid #e5e7eb !important;
    flex-wrap: wrap !important;
}

.wtheme-tabs-nav li {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

.wtheme-tabs-nav li a {
    display: block !important;
    padding: 16px 32px !important;
    color: #6b7280 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    border-bottom: 4px solid transparent !important;
    margin-bottom: -3px !important;
    transition: all 0.3s ease !important;
    border-radius: 12px 12px 0 0 !important;
}

.wtheme-tabs-nav li a:hover {
    color: #047857 !important;
    background: rgba(4, 120, 87, 0.05) !important;
}

.wtheme-tabs-nav li.active a {
    color: #064e3b !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(244, 208, 63, 0.15) 100%) !important;
    border-bottom-color: #d4af37 !important;
    font-weight: 700 !important;
}

.wtheme-tabs-panel {
    padding: 20px 0 !important;
    color: #4b5563 !important;
    line-height: 1.8 !important;
    animation: fadeIn 0.5s ease !important;
}

.wtheme-tabs-panel h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #064e3b !important;
    margin-bottom: 20px !important;
}

.wtheme-tabs-panel ul {
    margin: 15px 0 !important;
    padding-right: 20px !important;
}

.wtheme-tabs-panel ul li {
    margin-bottom: 10px !important;
    color: #4b5563 !important;
}

/* ========================================
   FAQ TAB ITEMS
   ======================================== */

.wtheme-faq-tab .faq-item {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%) !important;
    padding: 24px !important;
    border-radius: 16px !important;
    margin-bottom: 20px !important;
    border-right: 4px solid #d4af37 !important;
    box-shadow: 0 2px 10px rgba(6, 78, 59, 0.05) !important;
    transition: all 0.3s ease !important;
}

.wtheme-faq-tab .faq-item:hover {
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.1) !important;
    transform: translateX(-4px) !important;
}

.wtheme-faq-tab .faq-item h4 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #064e3b !important;
    margin: 0 0 12px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.wtheme-faq-tab .faq-item h4 i {
    color: #d4af37 !important;
    font-size: 20px !important;
}

.wtheme-faq-tab .faq-item p {
    margin: 0 !important;
    color: #4b5563 !important;
    line-height: 1.8 !important;
    padding-right: 30px !important;
}

/* ========================================
   RELATED PRODUCTS
   ======================================== */

.wtheme-related-products {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.08);
}

.wtheme-related-products h2 {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #064e3b !important;
    text-align: center !important;
    margin-bottom: 40px !important;
}

.wtheme-related-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ========================================
   ANIMATION
   ======================================== */

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .wtheme-product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }

    html body .product-layout {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .wtheme-product-tabs-wrapper {
        padding: 25px;
    }

    .wtheme-tabs-nav {
        gap: 10px !important;
    }

    .wtheme-tabs-nav li a {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }

    .wtheme-product-summary .product_title {
        font-size: 28px !important;
    }

    .wtheme-product-summary .price {
        font-size: 24px !important;
    }
}

@media (max-width: 480px) {
    .wtheme-tabs-nav {
        flex-direction: column !important;
        gap: 5px !important;
    }

    .wtheme-tabs-nav li {
        width: 100% !important;
    }

    .wtheme-tabs-nav li a {
        text-align: center;
    }
}

/* ========================================
   SINGLE PRODUCT PAGE - COMPLETE REWRITE
   Based on actual HTML structure
   ======================================== */

/* ===== HIDE DUPLICATE H1 FROM SINGLE.PHP ===== */
.single-product article>.product-card>h1:first-of-type,
.single-product article>.product-card>.product-category:empty,
.single-product article>.product-card>div[style*="display: flex; gap: 20px"] {
    display: none !important;
}

/* ===== MAIN PRODUCT CONTAINER ===== */
.single-product article>.product-card {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.single-product article>.product-card>div[style*="margin-top: 40px; padding-top: 20px"] {
    display: none !important;
}

/* ===== WOOCOMMERCE PRODUCT WRAPPER ===== */
.woocommerce div.single-product {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
}

/* ===== BREADCRUMB ===== */
.woocommerce .woocommerce-breadcrumb {
    background: white !important;
    padding: 15px 25px !important;
    border-radius: 12px !important;
    margin-bottom: 30px !important;
    font-size: 14px !important;
    color: #6b7280 !important;
    box-shadow: 0 2px 10px rgba(6, 78, 59, 0.05) !important;
}

.woocommerce .woocommerce-breadcrumb a {
    color: #047857 !important;
    transition: color 0.3s !important;
}

.woocommerce .woocommerce-breadcrumb a:hover {
    color: #d4af37 !important;
}

/* ===== PRODUCT LAYOUT - GRID ===== */
.woocommerce div.single-product .product-layout {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    background: white !important;
    border-radius: 24px !important;
    padding: 50px !important;
    box-shadow: 0 10px 40px rgba(6, 78, 59, 0.08) !important;
    margin-bottom: 40px !important;
    align-items: start !important;
}

/* ===== PRODUCT IMAGES ===== */
.woocommerce div.single-product .product-images {
    border-radius: 20px !important;
    overflow: hidden !important;
    position: sticky !important;
    top: 100px !important;
}

.woocommerce div.single-product .woocommerce-product-gallery {
    border-radius: 20px !important;
    overflow: hidden !important;
}

.woocommerce div.single-product .woocommerce-product-gallery img {
    width: 100% !important;
    height: auto !important;
    border-radius: 20px !important;
}

.woocommerce div.single-product .woocommerce-product-gallery__wrapper {
    border-radius: 20px !important;
    overflow: hidden !important;
}

.woocommerce div.single-product .woocommerce-product-gallery__image {
    border-radius: 20px !important;
    overflow: hidden !important;
}

.woocommerce div.single-product .woocommerce-product-gallery__image--placeholder img {
    border-radius: 20px !important;
}

/* ===== PRODUCT SUMMARY ===== */
.woocommerce div.single-product .product-summary {
    padding: 10px 0 !important;
}

/* Product Title */
.woocommerce div.single-product .product-summary .product_title {
    font-size: 40px !important;
    font-weight: 700 !important;
    color: #064e3b !important;
    margin: 0 0 20px 0 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.5px !important;
}

/* Product Price */
.woocommerce div.single-product .product-summary .price {
    font-size: 36px !important;
    color: #047857 !important;
    font-weight: 700 !important;
    margin: 24px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.woocommerce div.single-product .product-summary .price del {
    color: #9ca3af !important;
    font-size: 22px !important;
    font-weight: 400 !important;
}

.woocommerce div.single-product .product-summary .price ins {
    text-decoration: none !important;
    color: #047857 !important;
    font-weight: 700 !important;
}

/* Short Description */
.woocommerce div.single-product .woocommerce-product-details__short-description {
    color: #4b5563 !important;
    line-height: 1.9 !important;
    margin: 24px 0 !important;
    font-size: 16px !important;
    padding: 20px !important;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%) !important;
    border-radius: 16px !important;
    border-right: 4px solid #d4af37 !important;
}

/* ===== ADD TO CART FORM ===== */
.woocommerce div.single-product form.cart {
    margin: 30px 0 !important;
    padding: 30px !important;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%) !important;
    border-radius: 20px !important;
    border: 1px solid #f3f4f6 !important;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.05) !important;
}

/* Quantity */
.woocommerce div.single-product form.cart .quantity {
    margin-bottom: 20px !important;
    display: inline-block !important;
}

.woocommerce div.single-product form.cart .qty {
    width: 110px !important;
    padding: 14px 18px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #064e3b !important;
    text-align: center !important;
    transition: all 0.3s !important;
    background: white !important;
}

.woocommerce div.single-product form.cart .qty:focus {
    outline: none !important;
    border-color: #047857 !important;
    box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.1) !important;
}

/* Add to Cart Button */
.woocommerce div.single-product form.cart .single_add_to_cart_button {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%) !important;
    color: white !important;
    padding: 18px 50px !important;
    border-radius: 50px !important;
    border: none !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.3) !important;
    width: 100% !important;
    margin-top: 15px !important;
    font-family: 'Vazirmatn', sans-serif !important;
    letter-spacing: 0.3px !important;
}

.woocommerce div.single-product form.cart .single_add_to_cart_button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.4) !important;
    background: linear-gradient(135deg, #047857 0%, #10b981 100%) !important;
}

/* ===== PRODUCT META ===== */
.woocommerce div.single-product .product_meta {
    margin-top: 30px !important;
    padding: 24px !important;
    background: #f9fafb !important;
    border-radius: 16px !important;
    border-top: none !important;
}

.woocommerce div.single-product .product_meta>div,
.woocommerce div.single-product .product_meta>span {
    display: block !important;
    margin-bottom: 12px !important;
    color: #6b7280 !important;
    font-size: 14px !important;
}

.woocommerce div.single-product .product_meta strong {
    color: #064e3b !important;
    font-weight: 600 !important;
    margin-left: 10px !important;
}

.woocommerce div.single-product .product_meta a {
    color: #047857 !important;
    transition: color 0.3s !important;
}

.woocommerce div.single-product .product_meta a:hover {
    color: #d4af37 !important;
}

/* ========================================
   PRODUCT TABS - COMPLETE REDESIGN
   ======================================== */

.woocommerce div.single-product .product-details {
    max-width: 1280px !important;
    margin: 60px auto !important;
    padding: 0 20px !important;
}

.woocommerce div.single-product .woocommerce-tabs {
    background: white !important;
    border-radius: 24px !important;
    padding: 40px !important;
    box-shadow: 0 10px 40px rgba(6, 78, 59, 0.08) !important;
    margin-bottom: 0 !important;
}

/* Tabs Navigation */
.woocommerce div.single-product .woocommerce-tabs ul.tabs {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 40px 0 !important;
    display: flex !important;
    gap: 12px !important;
    border-bottom: 3px solid #f3f4f6 !important;
    flex-wrap: wrap !important;
    background: transparent !important;
}

.woocommerce div.single-product .woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    position: relative !important;
}

.woocommerce div.single-product .woocommerce-tabs ul.tabs li a {
    display: inline-block !important;
    padding: 16px 32px !important;
    color: #6b7280 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    border: none !important;
    border-bottom: 4px solid transparent !important;
    margin-bottom: -3px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 12px 12px 0 0 !important;
    background: transparent !important;
}

.woocommerce div.single-product .woocommerce-tabs ul.tabs li a:hover {
    color: #047857 !important;
    background: rgba(4, 120, 87, 0.05) !important;
}

.woocommerce div.single-product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.single-product .woocommerce-tabs ul.tabs li[aria-selected="true"] a {
    color: #064e3b !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(244, 208, 63, 0.15) 100%) !important;
    border-bottom-color: #d4af37 !important;
    font-weight: 700 !important;
}

/* Tabs Panel */
.woocommerce div.single-product .woocommerce-tabs .panel {
    padding: 30px 10px !important;
    color: #4b5563 !important;
    line-height: 1.9 !important;
    animation: fadeInTab 0.5s ease !important;
    background: transparent !important;
    border: none !important;
}

.woocommerce div.single-product .woocommerce-tabs .panel h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #064e3b !important;
    margin-bottom: 24px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid #f3f4f6 !important;
    position: relative !important;
}

.woocommerce div.single-product .woocommerce-tabs .panel h2::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    right: 0 !important;
    width: 60px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #d4af37, #f4d03f) !important;
}

.woocommerce div.single-product .woocommerce-tabs .panel h3 {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #064e3b !important;
    margin: 24px 0 16px !important;
}

.woocommerce div.single-product .woocommerce-tabs .panel p {
    margin-bottom: 16px !important;
    color: #4b5563 !important;
    font-size: 15px !important;
}

.woocommerce div.single-product .woocommerce-tabs .panel ul {
    margin: 20px 0 !important;
    padding-right: 25px !important;
    list-style: none !important;
}

.woocommerce div.single-product .woocommerce-tabs .panel ul li {
    margin-bottom: 12px !important;
    color: #4b5563 !important;
    padding-right: 25px !important;
    position: relative !important;
    line-height: 1.8 !important;
}

.woocommerce div.single-product .woocommerce-tabs .panel ul li::before {
    content: '\f00c' !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    position: absolute !important;
    right: 0 !important;
    top: 2px !important;
    color: #d4af37 !important;
    font-size: 14px !important;
}

/* ========================================
   FAQ TAB - BEAUTIFUL CARDS
   ======================================== */

.woocommerce div.single-product .wtheme-faq-tab {
    display: block !important;
}

.woocommerce div.single-product .wtheme-faq-tab .faq-item {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%) !important;
    padding: 24px !important;
    border-radius: 16px !important;
    margin-bottom: 20px !important;
    border-right: 4px solid #d4af37 !important;
    box-shadow: 0 2px 10px rgba(6, 78, 59, 0.05) !important;
    transition: all 0.3s ease !important;
}

.woocommerce div.single-product .wtheme-faq-tab .faq-item:hover {
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.12) !important;
    transform: translateX(-4px) !important;
    border-right-color: #047857 !important;
}

.woocommerce div.single-product .wtheme-faq-tab .faq-item h4 {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #064e3b !important;
    margin: 0 0 12px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    line-height: 1.5 !important;
}

.woocommerce div.single-product .wtheme-faq-tab .faq-item h4 i {
    color: #d4af37 !important;
    font-size: 20px !important;
    flex-shrink: 0 !important;
}

.woocommerce div.single-product .wtheme-faq-tab .faq-item p {
    margin: 0 !important;
    color: #4b5563 !important;
    line-height: 1.9 !important;
    padding-right: 30px !important;
    font-size: 15px !important;
}

/* ========================================
   RELATED PRODUCTS
   ======================================== */

.woocommerce div.single-product .related.products {
    margin-top: 80px !important;
    background: white !important;
    border-radius: 24px !important;
    padding: 50px 40px !important;
    box-shadow: 0 10px 40px rgba(6, 78, 59, 0.08) !important;
}

.woocommerce div.single-product .related.products h2 {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #064e3b !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
}

.woocommerce div.single-product .related.products h2 i {
    color: #d4af37 !important;
}

.woocommerce div.single-product .related.products ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ========================================
   COMMENTS & REVIEWS SECTION
   ======================================== */

/* Comments Area Container */
.single-product #comments.comments-area {
    margin-top: 60px !important;
    background: white !important;
    border-radius: 24px !important;
    padding: 50px 40px !important;
    box-shadow: 0 10px 40px rgba(6, 78, 59, 0.08) !important;
}

/* Comment Respond (Form Container) */
.single-product #comments #respond.comment-respond {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%) !important;
    padding: 40px !important;
    border-radius: 20px !important;
    border: 1px solid #f3f4f6 !important;
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.05) !important;
}

/* Reply Title */
.single-product #comments #reply-title {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #064e3b !important;
    margin: 0 0 30px 0 !important;
    padding-bottom: 20px !important;
    border-bottom: 2px solid #f3f4f6 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.single-product #comments #reply-title i {
    color: #d4af37 !important;
    font-size: 24px !important;
}

.single-product #comments #reply-title small {
    margin-right: auto !important;
}

.single-product #comments #reply-title small a {
    color: #ef4444 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
}

.single-product #comments #reply-title small a:hover {
    color: #dc2626 !important;
}

/* Logged In Message */
.single-product #comments .logged-in-as {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
    padding: 16px 20px !important;
    border-radius: 12px !important;
    margin-bottom: 24px !important;
    color: #92400e !important;
    font-size: 14px !important;
    border-right: 4px solid #d4af37 !important;
}

.single-product #comments .logged-in-as a {
    color: #064e3b !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.3s !important;
}

.single-product #comments .logged-in-as a:hover {
    color: #d4af37 !important;
}

/* Required Field Message */
.single-product #comments .required-field-message {
    display: block !important;
    margin-top: 10px !important;
    color: #6b7280 !important;
    font-size: 13px !important;
}

.single-product #comments .required-field-message .required {
    color: #ef4444 !important;
}

/* Comment Form */
.single-product #commentform {
    display: block !important;
}

/* Form Labels */
.single-product #commentform label {
    display: block !important;
    margin-bottom: 10px !important;
    color: #064e3b !important;
    font-weight: 600 !important;
    font-size: 15px !important;
}

.single-product #commentform label .required {
    color: #ef4444 !important;
    margin-right: 4px !important;
}

/* Form Paragraphs */
.single-product #commentform p {
    margin-bottom: 20px !important;
}

/* Textarea */
.single-product #commentform textarea#comment {
    width: 100% !important;
    min-height: 160px !important;
    padding: 16px 20px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 16px !important;
    font-size: 15px !important;
    font-family: 'Vazirmatn', sans-serif !important;
    color: #374151 !important;
    background: white !important;
    transition: all 0.3s ease !important;
    resize: vertical !important;
    line-height: 1.8 !important;
}

.single-product #commentform textarea#comment:focus {
    outline: none !important;
    border-color: #047857 !important;
    box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.1) !important;
}

.single-product #commentform textarea#comment::placeholder {
    color: #9ca3af !important;
}

/* Submit Button */
.single-product #commentform input[type="submit"]#submit {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%) !important;
    color: white !important;
    padding: 16px 48px !important;
    border-radius: 50px !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.3) !important;
    font-family: 'Vazirmatn', sans-serif !important;
    letter-spacing: 0.3px !important;
    margin-top: 10px !important;
}

.single-product #commentform input[type="submit"]#submit:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.4) !important;
    background: linear-gradient(135deg, #047857 0%, #10b981 100%) !important;
}

/* ========================================
   EXISTING COMMENTS LIST
   ======================================== */

.single-product #comments .comment-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 40px 0 !important;
}

.single-product #comments .comment-list li.comment {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%) !important;
    padding: 30px !important;
    border-radius: 20px !important;
    margin-bottom: 24px !important;
    border: 1px solid #f3f4f6 !important;
    box-shadow: 0 2px 10px rgba(6, 78, 59, 0.05) !important;
    transition: all 0.3s ease !important;
}

.single-product #comments .comment-list li.comment:hover {
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.1) !important;
    transform: translateY(-2px) !important;
}

.single-product #comments .comment-author {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 15px !important;
}

.single-product #comments .comment-author img.avatar {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    border: 3px solid #d4af37 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.single-product #comments .comment-author .fn {
    color: #064e3b !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}

.single-product #comments .comment-metadata {
    color: #6b7280 !important;
    font-size: 13px !important;
    margin-bottom: 15px !important;
}

.single-product #comments .comment-metadata a {
    color: #6b7280 !important;
    text-decoration: none !important;
}

.single-product #comments .comment-content {
    color: #4b5563 !important;
    line-height: 1.8 !important;
}

.single-product #comments .comment-content p {
    margin-bottom: 10px !important;
}

.single-product #comments .reply {
    margin-top: 15px !important;
}

.single-product #comments .reply a {
    color: #047857 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.3s !important;
}

.single-product #comments .reply a:hover {
    color: #d4af37 !important;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .woocommerce div.single-product .product-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 30px !important;
    }

    .woocommerce div.single-product .product-images {
        position: static !important;
    }

    .woocommerce div.single-product .product-summary .product_title {
        font-size: 32px !important;
    }

    .woocommerce div.single-product .product-summary .price {
        font-size: 28px !important;
    }
}

@media (max-width: 768px) {
    .woocommerce div.single-product {
        padding: 20px 10px !important;
    }

    .woocommerce div.single-product .product-layout {
        padding: 20px !important;
        gap: 30px !important;
    }

    .woocommerce div.single-product .woocommerce-tabs {
        padding: 25px 20px !important;
    }

    .woocommerce div.single-product .woocommerce-tabs ul.tabs {
        gap: 8px !important;
    }

    .woocommerce div.single-product .woocommerce-tabs ul.tabs li a {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }

    .woocommerce div.single-product .product-summary .product_title {
        font-size: 28px !important;
    }

    .woocommerce div.single-product .product-summary .price {
        font-size: 24px !important;
    }

    .woocommerce div.single-product form.cart .single_add_to_cart_button {
        padding: 16px 30px !important;
        font-size: 15px !important;
    }

    .single-product #comments.comments-area {
        padding: 30px 20px !important;
    }

    .single-product #comments #respond.comment-respond {
        padding: 25px 20px !important;
    }

    .single-product #commentform input[type="submit"]#submit {
        width: 100% !important;
        padding: 14px 30px !important;
    }

    .woocommerce div.single-product .related.products {
        padding: 30px 20px !important;
    }
}

@media (max-width: 480px) {
    .woocommerce div.single-product .woocommerce-tabs ul.tabs {
        flex-direction: column !important;
        gap: 5px !important;
    }

    .woocommerce div.single-product .woocommerce-tabs ul.tabs li {
        width: 100% !important;
    }

    .woocommerce div.single-product .woocommerce-tabs ul.tabs li a {
        text-align: center !important;
        width: 100% !important;
    }

    .woocommerce div.single-product .product-summary .product_title {
        font-size: 24px !important;
    }

    .woocommerce div.single-product .product-summary .price {
        font-size: 22px !important;
    }

    .woocommerce div.single-product .related.products ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================
   COMMENT FORM - GUEST USERS (NOT LOGGED IN)
   ======================================== */

/* Comment Form Container */
.single-product #commentform.comment-form {
    display: block !important;
}

/* Form Notes (Email won't be published) */
.single-product #commentform .comment-notes,
.single-product #commentform .logged-in-as {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
    padding: 16px 20px !important;
    border-radius: 12px !important;
    margin-bottom: 24px !important;
    color: #92400e !important;
    font-size: 14px !important;
    border-right: 4px solid #d4af37 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.single-product #commentform .comment-notes #email-notes {
    color: #92400e !important;
    font-weight: 500 !important;
}

.single-product #commentform .comment-notes .required-field-message {
    color: #6b7280 !important;
    font-size: 13px !important;
    margin-top: 5px !important;
}

/* Required Field Asterisk */
.single-product #commentform .required {
    color: #ef4444 !important;
    font-weight: 700 !important;
    margin-right: 4px !important;
}

/* Form Paragraphs */
.single-product #commentform p {
    margin-bottom: 20px !important;
    display: block !important;
}

/* Labels */
.single-product #commentform label {
    display: block !important;
    margin-bottom: 10px !important;
    color: #064e3b !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: color 0.3s !important;
}

.single-product #commentform label:hover {
    color: #047857 !important;
}

/* Text Inputs */
.single-product #commentform input[type="text"],
.single-product #commentform input[type="email"],
.single-product #commentform input[type="url"] {
    width: 100% !important;
    padding: 14px 18px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-family: 'Vazirmatn', sans-serif !important;
    color: #374151 !important;
    background: white !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.single-product #commentform input[type="text"]:focus,
.single-product #commentform input[type="email"]:focus,
.single-product #commentform input[type="url"]:focus {
    outline: none !important;
    border-color: #047857 !important;
    box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.1) !important;
}

.single-product #commentform input[type="text"]::placeholder,
.single-product #commentform input[type="email"]::placeholder,
.single-product #commentform input[type="url"]::placeholder {
    color: #9ca3af !important;
}

/* Textarea */
.single-product #commentform textarea#comment {
    width: 100% !important;
    min-height: 160px !important;
    padding: 16px 20px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 16px !important;
    font-size: 15px !important;
    font-family: 'Vazirmatn', sans-serif !important;
    color: #374151 !important;
    background: white !important;
    transition: all 0.3s ease !important;
    resize: vertical !important;
    line-height: 1.8 !important;
    box-sizing: border-box !important;
}

.single-product #commentform textarea#comment:focus {
    outline: none !important;
    border-color: #047857 !important;
    box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.1) !important;
}

.single-product #commentform textarea#comment::placeholder {
    color: #9ca3af !important;
}

/* Checkbox Container */
.single-product #commentform p.comment-form-cookies-consent {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-top: 20px !important;
    padding: 16px !important;
    background: #f9fafb !important;
    border-radius: 12px !important;
    border: 1px solid #f3f4f6 !important;
}

/* Checkbox */
.single-product #commentform input[type="checkbox"]#wp-comment-cookies-consent {
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    cursor: pointer !important;
    accent-color: #047857 !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

/* Checkbox Label */
.single-product #commentform p.comment-form-cookies-consent label {
    margin: 0 !important;
    color: #4b5563 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    line-height: 1.6 !important;
}

.single-product #commentform p.comment-form-cookies-consent label:hover {
    color: #064e3b !important;
}

/* Submit Button */
.single-product #commentform input[type="submit"]#submit {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%) !important;
    color: white !important;
    padding: 16px 48px !important;
    border-radius: 50px !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.3) !important;
    font-family: 'Vazirmatn', sans-serif !important;
    letter-spacing: 0.3px !important;
    margin-top: 10px !important;
    width: auto !important;
}

.single-product #commentform input[type="submit"]#submit:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.4) !important;
    background: linear-gradient(135deg, #047857 0%, #10b981 100%) !important;
}

/* ========================================
   MOBILE RESPONSIVE - COMMENT FORM
   ======================================== */

@media (max-width: 768px) {

    /* Comment Form Container */
    .single-product #comments.comments-area {
        padding: 30px 20px !important;
        margin-top: 40px !important;
    }

    .single-product #comments #respond.comment-respond {
        padding: 25px 20px !important;
    }

    /* Reply Title */
    .single-product #comments #reply-title {
        font-size: 22px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .single-product #comments #reply-title small {
        margin-right: 0 !important;
        margin-top: 10px !important;
        width: 100% !important;
    }

    /* Notes Container */
    .single-product #commentform .comment-notes,
    .single-product #commentform .logged-in-as {
        padding: 14px 16px !important;
        font-size: 13px !important;
    }

    /* Labels */
    .single-product #commentform label {
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }

    /* Inputs */
    .single-product #commentform input[type="text"],
    .single-product #commentform input[type="email"],
    .single-product #commentform input[type="url"] {
        padding: 12px 16px !important;
        font-size: 14px !important;
    }

    /* Textarea */
    .single-product #commentform textarea#comment {
        min-height: 140px !important;
        padding: 14px 16px !important;
        font-size: 14px !important;
    }

    /* Checkbox Container */
    .single-product #commentform p.comment-form-cookies-consent {
        flex-direction: row !important;
        align-items: flex-start !important;
        padding: 14px !important;
        gap: 10px !important;
    }

    .single-product #commentform p.comment-form-cookies-consent input[type="checkbox"] {
        width: 18px !important;
        height: 18px !important;
        margin-top: 2px !important;
    }

    .single-product #commentform p.comment-form-cookies-consent label {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    /* Submit Button */
    .single-product #commentform input[type="submit"]#submit {
        width: 100% !important;
        padding: 14px 30px !important;
        font-size: 15px !important;
    }
}

@media (max-width: 480px) {

    /* Smaller Screens */
    .single-product #comments.comments-area {
        padding: 25px 15px !important;
        border-radius: 16px !important;
    }

    .single-product #comments #respond.comment-respond {
        padding: 20px 15px !important;
        border-radius: 16px !important;
    }

    /* Reply Title */
    .single-product #comments #reply-title {
        font-size: 20px !important;
    }

    .single-product #comments #reply-title i {
        font-size: 20px !important;
    }

    /* Notes */
    .single-product #commentform .comment-notes,
    .single-product #commentform .logged-in-as {
        padding: 12px 14px !important;
        font-size: 12px !important;
    }

    /* Labels */
    .single-product #commentform label {
        font-size: 13px !important;
    }

    /* Inputs */
    .single-product #commentform input[type="text"],
    .single-product #commentform input[type="email"],
    .single-product #commentform input[type="url"] {
        padding: 11px 14px !important;
        font-size: 13px !important;
    }

    /* Textarea */
    .single-product #commentform textarea#comment {
        min-height: 120px !important;
        padding: 12px 14px !important;
        font-size: 13px !important;
    }

    /* Checkbox */
    .single-product #commentform p.comment-form-cookies-consent {
        padding: 12px !important;
    }

    .single-product #commentform p.comment-form-cookies-consent input[type="checkbox"] {
        width: 16px !important;
        height: 16px !important;
    }

    .single-product #commentform p.comment-form-cookies-consent label {
        font-size: 12px !important;
    }

    /* Submit Button */
    .single-product #commentform input[type="submit"]#submit {
        padding: 13px 25px !important;
        font-size: 14px !important;
    }
}

/* ========================================
   EXTRA MOBILE FIXES - GENERAL
   ======================================== */

@media (max-width: 768px) {

    /* Header Search */
    .header-search {
        order: 3 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 15px !important;
    }

    /* Navigation */
    .main-navigation {
        display: none !important;
    }

    /* Product Grid */
    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
        gap: 20px !important;
    }

    /* Product Cards */
    .product-card {
        border-radius: 16px !important;
    }

    .product-card .product-image-wrapper {
        height: 220px !important;
    }

    /* Buttons */
    .btn-luxury,
    .btn-gold {
        padding: 10px 24px !important;
        font-size: 14px !important;
    }

    /* Hero Section */
    .hero-section {
        padding: 80px 0 !important;
    }

    .hero-title {
        font-size: 32px !important;
    }

    .hero-description {
        font-size: 16px !important;
    }

    /* Footer Grid */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .woocommerce.columns-4 {
        columns: 1 !important;
    }
}

@media (max-width: 480px) {

    /* Very Small Screens */
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .product-card .product-image-wrapper {
        height: 260px !important;
    }

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

    .price-current {
        font-size: 20px !important;
    }

    /* Mobile Navigation */
    .mobile-nav {
        display: flex !important;
    }

    body {
        padding-bottom: 80px !important;
    }
}

/* ========================================
   SHOP PAGE - MOBILE FIX
   ======================================== */

/* Hide duplicate ordering forms */
.woocommerce .woocommerce-ordering:nth-of-type(2),
.woocommerce .woocommerce-result-count:nth-of-type(2) {
    display: none !important;
}

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

/* Products Grid - Tablet */
@media (max-width: 992px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
        gap: 24px !important;
    }
}

/* Products Grid - Mobile */
@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    /* Product Card */
    .woocommerce ul.products li.product {
        background: white !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        border: 1px solid rgba(212, 175, 55, 0.15) !important;
        box-shadow: 0 2px 10px rgba(6, 78, 59, 0.05) !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Product Image */
    .woocommerce ul.products li.product img {
        width: 100% !important;
        height: 180px !important;
        object-fit: cover !important;
        border-radius: 16px 16px 0 0 !important;
        display: block !important;
    }

    /* Product Title */
    .woocommerce ul.products li.product .woocommerce-loop-product__title,
    .woocommerce ul.products li.product h2 {
        font-size: 14px !important;
        font-weight: 600 !important;
        color: #064e3b !important;
        margin: 0 !important;
        padding: 12px 12px 8px !important;
        line-height: 1.4 !important;
        min-height: 40px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    /* Product Price */
    .woocommerce ul.products li.product .price {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #047857 !important;
        padding: 0 12px 10px !important;
        margin: 0 !important;
        display: block !important;
    }

    .woocommerce ul.products li.product .price del {
        color: #9ca3af !important;
        font-size: 12px !important;
        margin-left: 6px !important;
        display: inline-block !important;
    }

    .woocommerce ul.products li.product .price ins {
        text-decoration: none !important;
    }

    /* Add to Cart Button */
    .woocommerce ul.products li.product .button,
    .woocommerce ul.products li.product a.button {
        display: block !important;
        margin: 0 12px 12px !important;
        padding: 10px 16px !important;
        background: linear-gradient(135deg, #064e3b 0%, #047857 100%) !important;
        color: white !important;
        border-radius: 50px !important;
        border: none !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        text-align: center !important;
        cursor: pointer !important;
        transition: all 0.3s !important;
        box-shadow: 0 2px 10px rgba(6, 78, 59, 0.2) !important;
        width: calc(100% - 24px) !important;
    }

    .woocommerce ul.products li.product .button:hover,
    .woocommerce ul.products li.product a.button:hover {
        background: linear-gradient(135deg, #047857 0%, #10b981 100%) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 15px rgba(6, 78, 59, 0.3) !important;
    }

    /* Sale Badge */
    .woocommerce ul.products li.product .onsale {
        position: absolute !important;
        top: 8px !important;
        right: 8px !important;
        background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%) !important;
        color: #064e3b !important;
        padding: 4px 10px !important;
        border-radius: 50px !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        margin: 0 !important;
        min-height: auto !important;
        min-width: auto !important;
        line-height: 1.4 !important;
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4) !important;
        z-index: 10 !important;
    }

    /* Star Rating */
    .woocommerce ul.products li.product .star-rating {
        padding: 0 12px 8px !important;
        margin: 0 !important;
        font-size: 12px !important;
    }
}

/* Products Grid - Very Small Mobile */
@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .woocommerce ul.products li.product img {
        height: 240px !important;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title,
    .woocommerce ul.products li.product h2 {
        font-size: 16px !important;
        min-height: 45px !important;
        padding: 14px 14px 10px !important;
    }

    .woocommerce ul.products li.product .price {
        font-size: 18px !important;
        padding: 0 14px 12px !important;
    }

    .woocommerce ul.products li.product .button,
    .woocommerce ul.products li.product a.button {
        margin: 0 14px 14px !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
        width: calc(100% - 28px) !important;
    }
}

/* ========================================
   SHOP PAGE - ORDERING & RESULT COUNT
   ======================================== */

/* Result Count */
.woocommerce .woocommerce-result-count {
    margin-bottom: 20px !important;
    color: #6b7280 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

/* Ordering Form */
.woocommerce .woocommerce-ordering {
    margin-bottom: 30px !important;
}

.woocommerce .woocommerce-ordering select {
    padding: 12px 20px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    color: #064e3b !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    background: white !important;
    min-width: 200px !important;
}

.woocommerce .woocommerce-ordering select:focus {
    outline: none !important;
    border-color: #047857 !important;
    box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.1) !important;
}

/* Mobile Ordering */
@media (max-width: 768px) {
    .woocommerce .woocommerce-result-count {
        font-size: 13px !important;
        margin-bottom: 15px !important;
    }

    .woocommerce .woocommerce-ordering {
        margin-bottom: 20px !important;
    }

    .woocommerce .woocommerce-ordering select {
        padding: 10px 16px !important;
        font-size: 13px !important;
        min-width: 150px !important;
    }
}

/* ========================================
   HIDE DUPLICATE ELEMENTS
   ======================================== */

/* Hide duplicate page title in article */
.single-product article>.product-card>h1:first-of-type,
.page-template-default article>.product-card>h1:first-of-type {
    display: none !important;
}

/* Hide article padding */
.single-product article>.product-card,
.page-template-default article>.product-card {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* ========================================
   PRODUCT GALLERY - BEAUTIFUL DESIGN
   ======================================== */

/* Main Gallery Container */
.product-images {
    position: relative !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.15) !important;
    background: white !important;
}

/* Hide Duplicate Gallery */
.woocommerce div.single-product .woocommerce-product-gallery:nth-of-type(2) {
    display: none !important;
}

/* Main Gallery */
.woocommerce div.single-product .woocommerce-product-gallery {
    position: relative !important;
    margin: 0 !important;
}

/* Gallery Trigger (Zoom Button) */
.woocommerce-product-gallery__trigger {
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 100 !important;
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.3) !important;
    border: 3px solid white !important;
}

.woocommerce-product-gallery__trigger:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.4) !important;
    background: linear-gradient(135deg, #047857 0%, #10b981 100%) !important;
}

.woocommerce-product-gallery__trigger span {
    font-size: 22px !important;
    line-height: 1 !important;
}

.woocommerce-product-gallery__trigger img.emoji {
    width: 24px !important;
    height: 24px !important;
    display: block !important;
}

/* Flex Viewport (Main Image Area) */
.flex-viewport {
    border-radius: 24px !important;
    overflow: hidden !important;
    background: #f9fafb !important;
}

/* Main Image Wrapper */
.woocommerce-product-gallery__wrapper {
    border-radius: 24px !important;
    overflow: hidden !important;
}

/* Main Image */
.woocommerce-product-gallery__image {
    border-radius: 24px !important;
    overflow: hidden !important;
    display: block !important;
}

.woocommerce-product-gallery__image a {
    display: block !important;
    border-radius: 24px !important;
    overflow: hidden !important;
}

.woocommerce-product-gallery__image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 24px !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.woocommerce-product-gallery__image:hover img {
    transform: scale(1.02) !important;
}

/* Thumbnails Navigation */
.flex-control-nav.flex-control-thumbs {
    display: flex !important;
    gap: 12px !important;
    list-style: none !important;
    padding: 20px !important;
    margin: 0 !important;
    background: white !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: thin !important;
    scrollbar-color: #d4af37 #f3f4f6 !important;
}

.flex-control-nav.flex-control-thumbs::-webkit-scrollbar {
    height: 8px !important;
}

.flex-control-nav.flex-control-thumbs::-webkit-scrollbar-track {
    background: #f3f4f6 !important;
    border-radius: 10px !important;
}

.flex-control-nav.flex-control-thumbs::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%) !important;
    border-radius: 10px !important;
}

.flex-control-nav.flex-control-thumbs li {
    flex: 0 0 auto !important;
    width: 80px !important;
    height: 80px !important;
    cursor: pointer !important;
    opacity: 0.6 !important;
    transition: all 0.3s !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 2px solid transparent !important;
}

.flex-control-nav.flex-control-thumbs li:hover {
    opacity: 0.9 !important;
    border-color: #d4af37 !important;
    transform: translateY(-2px) !important;
}

.flex-control-nav.flex-control-thumbs li.flex-active {
    opacity: 1 !important;
    border-color: #047857 !important;
    box-shadow: 0 4px 15px rgba(4, 120, 87, 0.3) !important;
}

.flex-control-nav.flex-control-thumbs li img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    display: block !important;
}

/* Sale Badge */
.onsale {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    z-index: 100 !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4) !important;
    animation: pulse 2s infinite !important;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1) !important;
    }

    50% {
        transform: scale(1.05) !important;
    }
}

/* ========================================
   RESPONSIVE GALLERY
   ======================================== */

@media (max-width: 768px) {
    .product-images {
        border-radius: 16px !important;
    }

    .woocommerce-product-gallery__trigger {
        width: 45px !important;
        height: 45px !important;
        top: 15px !important;
        left: 15px !important;
    }

    .woocommerce-product-gallery__trigger span,
    .woocommerce-product-gallery__trigger img.emoji {
        font-size: 20px !important;
        width: 20px !important;
        height: 20px !important;
    }

    .flex-control-nav.flex-control-thumbs {
        gap: 8px !important;
        padding: 15px !important;
    }

    .flex-control-nav.flex-control-thumbs li {
        width: 70px !important;
        height: 70px !important;
        border-radius: 10px !important;
    }

    .onsale {
        padding: 6px 16px !important;
        font-size: 12px !important;
        top: 15px !important;
        right: 15px !important;
    }
}

@media (max-width: 480px) {
    .flex-control-nav.flex-control-thumbs {
        gap: 6px !important;
        padding: 12px !important;
    }

    .flex-control-nav.flex-control-thumbs li {
        width: 60px !important;
        height: 60px !important;
    }

    .woocommerce-product-gallery__trigger {
        width: 40px !important;
        height: 40px !important;
    }

    .onsale {
        padding: 5px 12px !important;
        font-size: 11px !important;
    }
}

/* ========================================
   GALLERY LOADING STATE
   ======================================== */

.woocommerce-product-gallery--without-images,
.woocommerce-product-gallery__image--placeholder {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%) !important;
    min-height: 500px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.woocommerce-product-gallery__image--placeholder img {
    opacity: 0.5 !important;
    max-width: 200px !important;
}

/* ========================================
   ZOOM IMAGE STYLES
   ======================================== */

.zoomImg {
    opacity: 0 !important;
    transition: opacity 0.3s !important;
}

.woocommerce-product-gallery__image:hover .zoomImg {
    opacity: 1 !important;
}

/* ========================================
   CATEGORY CARDS - BEAUTIFUL DESIGN
   ======================================== */

/* Main Container */
div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 30px !important;
    margin: 40px 0 !important;
}

/* Category Card Base */
div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] a {
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.95) 0%, rgba(4, 120, 87, 0.92) 100%) !important;
    border-radius: 28px !important;
    padding: 40px 30px !important;
    color: white !important;
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    text-decoration: none !important;
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.2) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
}

/* Hover Effect */
div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] a:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 25px 50px rgba(6, 78, 59, 0.3) !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
}

/* Shimmer Effect on Hover */
div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] a::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent) !important;
    transition: left 0.6s !important;
}

div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] a:hover::before {
    left: 100% !important;
}

/* Premium Badge */
div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] a div[style*="position: absolute; top: 16px; left: 16px"] span {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%) !important;
    color: #064e3b !important;
    padding: 8px 16px !important;
    border-radius: 50px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: all 0.3s !important;
}

div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] a:hover div[style*="position: absolute; top: 16px; left: 16px"] span {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5) !important;
}

/* Icon Container */
div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] a div[style*="width: 80px; height: 80px"] {
    width: 90px !important;
    height: 90px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(15px) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 24px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] a:hover div[style*="width: 80px; height: 80px"] {
    transform: scale(1.1) rotate(5deg) !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Icon */
div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] a div[style*="width: 80px; height: 80px"] i {
    font-size: 40px !important;
    color: #f4d03f !important;
    transition: all 0.4s !important;
}

div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] a:hover div[style*="width: 80px; height: 80px"] i {
    transform: scale(1.1) !important;
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(244, 208, 63, 0.8) !important;
}

/* Title */
div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] a h3 {
    font-size: 26px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    color: white !important;
    transition: all 0.3s !important;
}

div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] a:hover h3 {
    transform: translateY(-2px) !important;
}

/* Description */
div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] a p {
    opacity: 0.9 !important;
    margin-bottom: 20px !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    transition: all 0.3s !important;
}

div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] a:hover p {
    opacity: 1 !important;
}

/* View More Link */
div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] a span[style*="display: inline-flex; align-items: center; color: #f4d03f"] {
    display: inline-flex !important;
    align-items: center !important;
    color: #f4d03f !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: all 0.3s !important;
    gap: 8px !important;
}

div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] a:hover span[style*="display: inline-flex; align-items: center; color: #f4d03f"] {
    color: #ffffff !important;
    transform: translateX(-5px) !important;
}

div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] a span[style*="display: inline-flex; align-items: center; color: #f4d03f"] i {
    transition: all 0.3s !important;
}

div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] a:hover span[style*="display: inline-flex; align-items: center; color: #f4d03f"] i {
    transform: translateX(-5px) !important;
}

/* ========================================
   CATEGORY CARDS - RESPONSIVE
   ======================================== */


/* ========================================
   MOBILE HEADER - HAMBURGER MENU
   ======================================== */

/* Header Container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-link {
    display: block;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.3);
}

.logo-icon i {
    color: #f4d03f;
    font-size: 22px;
}

.logo-text {
    display: block;
}

.site-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.site-description {
    font-size: 11px;
    color: #6b7280;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: #064e3b;
    border-radius: 3px;
    transition: all 0.3s;
}

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

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

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

/* Desktop Navigation */
.main-navigation {
    flex: 1;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.nav-menu a {
    color: #374151;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    display: block;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #047857;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transition: width 0.3s;
}

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

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-search-toggle,
.mobile-search-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f9fafb;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    transition: all 0.3s;
}

.header-search-toggle:hover,
.mobile-search-toggle:hover {
    background: #ecfdf5;
    color: #047857;
}

.header-icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s;
}

.header-icon-btn:hover {
    background: #ecfdf5;
    color: #047857;
}

.header-icon-btn .count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #064e3b;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Cart Button */
.mobile-cart-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
}

.mobile-cart-btn .count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #d4af37;
    color: #064e3b;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Search Overlay */
.mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-search-overlay .search-form {
    display: flex;
    gap: 10px;
}

.mobile-search-overlay .search-form input[type="search"] {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 15px;
    font-family: 'Vazirmatn', sans-serif;
}

.mobile-search-overlay .search-form button[type="submit"] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    color: white;
    border: none;
    cursor: pointer;
}

.mobile-search-overlay .close-search {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #374151;
    border: none;
    cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: white;
    z-index: 1000;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-nav-menu {
    padding: 80px 20px 20px;
}

.mobile-menu-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-items li {
    margin-bottom: 8px;
}

.mobile-menu-items a {
    display: block;
    padding: 14px 16px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s;
}

.mobile-menu-items a:hover {
    background: #f9fafb;
    color: #047857;
}

.mobile-menu-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.mobile-menu-item:hover {
    background: #f9fafb;
    color: #047857;
}

.mobile-menu-item .count {
    margin-right: auto;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #064e3b;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-navigation {
        display: none !important;
    }

    .header-actions:not(.md\\:hidden) {
        display: none !important;
    }

    .logo-text {
        display: none;
    }

    .logo-icon {
        width: 44px;
        height: 44px;
    }

    .logo-icon i {
        font-size: 20px;
    }

    .header-container {
        padding: 12px 16px;
        gap: 12px;
    }
}

@media (min-width: 769px) {

    .mobile-menu-toggle,
    .mobile-search-overlay,
    .mobile-menu-overlay,
    .mobile-cart-btn,
    .mobile-search-toggle {
        display: none !important;
    }
}
