/* Section visibility management */
#about {
    display: none;
}

#about.show-section {
    display: block;
}

/* Custom Interior Design Styles */

:root {
    --py-section: 100px;
}

.py-10 {
    padding-top: var(--py-section);
    padding-bottom: var(--py-section);
}

.mt-10 {
    margin-top: var(--py-section);
}

.transition-all {
    transition: all 0.3s ease-in-out;
}

.fw-black {
    font-weight: 900;
}

.tracking-widest {
    letter-spacing: 0.3em;
}

.line-height-relaxed {
    line-height: 1.8;
}

/* About Cards */
.about-card {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.m-n4 {
    margin: -1.5rem !important;
}

/* Header section */

/* Scroll Animations */
/* .reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(50px);
}

.reveal-right {
    transform: translateX(-50px);
}

.reveal-zoom {
    transform: scale(0.9);
}

.reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
} */

/* Stagger delays */
/* .delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; } */

/* Existing CSS... */
/* 1. Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: transform 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    background-color: #000;
    z-index: 1;
}

.hero-slide.active {
    left: 0;
    transform: translateX(0);
    z-index: 2;
}

.hero-slide.prev {
    left: 0;
    transform: translateX(-100%);
    z-index: 1;
}

.hero-slide.next {
    left: 0;
    transform: translateX(100%);
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 span {
    color: var(--brand-primary);
    text-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.tracking-wider {
    letter-spacing: 0.1em;
}

/* Navbar */
#landingNav.bg-white .nav-link {
    color: var(--brand-dark) !important;
}

#landingNav:not(.bg-white) .nav-link {
    color: white !important;
}

#landingNav:not(.bg-white) .navbar-brand span {
    color: white !important;
}

/* 2. About Section */
.shadow-xl {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge {
    transform: translate(-20px, 20px);
}

/* 3. Categories */
.category-card {
    height: 500px;
}

.category-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    opacity: 1; /* Always visible text in this variant */
}

.category-card:hover .category-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.group-hover-scale {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .group-hover-scale {
    transform: scale(1.1);
}


.w-fit {
    width: fit-content;
}

/* 4. Product Cards */
.product-card {
    transition: all 0.3s ease;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.product-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* 5. Contact Section */
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover-text-primary:hover {
    color: var(--brand-primary) !important;
}

/* Form Styles */
.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    background-color: #fcfcfc;
}

/* RTL Adjustments */
[dir="rtl"] .experience-badge {
    transform: translate(20px, 20px);
    left: auto !important;
    right: 0;
}

[dir="rtl"] .hero-section {
    text-align: center;
}

/* 4. Product Cards v2 */
.product-card-v2 {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card-v2:hover {
    transform: translateY(-8px);
}

.hover-shadow-lg:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

.product-overlay-actions {
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

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

[dir="rtl"] .product-overlay-actions {
    transform: translateX(-10px);
}

[dir="rtl"] .product-card-v2:hover .product-overlay-actions {
    transform: translateX(0);
}

.btn-white {
    background: #ffffff;
    color: var(--brand-dark);
    border: none;
}

.hover-bg-primary:hover {
    background-color: var(--brand-primary) !important;
}

.hover-bg-success:hover {
    background-color: var(--brand-success) !important;
}

.hover-text-white:hover {
    color: #ffffff !important;
}

.product-price-badge {
    z-index: 2;
}

/* Modern Soft Product Cards */
.soft-glass-card {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

.hover-scale {
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.soft-glass-card:hover .hover-scale {
    transform: scale(1.1);
}

.rounded-4 {
    border-radius: 20px !important;
}

.btn-outline-primary {
    border-color: var(--brand-primary);
    color: var(--brand-dark);
}

.btn-outline-primary:hover {
    background-color: var(--brand-primary);
    color: var(--brand-dark);
}

/* 6. Affiliate Section - Inline Form Card */
.affiliate-form-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.04);
}

[dir="rtl"] .affiliate-form-card {
    text-align: right;
}

/* Affiliate Step Cards - Animated */
.affiliate-step-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 24px;
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.affiliate-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), #e8b84b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[dir="rtl"] .affiliate-step-card::before {
    transform-origin: right;
}

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

.affiliate-step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    line-height: 1;
    user-select: none;
    transition: all 0.4s ease;
}

[dir="rtl"] .step-number {
    right: auto;
    left: 1.5rem;
}

[dir="ltr"] .step-number {
    right: 1.5rem;
    left: auto;
}

.affiliate-step-card:hover .step-number {
    color: rgba(183, 148, 84, 0.08);
    transform: scale(1.1);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(183, 148, 84, 0.08);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--brand-primary);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.affiliate-step-card:hover .step-icon-wrapper {
    background: var(--brand-primary);
    color: #ffffff;
    transform: scale(1.05) rotateY(180deg);
}

[dir="rtl"] .affiliate-step-card:hover .step-icon-wrapper {
    transform: scale(1.05) rotateY(-180deg);
}

.affiliate-step-card h5 {
    position: relative;
    z-index: 1;
}

.affiliate-step-card p {
    position: relative;
    z-index: 1;
}

/* Password toggle button */
.password-toggle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    padding: 0.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.2s ease;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

[dir="ltr"] .password-toggle {
    right: 8px;
}

[dir="rtl"] .password-toggle {
    left: 8px;
}

.password-toggle:hover {
    color: #333;
}

.password-toggle:focus {
    outline: none;
    color: var(--brand-primary);
}

/* Extra spacing utilities */
.mb-6 {
    margin-bottom: 4rem;
}

.mb-8 {
    margin-bottom: 6rem;
}

/* Responsive */
@media (max-width: 768px) {
    .display-1 {
        font-size: 3rem;
    }
    .category-card {
        height: 350px;
    }
    .py-10 {
        padding: 60px 0;
    }
}


