/* --- بخش هیرو لوکس (Hero Section) --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 24px 80px 24px;
    position: relative;
    background: radial-gradient(circle at 80% 20%, #FDFBF9 0%, var(--blush) 100%);
    overflow: hidden;
}

/* ایجاد المان‌های دکوراتیو پویای پس‌زمینه */
.hero-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(188, 138, 95, 0.06);
    top: -10px;
    left: -10px;
    filter: blur(50px);
}

.hero-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--deep-plum);
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: var(--rose-gold);
    display: block;
    font-size: 66px;
    margin-top: 8px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--deep-plum);
    opacity: 0.8;
    margin-bottom: 48px;
    max-width: 580px;
}

.cta-group {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 18px 38px;
    background: var(--deep-plum);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    box-shadow: 0 12px 30px rgba(26, 15, 33, 0.15);
    transition: all 0.4s var(--transition-smooth);
}

.btn-primary:hover {
    background: var(--rose-gold);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(188, 138, 95, 0.25);
}

.btn-secondary {
    padding: 18px 38px;
    border: 2px solid var(--deep-plum);
    color: var(--deep-plum);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    transition: all 0.4s var(--transition-smooth);
}

.btn-secondary:hover {
    background: var(--deep-plum);
    color: white;
    transform: translateY(-4px);
}

/* تصویر هیرو با افکت ماسک ارگانیک */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-hero-img {
    width: 100%;
    max-width: 460px;
    height: 580px;
    object-fit: cover;
    border-radius: 50% 50% 40% 40% / 45% 45% 55% 55%;
    box-shadow: 0 40px 80px rgba(26, 15, 33, 0.14);
    animation: morphing 10s ease-in-out infinite alternate;
}

@keyframes morphing {
    0% { border-radius: 50% 50% 40% 40% / 45% 45% 55% 55%; }
    100% { border-radius: 42% 58% 50% 50% / 55% 42% 58% 45%; }
}

.floating-card {
    position: absolute;
    bottom: 50px;
    right: -10px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px 28px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    animation: floatAnim 5s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* --- دسته‌بندی‌های متمایز (Categories) --- */
.section-padding {
    padding: 120px 24px;
    max-width: 1440px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--deep-plum);
    letter-spacing: -0.5px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.category-card {
    position: relative;
    height: 500px;
    border-radius: 32px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 15, 33, 0.9) 0%, rgba(26, 15, 33, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: background 0.4s;
}

.category-overlay h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
    transform: translateY(5px);
    transition: transform 0.4s var(--transition-smooth);
}

.category-overlay span {
    color: var(--rose-gold-light);
    font-size: 14px;
    opacity: 0.8;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card:hover .category-overlay h3 {
    transform: translateY(0);
}

/* --- ویترین محصولات (Product Grid) --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: #FFFFFF;
    border-radius: 28px;
    padding: 20px;
    border: 1px solid rgba(26, 15, 33, 0.02);
    transition: all 0.5s var(--transition-smooth);
    position: relative;
}

.product-img-holder {
    width: 100%;
    height: 340px;
    background: #FDFCFB;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--sage-green);
    color: white;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-info {
    margin-top: 22px;
    text-align: center;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-plum);
    margin-bottom: 12px;
    line-height: 1.5;
    height: 48px;
    overflow: hidden;
}

.product-price {
    font-size: 18px;
    color: var(--rose-gold);
    font-weight: 700;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(26, 15, 33, 0.08);
    border-color: rgba(188, 138, 95, 0.15);
}

.product-card:hover .product-img-holder img {
    transform: scale(1.06);
}

/* --- تنظیمات فوق‌العاده دقیق ریسپانسیو موبایل و تبلت --- */
@media (max-width: 1200px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-content h1 { font-size: 48px; }
    .hero-content h1 span { font-size: 54px; }
}

@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-content h1 { font-size: 42px; }
    .hero-content h1 span { font-size: 48px; }
    .hero-content p { margin: 0 auto 36px auto; }
    .cta-group { justify-content: center; }
    .main-hero-img { height: 480px; max-width: 400px; }
    .category-grid { grid-template-columns: 1fr; gap: 24px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .product-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 34px; }
    .hero-content h1 span { font-size: 38px; }
    .main-hero-img { height: 380px; }
    .cta-group { flex-direction: column; width: 100%; gap: 12px; }
    .btn-primary, .btn-secondary { text-align: center; width: 100%; padding: 16px; }
    .section-padding { padding: 80px 16px; }
    .category-card { height: 400px; }
}