/*
Theme Name: EmadBRZ
Description: Modern black and white WordPress theme with advanced animations
Author: EmadBRZ
Version: 3.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: emadbrz
Cache Buster: Uniform background - seamless design
*/

/* ==========================================================================
   CSS Variables - Color Palette
   ========================================================================== */
:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --gray-dark: #1a1a1a;
    --gray-medium: #333333;
    --gray-light: #666666;
    --gray-lighter: #999999;
    --gray-lightest: #f5f5f5;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    direction: ltr !important;
}

* {
    direction: inherit;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* مخفی کردن تمام اسکرول بارها در سایت */
*::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

body {
    font-family: 'IRANSansX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    background-color: var(--primary-black);
    color: var(--primary-white);
    direction: rtl !important;
    text-align: right;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-y: auto;
    -moz-osx-font-smoothing: grayscale;
}

/* Force header and footer visibility on all pages except homepage */
body:not(.home) .site-header {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none !important;
    position: relative;
    z-index: 1000;
}

body:not(.home) .site-footer {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none !important;
    display: block !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
}

body.home {
    min-height: 100vh;
    height: auto;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'IRANSansX', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

h1 { font-size: 3.5rem; font-weight: 900; }
h2 { font-size: 2.8rem; font-weight: 800; }
h3 { font-size: 2.2rem; font-weight: 700; }
h4 { font-size: 1.8rem; font-weight: 600; }
h5 { font-size: 1.4rem; font-weight: 500; }
h6 { font-size: 1.2rem; font-weight: 500; }

p {
    margin-bottom: 1rem;
    color: var(--gray-lighter);
    line-height: 1.8;
}

a {
    color: var(--primary-white);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

a:hover {
    color: var(--gray-lighter);
    transform: translateY(-2px);
}

/* ==========================================================================
   Layout Components
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

/* ==========================================================================
   Site Layout
   ========================================================================== */
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: visible;
}

body.home .site {
    min-height: 100vh;
    height: auto;
}

/* ==========================================================================
   Luxury Header Styles with Animations
   ========================================================================== */
.site-header {
    background: var(--primary-black);
    padding: 8px 0;
    z-index: 1000;
    transition: all var(--transition-medium);
    flex-shrink: 0;
    position: relative;
    height: 60px;
    opacity: 0;
    transform: translateY(-30px);
    animation: headerSlideDown 0.5s ease-out 0.1s forwards;
}

/* Override header animation for non-home pages */
body:not(.home) .site-header {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none !important;
}

@keyframes headerSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* ==========================================
   Loading Screen Styles
   ========================================== */

/* Prevent body scroll when loading screen is visible */
body:has(.loading-screen:not(.hidden)) {
    overflow: hidden !important;
    height: 100vh !important;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    will-change: opacity, visibility;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-screen[style*="display: none"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.loading-logo {
    animation: logoFloat 2s ease-in-out infinite;
}

.loading-logo .logo-animate {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.loading-logo .logo-text-animate {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

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

/* Loading Spinner */
.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: spinnerRotate 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: rgba(255, 255, 255, 0.9);
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: rgba(255, 255, 255, 0.7);
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: rgba(255, 255, 255, 0.5);
}

@keyframes spinnerRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Loading Screen */
@media (max-width: 768px) {
    .loading-logo .logo-animate {
        max-width: 140px;
    }
    
    .loading-logo .logo-text-animate {
        font-size: 2.2rem;
    }
    
    .loading-content {
        gap: 30px;
    }
    
    .loading-spinner {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .loading-logo .logo-animate {
        max-width: 120px;
    }
    
    .loading-logo .logo-text-animate {
        font-size: 1.8rem;
    }
    
    .loading-content {
        gap: 25px;
    }
    
    .loading-spinner {
        width: 50px;
        height: 50px;
    }
}

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

/* Logo Section with Animation */
.header-logo {
    display: flex;
    align-items: center;
    order: 1; /* Right position in RTL */
    opacity: 0;
    transform: translateX(30px);
    animation: logoSlideIn 0.4s ease-out 0.2s forwards;
}

@keyframes logoSlideIn {
    0% {
        opacity: 0;
        transform: translateX(15px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-link {
    display: block;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 40px !important;
    width: auto;
    object-fit: contain;
    filter: brightness(1);
    transition: all var(--transition-fast);
}

.logo-image:hover {
    filter: brightness(1.1);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-white);
    letter-spacing: -0.5px;
    font-family: 'IRANSansX', sans-serif;
}
/* Header Icons with Animation */
.header-icons {
    display: flex;
    align-items: center;
    gap: 24px;
    order: 3; /* Left position */
    opacity: 0;
    transform: translateX(-30px);
    animation: iconsSlideIn 0.6s ease-out 0.8s forwards;
}

@keyframes iconsSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 50%;
    transition: all var(--transition-fast);
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* backdrop-filter removed for performance */
    opacity: 0;
    transform: scale(0.8);
    animation: iconScaleIn 0.4s ease-out forwards;
    width: 48px;
    height: 48px;
}

.header-icon:nth-child(1) { animation-delay: 1.0s; }
.header-icon:nth-child(2) { animation-delay: 1.1s; }
.header-icon:nth-child(3) { animation-delay: 1.2s; }

/* Style for button header-icons */
button.header-icon,
.header-icon[type="button"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
}

button.header-icon:hover,
.header-icon[type="button"]:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

@keyframes iconScaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.header-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.header-icon svg {
    transition: all var(--transition-fast);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
    width: 20px;
    height: 20px;
}

.header-icon:hover svg {
    transform: scale(1.1);
    stroke: var(--primary-white);
}

.icon-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: none;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--primary-white);
    color: var(--primary-black);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 20px;
    padding: 0 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-black);
    font-family: 'IRANSansX', sans-serif;
    line-height: 1;
    z-index: 10;
}

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

/* CSS Fallback Icons */
.cart-icon::after {
    content: '';
    display: none;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'%3E%3C/circle%3E%3Ccircle cx='20' cy='21' r='1'%3E%3C/circle%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Show fallback if SVG is not supported */
.no-svg .cart-icon svg {
    display: none;
}

.no-svg .cart-icon::after {
    display: block;
}

/* Force visibility for cart icon */
.cart-icon {
    visibility: visible !important;
    opacity: 1 !important;
}

.cart-icon svg {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Unicode emoji fallback */
.cart-icon-fallback {
    display: none;
    font-size: 18px;
    line-height: 1;
}

/* Show fallback if SVG fails to load */
.cart-icon svg[src=""],
.cart-icon svg:not([viewBox]) {
    display: none;
}

.cart-icon svg[src=""] + .cart-icon-fallback,
.cart-icon svg:not([viewBox]) + .cart-icon-fallback {
    display: block;
}

/* Cart Icon Enhanced */
.cart-icon {
    min-width: 44px;
    min-height: 44px;
}

/* Mobile Menu Toggle with Animation */
/* Hide mobile menu elements - not needed */
.mobile-menu-toggle,
.mobile-menu {
    display: none !important;
}

/* ==========================================================================
   Main Content
   ========================================================================== */
.site-content {
    flex: 1;
    background: var(--primary-black);
    position: relative;
}

body.home .site-content {
    min-height: calc(100vh - 60px);
}

/* ==========================================================================
   Cards & Components with Animations
   ========================================================================== */
.card {
    background: var(--gray-dark);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition-medium);
    border: 1px solid var(--gray-medium);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
    animation: cardSlideDown 0.8s ease-out forwards;
}

/* Stagger animation delays for cards */
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }
.card:nth-child(7) { animation-delay: 0.7s; }
.card:nth-child(8) { animation-delay: 0.8s; }
.card:nth-child(9) { animation-delay: 0.9s; }
.card:nth-child(10) { animation-delay: 1.0s; }

@keyframes cardSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    60% {
        opacity: 0.8;
        transform: translateY(5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-white), var(--gray-lighter));
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--box-shadow-hover);
}

.card:hover::before {
    transform: scaleX(1);
}

/* Enhanced Card Animations */
.card.animate-in {
    animation: cardBounceIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes cardBounceIn {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateY(10px) scale(1.05);
    }
    80% {
        opacity: 0.95;
        transform: translateY(-5px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Card Content Animations */
.card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
    opacity: 0;
    transform: translateY(20px);
    animation: cardContentFadeIn 0.6s ease-out 0.3s forwards;
}

.card p {
    opacity: 0;
    transform: translateY(20px);
    animation: cardContentFadeIn 0.6s ease-out 0.5s forwards;
}

@keyframes cardContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Buttons with Animations
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-white);
    color: var(--primary-black);
    border: 2px solid var(--primary-white);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-medium);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: buttonFadeIn 0.6s ease-out 0.7s forwards;
}

@keyframes buttonFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    transition: var(--transition-medium);
    z-index: -1;
}

.btn:hover {
    color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn:hover::before {
    left: 0;
}

.btn-outline {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.btn-outline::before {
    background: var(--primary-white);
}

.btn-outline:hover {
    color: var(--primary-black);
}

/* Footer section - Full screen footer styles are defined below */

/* ==========================================================================
   Animation Classes
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-medium);
}

.slide-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-medium);
}

.slide-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-medium);
}

.scale-up.active {
    opacity: 1;
    transform: scale(1);
}

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


@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.7rem; }
    
    .site-content {
        padding: 40px 0;
    }
    
    .card {
        padding: 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Mobile Footer */
    .footer-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-description {
        max-width: 100%;
        text-align: center;
    }

    .footer-right {
        align-items: center;
        text-align: center;
    }
}

@keyframes attractiveMobile {
    0% {
        opacity: 0;
        transform: translateY(-150px) scale(0.7) rotateX(30deg);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-30px) scale(0.9) rotateX(8deg);
    }
    80% {
        opacity: 0.95;
        transform: translateY(5px) scale(1.02) rotateX(-2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.4rem; }
    
    .site-content {
        padding: 30px 0;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }


/* ==========================================================================
   Hero Section - Full Screen Grid Layout
   ========================================================================== */
/* Hero Section - Only full-screen on homepage */
.hero-section {
    height: calc(100vh - 60px);
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: var(--primary-black);
    position: relative;
    overflow: hidden;
    transition: padding 0.3s ease, height 0.3s ease, min-height 0.3s ease;
}

/* Initial state for animation */
body.home .hero-section {
    /* Animation container */
}

/* Allow other pages to have scrollable content */
body:not(.home) .hero-section {
    height: auto;
    min-height: calc(100vh - 60px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    gap: 20px;
    max-width: 1600px;
    width: 100%;
    height: calc(100vh - 60px - 60px);
    transition: gap 0.3s ease, grid-template-columns 0.3s ease, height 0.3s ease;
}

/* Hero Columns */
.hero-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    min-height: calc(100vh - 60px - 60px);
    transition: gap 0.3s ease, height 0.3s ease, min-height 0.3s ease;
}

.hero-column-right,
.hero-column-left {
    /* Side columns with two items each */
}

.hero-column-center {
    /* Center column with single full-height item */
}

/* Hero Items */
.hero-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    display: block;
    transition: border-radius 0.3s ease, height 0.3s ease, min-height 0.3s ease, order 0.3s ease;
}

/* Calculate heights for perfect full-screen layout */
/* Total: 100vh - 60px (header) - 60px (section padding) - 20px (gap between items in column) */
.hero-image-box {
    background: var(--gray-dark);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Each item in side columns: half of available height minus the gap */
.hero-column-right .hero-image-box,
.hero-column-left .hero-image-box {
    height: calc((100vh - 60px - 60px - 20px) / 2);
    min-height: 250px;
    flex-shrink: 0;
}

/* Hero Animation - Now handled by GSAP JavaScript */
/* CSS animations disabled - GSAP provides smoother animations */
/* GSAP will handle all hero animations - no CSS animations needed */

.hero-image-box:hover {
    /* Hover handled by GSAP for smoother animation */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-center-box {
    height: 100%;
    background: var(--gray-dark);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero-center-box:hover {
    /* Hover handled by GSAP for smoother animation */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Hero Images */
.hero-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Transition removed - handled by GSAP */
}

.hero-item:hover .hero-image {
    /* Image zoom handled by GSAP - no CSS transform needed */
}

/* Hero Overlay */
/* Hero Content - Animated after images */
.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
    opacity: 0;
}

.hero-content-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary-white);
    margin: 0;
    line-height: 1.3;
    font-family: 'IRANSansX', sans-serif;
}

.hero-content-text {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
    font-family: 'IRANSansX', sans-serif;
}

.hero-content-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.06);
}

.hero-content-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.12);
}

.hero-content-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
    stroke: currentColor;
    fill: none;
}

.hero-content-btn:hover svg {
    transform: translateX(-3px);
}

/* Hero Card - Header-Icons Style */
.hero-card {
    height: calc((100vh - 60px - 60px - 20px) / 2);
    min-height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.hero-card-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-white);
    margin: 0;
    line-height: 1.3;
    font-family: 'IRANSansX', sans-serif;
}

.hero-card-text {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    font-family: 'IRANSansX', sans-serif;
}

.hero-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08);
}

.hero-card-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
    color: var(--primary-white);
}

.hero-card-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    stroke: currentColor;
    fill: none;
}

.hero-card-btn:hover svg {
    transform: translateX(-3px);
}

/* Hero Placeholder */
.hero-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.9) 0%,
        rgba(51, 51, 51, 0.8) 50%,
        rgba(26, 26, 26, 0.9) 100%
    );
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.placeholder-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    font-family: 'IRANSansX', sans-serif;
}

/* ==========================================================================
   Hero Section Animations - Ultra Smooth
   ========================================================================== */

/* Animation for top images - Start full height, shrink to half */
@keyframes heroTopImageShrink {
    0% {
        height: calc(100vh - 60px - 60px);
        opacity: 0;
        transform: scale(0.96) translateY(-10px);
    }
    35% {
        height: calc(100vh - 60px - 60px);
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    100% {
        height: calc((100vh - 60px - 60px - 20px) / 2);
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Animation for bottom items - Slide up from bottom */
@keyframes heroSlideUp {
    0% {
        transform: translateY(120%);
        opacity: 0;
    }
    35% {
        transform: translateY(120%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animation for center image - Fade in */
/* Hero animations now handled by GSAP - CSS keyframes removed */

/* Disable animations on non-home pages */
body:not(.home) .hero-column-right .hero-image-box:first-child,
body:not(.home) .hero-column-left .hero-image-box:first-child,
body:not(.home) .hero-column-right .hero-card,
body:not(.home) .hero-column-left .hero-image-box:last-child,
body:not(.home) .hero-center-box {
    animation: none !important;
}

/* ==========================================================================
   Full Screen Footer - Minimal & Elegant - Fully Responsive
   ========================================================================== */
.site-footer {
    min-height: 100vh;
    background: var(--primary-black);
    padding: 60px 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: padding 0.3s ease, min-height 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0;
}

/* Footer Hero Section - Fully Responsive */
.footer-hero {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    margin-bottom: auto;
    padding: 80px 0;
    transition: padding 0.3s ease, gap 0.3s ease, grid-template-columns 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.footer-hero-left {
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.footer-hero-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: auto;
    box-sizing: border-box;
}

.footer-hero-right {
    text-align: right;
    width: 100%;
    box-sizing: border-box;
}

.footer-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    color: var(--primary-white);
    margin: 0;
    line-height: 1;
    font-family: 'IRANSansX', sans-serif;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    transition: font-size 0.3s ease, line-height 0.3s ease;
}

.footer-hero-right .footer-title {
    opacity: 0.4;
}

/* Footer Logo */
.footer-logo,
.footer-logo-placeholder {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.3s ease, height 0.3s ease;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.9);
}

.logo-icon svg {
    color: rgba(255, 255, 255, 0.6);
    width: 120px;
    height: 120px;
}

/* Footer Links - Fully Responsive */
.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin: 60px 0;
    padding: 0;
    transition: gap 0.3s ease, margin 0.3s ease, flex-direction 0.3s ease;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-family: 'IRANSansX', sans-serif;
    text-transform: uppercase;
    transition: color 0.3s ease, font-size 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-white);
    /* Transform handled by GSAP */
}

.footer-link-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.footer-link:hover .footer-link-icon {
    transform: translate(3px, -3px);
}

/* Footer Bottom - Fully Responsive */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    transition: padding 0.3s ease, gap 0.3s ease, flex-direction 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'IRANSansX', sans-serif;
    transition: font-size 0.3s ease;
}

.footer-legal {
    display: flex;
    gap: 40px;
    transition: gap 0.3s ease, flex-direction 0.3s ease;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: color 0.3s ease, font-size 0.3s ease;
    font-family: 'IRANSansX', sans-serif;
    text-transform: uppercase;
}

.footer-legal-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Footer Advanced Responsive Design
   ========================================================================== */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .site-footer {
        padding: 80px 50px 50px;
    }

    .footer-hero {
        padding: 100px 0 80px;
    }

    .footer-title {
        font-size: clamp(4rem, 9vw, 8.5rem);
    }

    .footer-logo,
    .footer-logo-placeholder {
        width: 160px;
        height: 160px;
    }

    .logo-icon svg {
        width: 140px;
        height: 140px;
    }

    .footer-links {
        gap: 60px;
        margin: 80px 0;
    }

    .footer-link {
        font-size: 1.05rem;
    }
}

/* Desktop (1200px - 1439px) - Enhanced Responsive */
@media (min-width: 1200px) and (max-width: 1439px) {
    .site-footer {
        padding: 60px 40px 45px;
    }

    .footer-hero {
        padding: 70px 0;
        gap: 35px;
    }

    .footer-title {
        font-size: clamp(3.2rem, 7.5vw, 6.5rem);
    }

    .footer-logo,
    .footer-logo-placeholder {
        width: 130px;
        height: 130px;
    }

    .logo-icon svg {
        width: 115px;
        height: 115px;
    }

    .footer-links {
        gap: 55px;
        margin: 70px 0;
    }

    .footer-link {
        font-size: 0.98rem;
    }

    .footer-bottom {
        gap: 25px;
    }
}

/* Laptop/Tablet Landscape (1024px - 1199px) - Enhanced Responsive */
@media (min-width: 1024px) and (max-width: 1199px) {
    .site-footer {
        padding: 50px 30px 40px;
    }

    .footer-hero {
        padding: 60px 0;
        gap: 35px;
        grid-template-columns: 1fr auto 1fr;
    }

    .footer-title {
        font-size: clamp(2.8rem, 7vw, 6rem);
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .footer-hero-left,
    .footer-hero-right {
        overflow: hidden;
    }

    .footer-logo,
    .footer-logo-placeholder {
        width: 110px;
        height: 110px;
        flex-shrink: 0;
    }

    .logo-icon svg {
        width: 100px;
        height: 100px;
    }

    .footer-links {
        gap: 40px;
        margin: 55px 0;
        flex-wrap: wrap;
    }

    .footer-link {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .footer-bottom {
        gap: 20px;
    }
}

/* Tablet Portrait (768px - 1023px) - Enhanced Responsive */
@media (min-width: 768px) and (max-width: 1023px) {
    .site-footer {
        padding: 45px 25px 35px;
        min-height: auto;
    }

    .footer-hero {
        grid-template-columns: 1fr auto 1fr;
        padding: 50px 0;
        gap: 25px;
        align-items: center;
    }

    .footer-title {
        font-size: clamp(2.2rem, 6vw, 4.5rem);
        line-height: 1.1;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .footer-hero-left,
    .footer-hero-right {
        overflow: hidden;
    }

    .footer-logo,
    .footer-logo-placeholder {
        width: 90px;
        height: 90px;
        flex-shrink: 0;
    }

    .logo-icon svg {
        width: 80px;
        height: 80px;
    }

    .footer-links {
        gap: 35px;
        margin: 45px 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-link {
        font-size: 0.88rem;
        white-space: nowrap;
    }

    .footer-bottom {
        gap: 20px;
        padding-top: 35px;
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-legal {
        gap: 30px;
    }

    .footer-copyright,
    .footer-legal-link {
        font-size: 0.82rem;
    }
}

/* Mobile Large (600px - 767px) - Enhanced Responsive */
@media (min-width: 600px) and (max-width: 767px) {
    .site-footer {
        padding: 45px 25px 35px;
        min-height: auto;
    }

    .footer-hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 45px 0;
        gap: 35px;
        width: 100%;
    }

    .footer-hero-left {
        order: 3;
        text-align: center;
        width: 100%;
    }
    
    .footer-hero-right {
        order: 2;
        text-align: center;
        width: 100%;
    }

    .footer-hero-center {
        order: 1;
        width: auto;
    }

    .footer-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        line-height: 1.15;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .footer-logo,
    .footer-logo-placeholder {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
    }

    .logo-icon svg {
        width: 90px;
        height: 90px;
    }

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 40px;
        margin: 45px 0;
        width: 100%;
    }

    .footer-link {
        font-size: 0.9rem;
        min-width: 120px;
        white-space: nowrap;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-legal {
        flex-direction: row;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-copyright {
        text-align: center;
        width: 100%;
    }

    .footer-copyright,
    .footer-legal-link {
        font-size: 0.85rem;
    }
}

/* Mobile Medium (480px - 599px) - Enhanced Responsive */
@media (min-width: 480px) and (max-width: 599px) {
    .site-footer {
        padding: 40px 20px 30px;
        min-height: auto;
    }

    .footer-hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 0;
        gap: 30px;
        width: 100%;
    }

    .footer-hero-center {
        order: 1;
        width: auto;
    }

    .footer-hero-left {
        order: 3;
        text-align: center;
        width: 100%;
    }
    
    .footer-hero-right {
        order: 2;
        text-align: center;
        width: 100%;
    }

    .footer-title {
        font-size: clamp(2rem, 11vw, 3.2rem);
        line-height: 1.2;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .footer-logo,
    .footer-logo-placeholder {
        width: 85px;
        height: 85px;
        flex-shrink: 0;
    }

    .logo-icon svg {
        width: 75px;
        height: 75px;
    }

    .footer-links {
        flex-direction: column;
        gap: 22px;
        margin: 40px 0;
        align-items: center;
        width: 100%;
    }

    .footer-link {
        font-size: 0.88rem;
        padding: 8px 0;
        min-height: 44px; /* Touch-friendly */
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 280px;
    }

    .footer-link-icon {
        width: 16px;
        height: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 22px;
        align-items: center;
        text-align: center;
        padding-top: 30px;
        width: 100%;
    }

    .footer-legal {
        flex-direction: column;
        gap: 18px;
        align-items: center;
        width: 100%;
    }

    .footer-legal-link {
        min-height: 40px; /* Touch-friendly */
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 200px;
    }

    .footer-copyright {
        width: 100%;
        text-align: center;
    }

    .footer-copyright,
    .footer-legal-link {
        font-size: 0.82rem;
    }
}

/* Mobile Small (360px - 479px) - Enhanced Responsive */
@media (min-width: 360px) and (max-width: 479px) {
    .site-footer {
        padding: 35px 18px 28px;
        min-height: auto;
    }

    .footer-hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 35px 0;
        gap: 28px;
        width: 100%;
    }

    .footer-hero-center {
        order: 1;
        margin-bottom: 10px;
        width: auto;
    }

    .footer-hero-left {
        order: 3;
        text-align: center;
        width: 100%;
    }
    
    .footer-hero-right {
        order: 2;
        text-align: center;
        width: 100%;
    }

    .footer-title {
        font-size: clamp(1.9rem, 12vw, 2.9rem);
        line-height: 1.25;
        letter-spacing: -0.01em;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .footer-logo,
    .footer-logo-placeholder {
        width: 75px;
        height: 75px;
        flex-shrink: 0;
    }

    .logo-icon svg {
        width: 65px;
        height: 65px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
        margin: 35px 0;
        align-items: center;
        width: 100%;
    }

    .footer-link {
        font-size: 0.86rem;
        padding: 10px 0;
        min-height: 48px; /* Larger touch target */
        width: 100%;
        max-width: 250px;
        justify-content: center;
        white-space: nowrap;
    }

    .footer-link-icon {
        width: 15px;
        height: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
        padding-top: 28px;
        width: 100%;
    }

    .footer-legal {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        width: 100%;
    }

    .footer-legal-link {
        min-height: 44px; /* Touch-friendly */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px 10px;
        width: 100%;
        max-width: 200px;
    }

    .footer-copyright {
        font-size: 0.8rem;
        line-height: 1.5;
        width: 100%;
        text-align: center;
    }

    .footer-legal-link {
        font-size: 0.78rem;
    }
}

/* Mobile Extra Small (< 360px) - Enhanced Responsive */
@media (max-width: 359px) {
    .site-footer {
        padding: 30px 15px 25px;
        min-height: auto;
    }

    .footer-hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 0;
        gap: 25px;
        width: 100%;
    }

    .footer-hero-center {
        order: 1;
        margin-bottom: 8px;
        width: auto;
    }

    .footer-hero-left {
        order: 3;
        text-align: center;
        width: 100%;
    }
    
    .footer-hero-right {
        order: 2;
        text-align: center;
        width: 100%;
    }

    .footer-title {
        font-size: clamp(1.7rem, 13vw, 2.5rem);
        line-height: 1.3;
        letter-spacing: -0.01em;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .footer-logo,
    .footer-logo-placeholder {
        width: 65px;
        height: 65px;
        flex-shrink: 0;
    }

    .logo-icon svg {
        width: 55px;
        height: 55px;
    }

    .footer-links {
        flex-direction: column;
        gap: 18px;
        margin: 32px 0;
        align-items: center;
        width: 100%;
    }

    .footer-link {
        font-size: 0.82rem;
        padding: 12px 0;
        min-height: 50px; /* Extra large touch target for small screens */
        width: 100%;
        max-width: 220px;
        justify-content: center;
        white-space: nowrap;
    }

    .footer-link-icon {
        width: 14px;
        height: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 18px;
        align-items: center;
        text-align: center;
        padding-top: 25px;
        width: 100%;
    }

    .footer-legal {
        flex-direction: column;
        gap: 14px;
        align-items: center;
        width: 100%;
    }

    .footer-legal-link {
        min-height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px 8px;
        width: 100%;
        max-width: 180px;
    }

    .footer-copyright {
        font-size: 0.76rem;
        line-height: 1.6;
        width: 100%;
        text-align: center;
    }

    .footer-legal-link {
        font-size: 0.75rem;
    }
}


/* ==========================================================================
   Hero Section Advanced Responsive Design
   ========================================================================== */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .hero-section {
        padding: 40px;
    }

    .hero-container {
        grid-template-columns: 1fr 2fr 1fr;
        gap: 25px;
        max-width: 1800px;
    }

    .hero-column {
        gap: 25px;
    }

    .hero-item {
        border-radius: 24px;
    }

    .hero-card {
        padding: 40px;
        border-radius: 24px;
    }

    .hero-card-title {
        font-size: 1.8rem;
    }

    .hero-card-text {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 32px;
    }
    
    .hero-content-title {
        font-size: 1.5rem;
    }
    
    .hero-content-text {
        font-size: 0.95rem;
    }
    
    .hero-content-btn {
        padding: 13px 24px;
        font-size: 0.92rem;
    }
}

/* Desktop (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .hero-container {
        grid-template-columns: 1fr 1.9fr 1fr;
        gap: 22px;
    }

    .hero-column {
        gap: 22px;
    }

    .hero-item {
        border-radius: 22px;
    }

    .hero-card {
        padding: 35px;
        border-radius: 22px;
    }
}

/* Laptop (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .hero-section {
        height: auto;
        min-height: calc(100vh - 60px);
        padding: 25px;
    }

    .hero-container {
        grid-template-columns: 1fr 1.6fr 1fr;
        gap: 18px;
        height: auto;
        min-height: calc(100vh - 60px - 50px);
    }

    .hero-column {
        gap: 18px;
        min-height: auto;
    }

    .hero-image-box,
    .hero-card {
        min-height: 280px;
    }

    .hero-item {
        border-radius: 18px;
    }

    .hero-card {
        padding: 28px;
        border-radius: 18px;
    }

    .hero-card-title {
        font-size: 1.35rem;
    }

    .hero-card-text {
        font-size: 0.92rem;
    }

    .hero-title {
        font-size: 1.25rem;
    }

    .hero-content {
        padding: 24px;
    }
    
    .hero-content-title {
        font-size: 1.28rem;
    }
    
    .hero-content-text {
        font-size: 0.88rem;
    }
    
    .hero-content-btn {
        padding: 11px 20px;
        font-size: 0.86rem;
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-section {
        height: auto;
        min-height: calc(100vh - 60px);
        padding: 22px;
    }

    .hero-container {
        grid-template-columns: 1fr 1.3fr 1fr;
        gap: 16px;
        height: auto;
        min-height: calc(100vh - 60px - 44px);
    }

    .hero-column {
        gap: 16px;
        min-height: auto;
    }

    .hero-image-box,
    .hero-card {
        min-height: 320px;
    }

    .hero-item {
        border-radius: 16px;
    }

    .hero-card {
        padding: 26px;
        border-radius: 16px;
    }

    .hero-card-title {
        font-size: 1.3rem;
    }

    .hero-card-text {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 1.22rem;
    }

    .hero-content {
        padding: 22px;
    }
    
    .hero-content-title {
        font-size: 1.24rem;
    }
    
    .hero-content-text {
        font-size: 0.86rem;
    }
    
    .hero-content-btn {
        padding: 11px 20px;
        font-size: 0.84rem;
    }

    .hero-card-btn {
        padding: 13px 26px;
        font-size: 0.92rem;
    }
}

/* Mobile Large (600px - 767px) */
@media (min-width: 600px) and (max-width: 767px) {
    .hero-section {
        height: auto;
        min-height: auto;
        padding: 18px;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
        height: auto;
    }

    .hero-column {
        display: contents; /* Makes children direct children of container */
    }

    /* Order elements: Center first, then others */
    .hero-center-box {
        order: 1;
        min-height: 400px;
    }

    .hero-column-right .hero-image-box:first-child {
        order: 2;
        min-height: 320px;
    }

    .hero-column-left .hero-image-box:first-child {
        order: 3;
        min-height: 320px;
    }

    .hero-column-left .hero-image-box:last-child {
        order: 4;
        min-height: 320px;
    }

    .hero-card {
        order: 5;
        min-height: 280px;
        padding: 28px;
    }

    .hero-item {
        border-radius: 16px;
    }

    .hero-card {
        border-radius: 16px;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-card-title {
        font-size: 1.4rem;
    }

    .hero-card-text {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .hero-content {
        padding: 20px;
    }
    
    .hero-content-title {
        font-size: 1.2rem;
    }
    
    .hero-content-text {
        font-size: 0.84rem;
    }
    
    .hero-content-btn {
        padding: 11px 20px;
        font-size: 0.84rem;
    }

    .hero-card-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* Mobile Medium (480px - 599px) */
@media (min-width: 480px) and (max-width: 599px) {
    .hero-section {
        height: auto;
        min-height: auto;
        padding: 16px;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 14px;
        height: auto;
    }

    .hero-column {
        display: contents;
    }

    /* Order elements: Center first, then others */
    .hero-center-box {
        order: 1;
        min-height: 360px;
    }

    .hero-column-right .hero-image-box:first-child {
        order: 2;
        min-height: 280px;
    }

    .hero-column-left .hero-image-box:first-child {
        order: 3;
        min-height: 280px;
    }

    .hero-column-left .hero-image-box:last-child {
        order: 4;
        min-height: 280px;
    }

    .hero-card {
        order: 5;
        min-height: 260px;
        padding: 25px;
    }

    .hero-item {
        border-radius: 14px;
    }

    .hero-card {
        border-radius: 14px;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .hero-card-title {
        font-size: 1.3rem;
    }

    .hero-card-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .hero-content {
        padding: 18px;
    }
    
    .hero-content-title {
        font-size: 1.15rem;
    }
    
    .hero-content-text {
        font-size: 0.82rem;
    }
    
    .hero-content-btn {
        padding: 10px 18px;
        font-size: 0.82rem;
        min-height: 44px;
    }

    .hero-card-btn {
        padding: 13px 26px;
        font-size: 0.9rem;
        min-height: 48px; /* Touch-friendly */
    }
}

/* Mobile Small (< 480px) */
@media (max-width: 479px) {
    .hero-section {
        height: auto;
        min-height: auto;
        padding: 14px;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
        height: auto;
    }

    .hero-column {
        display: contents;
    }

    /* Order elements: Center first, Card last */
    .hero-center-box {
        order: 1;
        min-height: 320px;
    }

    .hero-column-right .hero-image-box:first-child {
        order: 2;
        min-height: 260px;
    }

    .hero-column-left .hero-image-box:first-child {
        order: 3;
        min-height: 260px;
    }

    .hero-column-left .hero-image-box:last-child {
        order: 4;
        min-height: 260px;
    }

    .hero-card {
        order: 5;
        min-height: 240px;
        padding: 22px;
    }

    .hero-item {
        border-radius: 12px;
    }

    .hero-card {
        border-radius: 12px;
    }

    .hero-title {
        font-size: 1.15rem;
    }

    .hero-card-title {
        font-size: 1.25rem;
        line-height: 1.35;
    }

    .hero-card-text {
        font-size: 0.88rem;
        line-height: 1.75;
    }

    .hero-content {
        padding: 16px;
    }
    
    .hero-content-title {
        font-size: 1.1rem;
        line-height: 1.35;
    }
    
    .hero-content-text {
        font-size: 0.78rem;
        line-height: 1.65;
    }
    
    .hero-content-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
        min-height: 46px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-content-btn svg {
        width: 13px;
        height: 13px;
    }

    .hero-card-btn {
        padding: 12px 24px;
        font-size: 0.88rem;
        min-height: 50px; /* Extra touch-friendly */
        width: 100%;
        justify-content: center;
    }

    .hero-card-btn svg {
        width: 14px;
        height: 14px;
    }
}


/* ==========================================================================
   Header Responsive Design
   ========================================================================== */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 30px;
    }
    
    .header-icons {
        gap: 20px;
    }
}

@media (max-width: 968px) {
    .header-container {
        padding: 0 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-icons .icon-label {
        display: none;
    }
    
    .header-icon {
        padding: 10px;
        width: 44px;
        height: 44px;
        min-width: 44px;
        justify-content: center;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-image {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 16px;
    }
    
    .site-header {
        padding: 8px 0;
        height: 50px;
    }
    
    .header-icons {
        gap: 12px;
    }
    
    .header-icon {
        padding: 8px;
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .mobile-menu-content {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   Advanced Mobile Header Styles
   ========================================================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 1001;
}

.menu-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle-btn:hover .hamburger-line {
    background: var(--accent-gold);
}

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

.menu-toggle-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translate(-50%, -50%) scale(1);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo .mobile-logo-image {
    height: 40px;
    width: auto;
}

.mobile-logo .mobile-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-white);
    text-decoration: none;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--primary-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
}

.mobile-navigation {
    text-align: center;
}

.mobile-primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.mobile-primary-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--primary-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-primary-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

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

@media (max-width: 1200px) {
    .header-container {
        padding: 0 20px;
    }
    
    .header-logo .logo-text {
        font-size: 1.2rem;
    }
    
    .menu-item a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

/* ============================================================================
   HEADER RESPONSIVE - MOBILE & TABLET
   ============================================================================ */

/* Tablet and Mobile - 992px and below */
@media (max-width: 992px) {
    .site-header {
        height: 72px;
        padding: 12px 0;
    }
    
    .header-container {
        padding: 0 20px;
    }
    
    .header-logo .logo-text {
        font-size: 1.35rem;
    }
    
    .header-logo .logo-image {
        height: 38px;
    }
    
    .header-icons {
        gap: 8px;
    }
    
    .header-icon {
        padding: 11px;
        width: 42px;
        height: 42px;
        gap: 7px;
    }
    
    .header-icon svg {
        width: 19px;
        height: 19px;
    }
    
    .icon-label {
        font-size: 0.72rem;
    }
}

/* Tablet - 768px and below */
@media (max-width: 768px) {
    .site-header {
        height: 68px;
        padding: 10px 0;
    }
    
    .header-container {
        padding: 0 18px;
    }
    
    .header-logo .logo-text {
        font-size: 1.3rem;
    }
    
    .header-logo .logo-image {
        height: 36px;
    }
    
    .header-icons {
        gap: 8px;
    }
    
    .header-icon {
        padding: 10px;
        width: 40px;
        height: 40px;
        gap: 6px;
    }
    
    .header-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .icon-label {
        font-size: 0.7rem;
    }
}

/* Mobile - 600px and below */
@media (max-width: 600px) {
    .site-header {
        height: 65px;
        padding: 10px 0;
    }
    
    .header-container {
        padding: 0 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Icons on RIGHT */
    .header-icons {
        order: 1;
        gap: 8px;
        flex-shrink: 0;
    }
    
    .header-icon {
        padding: 10px;
        width: 40px;
        height: 40px;
        gap: 6px;
    }
    
    .header-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .icon-label {
        font-size: 0.7rem;
    }
    
    /* Logo on LEFT */
    .header-logo {
        order: 2;
        flex-shrink: 0;
    }
    
    .header-logo .logo-text {
        font-size: 1.25rem;
    }
    
    .header-logo .logo-image {
        height: 35px;
    }
}

/* Mobile Small - 480px and below */
@media (max-width: 480px) {
    .site-header {
        height: 62px;
        padding: 8px 0;
    }
    
    .header-container {
        padding: 0 14px;
    }
    
    .header-icons {
        gap: 7px;
    }
    
    .header-icon {
        padding: 9px;
        width: 38px;
        height: 38px;
        gap: 5px;
    }
    
    .header-icon svg {
        width: 17px;
        height: 17px;
    }
    
    .icon-label {
        font-size: 0.65rem;
    }
    
    .header-logo .logo-text {
        font-size: 1.15rem;
    }
    
    .header-logo .logo-image {
        height: 32px;
    }
}

/* Mobile Extra Small - 360px and below */
@media (max-width: 360px) {
    .site-header {
        height: 58px;
        padding: 7px 0;
    }
    
    .header-container {
        padding: 0 12px;
    }
    
    .header-icons {
        gap: 6px;
    }
    
    .header-icon {
        padding: 8px;
        width: 36px;
        height: 36px;
    }
    
    .header-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .icon-label {
        display: none;
    }
    
    .header-logo .logo-text {
        font-size: 1.05rem;
    }
    
    .header-logo .logo-image {
        height: 30px;
    }
}

/* ============================================================================
   PAGE TEMPLATE - PREMIUM GLASS NEOMORPHIC DESIGN
   ============================================================================ */

/* Page Main */
.page-main {
    padding: 100px 0 80px;
    min-height: 100vh;
    position: relative;
}

.page-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
}

.page-article {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Page Header */
.page-header {
    padding: 60px 80px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-header-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-featured-image {
    margin: 0 0 50px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.page-featured-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.page-featured-image:hover::after {
    opacity: 1;
}

.page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.page-featured-image:hover img {
    transform: scale(1.08);
}

.page-title-wrapper {
    margin-top: 40px;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 25px;
    line-height: 1.15;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    text-shadow: 0 0 40px rgba(102, 126, 234, 0.3);
}

.page-excerpt {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin: 0;
    font-weight: 400;
    max-width: 850px;
    margin: 0 auto;
}

/* Page Content */
.page-content-wrapper {
    padding: 70px 80px;
    position: relative;
}

.page-content-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-content {
    max-width: 1100px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
    line-height: 2;
    position: relative;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: #ffffff;
    font-weight: 800;
    margin: 50px 0 25px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.page-content h1:first-child,
.page-content h2:first-child,
.page-content h3:first-child {
    margin-top: 0;
}

.page-content h2 {
    font-size: 2.4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 20px;
}

.page-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.page-content h3 {
    font-size: 1.8rem;
    color: #667eea;
}

.page-content h4 {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
}

.page-content p {
    margin: 0 0 28px;
    font-weight: 400;
}

.page-content p:first-of-type {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 2.1;
}

.page-content a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.page-content img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1);
}

.page-content ul,
.page-content ol {
    margin: 0 0 30px;
    padding-right: 35px;
}

.page-content li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    position: relative;
}

.page-content ul li::marker {
    color: #667eea;
    font-size: 1.2em;
}

.page-content ol li::marker {
    color: #667eea;
    font-weight: 700;
}

.page-content blockquote {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-right: 5px solid;
    border-image: linear-gradient(180deg, #667eea 0%, #764ba2 100%) 1;
    padding: 30px 40px;
    margin: 40px 0;
    border-radius: 16px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-content blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    line-height: 1;
    color: rgba(102, 126, 234, 0.2);
    font-family: Georgia, serif;
}

.page-content blockquote p:last-child {
    margin-bottom: 0;
}

.page-content code {
    background: rgba(102, 126, 234, 0.15);
    padding: 5px 10px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.92em;
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.25);
    font-weight: 600;
}

.page-content pre {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 16px;
    overflow-x: auto;
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-content pre code {
    background: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.92);
    border: none;
    font-weight: normal;
}

.page-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-content table th {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%);
    padding: 18px 25px;
    text-align: right;
    font-weight: 700;
    color: #ffffff;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    font-size: 1.05rem;
}

.page-content table td {
    padding: 18px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.3s ease;
}

.page-content table tr:hover td {
    background: rgba(255, 255, 255, 0.05);
}

.page-content table tr:last-child td {
    border-bottom: none;
}

/* Page Links (Pagination) */
.page-links {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.page-links a,
.page-links > span {
    display: inline-block;
    padding: 12px 26px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.35);
    border-radius: 50px;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-links a:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.2) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.page-links > span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Page Comments */
.page-comments {
    padding: 60px 80px;
}

/* Page Responsive */
@media (max-width: 1400px) {
    .page-container {
        max-width: 1200px;
        padding: 0 60px;
    }
}

@media (max-width: 991px) {
    .page-container {
        padding: 0 50px;
    }
    
    .page-header {
        padding: 50px 60px;
    }
    
    .page-content-wrapper {
        padding: 60px;
    }
    
    .page-comments {
        padding: 50px 60px;
    }
    
    .page-content h2 {
        font-size: 2.2rem;
    }
    
    .page-content h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .page-main {
        padding: 80px 0 60px;
    }
    
    .page-container {
        padding: 0 30px;
    }
    
    .page-header {
        padding: 40px 40px;
    }
    
    .page-header::before {
        width: 200px;
        height: 200px;
    }
    
    .page-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 20px;
    }
    
    .page-excerpt {
        font-size: 1.15rem;
    }
    
    .page-content-wrapper {
        padding: 50px 40px;
    }
    
    .page-content {
        font-size: 1.08rem;
    }
    
    .page-content h2 {
        font-size: 2rem;
    }
    
    .page-content h3 {
        font-size: 1.6rem;
    }
    
    .page-content h4 {
        font-size: 1.3rem;
    }
    
    .page-comments {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .page-container {
        padding: 0 20px;
    }
    
    .page-header {
        padding: 35px 30px;
    }
    
    .page-featured-image {
        margin-bottom: 35px;
        border-radius: 16px;
    }
    
    .page-title {
        font-size: clamp(1.8rem, 7vw, 2.3rem);
        margin-bottom: 18px;
    }
    
    .page-excerpt {
        font-size: 1.1rem;
    }
    
    .page-content-wrapper {
        padding: 40px 30px;
    }
    
    .page-content {
        font-size: 1.05rem;
    }
    
    .page-content p:first-of-type {
        font-size: 1.15rem;
    }
    
    .page-content h2 {
        font-size: 1.8rem;
        margin: 40px 0 20px;
        padding-bottom: 15px;
    }
    
    .page-content h2::after {
        width: 60px;
        height: 3px;
    }
    
    .page-content h3 {
        font-size: 1.5rem;
    }
    
    .page-content h4 {
        font-size: 1.2rem;
    }
    
    .page-content blockquote {
        padding: 25px 30px;
        font-size: 1.1rem;
    }
    
    .page-content blockquote::before {
        font-size: 4rem;
        right: 15px;
    }
    
    .page-comments {
        padding: 35px 30px;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 0 16px;
    }
    
    .page-header {
        padding: 30px 25px;
    }
    
    .page-featured-image {
        margin-bottom: 30px;
        border-radius: 14px;
    }
    
    .page-title {
        margin-bottom: 16px;
    }
    
    .page-excerpt {
        font-size: 1.05rem;
    }
    
    .page-content-wrapper {
        padding: 35px 25px;
    }
    
    .page-content {
        font-size: 1rem;
    }
    
    .page-content p:first-of-type {
        font-size: 1.1rem;
    }
    
    .page-content h2 {
        font-size: 1.6rem;
        margin: 35px 0 18px;
    }
    
    .page-content h3 {
        font-size: 1.3rem;
    }
    
    .page-content h4 {
        font-size: 1.15rem;
    }
    
    .page-content ul,
    .page-content ol {
        padding-right: 25px;
    }
    
    .page-content blockquote {
        padding: 20px 25px;
        font-size: 1.05rem;
        margin: 30px 0;
    }
    
    .page-content blockquote::before {
        font-size: 3.5rem;
    }
    
    .page-content pre {
        padding: 20px;
        margin: 30px 0;
    }
    
    .page-content table {
        font-size: 0.92rem;
    }
    
    .page-content table th,
    .page-content table td {
        padding: 14px 18px;
    }
    
    .page-links {
        gap: 12px;
    }
    
    .page-links a,
    .page-links > span {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .page-comments {
        padding: 30px 25px;
    }
}

/* ============================================================================
   WOOCOMMERCE MY ACCOUNT PAGE - MODERN MINIMAL DESIGN
   ============================================================================ */

/* Hide WooCommerce Default Navigation & Styles */
body.woocommerce-account-page .woocommerce-MyAccount-navigation {
    display: none !important;
}

body.woocommerce-account-page .woocommerce {
    display: block;
    max-width: 100%;
}

body.woocommerce-account-page .woocommerce::before,
body.woocommerce-account-page .woocommerce::after {
    display: none;
}

body.woocommerce-account-page .woocommerce-MyAccount-content {
    width: 100% !important;
    float: none !important;
}

/* Reset WooCommerce default grid */
body.woocommerce-account-page .woocommerce-account {
    display: block;
}

/* ============================================================================
   MY ACCOUNT PAGE - SIMPLE & CLEAN DESIGN
   ============================================================================ */

/* Main Container */
.emadbrz-my-account {
    min-height: 100vh;
    padding: 120px 0 80px;
}

.emadbrz-my-account-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

/* ============================================================================
   SIDEBAR
   ============================================================================ */

.emadbrz-my-account-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* User Card */
.emadbrz-user-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.emadbrz-user-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.emadbrz-user-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.emadbrz-user-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.emadbrz-user-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border: 2px solid rgba(0, 0, 0, 0.8);
    border-radius: 50%;
}

.emadbrz-user-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px;
    font-family: 'IRANSansX', sans-serif;
}

.emadbrz-user-email {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-family: 'IRANSansX', sans-serif;
}

/* Navigation */
.emadbrz-account-nav {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 16px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.emadbrz-account-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: 'IRANSansX', sans-serif;
    margin-bottom: 4px;
}

.emadbrz-account-nav-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: translateX(-3px);
}

.emadbrz-account-nav-item.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.emadbrz-nav-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.emadbrz-account-nav-item:hover .emadbrz-nav-icon,
.emadbrz-account-nav-item.active .emadbrz-nav-icon {
    opacity: 1;
}

.emadbrz-nav-label {
    flex: 1;
}

.emadbrz-nav-arrow {
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.emadbrz-account-nav-item:hover .emadbrz-nav-arrow,
.emadbrz-account-nav-item.active .emadbrz-nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Content */
.emadbrz-my-account-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 500px;
}

.emadbrz-my-account-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'IRANSansX', sans-serif;
}

.emadbrz-my-account-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px;
    font-family: 'IRANSansX', sans-serif;
}

.emadbrz-my-account-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 16px;
    font-family: 'IRANSansX', sans-serif;
}

.emadbrz-my-account-content a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.emadbrz-my-account-content a:hover {
    color: #ffffff;
}

/* WooCommerce Elements */
.emadbrz-my-account-content .woocommerce-orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.emadbrz-my-account-content .woocommerce-orders-table th {
    padding: 14px 16px;
    text-align: right;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'IRANSansX', sans-serif;
}

.emadbrz-my-account-content .woocommerce-orders-table td {
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    font-family: 'IRANSansX', sans-serif;
}

.emadbrz-my-account-content .woocommerce-orders-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.emadbrz-my-account-content .woocommerce-Button,
.emadbrz-my-account-content button[type="submit"],
.emadbrz-my-account-content .button {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 10px 24px !important;
    border-radius: 12px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    font-family: 'IRANSansX', sans-serif !important;
    text-decoration: none !important;
}

.emadbrz-my-account-content .woocommerce-Button:hover,
.emadbrz-my-account-content button[type="submit"]:hover,
.emadbrz-my-account-content .button:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px);
}

.emadbrz-my-account-content input[type="text"],
.emadbrz-my-account-content input[type="email"],
.emadbrz-my-account-content input[type="password"],
.emadbrz-my-account-content textarea,
.emadbrz-my-account-content select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'IRANSansX', sans-serif;
}

.emadbrz-my-account-content input:focus,
.emadbrz-my-account-content textarea:focus,
.emadbrz-my-account-content select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.emadbrz-my-account-content label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    font-family: 'IRANSansX', sans-serif;
}

.emadbrz-my-account-content .form-row {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .emadbrz-my-account-container {
        grid-template-columns: 260px 1fr;
        gap: 28px;
        padding: 0 30px;
    }
    
    .emadbrz-my-account-content {
        padding: 28px;
    }
}

@media (max-width: 767px) {
    .emadbrz-my-account {
        padding: 100px 0 60px;
    }
    
    .emadbrz-my-account-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }
    
    .emadbrz-my-account-sidebar {
        position: static;
    }
    
    .emadbrz-my-account-content {
        padding: 24px;
    }
    
    .emadbrz-my-account-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 599px) {
    .emadbrz-my-account {
        padding: 90px 0 50px;
    }
    
    .emadbrz-my-account-container {
        padding: 0 16px;
    }
    
    .emadbrz-user-card {
        padding: 20px;
    }
    
    .emadbrz-my-account-content {
        padding: 20px;
    }
    
    .emadbrz-my-account-content .woocommerce-orders-table th,
    .emadbrz-my-account-content .woocommerce-orders-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

.emadbrz-account-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.emadbrz-account-menu li {
    margin: 0;
}

.emadbrz-account-menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 500;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.emadbrz-account-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.emadbrz-account-menu-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-5px);
}

.emadbrz-account-menu-link:hover::before {
    opacity: 1;
}

.emadbrz-account-menu li.is-active .emadbrz-account-menu-link {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.emadbrz-account-menu-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.emadbrz-account-menu-link:hover .emadbrz-account-menu-icon {
    transform: scale(1.1);
}

.emadbrz-account-menu li.is-active .emadbrz-account-menu-icon svg {
    stroke: #667eea;
}

.emadbrz-account-menu-text {
    flex: 1;
}

.emadbrz-account-menu-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.emadbrz-account-menu-link:hover .emadbrz-account-menu-arrow,
.emadbrz-account-menu li.is-active .emadbrz-account-menu-arrow {
    opacity: 1;
    transform: translateX(0);
}

.emadbrz-account-menu li.is-active .emadbrz-account-menu-arrow svg {
    stroke: #667eea;
}

/* ============================================================================
   ACCOUNT CONTENT
   ============================================================================ */

.emadbrz-account-content {
    min-height: 600px;
}

.emadbrz-account-content-inner {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Content Typography */
.emadbrz-account-content h2,
.emadbrz-account-content h3 {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.emadbrz-account-content h2 {
    font-size: 2rem;
    margin: 0 0 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emadbrz-account-content h3 {
    font-size: 1.4rem;
    margin: 0 0 20px;
}

.emadbrz-account-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.emadbrz-account-content a:not(.woocommerce-button):not(.button):not(.edit) {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.emadbrz-account-content a:not(.woocommerce-button):not(.button):not(.edit)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.emadbrz-account-content a:not(.woocommerce-button):not(.button):not(.edit):hover {
    color: #764ba2;
}

.emadbrz-account-content a:not(.woocommerce-button):not(.button):not(.edit):hover::after {
    width: 100%;
}

/* Messages */
.emadbrz-account-content .woocommerce-message,
.emadbrz-account-content .woocommerce-info,
.emadbrz-account-content .woocommerce-error {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 18px 24px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.emadbrz-account-content .woocommerce-message::before,
.emadbrz-account-content .woocommerce-info::before,
.emadbrz-account-content .woocommerce-error::before {
    display: none;
}

.emadbrz-account-content .woocommerce-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1);
}

/* Orders Table */
.emadbrz-account-content .woocommerce-orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
}

.emadbrz-account-content .woocommerce-orders-table thead {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.emadbrz-account-content .woocommerce-orders-table th {
    padding: 18px 24px;
    text-align: right;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}

.emadbrz-account-content .woocommerce-orders-table td {
    padding: 18px 24px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.emadbrz-account-content .woocommerce-orders-table tbody tr {
    transition: all 0.3s ease;
}

.emadbrz-account-content .woocommerce-orders-table tbody tr:hover {
    background: rgba(102, 126, 234, 0.05);
}

.emadbrz-account-content .woocommerce-orders-table tbody tr:last-child td {
    border-bottom: none;
}

.emadbrz-account-content .woocommerce-orders-table .woocommerce-button,
.emadbrz-account-content .woocommerce-orders-table .button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff !important;
    border: none;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.emadbrz-account-content .woocommerce-orders-table .woocommerce-button:hover,
.emadbrz-account-content .woocommerce-orders-table .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Forms */
.emadbrz-account-content .woocommerce-EditAccountForm,
.emadbrz-account-content .woocommerce-form {
    max-width: 700px;
}

.emadbrz-account-content .form-row {
    margin-bottom: 24px;
}

.emadbrz-account-content label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-size: 0.95rem;
}

.emadbrz-account-content label abbr {
    color: #ef4444;
    text-decoration: none;
}

.emadbrz-account-content input[type="text"],
.emadbrz-account-content input[type="email"],
.emadbrz-account-content input[type="password"],
.emadbrz-account-content input[type="tel"],
.emadbrz-account-content input[type="url"],
.emadbrz-account-content textarea,
.emadbrz-account-content select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'IRANSansX', sans-serif;
}

.emadbrz-account-content input:focus,
.emadbrz-account-content textarea:focus,
.emadbrz-account-content select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.emadbrz-account-content fieldset {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.02);
}

.emadbrz-account-content fieldset legend {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 0 15px;
}

.emadbrz-account-content button[type="submit"],
.emadbrz-account-content .woocommerce-Button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff !important;
    border: none;
    padding: 14px 36px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IRANSansX', sans-serif;
    text-decoration: none !important;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.emadbrz-account-content button[type="submit"]:hover,
.emadbrz-account-content .woocommerce-Button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Addresses */
.emadbrz-account-content .woocommerce-Addresses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.emadbrz-account-content .woocommerce-Address {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.emadbrz-account-content .woocommerce-Address:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.emadbrz-account-content .woocommerce-Address-title h3 {
    font-size: 1.25rem;
    margin-bottom: 18px;
    color: #ffffff;
}

.emadbrz-account-content .woocommerce-Address address {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-style: normal;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.emadbrz-account-content .woocommerce-Address .edit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    color: #667eea !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.emadbrz-account-content .woocommerce-Address .edit:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateX(-3px);
}

/* Downloads Table */
.emadbrz-account-content .woocommerce-MyAccount-downloads table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
}

.emadbrz-account-content .woocommerce-MyAccount-downloads thead {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.emadbrz-account-content .woocommerce-MyAccount-downloads th {
    padding: 18px 24px;
    text-align: right;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}

.emadbrz-account-content .woocommerce-MyAccount-downloads td {
    padding: 18px 24px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

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

/* Large Tablet & Small Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    .emadbrz-account-grid {
        grid-template-columns: 340px 1fr;
        gap: 40px;
        padding: 0 30px;
    }
    
    .emadbrz-account-content-inner {
        padding: 40px;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) {
    .emadbrz-account-wrapper {
        padding: 100px 0 60px;
    }
    
    .emadbrz-account-grid {
        grid-template-columns: 300px 1fr;
        gap: 35px;
        padding: 0 25px;
    }
    
    .emadbrz-account-profile-card {
        padding: 30px 25px;
    }
    
    .emadbrz-account-content-inner {
        padding: 35px;
    }
    
    .emadbrz-account-content h2 {
        font-size: 1.75rem;
    }
}

/* Tablet Portrait (600px - 767px) */
@media (max-width: 767px) {
    .emadbrz-account-wrapper {
        padding: 90px 0 50px;
    }
    
    .emadbrz-account-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .emadbrz-account-sidebar {
        position: static;
        gap: 20px;
    }
    
    .emadbrz-account-profile-card {
        padding: 30px 25px;
    }
    
    .emadbrz-account-avatar-wrapper {
        width: 90px;
        height: 90px;
    }
    
    .emadbrz-account-avatar-img {
        width: 90px !important;
        height: 90px !important;
    }
    
    .emadbrz-account-user-name {
        font-size: 1.3rem;
    }
    
    .emadbrz-account-user-email {
        font-size: 0.9rem;
    }
    
    .emadbrz-account-content-inner {
        padding: 30px 25px;
    }
    
    .emadbrz-account-content h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .emadbrz-account-content .woocommerce-Addresses {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile Large (480px - 599px) */
@media (max-width: 599px) {
    .emadbrz-account-wrapper {
        padding: 80px 0 40px;
    }
    
    .emadbrz-account-grid {
        padding: 0 18px;
        gap: 25px;
    }
    
    .emadbrz-account-profile-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .emadbrz-account-avatar-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .emadbrz-account-avatar-img {
        width: 80px !important;
        height: 80px !important;
    }
    
    .emadbrz-account-user-name {
        font-size: 1.2rem;
    }
    
    .emadbrz-account-navigation {
        padding: 15px;
        border-radius: 20px;
    }
    
    .emadbrz-account-menu-link {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .emadbrz-account-content-inner {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .emadbrz-account-content h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .emadbrz-account-content h3 {
        font-size: 1.25rem;
    }
    
    .emadbrz-account-content .woocommerce-orders-table th,
    .emadbrz-account-content .woocommerce-orders-table td {
        padding: 14px 18px;
        font-size: 0.9rem;
    }
    
    .emadbrz-account-content .woocommerce-Address {
        padding: 25px 20px;
    }
}

/* Mobile Medium (360px - 479px) */
@media (max-width: 479px) {
    .emadbrz-account-wrapper {
        padding: 75px 0 35px;
    }
    
    .emadbrz-account-grid {
        padding: 0 15px;
    }
    
    .emadbrz-account-profile-card {
        padding: 20px 18px;
    }
    
    .emadbrz-account-avatar-wrapper {
        width: 75px;
        height: 75px;
        margin-bottom: 15px;
    }
    
    .emadbrz-account-avatar-img {
        width: 75px !important;
        height: 75px !important;
    }
    
    .emadbrz-account-user-name {
        font-size: 1.15rem;
    }
    
    .emadbrz-account-user-email {
        font-size: 0.88rem;
    }
    
    .emadbrz-account-navigation {
        padding: 12px;
    }
    
    .emadbrz-account-menu-link {
        padding: 12px 14px;
        font-size: 0.92rem;
        gap: 12px;
    }
    
    .emadbrz-account-content-inner {
        padding: 22px 18px;
    }
    
    .emadbrz-account-content h2 {
        font-size: 1.4rem;
    }
    
    .emadbrz-account-content h3 {
        font-size: 1.2rem;
    }
    
    .emadbrz-account-content input[type="text"],
    .emadbrz-account-content input[type="email"],
    .emadbrz-account-content input[type="password"],
    .emadbrz-account-content input[type="tel"],
    .emadbrz-account-content input[type="url"],
    .emadbrz-account-content textarea,
    .emadbrz-account-content select {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .emadbrz-account-content button[type="submit"],
    .emadbrz-account-content .woocommerce-Button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* Mobile Small (< 360px) */
@media (max-width: 359px) {
    .emadbrz-account-wrapper {
        padding: 70px 0 30px;
    }
    
    .emadbrz-account-grid {
        padding: 0 12px;
    }
    
    .emadbrz-account-profile-card {
        padding: 18px 15px;
    }
    
    .emadbrz-account-content-inner {
        padding: 20px 15px;
    }
    
    .emadbrz-account-content h2 {
        font-size: 1.3rem;
    }
    
    .emadbrz-account-content .woocommerce-orders-table th,
    .emadbrz-account-content .woocommerce-orders-table td {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
}

/* ============================================================================
   WOOCOMMERCE SINGLE PRODUCT PAGE - MODERN GLASS NEOMORPHIC DESIGN
   ============================================================================ */

/* Product Main Container */
.single-product .product-main {
    padding: 100px 0 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Glass Neomorphic Box Base Style */
.glass-neomorphic-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(255, 255, 255, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-neomorphic-box:hover {
    box-shadow: 
        0 12px 48px rgba(255, 255, 255, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Product Container Grid */
.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 0 60px;
    margin-bottom: 80px;
}

/* Product Gallery Section */
.product-gallery-section {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.product-images {
    padding: 30px;
    overflow: hidden;
}

.main-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.02);
}

.product-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
    z-index: 2;
}

/* Product Thumbnails */
.product-thumbnails {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumb-item {
    width: calc(20% - 10px);
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumb-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.thumb-item:hover img {
    transform: scale(1.1);
}

.thumb-item.active {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

/* Product Info Section */
.product-info-section {
    display: flex;
    flex-direction: column;
}

.product-details {
    padding: 40px;
}

/* Product Title */
.product-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.3;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.product-rating .star-rating {
    display: flex;
    gap: 4px;
}

.rating-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Product Price Box */
.product-price-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    box-sizing: border-box;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.price-wrapper .price {
    font-size: clamp(1.3rem, 5vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.price-wrapper ins {
    text-decoration: none;
    color: #667eea;
}

.price-wrapper del {
    color: rgba(255, 255, 255, 0.4);
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: 400;
}

.save-amount {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.15);
    border-radius: 50px;
    width: fit-content;
    max-width: 100%;
    flex-wrap: wrap;
}

.save-text {
    color: #667eea;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    font-weight: 600;
}

.save-price {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    font-weight: 600;
}

/* Product Short Description */
.product-short-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.product-short-description p {
    margin: 0 0 15px;
}

/* Product Stock Info */
.product-stock-info {
    margin-bottom: 30px;
}

.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.stock-status.in-stock {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.stock-status.in-stock svg {
    color: #10b981;
}

.stock-status.out-of-stock {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.stock-status.out-of-stock svg {
    color: #ef4444;
}

/* Add to Cart Section */
.product-add-to-cart {
    margin-bottom: 30px;
}

.product-add-to-cart .cart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-wrapper label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'IRANSansX', sans-serif;
}

.quantity-wrapper .quantity {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quantity-wrapper .quantity input[type="number"] {
    width: 80px;
    text-align: center;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 8px;
}

.quantity-wrapper .quantity input[type="number"]:focus {
    outline: none;
}

/* Add to Cart Button */
.single_add_to_cart_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'IRANSansX', sans-serif;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.single_add_to_cart_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

.single_add_to_cart_button:hover::before {
    left: 100%;
}

.single_add_to_cart_button:active {
    transform: translateY(0);
}

.single_add_to_cart_button.disabled {
    background: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    box-shadow: none;
}

.single_add_to_cart_button svg {
    width: 20px;
    height: 20px;
}

/* Product Meta Info */
.product-meta-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-item {
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
}

.meta-label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    min-width: 120px;
}

.meta-value {
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.meta-value a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.meta-value a:hover {
    color: #764ba2;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'IRANSansX', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.action-btn svg {
    width: 20px;
    height: 20px;
}

/* Product Tabs Container */
.product-tabs-container {
    padding: 0 60px;
    margin-bottom: 80px;
}

.product-tabs {
    padding: 0;
    overflow: hidden;
}

.tabs-header {
    display: flex;
    gap: 5px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px 16px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-button {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'IRANSansX', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: transform 0.3s ease;
}

.tab-button:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.tab-button.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.tab-button.active::after {
    transform: translateX(-50%) scaleX(1);
}

.tabs-content {
    padding: 40px;
}

.tab-panel {
    display: none;
    animation: fadeInTab 0.4s ease;
}

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

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

.tab-content-wrapper {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.tab-content-wrapper h2,
.tab-content-wrapper h3,
.tab-content-wrapper h4 {
    color: #ffffff;
    margin: 30px 0 15px;
}

.tab-content-wrapper p {
    margin-bottom: 20px;
}

.tab-content-wrapper ul,
.tab-content-wrapper ol {
    padding-right: 25px;
    margin-bottom: 20px;
}

.tab-content-wrapper li {
    margin-bottom: 10px;
}

/* Product Attributes Table */
.product-attributes {
    width: 100%;
    border-collapse: collapse;
}

.product-attributes tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-attributes th,
.product-attributes td {
    padding: 15px 20px;
    text-align: right;
}

.product-attributes th {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    width: 30%;
    background: rgba(255, 255, 255, 0.02);
}

.product-attributes td {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================================================
   WooCommerce Reviews Section
   ============================================================================ */

/* Reviews Container */
#reviews {
    padding: 0;
}

#reviews .woocommerce-Reviews-title,
#reviews #comments .woocommerce-Reviews-title {
    color: rgba(255, 255, 255, 0.95);
    font-family: 'IRANSansX', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Comments List */
#reviews #comments {
    margin-bottom: 40px;
}

#reviews #comments ol.commentlist {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual Comment */
#reviews #comments ol.commentlist li {
    margin-bottom: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    list-style: none;
}

#reviews #comments ol.commentlist li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Comment Container */
#reviews #comments ol.commentlist li .comment_container {
    display: flex;
    gap: 20px;
}

/* Avatar */
#reviews #comments ol.commentlist li img.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* Comment Text */
#reviews #comments ol.commentlist li .comment-text {
    flex: 1;
}

/* Comment Meta */
#reviews .woocommerce-review__author {
    color: rgba(255, 255, 255, 0.95);
    font-family: 'IRANSansX', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

#reviews .woocommerce-review__published-date {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'IRANSansX', sans-serif;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: block;
}

/* Review Rating */
#reviews .woocommerce-review__dash {
    display: none;
}

#reviews .star-rating {
    margin-bottom: 12px;
    display: inline-flex;
    gap: 2px;
}

/* Review Description */
#reviews .description {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'IRANSansX', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 12px;
}

#reviews .description p {
    margin: 0;
}

/* Review Form */
#review_form_wrapper {
    margin-top: 40px;
}

#review_form_wrapper #review_form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
}

#review_form_wrapper #respond .comment-reply-title {
    color: rgba(255, 255, 255, 0.95);
    font-family: 'IRANSansX', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Form Fields */
#review_form_wrapper .comment-form-rating {
    margin-bottom: 20px;
}

#review_form_wrapper .comment-form-rating label {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'IRANSansX', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

#review_form_wrapper .stars {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

#review_form_wrapper .stars a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

#review_form_wrapper .stars a:hover,
#review_form_wrapper .stars a.active {
    color: #FFB800;
    transform: scale(1.1);
}

#review_form_wrapper .comment-form-comment,
#review_form_wrapper .comment-form-author,
#review_form_wrapper .comment-form-email {
    margin-bottom: 20px;
}

#review_form_wrapper .comment-form-comment label,
#review_form_wrapper .comment-form-author label,
#review_form_wrapper .comment-form-email label {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'IRANSansX', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

#review_form_wrapper textarea,
#review_form_wrapper input[type="text"],
#review_form_wrapper input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'IRANSansX', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    resize: vertical;
}

#review_form_wrapper textarea {
    min-height: 120px;
}

#review_form_wrapper textarea:focus,
#review_form_wrapper input[type="text"]:focus,
#review_form_wrapper input[type="email"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#review_form_wrapper textarea::placeholder,
#review_form_wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Submit Button */
#review_form_wrapper .form-submit {
    margin-top: 25px;
    margin-bottom: 0;
}

#review_form_wrapper .form-submit input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-family: 'IRANSansX', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

#review_form_wrapper .form-submit input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

#review_form_wrapper .form-submit input[type="submit"]:active {
    transform: translateY(0);
}

/* No Reviews Message */
#reviews #comments .woocommerce-noreviews {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'IRANSansX', sans-serif;
    font-size: 1rem;
}

/* Verified Badge */
#reviews .woocommerce-review__verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    font-family: 'IRANSansX', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-right: 10px;
}

#reviews .woocommerce-review__verified::before {
    content: '✓';
    font-weight: bold;
}

/* Related Products Section */
.related-products-section {
    padding: 0 60px;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 40px;
    text-align: center;
}

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

.related-product-item {
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-product-item:hover {
    transform: translateY(-8px);
}

.related-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.sale-badge-small {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.related-product-info {
    padding: 25px;
}

.related-product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
}

.related-product-price del {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    margin-left: 10px;
}

/* ============================================================================
   RESPONSIVE DESIGN - SINGLE PRODUCT
   ============================================================================ */

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
    .product-container {
        gap: 60px;
        padding: 0 80px;
    }
    
    .product-details {
        padding: 50px;
    }
}

/* Large Screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .product-container {
        gap: 45px;
        padding: 0 50px;
    }
}

/* Medium Screens (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .product-container {
        gap: 40px;
        padding: 0 40px;
    }
    
    .product-details {
        padding: 35px;
    }
    
    .tabs-content {
        padding: 35px;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .single-product .product-main {
        padding: 80px 0 60px;
    }
    
    .product-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
        margin-bottom: 60px;
    }
    
    .product-gallery-section {
        position: static;
    }
    
    .product-details {
        padding: 30px;
    }
    
    .product-tabs-container,
    .related-products-section {
        padding: 0 30px;
    }
    
    .tabs-content {
        padding: 30px;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile (600px - 767px) */
@media (max-width: 767px) {
    .single-product .product-main {
        padding: 70px 0 50px;
    }
    
    .product-container {
        padding: 0 20px;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .product-images {
        padding: 20px;
    }
    
    .product-details {
        padding: 25px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .price-wrapper .price {
        font-size: 1.8rem;
    }
    
    .product-tabs-container,
    .related-products-section {
        padding: 0 20px;
        margin-bottom: 50px;
    }
    
    .tabs-header {
        flex-direction: column;
        gap: 8px;
    }
    
    .tab-button {
        padding: 14px 20px;
    }
    
    .tabs-content {
        padding: 25px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .thumb-item {
        width: calc(25% - 10px);
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Reviews Responsive */
    #reviews #comments ol.commentlist li {
        padding: 20px;
    }
    
    #reviews #comments ol.commentlist li .comment_container {
        flex-direction: column;
        gap: 15px;
    }
    
    #reviews #comments ol.commentlist li img.avatar {
        width: 50px;
        height: 50px;
    }
    
    #review_form_wrapper #review_form {
        padding: 20px;
    }
    
    #review_form_wrapper .stars a {
        font-size: 20px;
    }
}

/* Small Mobile (< 600px) */
@media (max-width: 599px) {
    .product-container {
        padding: 0 15px;
        gap: 25px;
    }
    
    .product-details,
    .tabs-content {
        padding: 20px;
    }
    
    .product-price-box {
        padding: 20px;
    }
    
    .product-meta-info {
        padding: 20px;
    }
    
    .meta-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .meta-label {
        min-width: auto;
    }
}

/* ============================================================================
   STICKY BOTTOM BAR - MOBILE ONLY - MINIMAL DESIGN
   ============================================================================ */

/* Sticky Bottom Bar - Hidden by default */
.product-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    padding: 14px 18px;
    z-index: 1000;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.product-sticky-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

/* Sticky Price Section - Left Side */
.sticky-price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    order: 2;
    justify-content: center;
}

.sticky-price-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    display: none;
}

.sticky-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1.2;
    display: block;
}

.sticky-price del {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
    font-weight: 400;
    margin-top: 2px;
}

.sticky-price ins {
    text-decoration: none;
}

/* Sticky Add to Cart Button - Right Side */
.sticky-add-to-cart {
    flex-shrink: 0;
    order: 1;
    padding: 11px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'IRANSansX', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.35);
    text-decoration: none;
    white-space: nowrap;
}

.sticky-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.5);
}

.sticky-add-to-cart:active {
    transform: translateY(0);
}

.sticky-add-to-cart svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}

/* Show only on mobile (768px and below) */
@media (max-width: 768px) {
    .product-sticky-bar {
        display: block;
    }
    
    /* Add padding to prevent content from being hidden */
    .single-product .product-main {
        padding-bottom: 80px;
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 480px) {
    .product-sticky-bar {
        padding: 12px 16px;
    }
    
    .product-sticky-bar-content {
        gap: 12px;
    }
    
    .sticky-price-section {
        gap: 3px;
    }
    
    .sticky-price {
        font-size: 1.2rem;
    }
    
    .sticky-price del {
        font-size: 0.8rem;
    }
    
    .sticky-add-to-cart {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .sticky-add-to-cart svg {
        width: 17px;
        height: 17px;
    }
}

@media (max-width: 360px) {
    .product-sticky-bar {
        padding: 11px 14px;
    }
    
    .product-sticky-bar-content {
        gap: 10px;
    }
    
    .sticky-price-section {
        gap: 2px;
    }
    
    .sticky-price {
        font-size: 1.1rem;
    }
    
    .sticky-price del {
        font-size: 0.75rem;
    }
    
    .sticky-add-to-cart {
        font-size: 0.85rem;
        padding: 9px 18px;
        gap: 6px;
    }
    
    .sticky-add-to-cart svg {
        width: 16px;
        height: 16px;
    }
}

/* Safe Area for devices with notch (iPhone X, etc.) */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .product-sticky-bar {
        padding-bottom: calc(14px + env(safe-area-inset-bottom));
    }
    
    @media (max-width: 480px) {
        .product-sticky-bar {
            padding-bottom: calc(12px + env(safe-area-inset-bottom));
        }
    }
    
    @media (max-width: 360px) {
        .product-sticky-bar {
            padding-bottom: calc(11px + env(safe-area-inset-bottom));
        }
    }
}

/* ============================================================================
   PRODUCT PAGE RESPONSIVE - MOBILE FIRST APPROACH
   ============================================================================ */

/* ============================================================================
   BASE MOBILE FIXES - Prevent Common Issues
   ============================================================================ */

/* Prevent horizontal scroll on all devices */
.product-main,
.product-container,
.product-gallery-section,
.product-info-section,
.product-images,
.product-details,
.related-products-section,
.product-tabs-container {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Ensure all child elements respect container width */
.product-main *,
.product-container *,
.product-gallery-section *,
.product-info-section *,
.product-images *,
.product-details * {
    box-sizing: border-box;
    max-width: 100%;
}

/* Image responsiveness */
.main-product-image img,
.product-main-img,
.thumb-item img,
.related-product-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Prevent text overflow */
.product-title,
.product-short-description,
.meta-item,
.product-description {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Mobile viewport optimization */
@media (max-width: 991px) {
    /* Force single column on tablets and below */
    .product-container {
        grid-template-columns: 1fr !important;
    }
    
    /* Remove sticky on mobile for better UX */
    .product-gallery-section {
        position: static !important;
        top: auto !important;
    }
    
    /* Ensure images scale properly */
    .main-product-image {
        width: 100%;
        max-width: 100%;
    }
    
    /* Full width buttons on mobile */
    .single_add_to_cart_button,
    .action-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    /* Stack action buttons vertically */
    .product-actions {
        flex-direction: column;
        width: 100%;
    }
    
    /* Stack tabs vertically on mobile */
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-button {
        width: 100%;
        text-align: center;
    }
    
    /* Single column for related products */
    .related-products-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .product-container {
        padding: 0 80px;
        gap: 60px;
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .product-images {
        padding: 40px;
    }
    
    .product-details {
        padding: 40px;
    }
    
    .product-title {
        font-size: 2.2rem;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .product-container {
        padding: 0 50px;
        gap: 40px;
    }
}

/* Laptop (992px - 1199px) */
@media (max-width: 1199px) {
    .product-container {
        padding: 0 40px;
        gap: 35px;
    }
    
    .product-title {
        font-size: 1.7rem;
    }
    
    .product-price-box .price-wrapper {
        font-size: 1.6rem;
    }
    
    .related-products-section {
        padding: 0 40px;
    }
    
    .product-tabs-container {
        padding: 0 40px;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) {
    .product-container {
        grid-template-columns: 1fr !important;
        gap: 30px;
        padding: 0 20px;
    }
    
    .product-gallery-section {
        position: static !important;
        top: auto;
    }
    
    .product-images {
        padding: 20px;
    }
    
    .product-details {
        padding: 25px;
    }
    
    .product-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .product-thumbnails {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .thumb-item {
        width: calc(20% - 8px);
        min-width: 60px;
    }
    
    .related-products-section {
        padding: 0 20px;
        margin-bottom: 50px;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-tabs-container {
        padding: 0 20px;
        margin-bottom: 50px;
    }
    
    .tabs-content {
        padding: 25px;
    }
    
    .product-price-box {
        padding: 20px;
        margin-bottom: 25px;
        width: 100%;
    }
    
    .price-wrapper .price {
        font-size: clamp(1.5rem, 4.5vw, 2rem) !important;
    }
    
    .price-wrapper del {
        font-size: clamp(1.1rem, 3vw, 1.3rem) !important;
    }
    
    .save-amount {
        padding: 7px 14px;
    }
    
    .product-meta-info {
        padding: 20px;
    }
}

/* Tablet Portrait (600px - 767px) */
@media (max-width: 767px) {
    /* Container */
    .product-container {
        grid-template-columns: 1fr !important;
        padding: 0 15px;
        gap: 25px;
        margin-bottom: 50px;
    }
    
    /* Images Section */
    .product-images {
        padding: 15px;
        border-radius: 16px;
    }
    
    .main-product-image {
        border-radius: 12px;
        margin-bottom: 15px;
    }
    
    .product-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
        top: 10px;
        right: 10px;
    }
    
    .product-thumbnails {
        gap: 8px;
    }
    
    .thumb-item {
        width: calc(25% - 6px);
        min-width: 55px;
        border-radius: 8px;
    }
    
    /* Product Details */
    .product-details {
        padding: 20px;
        border-radius: 16px;
    }
    
    .product-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .product-rating {
        margin-bottom: 15px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .product-rating .star-rating svg {
        width: 18px;
        height: 18px;
    }
    
    .rating-count {
        font-size: 0.85rem;
    }
    
    /* Price Box */
    .product-price-box {
        padding: 16px;
        margin-bottom: 16px;
        border-radius: 12px;
        width: 100%;
    }
    
    .price-wrapper {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .price-wrapper .price {
        font-size: clamp(1.2rem, 6vw, 1.5rem) !important;
    }
    
    .price-wrapper del {
        font-size: clamp(0.9rem, 4vw, 1.1rem) !important;
    }
    
    .save-amount {
        padding: 6px 12px;
        gap: 6px;
        font-size: 0.75rem;
    }
    
    .save-text,
    .save-price {
        font-size: 0.75rem;
    }
    
    /* Description & Stock */
    .product-short-description {
        font-size: 0.88rem;
        margin-bottom: 18px;
        line-height: 1.6;
    }
    
    .product-stock-info {
        margin-bottom: 18px;
    }
    
    .stock-status {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .stock-status svg {
        width: 16px;
        height: 16px;
    }
    
    /* Add to Cart */
    .product-add-to-cart {
        margin-bottom: 18px;
    }
    
    .quantity-wrapper {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .quantity-wrapper label {
        font-size: 0.88rem;
    }
    
    .quantity-wrapper .quantity {
        width: 100%;
    }
    
    .quantity-wrapper .quantity input[type="number"] {
        width: 100%;
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .single_add_to_cart_button {
        width: 100%;
        padding: 15px 25px;
        font-size: 0.95rem;
        border-radius: 12px;
    }
    
    .single_add_to_cart_button svg {
        width: 18px;
        height: 18px;
    }
    
    /* Meta Info */
    .product-meta-info {
        padding: 18px;
        margin-bottom: 18px;
        gap: 10px;
        border-radius: 14px;
    }
    
    .meta-item {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
    
    .meta-label {
        font-size: 0.8rem;
    }
    
    /* Actions */
    .product-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .action-btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.85rem;
        border-radius: 10px;
    }
    
    .action-btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* Related Products */
    .related-products-section {
        padding: 0 15px;
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .related-product-item {
        padding: 15px;
    }
    
    .related-product-title {
        font-size: 0.95rem;
    }
    
    /* Tabs */
    .product-tabs-container {
        padding: 0 15px;
        margin-bottom: 50px;
    }
    
    .tabs-header {
        flex-direction: column;
        padding: 6px;
        gap: 4px;
    }
    
    .tab-button {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.88rem;
        border-radius: 10px;
        text-align: center;
    }
    
    .tabs-content {
        padding: 20px;
    }
    
    .product-attributes th,
    .product-attributes td {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    /* Reviews */
    #reviews .woocommerce-Reviews-title,
    #reviews #comments .woocommerce-Reviews-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    #reviews #comments ol.commentlist li {
        padding: 15px;
        margin-bottom: 12px;
        border-radius: 12px;
    }
    
    #reviews #comments ol.commentlist li .comment_container {
        flex-direction: column;
        gap: 10px;
    }
    
    #reviews #comments ol.commentlist li img.avatar {
        width: 45px;
        height: 45px;
    }
    
    #reviews .woocommerce-review__author {
        font-size: 0.9rem;
    }
    
    #reviews .woocommerce-review__published-date {
        font-size: 0.75rem;
    }
    
    #reviews .description {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    /* Review Form */
    #review_form_wrapper #review_form {
        padding: 18px;
        border-radius: 12px;
    }
    
    #review_form_wrapper #respond .comment-reply-title {
        font-size: 1.1rem;
        margin-bottom: 18px;
        padding-bottom: 10px;
    }
    
    #review_form_wrapper .comment-form-rating label,
    #review_form_wrapper .comment-form-comment label,
    #review_form_wrapper .comment-form-author label,
    #review_form_wrapper .comment-form-email label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    #review_form_wrapper .stars {
        gap: 6px;
    }
    
    #review_form_wrapper .stars a {
        font-size: 20px;
    }
    
    #review_form_wrapper textarea,
    #review_form_wrapper input[type="text"],
    #review_form_wrapper input[type="email"] {
        padding: 12px 15px;
        font-size: 0.85rem;
        border-radius: 10px;
    }
    
    #review_form_wrapper textarea {
        min-height: 100px;
    }
    
    #review_form_wrapper .form-submit {
        margin-top: 18px;
    }
    
    #review_form_wrapper .form-submit input[type="submit"] {
        width: 100%;
        padding: 14px 30px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
}

/* Mobile Large (480px - 599px) */
@media (max-width: 599px) {
    /* Simplified for mobile - no need for all overwrites */
    .product-container {
        padding: 0 12px !important;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .product-images,
    .product-details {
        padding: 15px;
    }
    
    .product-title {
        font-size: 1.25rem;
    }
    
    .thumb-item {
        width: calc(25% - 6px);
    }
    
    /* Price Box Mobile */
    .product-price-box {
        padding: 14px !important;
        margin-bottom: 15px !important;
        border-radius: 10px !important;
    }
    
    .price-wrapper {
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-wrapper .price {
        font-size: clamp(1.1rem, 6.5vw, 1.4rem) !important;
    }
    
    .price-wrapper del {
        font-size: clamp(0.85rem, 4.5vw, 1rem) !important;
    }
    
    .save-amount {
        padding: 5px 10px;
        gap: 5px;
        font-size: 0.7rem;
    }
    
    .save-text,
    .save-price {
        font-size: 0.7rem;
    }
}

/* Mobile Medium (360px - 479px) */
@media (max-width: 479px) {
    .product-container {
        padding: 0 10px !important;
        gap: 18px;
    }
    
    .product-images,
    .product-details {
        padding: 12px;
    }
    
    .product-title {
        font-size: 1.15rem;
        line-height: 1.4;
    }
    
    /* Price Box Mobile Medium */
    .product-price-box {
        padding: 12px !important;
        margin-bottom: 14px !important;
        border-radius: 10px !important;
    }
    
    .price-wrapper {
        gap: 6px;
        flex-direction: column;
    }
    
    .price-wrapper .price {
        font-size: clamp(1rem, 7vw, 1.25rem) !important;
    }
    
    .price-wrapper del {
        font-size: clamp(0.75rem, 5vw, 0.95rem) !important;
    }
    
    .save-amount {
        padding: 4px 10px;
        gap: 4px;
        border-radius: 20px;
    }
    
    .save-text,
    .save-price {
        font-size: 0.65rem;
    }
    
    .single_add_to_cart_button {
        padding: 13px 20px;
        font-size: 0.88rem;
    }
    
    .thumb-item {
        width: calc(33.333% - 5px);
    }
    
    .product-tabs-container,
    .related-products-section {
        padding: 0 10px;
    }
    
    .tabs-content {
        padding: 15px;
    }
    
    .section-title {
        font-size: 1.15rem;
    }
    
    .related-product-item {
        padding: 12px;
    }
    
    #review_form_wrapper #review_form,
    #reviews #comments ol.commentlist li {
        padding: 12px;
    }
}

/* Mobile Small (< 360px) */
@media (max-width: 359px) {
    .product-container {
        padding: 0 8px !important;
        gap: 15px;
    }
    
    .product-images,
    .product-details {
        padding: 10px;
    }
    
    .product-title {
        font-size: 1.05rem;
        line-height: 1.3;
    }
    
    /* Price Box Mobile Small */
    .product-price-box {
        padding: 10px !important;
        margin-bottom: 12px !important;
        border-radius: 8px !important;
    }
    
    .price-wrapper {
        gap: 5px;
        flex-direction: column;
        margin-bottom: 8px;
    }
    
    .price-wrapper .price {
        font-size: clamp(0.95rem, 7.5vw, 1.15rem) !important;
    }
    
    .price-wrapper del {
        font-size: clamp(0.7rem, 5.5vw, 0.9rem) !important;
    }
    
    .save-amount {
        padding: 4px 8px;
        gap: 3px;
        border-radius: 15px;
    }
    
    .save-text,
    .save-price {
        font-size: 0.6rem;
    }
    
    .single_add_to_cart_button {
        padding: 12px 16px;
        font-size: 0.82rem;
    }
    
    .tab-button {
        padding: 10px 12px;
        font-size: 0.78rem;
    }
    
    .action-btn {
        padding: 10px 12px;
        font-size: 0.78rem;
    }
    
    .thumb-item {
        width: calc(50% - 4px);
    }
    
    .section-title {
        font-size: 1.05rem;
    }
}

/* Landscape Mode for Mobile Devices */
@media (max-height: 600px) and (orientation: landscape) {
    .product-gallery-section {
        position: static !important;
        top: auto;
    }
    
    .product-container {
        grid-template-columns: 45% 55%;
        gap: 15px;
        padding: 0 15px;
    }
    
    .main-product-image {
        max-height: 350px;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
    
    .product-details {
        padding: 15px;
    }
    
    .product-thumbnails {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .thumb-item {
        width: calc(20% - 5px);
    }
}

/* High Resolution Displays (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .product-main-img,
    .thumb-item img,
    .related-product-item img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .product-actions,
    .product-add-to-cart,
    .tabs-header,
    #review_form_wrapper,
    .related-products-section {
        display: none !important;
    }
    
    .product-container {
        grid-template-columns: 1fr !important;
        padding: 0;
        background: white;
    }
    
    .product-details,
    .product-images {
        background: white !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .product-title,
    .product-price-box,
    .product-short-description,
    .product-meta-info {
        color: #000 !important;
        background: white !important;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
}

/* ============================================================================
   ABOUT US PAGE - MINIMAL ELEGANT DESIGN
   ============================================================================ */

/* About Main */
.about-main {
    padding: 100px 0 80px;
    min-height: 100vh;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Hero Section */
.about-hero {
    text-align: center;
    padding: 60px 0 80px;
}

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

.about-hero-image {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 25px;
    line-height: 1.2;
}

.about-hero-excerpt {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Main Content */
.about-content {
    padding: 0 0 80px;
}

.about-content-inner {
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-content-inner p {
    margin-bottom: 25px;
}

.about-content-inner h2,
.about-content-inner h3 {
    color: #ffffff;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 20px;
}

.about-content-inner h2 {
    font-size: 2rem;
}

.about-content-inner h3 {
    font-size: 1.5rem;
}

/* Section Title */
.about-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 50px;
}

/* Mission & Vision */
.about-mission-vision {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-mv-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 50px;
    text-align: center;
}

.about-mv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    color: #667eea;
    margin-bottom: 25px;
}

.about-mv-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
}

.about-mv-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin: 0;
}

/* Values */
.about-values {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-value-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.2s ease;
}

.about-value-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.about-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(102, 126, 234, 0.08);
    border-radius: 50%;
    color: #667eea;
    margin-bottom: 20px;
}

.about-value-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
}

.about-value-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Stats */
.about-stats {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-stat-item {
    text-align: center;
    padding: 30px 20px;
}

.about-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 10px;
    line-height: 1;
}

.about-stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* CTA */
.about-cta {
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px;
}

.about-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 40px;
}

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

.about-cta-button {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'IRANSansX', sans-serif;
}

.about-cta-button-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
}

.about-cta-button-primary:hover {
    opacity: 0.9;
}

.about-cta-button-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================================================
   ABOUT PAGE RESPONSIVE - ADVANCED & COMPLETE
   ============================================================================ */

/* Large Desktop (1400px - 1920px) */
@media (min-width: 1400px) and (max-width: 1920px) {
    .about-container {
        max-width: 1600px;
        padding: 0 80px;
    }
    
    .about-hero-title {
        font-size: 3.5rem;
    }
    
    .about-section-title {
        font-size: 3rem;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .about-container {
        max-width: 1200px;
        padding: 0 50px;
    }
    
    .about-hero-title {
        font-size: 2.8rem;
    }
    
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .about-stats-grid {
        gap: 35px;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .about-container {
        padding: 0 40px;
    }
    
    .about-hero {
        padding: 50px 0 70px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-excerpt {
        font-size: 1.15rem;
    }
    
    .about-section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .about-mv-grid {
        gap: 40px;
    }
    
    .about-mv-item {
        padding: 45px 35px;
    }
    
    .about-stat-number {
        font-size: 3.2rem;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .about-main {
        padding: 90px 0 70px;
    }
    
    .about-container {
        padding: 0 35px;
    }
    
    .about-hero {
        padding: 40px 0 60px;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .about-hero-excerpt {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .about-content {
        padding: 0 0 60px;
    }
    
    .about-content-inner {
        font-size: 1.05rem;
        line-height: 1.8;
    }
    
    .about-section-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }
    
    .about-mission-vision,
    .about-values,
    .about-stats {
        padding: 70px 0;
    }
    
    .about-mv-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .about-mv-item {
        padding: 40px 30px;
    }
    
    .about-mv-icon {
        width: 70px;
        height: 70px;
    }
    
    .about-mv-icon svg {
        width: 42px;
        height: 42px;
    }
    
    .about-mv-title {
        font-size: 1.6rem;
    }
    
    .about-mv-text {
        font-size: 1.05rem;
    }
    
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-value-item {
        padding: 30px 20px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .about-cta {
        padding: 80px 0;
    }
    
    .about-cta-title {
        font-size: 2.2rem;
    }
    
    .about-cta-text {
        font-size: 1.15rem;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .about-main {
        padding: 80px 0 60px;
    }
    
    .about-container {
        padding: 0 25px;
    }
    
    .about-hero {
        padding: 30px 0 50px;
    }
    
    .about-hero-image {
        margin-bottom: 30px;
        border-radius: 12px;
    }
    
    .about-hero-title {
        font-size: 1.9rem;
        margin-bottom: 18px;
    }
    
    .about-hero-excerpt {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .about-content {
        padding: 0 0 50px;
    }
    
    .about-content-inner {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .about-content-inner h2 {
        font-size: 1.6rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .about-content-inner h3 {
        font-size: 1.3rem;
    }
    
    .about-content-inner p {
        margin-bottom: 20px;
    }
    
    .about-section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .about-mission-vision,
    .about-values,
    .about-stats {
        padding: 60px 0;
    }
    
    .about-mv-grid {
        gap: 30px;
    }
    
    .about-mv-item {
        padding: 35px 25px;
        border-radius: 10px;
    }
    
    .about-mv-icon {
        width: 65px;
        height: 65px;
    }
    
    .about-mv-icon svg {
        width: 38px;
        height: 38px;
    }
    
    .about-mv-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .about-mv-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .about-value-item {
        padding: 28px 20px;
    }
    
    .about-value-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 18px;
    }
    
    .about-value-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .about-value-title {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }
    
    .about-value-text {
        font-size: 0.93rem;
        line-height: 1.6;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .about-stat-item {
        padding: 25px 15px;
    }
    
    .about-stat-number {
        font-size: 2.8rem;
        margin-bottom: 8px;
    }
    
    .about-stat-label {
        font-size: 1rem;
    }
    
    .about-cta {
        padding: 70px 0;
    }
    
    .about-cta-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .about-cta-text {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-cta-button {
        width: 100%;
        max-width: 100%;
        padding: 14px 32px;
    }
}

/* Mobile Portrait (320px - 575px) */
@media (max-width: 575px) {
    .about-main {
        padding: 70px 0 50px;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-hero {
        padding: 25px 0 40px;
    }
    
    .about-hero-image {
        margin-bottom: 25px;
        border-radius: 10px;
    }
    
    .about-hero-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .about-hero-excerpt {
        font-size: 1rem;
        line-height: 1.65;
    }
    
    .about-content {
        padding: 0 0 40px;
    }
    
    .about-content-inner {
        font-size: 0.95rem;
        line-height: 1.75;
    }
    
    .about-content-inner h2 {
        font-size: 1.4rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }
    
    .about-content-inner h3 {
        font-size: 1.2rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .about-content-inner p {
        margin-bottom: 18px;
    }
    
    .about-section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .about-mission-vision,
    .about-values,
    .about-stats {
        padding: 50px 0;
    }
    
    .about-mv-grid {
        gap: 25px;
    }
    
    .about-mv-item {
        padding: 30px 20px;
        border-radius: 8px;
    }
    
    .about-mv-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .about-mv-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .about-mv-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .about-mv-text {
        font-size: 0.95rem;
        line-height: 1.65;
    }
    
    .about-values-grid {
        gap: 15px;
    }
    
    .about-value-item {
        padding: 25px 18px;
        border-radius: 8px;
    }
    
    .about-value-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 16px;
    }
    
    .about-value-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .about-value-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .about-value-text {
        font-size: 0.9rem;
        line-height: 1.55;
    }
    
    .about-stats {
        padding: 50px 0;
        background: rgba(255, 255, 255, 0.015);
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-stat-item {
        padding: 20px 15px;
    }
    
    .about-stat-number {
        font-size: 2.5rem;
        margin-bottom: 6px;
    }
    
    .about-stat-label {
        font-size: 0.95rem;
    }
    
    .about-cta {
        padding: 60px 0;
    }
    
    .about-cta-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .about-cta-text {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .about-cta-buttons {
        gap: 12px;
    }
    
    .about-cta-button {
        padding: 13px 28px;
        font-size: 0.95rem;
    }
}

/* Extra Small Mobile (max-width: 374px) */
@media (max-width: 374px) {
    .about-container {
        padding: 0 16px;
    }
    
    .about-hero-title {
        font-size: 1.4rem;
    }
    
    .about-hero-excerpt {
        font-size: 0.95rem;
    }
    
    .about-section-title {
        font-size: 1.35rem;
    }
    
    .about-mv-item {
        padding: 25px 16px;
    }
    
    .about-mv-icon {
        width: 56px;
        height: 56px;
    }
    
    .about-mv-title {
        font-size: 1.2rem;
    }
    
    .about-mv-text {
        font-size: 0.92rem;
    }
    
    .about-value-item {
        padding: 22px 16px;
    }
    
    .about-stat-number {
        font-size: 2.2rem;
    }
    
    .about-cta-title {
        font-size: 1.45rem;
    }
    
    .about-cta-button {
        padding: 12px 24px;
        font-size: 0.93rem;
    }
}

/* Landscape Mode Optimization (all devices) */
@media (max-height: 500px) and (orientation: landscape) {
    .about-hero {
        padding: 20px 0 30px;
    }
    
    .about-mission-vision,
    .about-values,
    .about-stats,
    .about-cta {
        padding: 40px 0;
    }
    
    .about-mv-item,
    .about-value-item {
        padding: 25px 20px;
    }
    
    .about-stat-item {
        padding: 20px 15px;
    }
}

/* High DPI Screens (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .about-hero-image img,
    .about-mv-icon svg,
    .about-value-icon svg {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles for About Page */
@media print {
    .about-main {
        padding: 20px 0;
    }
    
    .about-hero-image,
    .about-mv-icon,
    .about-value-icon {
        border: 1px solid #ddd;
    }
    
    .about-cta-buttons {
        display: none;
    }
    
    .about-section-title,
    .about-hero-title {
        color: #000 !important;
        page-break-after: avoid;
    }
    
    .about-mv-item,
    .about-value-item,
    .about-stat-item {
        page-break-inside: avoid;
    }
}

/* ============================================================================
   PORTFOLIO PAGE - MINIMAL ELEGANT DESIGN
   ============================================================================ */

/* Portfolio Main */
.portfolio-main {
    padding: 100px 0 80px;
    min-height: 100vh;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Portfolio Header */
.portfolio-header {
    text-align: center;
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px;
}

.portfolio-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.portfolio-filter-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'IRANSansX', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.portfolio-filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.portfolio-filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #ffffff;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-item-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Portfolio Item Image */
.portfolio-item-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.portfolio-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.3);
}

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

/* Portfolio Item Overlay */
.portfolio-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.portfolio-item:hover .portfolio-item-overlay {
    opacity: 1;
}

.portfolio-item-overlay-content {
    width: 100%;
}

.portfolio-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.portfolio-item-client {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 12px;
}

.portfolio-item-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.portfolio-item-category {
    padding: 4px 12px;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #ffffff;
}

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

.portfolio-item-link,
.portfolio-item-details {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'IRANSansX', sans-serif;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.portfolio-item-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.portfolio-item-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.portfolio-item-details {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.portfolio-item-details:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Portfolio Item Info */
.portfolio-item-info {
    padding: 20px 0 0;
}

.portfolio-item-info-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px;
}

.portfolio-item-info-client {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Portfolio Empty State */
.portfolio-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.portfolio-empty svg {
    margin-bottom: 25px;
    opacity: 0.3;
}

.portfolio-empty h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 12px;
}

.portfolio-empty p {
    font-size: 1rem;
    margin: 0;
}

/* Portfolio Modal */
.portfolio-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.portfolio-modal.active {
    opacity: 1;
    pointer-events: all;
}

.portfolio-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.portfolio-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow-y: auto;
    z-index: 1;
}

.portfolio-modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
}

.portfolio-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.portfolio-modal-header {
    position: relative;
}

.portfolio-modal-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.portfolio-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-modal-info {
    padding: 40px;
}

.portfolio-modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 25px;
}

.portfolio-modal-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.portfolio-modal-meta-item {
    display: flex;
    gap: 12px;
}

.portfolio-modal-meta-item svg {
    flex-shrink: 0;
    color: #667eea;
    margin-top: 2px;
}

.portfolio-modal-meta-item div {
    flex: 1;
}

.portfolio-modal-meta-item strong {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.portfolio-modal-meta-item span {
    display: block;
    font-size: 1rem;
    color: #ffffff;
}

.portfolio-modal-description {
    margin-bottom: 30px;
}

.portfolio-modal-description h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px;
}

.portfolio-modal-description p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.portfolio-modal-actions {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-modal-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'IRANSansX', sans-serif;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.portfolio-modal-button:hover {
    opacity: 0.9;
}

/* ============================================================================
   PORTFOLIO PAGE RESPONSIVE - ADVANCED & COMPLETE
   ============================================================================ */

/* Large Desktop (1400px - 1920px) */
@media (min-width: 1400px) and (max-width: 1920px) {
    .portfolio-container {
        max-width: 1600px;
        padding: 0 80px;
    }
    
    .portfolio-title {
        font-size: 3.5rem;
    }
    
    .portfolio-subtitle {
        font-size: 1.3rem;
        max-width: 800px;
    }
    
    .portfolio-grid {
        gap: 35px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .portfolio-container {
        max-width: 1200px;
        padding: 0 50px;
    }
    
    .portfolio-title {
        font-size: 2.8rem;
    }
    
    .portfolio-grid {
        gap: 28px;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .portfolio-main {
        padding: 95px 0 75px;
    }
    
    .portfolio-container {
        padding: 0 45px;
    }
    
    .portfolio-title {
        font-size: 2.6rem;
    }
    
    .portfolio-subtitle {
        font-size: 1.15rem;
    }
    
    .portfolio-header {
        padding-bottom: 45px;
        margin-bottom: 45px;
    }
    
    .portfolio-filters {
        gap: 12px;
        margin-bottom: 45px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .portfolio-item-overlay {
        padding: 22px;
    }
    
    .portfolio-item-title {
        font-size: 1.25rem;
    }
    
    .portfolio-modal-content {
        max-width: 850px;
    }
    
    .portfolio-modal-info {
        padding: 35px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .portfolio-main {
        padding: 90px 0 70px;
    }
    
    .portfolio-container {
        padding: 0 40px;
    }
    
    .portfolio-title {
        font-size: 2.4rem;
        margin-bottom: 18px;
    }
    
    .portfolio-subtitle {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .portfolio-header {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    
    .portfolio-filters {
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .portfolio-filter-btn {
        padding: 9px 20px;
        font-size: 0.92rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
    
    .portfolio-item-image {
        border-radius: 10px;
    }
    
    .portfolio-item-overlay {
        padding: 20px;
    }
    
    .portfolio-item-title {
        font-size: 1.2rem;
    }
    
    .portfolio-item-client {
        font-size: 0.88rem;
    }
    
    .portfolio-item-category {
        font-size: 0.78rem;
        padding: 3px 10px;
    }
    
    .portfolio-item-link,
    .portfolio-item-details {
        font-size: 0.88rem;
        padding: 7px 14px;
    }
    
    .portfolio-item-info-title {
        font-size: 1.05rem;
    }
    
    .portfolio-modal-content {
        max-width: 750px;
        max-height: 88vh;
    }
    
    .portfolio-modal-info {
        padding: 32px;
    }
    
    .portfolio-modal-title {
        font-size: 1.8rem;
        margin-bottom: 22px;
    }
    
    .portfolio-modal-meta {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 22px;
    }
    
    .portfolio-modal-description h3 {
        font-size: 1.2rem;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .portfolio-main {
        padding: 80px 0 60px;
    }
    
    .portfolio-container {
        padding: 0 30px;
    }
    
    .portfolio-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .portfolio-subtitle {
        font-size: 1.05rem;
        line-height: 1.65;
    }
    
    .portfolio-header {
        padding-bottom: 35px;
        margin-bottom: 35px;
    }
    
    .portfolio-filters {
        gap: 10px;
        margin-bottom: 35px;
    }
    
    .portfolio-filter-btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .portfolio-item-image {
        aspect-ratio: 16 / 10;
        border-radius: 10px;
    }
    
    .portfolio-item-overlay {
        padding: 20px;
    }
    
    .portfolio-item-title {
        font-size: 1.18rem;
        margin-bottom: 7px;
    }
    
    .portfolio-item-client {
        font-size: 0.86rem;
        margin-bottom: 10px;
    }
    
    .portfolio-item-categories {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .portfolio-item-category {
        font-size: 0.76rem;
        padding: 3px 10px;
    }
    
    .portfolio-item-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .portfolio-item-link,
    .portfolio-item-details {
        width: 100%;
        justify-content: center;
        font-size: 0.88rem;
        padding: 9px 16px;
    }
    
    .portfolio-item-info {
        padding: 18px 0 0;
    }
    
    .portfolio-item-info-title {
        font-size: 1.05rem;
    }
    
    .portfolio-item-info-client {
        font-size: 0.88rem;
    }
    
    .portfolio-modal-content {
        width: 95%;
        max-width: 100%;
        max-height: 90vh;
        border-radius: 12px;
    }
    
    .portfolio-modal-close {
        top: 15px;
        left: 15px;
        width: 38px;
        height: 38px;
    }
    
    .portfolio-modal-close svg {
        width: 20px;
        height: 20px;
    }
    
    .portfolio-modal-image {
        border-radius: 12px 12px 0 0;
    }
    
    .portfolio-modal-info {
        padding: 30px 25px;
    }
    
    .portfolio-modal-title {
        font-size: 1.65rem;
        margin-bottom: 20px;
    }
    
    .portfolio-modal-meta {
        gap: 14px;
        padding: 20px;
        border-radius: 8px;
    }
    
    .portfolio-modal-meta-item svg {
        width: 18px;
        height: 18px;
    }
    
    .portfolio-modal-meta-item strong {
        font-size: 0.82rem;
    }
    
    .portfolio-modal-meta-item span {
        font-size: 0.95rem;
    }
    
    .portfolio-modal-description h3 {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }
    
    .portfolio-modal-description p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    
    .portfolio-modal-button {
        width: 100%;
        justify-content: center;
        padding: 11px 24px;
        font-size: 0.95rem;
    }
}

/* Mobile Portrait (320px - 575px) */
@media (max-width: 575px) {
    .portfolio-main {
        padding: 70px 0 50px;
    }
    
    .portfolio-container {
        padding: 0 20px;
    }
    
    .portfolio-title {
        font-size: 1.7rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .portfolio-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .portfolio-header {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    
    .portfolio-filters {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .portfolio-filter-btn {
        padding: 7px 16px;
        font-size: 0.87rem;
        border-radius: 40px;
    }
    
    .portfolio-grid {
        gap: 20px;
    }
    
    .portfolio-item-image {
        aspect-ratio: 4 / 3;
        border-radius: 10px;
    }
    
    .portfolio-item-overlay {
        padding: 18px;
    }
    
    .portfolio-item-title {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .portfolio-item-client {
        font-size: 0.84rem;
        margin-bottom: 10px;
    }
    
    .portfolio-item-categories {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .portfolio-item-category {
        font-size: 0.74rem;
        padding: 2px 9px;
    }
    
    .portfolio-item-actions {
        gap: 8px;
    }
    
    .portfolio-item-link,
    .portfolio-item-details {
        font-size: 0.86rem;
        padding: 8px 14px;
    }
    
    .portfolio-item-link svg,
    .portfolio-item-details svg {
        width: 16px;
        height: 16px;
    }
    
    .portfolio-item-info {
        padding: 16px 0 0;
    }
    
    .portfolio-item-info-title {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .portfolio-item-info-client {
        font-size: 0.86rem;
    }
    
    .portfolio-empty {
        padding: 60px 20px;
    }
    
    .portfolio-empty svg {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .portfolio-empty h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .portfolio-empty p {
        font-size: 0.95rem;
    }
    
    .portfolio-modal-content {
        width: 96%;
        border-radius: 10px;
    }
    
    .portfolio-modal-close {
        top: 12px;
        left: 12px;
        width: 36px;
        height: 36px;
    }
    
    .portfolio-modal-close svg {
        width: 18px;
        height: 18px;
    }
    
    .portfolio-modal-image {
        border-radius: 10px 10px 0 0;
    }
    
    .portfolio-modal-info {
        padding: 25px 20px;
    }
    
    .portfolio-modal-title {
        font-size: 1.5rem;
        margin-bottom: 18px;
        line-height: 1.3;
    }
    
    .portfolio-modal-meta {
        gap: 12px;
        padding: 18px;
        margin-bottom: 25px;
    }
    
    .portfolio-modal-meta-item {
        gap: 10px;
    }
    
    .portfolio-modal-meta-item svg {
        width: 17px;
        height: 17px;
    }
    
    .portfolio-modal-meta-item strong {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }
    
    .portfolio-modal-meta-item span {
        font-size: 0.93rem;
    }
    
    .portfolio-modal-description {
        margin-bottom: 25px;
    }
    
    .portfolio-modal-description h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .portfolio-modal-description p {
        font-size: 0.93rem;
        line-height: 1.65;
        margin-bottom: 12px;
    }
    
    .portfolio-modal-actions {
        padding-top: 18px;
    }
    
    .portfolio-modal-button {
        padding: 10px 22px;
        font-size: 0.93rem;
    }
    
    .portfolio-modal-button svg {
        width: 18px;
        height: 18px;
    }
}

/* Extra Small Mobile (max-width: 374px) */
@media (max-width: 374px) {
    .portfolio-container {
        padding: 0 16px;
    }
    
    .portfolio-title {
        font-size: 1.5rem;
    }
    
    .portfolio-subtitle {
        font-size: 0.95rem;
    }
    
    .portfolio-filter-btn {
        padding: 6px 14px;
        font-size: 0.84rem;
    }
    
    .portfolio-item-overlay {
        padding: 16px;
    }
    
    .portfolio-item-title {
        font-size: 1.05rem;
    }
    
    .portfolio-item-client {
        font-size: 0.82rem;
    }
    
    .portfolio-item-category {
        font-size: 0.72rem;
        padding: 2px 8px;
    }
    
    .portfolio-item-link,
    .portfolio-item-details {
        font-size: 0.84rem;
        padding: 7px 12px;
    }
    
    .portfolio-modal-info {
        padding: 22px 18px;
    }
    
    .portfolio-modal-title {
        font-size: 1.35rem;
    }
    
    .portfolio-modal-meta {
        padding: 16px;
        gap: 10px;
    }
    
    .portfolio-modal-meta-item strong {
        font-size: 0.78rem;
    }
    
    .portfolio-modal-meta-item span {
        font-size: 0.9rem;
    }
    
    .portfolio-modal-description p {
        font-size: 0.9rem;
    }
    
    .portfolio-modal-button {
        padding: 9px 20px;
        font-size: 0.9rem;
    }
}

/* Landscape Mode Optimization (all devices) */
@media (max-height: 500px) and (orientation: landscape) {
    .portfolio-main {
        padding: 40px 0 30px;
    }
    
    .portfolio-header {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    
    .portfolio-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .portfolio-subtitle {
        font-size: 0.95rem;
    }
    
    .portfolio-filters {
        margin-bottom: 25px;
    }
    
    .portfolio-grid {
        gap: 18px;
    }
    
    .portfolio-item-image {
        aspect-ratio: 16 / 9;
    }
    
    .portfolio-modal-content {
        max-height: 95vh;
    }
    
    .portfolio-modal-info {
        padding: 25px 20px;
    }
}

/* High DPI Screens (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .portfolio-item-image img,
    .portfolio-modal-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .portfolio-item-placeholder svg,
    .portfolio-empty svg {
        image-rendering: auto;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .portfolio-item-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
    }
    
    .portfolio-item-overlay-content {
        transform: translateY(0);
    }
    
    .portfolio-filter-btn,
    .portfolio-item-link,
    .portfolio-item-details,
    .portfolio-modal-button {
        min-height: 44px;
    }
}

/* Print Styles for Portfolio Page */
@media print {
    .portfolio-main {
        padding: 20px 0;
    }
    
    .portfolio-header {
        border-bottom: 2px solid #000;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    
    .portfolio-title,
    .portfolio-subtitle {
        color: #000 !important;
    }
    
    .portfolio-filters,
    .portfolio-item-overlay,
    .portfolio-modal {
        display: none !important;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .portfolio-item {
        page-break-inside: avoid;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .portfolio-item-image {
        border: none;
    }
    
    .portfolio-item-info {
        padding: 15px;
        background: #f9f9f9;
    }
    
    .portfolio-item-info-title,
    .portfolio-item-info-client {
        color: #000 !important;
    }
}

/* ============================================================================
   ORDER PROJECT PAGE - MINIMAL ELEGANT DESIGN
   ============================================================================ */

/* Order Main */
.order-main {
    padding: 100px 0 80px;
    min-height: 100vh;
}

.order-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Order Header */
.order-header {
    text-align: center;
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Order Content Layout */
.order-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* Order Form */
.order-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
}

.project-order-form {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Form Sections */
.form-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
}

/* Form Rows */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-label .required {
    color: #ff6b6b;
    font-size: 1.1em;
}

.form-label .optional {
    font-size: 0.85em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.form-control {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'IRANSansX', sans-serif;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 12px center;
    padding-left: 40px;
}

select.form-control option {
    background: #1a1a1a;
    color: #ffffff;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-help {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -4px;
}

/* Form Actions */
.form-actions {
    padding-top: 10px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'IRANSansX', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit svg {
    flex-shrink: 0;
}

/* Form Response */
.form-response {
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 20px;
    animation: slideDown 0.3s ease;
}

.form-response.success {
    background: rgba(0, 163, 42, 0.15);
    border: 1px solid rgba(0, 163, 42, 0.3);
    color: #4ade80;
}

.form-response.error {
    background: rgba(214, 54, 56, 0.15);
    border: 1px solid rgba(214, 54, 56, 0.3);
    color: #ff6b6b;
}

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

/* Order Sidebar */
.order-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
}

.sidebar-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    color: #667eea;
    margin-bottom: 20px;
}

.sidebar-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px;
}

.sidebar-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 0 20px;
}

.sidebar-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.sidebar-card-list li:before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.sidebar-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-steps li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    counter-increment: step-counter;
}

.sidebar-steps li:before {
    content: counter(step-counter);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    color: #667eea;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.sidebar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    color: #667eea;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-btn:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
}

/* ============================================================================
   ORDER PROJECT PAGE RESPONSIVE - ADVANCED & USER-FRIENDLY
   ============================================================================ */

/* Large Desktop (1400px - 1920px) */
@media (min-width: 1400px) and (max-width: 1920px) {
    .order-container {
        max-width: 1600px;
        padding: 0 80px;
    }
    
    .order-title {
        font-size: 3.5rem;
    }
    
    .order-subtitle {
        font-size: 1.3rem;
        max-width: 800px;
    }
    
    .order-content {
        grid-template-columns: 1fr 420px;
        gap: 45px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .order-container {
        max-width: 1200px;
        padding: 0 50px;
    }
    
    .order-title {
        font-size: 2.8rem;
    }
    
    .order-content {
        grid-template-columns: 1fr 380px;
        gap: 38px;
    }
    
    .order-form-wrapper {
        padding: 38px;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .order-main {
        padding: 90px 0 70px;
    }
    
    .order-container {
        padding: 0 45px;
    }
    
    .order-title {
        font-size: 2.6rem;
        margin-bottom: 18px;
    }
    
    .order-subtitle {
        font-size: 1.15rem;
        line-height: 1.7;
    }
    
    .order-header {
        padding-bottom: 45px;
        margin-bottom: 45px;
    }
    
    .order-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .order-form-wrapper {
        padding: 36px;
        border-radius: 14px;
    }
    
    .project-order-form {
        gap: 33px;
    }
    
    .form-section-title {
        font-size: 1.45rem;
        padding-bottom: 14px;
    }
    
    .order-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
    
    .sidebar-card {
        padding: 28px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .order-main {
        padding: 85px 0 65px;
    }
    
    .order-container {
        padding: 0 40px;
    }
    
    .order-title {
        font-size: 2.4rem;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .order-subtitle {
        font-size: 1.1rem;
        line-height: 1.65;
    }
    
    .order-header {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    
    .order-content {
        gap: 35px;
    }
    
    .order-form-wrapper {
        padding: 32px;
        border-radius: 12px;
    }
    
    .project-order-form {
        gap: 30px;
    }
    
    .form-section {
        gap: 19px;
    }
    
    .form-section-title {
        font-size: 1.35rem;
        padding-bottom: 13px;
        margin-bottom: 8px;
    }
    
    .form-label {
        font-size: 0.94rem;
    }
    
    .form-control {
        padding: 11px 15px;
        font-size: 0.98rem;
        border-radius: 7px;
    }
    
    .btn-submit {
        padding: 13px 34px;
        font-size: 1.05rem;
        border-radius: 7px;
    }
    
    .order-sidebar {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sidebar-card {
        padding: 26px;
    }
    
    .sidebar-card-icon {
        width: 56px;
        height: 56px;
    }
    
    .sidebar-card-title {
        font-size: 1.25rem;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .order-main {
        padding: 80px 0 60px;
    }
    
    .order-container {
        padding: 0 25px;
    }
    
    .order-title {
        font-size: 2rem;
        margin-bottom: 14px;
        line-height: 1.25;
    }
    
    .order-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    .order-header {
        padding-bottom: 35px;
        margin-bottom: 35px;
    }
    
    .order-content {
        gap: 30px;
    }
    
    .order-form-wrapper {
        padding: 28px 24px;
        border-radius: 12px;
    }
    
    .project-order-form {
        gap: 28px;
    }
    
    .form-section {
        gap: 17px;
    }
    
    .form-section-title {
        font-size: 1.25rem;
        padding-bottom: 11px;
        margin-bottom: 6px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 17px;
    }
    
    .form-group {
        gap: 7px;
    }
    
    .form-label {
        font-size: 0.93rem;
    }
    
    .form-control {
        padding: 11px 14px;
        font-size: 0.97rem;
        border-radius: 7px;
    }
    
    select.form-control {
        padding-left: 38px;
        background-size: 18px;
    }
    
    textarea.form-control {
        min-height: 110px;
    }
    
    .form-help {
        font-size: 0.83rem;
    }
    
    .btn-submit {
        padding: 13px 30px;
        font-size: 1.03rem;
        gap: 8px;
    }
    
    .btn-submit svg {
        width: 18px;
        height: 18px;
    }
    
    .form-response {
        padding: 14px 18px;
        font-size: 0.96rem;
        border-radius: 7px;
    }
    
    .order-sidebar {
        gap: 18px;
    }
    
    .sidebar-card {
        padding: 24px 22px;
        border-radius: 10px;
    }
    
    .sidebar-card-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 17px;
    }
    
    .sidebar-card-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .sidebar-card-title {
        font-size: 1.2rem;
        margin-bottom: 13px;
    }
    
    .sidebar-card p {
        font-size: 0.96rem;
        margin-bottom: 17px;
        line-height: 1.65;
    }
    
    .sidebar-card-list {
        gap: 11px;
    }
    
    .sidebar-card-list li {
        font-size: 0.94rem;
        gap: 9px;
    }
    
    .sidebar-steps {
        gap: 13px;
    }
    
    .sidebar-steps li {
        font-size: 0.94rem;
        gap: 13px;
    }
    
    .sidebar-steps li:before {
        width: 31px;
        height: 31px;
        font-size: 0.87rem;
    }
    
    .sidebar-btn {
        padding: 11px 22px;
        font-size: 0.98rem;
        border-radius: 7px;
    }
}

/* Mobile Portrait (320px - 575px) */
@media (max-width: 575px) {
    .order-main {
        padding: 70px 0 50px;
    }
    
    .order-container {
        padding: 0 20px;
    }
    
    .order-title {
        font-size: 1.7rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .order-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .order-header {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    
    .order-content {
        gap: 25px;
    }
    
    .order-form-wrapper {
        padding: 24px 18px;
        border-radius: 10px;
    }
    
    .project-order-form {
        gap: 26px;
    }
    
    .form-section {
        gap: 15px;
    }
    
    .form-section-title {
        font-size: 1.18rem;
        padding-bottom: 10px;
        margin-bottom: 5px;
        border-bottom-width: 1.5px;
    }
    
    .form-row {
        gap: 15px;
    }
    
    .form-group {
        gap: 6px;
    }
    
    .form-label {
        font-size: 0.92rem;
    }
    
    .form-label .required {
        font-size: 1em;
    }
    
    .form-label .optional {
        font-size: 0.84em;
    }
    
    .form-control {
        padding: 10px 13px;
        font-size: 0.95rem;
        border-radius: 7px;
    }
    
    select.form-control {
        padding-left: 36px;
        background-size: 17px;
        background-position: left 10px center;
    }
    
    textarea.form-control {
        min-height: 100px;
        line-height: 1.55;
    }
    
    .form-help {
        font-size: 0.82rem;
    }
    
    .form-actions {
        padding-top: 8px;
    }
    
    .btn-submit {
        padding: 12px 26px;
        font-size: 1rem;
        gap: 7px;
        border-radius: 7px;
    }
    
    .btn-submit svg {
        width: 17px;
        height: 17px;
    }
    
    .form-response {
        padding: 13px 16px;
        font-size: 0.94rem;
        margin-top: 18px;
        border-radius: 7px;
    }
    
    .order-sidebar {
        gap: 17px;
    }
    
    .sidebar-card {
        padding: 22px 18px;
        border-radius: 10px;
    }
    
    .sidebar-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
        border-radius: 10px;
    }
    
    .sidebar-card-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .sidebar-card-title {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }
    
    .sidebar-card p {
        font-size: 0.94rem;
        margin-bottom: 16px;
        line-height: 1.6;
    }
    
    .sidebar-card-list {
        gap: 10px;
    }
    
    .sidebar-card-list li {
        font-size: 0.92rem;
        gap: 8px;
    }
    
    .sidebar-card-list li:before {
        width: 5px;
        height: 5px;
    }
    
    .sidebar-steps {
        gap: 12px;
    }
    
    .sidebar-steps li {
        font-size: 0.92rem;
        gap: 12px;
    }
    
    .sidebar-steps li:before {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    
    .sidebar-btn {
        padding: 10px 20px;
        font-size: 0.96rem;
        border-radius: 7px;
    }
}

/* Extra Small Mobile (max-width: 374px) */
@media (max-width: 374px) {
    .order-container {
        padding: 0 16px;
    }
    
    .order-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .order-subtitle {
        font-size: 0.96rem;
    }
    
    .order-header {
        padding-bottom: 26px;
        margin-bottom: 26px;
    }
    
    .order-form-wrapper {
        padding: 20px 16px;
        border-radius: 9px;
    }
    
    .project-order-form {
        gap: 24px;
    }
    
    .form-section {
        gap: 14px;
    }
    
    .form-section-title {
        font-size: 1.12rem;
        padding-bottom: 9px;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-control {
        padding: 9px 12px;
        font-size: 0.93rem;
    }
    
    select.form-control {
        padding-left: 34px;
        background-size: 16px;
    }
    
    textarea.form-control {
        min-height: 95px;
    }
    
    .btn-submit {
        padding: 11px 24px;
        font-size: 0.97rem;
        gap: 6px;
    }
    
    .btn-submit svg {
        width: 16px;
        height: 16px;
    }
    
    .sidebar-card {
        padding: 20px 16px;
    }
    
    .sidebar-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }
    
    .sidebar-card-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .sidebar-card-title {
        font-size: 1.1rem;
    }
    
    .sidebar-card p {
        font-size: 0.92rem;
    }
    
    .sidebar-card-list li,
    .sidebar-steps li {
        font-size: 0.9rem;
    }
}

/* Landscape Mode Optimization (all devices) */
@media (max-height: 550px) and (orientation: landscape) {
    .order-main {
        padding: 50px 0 40px;
    }
    
    .order-header {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    
    .order-title {
        font-size: 1.9rem;
        margin-bottom: 10px;
    }
    
    .order-subtitle {
        font-size: 0.98rem;
    }
    
    .order-form-wrapper {
        padding: 25px 22px;
    }
    
    .project-order-form {
        gap: 22px;
    }
    
    .form-section {
        gap: 14px;
    }
    
    .form-section-title {
        font-size: 1.15rem;
        padding-bottom: 8px;
    }
    
    .form-control {
        padding: 9px 13px;
    }
    
    textarea.form-control {
        min-height: 80px;
    }
    
    .sidebar-card {
        padding: 20px;
    }
    
    .sidebar-card-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 12px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .form-control {
        min-height: 44px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .btn-submit {
        min-height: 48px;
        font-size: 16px;
    }
    
    .sidebar-btn {
        min-height: 44px;
    }
    
    /* Better touch targets */
    .form-label {
        padding: 4px 0;
    }
}

/* High DPI Screens (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .sidebar-card-icon svg,
    .btn-submit svg {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .order-main {
        padding: 20px 0;
    }
    
    .order-header {
        border-bottom-color: #000;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    
    .order-title {
        color: #000 !important;
        background: none !important;
        -webkit-text-fill-color: #000 !important;
    }
    
    .order-subtitle {
        color: #333 !important;
    }
    
    .order-content {
        display: block;
    }
    
    .order-form-wrapper {
        background: #fff;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .form-section {
        page-break-inside: avoid;
    }
    
    .btn-submit,
    .order-sidebar {
        display: none !important;
    }
    
    .form-control {
        border-color: #999;
        background: #fff;
    }
}

/* ============================================================================
   FLOATING NAVIGATION MENU - MINIMAL & MODERN
   ============================================================================ */

.floating-nav-menu {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    animation: floatNavSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes floatNavSlideUp {
    0% {
        opacity: 0;
        transform: translate(-50%, 60px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.floating-nav-container {
    /* Ultra Minimal Glass Neomorphism */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(255, 255, 255, 0.05) inset,
        0 -2px 8px rgba(0, 0, 0, 0.1) inset;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 56px;
}

.floating-nav-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(255, 255, 255, 0.08) inset,
        0 -4px 12px rgba(0, 0, 0, 0.12) inset;
}

/* Logo Section - Minimal */
.floating-nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.floating-nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4px 0;
}

.floating-nav-logo a:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.floating-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.floating-nav-logo a:hover .floating-logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.floating-logo-text {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.01em;
    font-family: 'IRANSansX', sans-serif;
}

/* Navigation Links - Minimal & Clean */
.floating-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.floating-nav-link {
    position: relative;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'IRANSansX', sans-serif;
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    overflow: hidden;
}

.floating-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.floating-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-nav-link:hover {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.floating-nav-link:hover::before {
    opacity: 1;
}

.floating-nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.floating-nav-link:active {
    transform: translateY(0) scale(0.98);
}

/* Contact Button - Minimal & Elegant */
.floating-nav-contact {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.floating-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 500;
    font-size: 0.9rem;
    font-family: 'IRANSansX', sans-serif;
    text-decoration: none;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        0 1px 4px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.floating-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.floating-contact-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 2px 6px rgba(255, 255, 255, 0.08) inset;
    color: rgba(255, 255, 255, 1);
}

.floating-contact-btn:hover::before {
    left: 100%;
}

.floating-contact-btn:active {
    transform: translateY(0) scale(0.98);
}

.floating-contact-btn svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.floating-contact-btn:hover svg {
    transform: translateX(2px);
}

/* Responsive Design */

/* Large Desktop & Desktop (1200px+) */
@media (min-width: 1200px) {
    .floating-nav-container {
        padding: 14px 24px;
        gap: 32px;
        border-radius: 28px;
    }
    
    .floating-logo-img {
        height: 36px;
    }
    
    .floating-nav-link {
        padding: 9px 18px;
        font-size: 0.95rem;
    }
    
    .floating-contact-btn {
        padding: 11px 22px;
        font-size: 0.95rem;
    }
}

/* Tablet & Small Desktop (768px - 1199px) */
@media (max-width: 1199px) {
    .floating-nav-menu {
        bottom: 25px;
    }
    
    .floating-nav-container {
        padding: 14px 20px;
        gap: 25px;
    }
    
    .floating-logo-img {
        height: 32px;
    }
    
    .floating-nav-links {
        gap: 6px;
    }
    
    .floating-nav-link {
        padding: 9px 18px;
        font-size: 0.9rem;
    }
    
    .floating-contact-btn {
        padding: 11px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }
}

/* Mobile Menu Toggle Button */
.floating-menu-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    font-family: 'IRANSansX', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.floating-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.menu-toggle-text {
    font-family: 'IRANSansX', sans-serif;
    letter-spacing: 0.05em;
}

.menu-toggle-icon {
    flex-shrink: 0;
}

.menu-toggle-icon line {
    transition: all 0.3s ease;
}

/* Mobile Menu Panel */
.floating-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.floating-mobile-menu-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 85vh;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(64px);
    -webkit-backdrop-filter: blur(64px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px 32px 0 0;
    padding: 30px 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

.floating-mobile-menu.active .floating-mobile-menu-content {
    transform: translateY(0);
}

.floating-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: 'IRANSansX', sans-serif;
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.floating-mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'IRANSansX', sans-serif;
}

.mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.mobile-menu-link svg {
    flex-shrink: 0;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover svg {
    opacity: 1;
    transform: translateX(-5px);
}

.floating-mobile-menu-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--primary-white);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'IRANSansX', sans-serif;
}

.mobile-contact-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.mobile-contact-btn svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mobile-contact-btn:hover svg {
    transform: translateX(-5px);
}

/* Tablet Portrait (600px - 767px) */
@media (max-width: 767px) {
    .floating-nav-menu {
        bottom: 20px;
        left: 20px;
        right: 20px;
        transform: none;
        width: calc(100% - 40px);
    }
    
    .floating-nav-container {
        padding: 10px 16px;
        gap: 12px;
        border-radius: 20px;
        justify-content: space-between;
        min-height: 52px;
    }
    
    /* Hide Desktop Elements */
    .floating-nav-links,
    .floating-nav-contact {
        display: none !important;
    }
    
    /* Show Mobile Toggle */
    .floating-menu-toggle {
        display: flex;
        order: 1;
    }
    
    .floating-nav-logo {
        order: 2;
    }
    
    .floating-logo-img {
        height: 32px;
    }
    
    .floating-logo-text {
        font-size: 1rem;
    }
}

/* Mobile (480px - 599px) */
@media (max-width: 599px) {
    .floating-nav-menu {
        bottom: 15px;
        left: 15px;
        right: 15px;
        width: calc(100% - 30px);
    }
    
    .floating-nav-container {
        padding: 10px 14px;
        gap: 12px;
        border-radius: 24px;
    }
    
    .floating-logo-img {
        height: 28px;
    }
    
    .floating-logo-text {
        font-size: 0.95rem;
    }
    
    .floating-menu-toggle {
        padding: 10px 16px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .menu-toggle-text {
        font-size: 0.9rem;
    }
    
    .menu-toggle-icon {
        width: 18px;
        height: 18px;
    }
    
    .mobile-menu-title {
        font-size: 1.3rem;
    }
    
    .mobile-menu-link {
        padding: 16px 18px;
        font-size: 1rem;
    }
    
    .mobile-contact-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Mobile Small (< 480px) */
@media (max-width: 479px) {
    .floating-nav-menu {
        bottom: 12px;
        left: 12px;
        right: 12px;
        width: calc(100% - 24px);
    }
    
    .floating-nav-container {
        padding: 8px 12px;
        gap: 8px;
        border-radius: 18px;
        min-height: 48px;
    }
    
    .floating-logo-img {
        height: 26px;
    }
    
    .floating-logo-text {
        font-size: 0.9rem;
    }
    
    .floating-menu-toggle {
        padding: 9px 14px;
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .menu-toggle-text {
        font-size: 0.85rem;
    }
    
    .menu-toggle-icon {
        width: 16px;
        height: 16px;
    }
    
    .floating-mobile-menu-content {
        padding: 25px 18px;
        border-radius: 28px 28px 0 0;
    }
    
    .mobile-menu-title {
        font-size: 1.25rem;
    }
    
    .mobile-menu-close {
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu-link {
        padding: 15px 16px;
        font-size: 0.95rem;
        border-radius: 14px;
    }
    
    .mobile-contact-btn {
        padding: 13px 22px;
        font-size: 0.95rem;
    }
}

/* Very small screens */
@media (max-width: 359px) {
    .floating-nav-container {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .floating-logo-img {
        height: 24px;
    }
    
    .floating-logo-text {
        font-size: 0.85rem;
    }
    
    .floating-menu-toggle {
        padding: 8px 12px;
        font-size: 0.8rem;
        gap: 5px;
    }
    
    .menu-toggle-text {
        font-size: 0.8rem;
    }
    
    .menu-toggle-icon {
        width: 14px;
        height: 14px;
    }
    
    .floating-mobile-menu-content {
        padding: 22px 16px;
        border-radius: 24px 24px 0 0;
    }
    
    .mobile-menu-title {
        font-size: 1.2rem;
    }
    
    .mobile-menu-close {
        width: 38px;
        height: 38px;
    }
    
    .mobile-menu-link {
        padding: 14px;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    
    .mobile-contact-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}


/* ============================================================================
   SINGLE PRODUCT PAGE - MINIMAL & MODERN DESIGN (No Animations)
   ============================================================================ */

/* Product Main Container */
.product-main {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Product Container */
.product-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Glass Neomorphic Box */
.glass-neomorphic-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(64px);
    -webkit-backdrop-filter: blur(64px);
    border-radius: 34px;
    transition: all 0.3s ease;
}

.glass-neomorphic-box:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
}

/* ========== PRODUCT GALLERY SECTION ========== */
.product-gallery-section {
    position: relative;
}

.product-images {
    padding: 30px;
}

.main-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.02);
}

.product-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.product-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'IRANSansX', sans-serif;
    z-index: 10;
}

.sale-badge {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.9), rgba(255, 102, 102, 0.8));
}

/* Product Thumbnails */
.product-thumbnails {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumb-item {
    width: calc(20% - 13px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumb-item:hover,
.thumb-item.active {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* ========== PRODUCT INFO SECTION ========== */
.product-info-section {
    position: sticky;
    top: 120px;
}

.product-details {
    padding: 50px;
}

.product-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px;
    line-height: 1.2;
    font-family: 'IRANSansX', sans-serif;
    letter-spacing: -0.5px;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.product-rating .star-rating {
    display: inline-block;
}

.product-rating .star-rating::before {
    color: rgba(255, 255, 255, 0.3);
}

.product-rating .star-rating span::before {
    color: #FFD700;
}

.rating-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-family: 'IRANSansX', sans-serif;
}

/* Product Price */
.product-price-box {
    margin-bottom: 30px;
}

.price-wrapper {
    margin-bottom: 12px;
}

.price-wrapper .price {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    font-family: 'IRANSansX', sans-serif;
    letter-spacing: -0.5px;
}

.price-wrapper .price del {
    opacity: 0.4;
    font-size: 0.7em;
    margin-left: 12px;
}

.price-wrapper .price ins {
    text-decoration: none;
    color: #ffffff;
}

.save-amount {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(76, 222, 128, 0.9);
    font-size: 0.95rem;
    font-family: 'IRANSansX', sans-serif;
}

.save-price {
    font-weight: 600;
}

/* Product Short Description */
.product-short-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-family: 'IRANSansX', sans-serif;
}

.product-short-description p {
    margin: 0 0 15px;
}

/* Product Stock Info */
.product-stock-info {
    margin-bottom: 30px;
}

.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'IRANSansX', sans-serif;
}

.stock-status.in-stock {
    background: rgba(76, 222, 128, 0.1);
    color: #4ade80;
    border: 1px solid rgba(76, 222, 128, 0.2);
}

.stock-status.in-stock svg {
    color: #4ade80;
}

.stock-status.out-of-stock {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.stock-status.out-of-stock svg {
    color: #f87171;
}

/* Add to Cart Section */
.product-add-to-cart {
    margin-bottom: 30px;
}

.product-add-to-cart .cart {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-wrapper label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-family: 'IRANSansX', sans-serif;
    min-width: 60px;
}

.quantity-wrapper .quantity {
    display: flex;
    align-items: center;
}

.quantity-wrapper .qty {
    width: 80px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #ffffff;
    text-align: center;
    font-size: 1rem;
    font-family: 'IRANSansX', sans-serif;
    transition: all 0.3s ease;
}

.quantity-wrapper .qty:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.single_add_to_cart_button {
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'IRANSansX', sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.single_add_to_cart_button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.single_add_to_cart_button:active {
    transform: translateY(0);
}

.single_add_to_cart_button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Product Meta Info */
.product-meta-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    min-width: 120px;
    font-family: 'IRANSansX', sans-serif;
}

.meta-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-family: 'IRANSansX', sans-serif;
}

.meta-value a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.meta-value a:hover {
    color: #ffffff;
}

/* Product Actions (Wishlist & Share) */
.product-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-family: 'IRANSansX', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.action-btn svg {
    opacity: 0.8;
}

/* ========== PRODUCT TABS ========== */
.product-tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

.product-tabs {
    padding: 0;
    overflow: hidden;
}

.tabs-header {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 34px 34px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-button {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
    font-family: 'IRANSansX', sans-serif;
    cursor: pointer;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.tab-button:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.tab-button.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    padding: 50px;
}

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

.tab-content-wrapper {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    font-family: 'IRANSansX', sans-serif;
}

.tab-content-wrapper p {
    margin: 0 0 20px;
}

.tab-content-wrapper h1,
.tab-content-wrapper h2,
.tab-content-wrapper h3,
.tab-content-wrapper h4 {
    color: #ffffff;
    margin: 30px 0 20px;
    font-family: 'IRANSansX', sans-serif;
}

.tab-content-wrapper ul,
.tab-content-wrapper ol {
    margin: 20px 0;
    padding-right: 25px;
}

.tab-content-wrapper li {
    margin-bottom: 10px;
}

/* Product Attributes Table */
.product-attributes {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.product-attributes tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-attributes tr:last-child {
    border-bottom: none;
}

.product-attributes th,
.product-attributes td {
    padding: 20px;
    font-size: 1rem;
    font-family: 'IRANSansX', sans-serif;
    text-align: right;
}

.product-attributes th {
    color: rgba(255, 255, 255, 0.5);
    width: 200px;
    font-weight: 500;
}

.product-attributes td {
    color: rgba(255, 255, 255, 0.9);
}

/* ========== RELATED PRODUCTS ========== */
.related-products-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 40px;
    font-family: 'IRANSansX', sans-serif;
    letter-spacing: -0.5px;
}

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

.related-product-item {
    padding: 20px;
    transition: all 0.3s ease;
}

.related-product-item:hover {
    transform: translateY(-8px);
}

.related-product-link {
    text-decoration: none;
    display: block;
}

.related-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.02);
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-product-item:hover .related-product-image img {
    transform: scale(1.05);
}

.sale-badge-small {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 68, 68, 0.9);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'IRANSansX', sans-serif;
}

.related-product-info {
    text-align: center;
}

.related-product-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px;
    font-family: 'IRANSansX', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-product-price .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'IRANSansX', sans-serif;
}

.related-product-price .price del {
    opacity: 0.4;
    font-size: 0.8em;
}

/* ========== STICKY BOTTOM BAR (Mobile) ========== */
.product-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(64px);
    -webkit-backdrop-filter: blur(64px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    z-index: 999;
}

.product-sticky-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.sticky-add-to-cart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'IRANSansX', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sticky-add-to-cart:hover {
    background: rgba(255, 255, 255, 0.15);
}

.sticky-price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.sticky-price .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'IRANSansX', sans-serif;
}

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

/* Large Tablet (1024px - 1199px) */
@media (max-width: 1199px) {
    .product-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 100px 30px 50px;
    }
    
    .product-details {
        padding: 40px;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (max-width: 1023px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 90px 30px 50px;
    }
    
    .product-info-section {
        position: static;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-tabs-container {
        padding: 0 30px 50px;
    }
    
    .tab-panel {
        padding: 40px;
    }
    
    .related-products-section {
        padding: 0 30px 60px;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Large (600px - 767px) */
@media (max-width: 767px) {
    .product-container {
        padding: 80px 20px 40px;
        gap: 30px;
    }
    
    .product-images {
        padding: 20px;
    }
    
    .product-badge {
        top: 16px;
        right: 16px;
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .thumb-item {
        width: calc(25% - 12px);
    }
    
    .product-details {
        padding: 30px;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .price-wrapper .price {
        font-size: 1.8rem;
    }
    
    .product-short-description {
        font-size: 1rem;
    }
    
    .meta-label {
        min-width: 100px;
        font-size: 0.9rem;
    }
    
    .meta-value {
        font-size: 0.9rem;
    }
    
    .single_add_to_cart_button {
        height: 56px;
        font-size: 1rem;
    }
    
    .product-tabs-container {
        padding: 0 20px 40px;
    }
    
    .tabs-header {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }
    
    .tab-button {
        width: 100%;
        text-align: center;
    }
    
    .tab-panel {
        padding: 30px;
    }
    
    .tab-content-wrapper {
        font-size: 1rem;
    }
    
    .product-attributes th,
    .product-attributes td {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .product-attributes th {
        width: 140px;
    }
    
    .related-products-section {
        padding: 0 20px 50px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-sticky-bar {
        display: block;
    }
}

/* Mobile Medium (480px - 599px) */
@media (max-width: 599px) {
    .product-container {
        padding: 70px 16px 30px;
    }
    
    .product-images {
        padding: 16px;
    }
    
    .product-badge {
        top: 12px;
        right: 12px;
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    
    .thumb-item {
        width: calc(33.333% - 11px);
    }
    
    .product-details {
        padding: 25px;
    }
    
    .product-title {
        font-size: 1.6rem;
    }
    
    .price-wrapper .price {
        font-size: 1.6rem;
    }
    
    .single_add_to_cart_button {
        height: 52px;
        font-size: 0.95rem;
    }
    
    .product-tabs-container {
        padding: 0 16px 30px;
    }
    
    .tab-panel {
        padding: 25px;
    }
    
    .product-attributes th,
    .product-attributes td {
        display: block;
        width: 100%;
        padding: 10px 15px;
    }
    
    .product-attributes th {
        padding-bottom: 5px;
    }
    
    .related-products-section {
        padding: 0 16px 40px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Mobile Small (< 480px) */
@media (max-width: 479px) {
    .product-container {
        padding: 60px 12px 20px;
        gap: 24px;
    }
    
    .product-images {
        padding: 12px;
    }
    
    .product-badge {
        top: 10px;
        right: 10px;
        padding: 6px 14px;
        font-size: 0.75rem;
    }
    
    .thumb-item {
        width: calc(50% - 8px);
    }
    
    .product-details {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1.4rem;
    }
    
    .product-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .price-wrapper .price {
        font-size: 1.5rem;
    }
    
    .product-short-description {
        font-size: 0.95rem;
    }
    
    .meta-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .meta-label {
        min-width: auto;
        font-size: 0.85rem;
    }
    
    .meta-value {
        font-size: 0.85rem;
    }
    
    .quantity-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .single_add_to_cart_button {
        height: 50px;
        font-size: 0.9rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-tabs-container {
        padding: 0 12px 20px;
    }
    
    .tabs-header {
        padding: 8px;
        gap: 6px;
    }
    
    .tab-button {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .tab-panel {
        padding: 20px;
    }
    
    .tab-content-wrapper {
        font-size: 0.95rem;
    }
    
    .related-products-section {
        padding: 0 12px 30px;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    .related-product-item {
        padding: 16px;
    }
    
    .sticky-add-to-cart {
        font-size: 0.9rem;
    }
    
    .sticky-price .price {
        font-size: 1.1rem;
    }
}


/* ============================================================================
   SINGLE PRODUCT PAGE - MINIMAL & MODERN DESIGN
   Glass Neomorphism Style - No Load Animations
   ============================================================================ */

/* Product Main Container */
.single-product .product-main {
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
}

/* Product Container - Grid Layout */
.single-product .product-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Glass Neomorphic Box Style */
.single-product .glass-neomorphic-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(64px);
    -webkit-backdrop-filter: blur(64px);
    border-radius: 34px;
    transition: all 0.3s ease;
}

.single-product .glass-neomorphic-box:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
}

/* ========== PRODUCT GALLERY SECTION ========== */
.single-product .product-gallery-section {
    position: relative;
}

.single-product .product-images {
    padding: 30px;
}

.single-product .main-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.02);
}

.single-product .product-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: opacity 0.3s ease;
}

.single-product .product-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'IRANSansX', sans-serif;
    z-index: 10;
}

.single-product .sale-badge {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.9), rgba(255, 102, 102, 0.8));
}

/* Product Thumbnails */
.single-product .product-thumbnails {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.single-product .thumb-item {
    width: calc(20% - 13px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.single-product .thumb-item:hover,
.single-product .thumb-item.active {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.single-product .thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* ========== PRODUCT INFO SECTION ========== */
.single-product .product-info-section {
    position: sticky;
    top: 120px;
}

.single-product .product-details {
    padding: 50px;
}

.single-product .product-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px;
    line-height: 1.2;
    font-family: 'IRANSansX', sans-serif;
    letter-spacing: -0.5px;
}

/* Product Rating */
.single-product .product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.single-product .product-rating .star-rating {
    display: inline-block;
}

.single-product .product-rating .star-rating::before {
    color: rgba(255, 255, 255, 0.3);
}

.single-product .product-rating .star-rating span::before {
    color: #FFD700;
}

.single-product .rating-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-family: 'IRANSansX', sans-serif;
}

/* Product Price */
.single-product .product-price-box {
    margin-bottom: 30px;
}

.single-product .price-wrapper {
    margin-bottom: 12px;
}

.single-product .price-wrapper .price {
    font-size: clamp(2rem, 3vw, 2.5rem) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    font-family: 'IRANSansX', sans-serif !important;
    letter-spacing: -0.5px;
}

.single-product .price-wrapper .price del {
    opacity: 0.4;
    font-size: 0.7em;
    margin-left: 12px;
}

.single-product .price-wrapper .price ins {
    text-decoration: none;
    color: #ffffff;
}

.single-product .save-amount {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(76, 222, 128, 0.9);
    font-size: 0.95rem;
    font-family: 'IRANSansX', sans-serif;
}

.single-product .save-price {
    font-weight: 600;
}

/* Product Short Description */
.single-product .product-short-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-family: 'IRANSansX', sans-serif;
}

.single-product .product-short-description p {
    margin: 0 0 15px;
}

/* Product Stock Info */
.single-product .product-stock-info {
    margin-bottom: 30px;
}

.single-product .stock-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'IRANSansX', sans-serif;
}

.single-product .stock-status.in-stock {
    background: rgba(76, 222, 128, 0.1);
    color: #4ade80;
    border: 1px solid rgba(76, 222, 128, 0.2);
}

.single-product .stock-status.in-stock svg {
    color: #4ade80;
}

.single-product .stock-status.out-of-stock {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.single-product .stock-status.out-of-stock svg {
    color: #f87171;
}

/* Add to Cart Section */
.single-product .product-add-to-cart {
    margin-bottom: 30px;
}

.single-product .product-add-to-cart .cart {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.single-product .product-add-to-cart form.cart {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.single-product .quantity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.single-product .quantity label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-family: 'IRANSansX', sans-serif;
    min-width: 60px;
}

.single-product .quantity .qty {
    width: 80px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    text-align: center;
    font-size: 1rem !important;
    font-family: 'IRANSansX', sans-serif !important;
    transition: all 0.3s ease;
}

.single-product .quantity .qty:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.single-product .quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.single-product .quantity-wrapper label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-family: 'IRANSansX', sans-serif;
    min-width: 60px;
}

.single-product .quantity-wrapper .quantity {
    display: flex;
    align-items: center;
}

.single-product .quantity-wrapper .qty {
    width: 80px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    text-align: center;
    font-size: 1rem !important;
    font-family: 'IRANSansX', sans-serif !important;
    transition: all 0.3s ease;
}

.single-product .quantity-wrapper .qty:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.single-product .single_add_to_cart_button {
    width: 100% !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    font-family: 'IRANSansX', sans-serif !important;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.single-product .single_add_to_cart_button:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.single-product .single_add_to_cart_button:active {
    transform: translateY(0);
}

.single-product .single_add_to_cart_button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Product Meta Info */
.single-product .product-meta-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.single-product .meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.single-product .meta-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    min-width: 120px;
    font-family: 'IRANSansX', sans-serif;
}

.single-product .meta-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-family: 'IRANSansX', sans-serif;
}

.single-product .meta-value a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-product .meta-value a:hover {
    color: #ffffff;
}

/* Product Actions (Wishlist & Share) */
.single-product .product-actions {
    display: flex;
    gap: 12px;
}

.single-product .action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-family: 'IRANSansX', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.single-product .action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.single-product .action-btn svg {
    opacity: 0.8;
}

/* ========== PRODUCT TABS ========== */
.single-product .product-tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

.single-product .product-tabs {
    padding: 0;
    overflow: hidden;
}

.single-product .tabs-header {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 34px 34px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.single-product .tab-button {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
    font-family: 'IRANSansX', sans-serif;
    cursor: pointer;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.single-product .tab-button:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.single-product .tab-button.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.single-product .tabs-content {
    position: relative;
}

.single-product .tab-panel {
    display: none;
    padding: 50px;
}

.single-product .tab-panel.active {
    display: block;
}

.single-product .tab-content-wrapper {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    font-family: 'IRANSansX', sans-serif;
}

.single-product .tab-content-wrapper p {
    margin: 0 0 20px;
}

.single-product .tab-content-wrapper h1,
.single-product .tab-content-wrapper h2,
.single-product .tab-content-wrapper h3,
.single-product .tab-content-wrapper h4 {
    color: #ffffff;
    margin: 30px 0 20px;
    font-family: 'IRANSansX', sans-serif;
}

.single-product .tab-content-wrapper ul,
.single-product .tab-content-wrapper ol {
    margin: 20px 0;
    padding-right: 25px;
}

.single-product .tab-content-wrapper li {
    margin-bottom: 10px;
}

/* Product Attributes Table */
.single-product .product-attributes {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.single-product .product-attributes tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.single-product .product-attributes tr:last-child {
    border-bottom: none;
}

.single-product .product-attributes th,
.single-product .product-attributes td {
    padding: 20px;
    font-size: 1rem;
    font-family: 'IRANSansX', sans-serif;
    text-align: right;
}

.single-product .product-attributes th {
    color: rgba(255, 255, 255, 0.5);
    width: 200px;
    font-weight: 500;
}

.single-product .product-attributes td {
    color: rgba(255, 255, 255, 0.9);
}

/* ========== RELATED PRODUCTS ========== */
.single-product .related-products-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.single-product .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 40px;
    font-family: 'IRANSansX', sans-serif;
    letter-spacing: -0.5px;
}

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

.single-product .related-product-item {
    padding: 20px;
    transition: all 0.3s ease;
}

.single-product .related-product-item:hover {
    transform: translateY(-8px);
}

.single-product .related-product-link {
    text-decoration: none;
    display: block;
}

.single-product .related-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.02);
}

.single-product .related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.single-product .related-product-item:hover .related-product-image img {
    transform: scale(1.05);
}

.single-product .sale-badge-small {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 68, 68, 0.9);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'IRANSansX', sans-serif;
}

.single-product .related-product-info {
    text-align: center;
}

.single-product .related-product-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px;
    font-family: 'IRANSansX', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.single-product .related-product-price .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'IRANSansX', sans-serif;
}

.single-product .related-product-price .price del {
    opacity: 0.4;
    font-size: 0.8em;
}

/* ========== STICKY BOTTOM BAR (Mobile) - MINIMAL & MODERN ========== */
.single-product .product-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 20px;
    z-index: 998;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

.single-product .product-sticky-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 100%;
    margin: 0 auto;
}

/* Sticky Price Section - سمت راست */
.single-product .sticky-price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 100px;
}

.single-product .sticky-price-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 500;
    font-family: 'IRANSansX', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-product .sticky-price .price {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    font-family: 'IRANSansX', sans-serif !important;
    line-height: 1.2;
}

.single-product .sticky-price .price del {
    opacity: 0.4;
    font-size: 0.7em;
    margin-left: 8px;
}

.single-product .sticky-price .price ins {
    text-decoration: none;
}

/* Sticky Add to Cart Button - سمت چپ */
.single-product .sticky-add-to-cart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 54px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'IRANSansX', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.08);
}

.single-product .sticky-add-to-cart:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}

.single-product .sticky-add-to-cart:active {
    transform: translateY(0);
}

.single-product .sticky-add-to-cart svg {
    width: 20px;
    height: 20px;
    opacity: 0.9;
}

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

/* Large Tablet (1024px - 1199px) */
@media (max-width: 1199px) {
    .single-product .product-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 100px 30px 50px;
    }
    
    .single-product .product-details {
        padding: 40px;
    }
    
    .single-product .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (max-width: 1023px) {
    .single-product .product-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 90px 30px 50px;
    }
    
    .single-product .product-info-section {
        position: static;
    }
    
    .single-product .product-title {
        font-size: 2rem;
    }
    
    .single-product .product-tabs-container {
        padding: 0 30px 50px;
    }
    
    .single-product .tab-panel {
        padding: 40px;
    }
    
    .single-product .related-products-section {
        padding: 0 30px 60px;
    }
    
    .single-product .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Large (600px - 767px) */
@media (max-width: 767px) {
    .single-product .product-container {
        padding: 80px 20px 40px;
        gap: 30px;
    }
    
    .single-product .product-images {
        padding: 20px;
    }
    
    .single-product .product-badge {
        top: 16px;
        right: 16px;
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .single-product .thumb-item {
        width: calc(25% - 12px);
    }
    
    .single-product .product-details {
        padding: 30px;
    }
    
    .single-product .product-title {
        font-size: 1.8rem;
    }
    
    .single-product .price-wrapper .price {
        font-size: 1.8rem !important;
    }
    
    .single-product .product-short-description {
        font-size: 1rem;
    }
    
    .single-product .meta-label {
        min-width: 100px;
        font-size: 0.9rem;
    }
    
    .single-product .meta-value {
        font-size: 0.9rem;
    }
    
    .single-product .single_add_to_cart_button {
        height: 56px !important;
        font-size: 1rem !important;
    }
    
    .single-product .product-tabs-container {
        padding: 0 20px 40px;
    }
    
    .single-product .tabs-header {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }
    
    .single-product .tab-button {
        width: 100%;
        text-align: center;
    }
    
    .single-product .tab-panel {
        padding: 30px;
    }
    
    .single-product .tab-content-wrapper {
        font-size: 1rem;
    }
    
    .single-product .product-attributes th,
    .single-product .product-attributes td {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .single-product .product-attributes th {
        width: 140px;
    }
    
    .single-product .related-products-section {
        padding: 0 20px 50px;
    }
    
    .single-product .section-title {
        font-size: 1.7rem;
    }
    
    .single-product .related-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .single-product .product-sticky-bar {
        display: block;
    }
    
    /* منوی شناور در موبایل باید بالای sticky bar قرار بگیره */
    .single-product .floating-nav-menu {
        bottom: 85px; /* بالای sticky bar */
    }
}

/* Mobile Medium (480px - 599px) */
@media (max-width: 599px) {
    .single-product .product-container {
        padding: 70px 16px 30px;
    }
    
    .single-product .product-images {
        padding: 16px;
    }
    
    .single-product .product-badge {
        top: 12px;
        right: 12px;
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    
    .single-product .thumb-item {
        width: calc(33.333% - 11px);
    }
    
    .single-product .product-details {
        padding: 25px;
    }
    
    .single-product .product-title {
        font-size: 1.6rem;
    }
    
    .single-product .price-wrapper .price {
        font-size: 1.6rem !important;
    }
    
    .single-product .single_add_to_cart_button {
        height: 52px !important;
        font-size: 0.95rem !important;
    }
    
    .single-product .product-tabs-container {
        padding: 0 16px 30px;
    }
    
    .single-product .tab-panel {
        padding: 25px;
    }
    
    .single-product .product-attributes th,
    .single-product .product-attributes td {
        display: block;
        width: 100%;
        padding: 10px 15px;
    }
    
    .single-product .product-attributes th {
        padding-bottom: 5px;
    }
    
    .single-product .related-products-section {
        padding: 0 16px 40px;
    }
    
    .single-product .section-title {
        font-size: 1.5rem;
    }
    
    /* منوی شناور بالای sticky bar */
    .single-product .floating-nav-menu {
        bottom: 80px; /* بالای sticky bar */
    }
    
    /* Sticky bar adjustments for medium mobile */
    .single-product .product-sticky-bar {
        padding: 16px 18px;
    }
    
    .single-product .product-sticky-bar-content {
        gap: 14px;
    }
    
    .single-product .sticky-add-to-cart {
        height: 52px;
        font-size: 1rem;
    }
    
    .single-product .sticky-price .price {
        font-size: 1.3rem !important;
    }
}

/* Mobile Small (< 480px) */
@media (max-width: 479px) {
    .single-product .product-container {
        padding: 60px 12px 20px;
        gap: 24px;
    }
    
    .single-product .product-images {
        padding: 12px;
    }
    
    .single-product .product-badge {
        top: 10px;
        right: 10px;
        padding: 6px 14px;
        font-size: 0.75rem;
    }
    
    .single-product .thumb-item {
        width: calc(50% - 8px);
    }
    
    .single-product .product-details {
        padding: 20px;
    }
    
    .single-product .product-title {
        font-size: 1.4rem;
    }
    
    .single-product .product-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .single-product .price-wrapper .price {
        font-size: 1.5rem !important;
    }
    
    .single-product .product-short-description {
        font-size: 0.95rem;
    }
    
    .single-product .meta-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .single-product .meta-label {
        min-width: auto;
        font-size: 0.85rem;
    }
    
    .single-product .meta-value {
        font-size: 0.85rem;
    }
    
    .single-product .quantity-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .single-product .single_add_to_cart_button {
        height: 50px !important;
        font-size: 0.9rem !important;
    }
    
    .single-product .product-actions {
        flex-direction: column;
    }
    
    .single-product .product-tabs-container {
        padding: 0 12px 20px;
    }
    
    .single-product .tabs-header {
        padding: 8px;
        gap: 6px;
    }
    
    .single-product .tab-button {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .single-product .tab-panel {
        padding: 20px;
    }
    
    .single-product .tab-content-wrapper {
        font-size: 0.95rem;
    }
    
    .single-product .related-products-section {
        padding: 0 12px 30px;
    }
    
    .single-product .section-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    .single-product .related-product-item {
        padding: 16px;
    }
    
    .single-product .sticky-add-to-cart {
        font-size: 0.9rem;
    }
    
    .single-product .sticky-price .price {
        font-size: 1.1rem !important;
    }
    
    /* منوی شناور بالای sticky bar */
    .single-product .floating-nav-menu {
        bottom: 75px; /* بالای sticky bar */
    }
    
    /* Sticky bar adjustments for small mobile */
    .single-product .product-sticky-bar {
        padding: 14px 16px;
    }
    
    .single-product .product-sticky-bar-content {
        gap: 12px;
    }
    
    .single-product .sticky-add-to-cart {
        height: 50px;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .single-product .sticky-add-to-cart svg {
        width: 18px;
        height: 18px;
    }
    
    .single-product .sticky-price .price {
        font-size: 1.2rem !important;
    }
    
    .single-product .sticky-price-label {
        font-size: 0.7rem;
    }
}
.portfolio-view-btn{
    font-family: inherit !important;
}