/* ========================================
   PREMIUM HOME DESIGN LANDING PAGE STYLES
   Luxury Interior Design & Renovation
   Color Palette:
   - Deep Charcoal: #2C2C2C
   - Rich Gold: #D4AF37
   - Warm Terracotta: #CD5C5C
   - Soft Cream: #F5F5DC
   - Deep Teal: #008B8B
======================================== */

:root {
    --primary-dark: #2C2C2C;
    --gold: #D4AF37;
    --terracotta: #CD5C5C;
    --cream: #F5F5DC;
    --teal: #008B8B;
    --white: #FFFFFF;
    --gray-light: #F8F8F8;
}

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

body {
    font-family: 'Montserrat', 'IRANSans', sans-serif;
    color: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Persian Fonts */
.persian-text {
    font-family: 'IRANSans', 'Vazir', sans-serif;
}

/* ========================================
   HERO SLIDER - Premium Design with Dynamic Slides
======================================== */
.hero-slider-area {
    position: relative;
    height: 100vh;
    min-height: 700px;
    padding: 0 !important;
    margin: 0;
}

.hero-slider-area .container.wide {
    max-width: 100%;
    padding: 0;
    width: 100%;
}

.hero-slider-wrapper {
    height: 100vh;
    min-height: 700px;
}

.single-slider-item {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider-item-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slider-item-wrapper > .container {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.hero-slider-item-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Premium overlay for slides */
.hero-slider-item-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.7) 0%, rgba(44, 44, 44, 0.3) 100%);
    z-index: 1;
}

/* Slide content styling */
.hero-slider-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    margin-top: 35vh;
    animation: fadeInUp 1.2s ease-out;
}

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

/* Slide title styles */
.slider-title {
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.slider-title--big-light {
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
}

.slider-title--big-bold {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.slider-title--small {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 40px;
}

/* Hero slider button */
.hero-slider-button {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-slider-button:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    color: var(--primary-dark);
}

.hero-slider-button i {
    margin-left: 10px;
    font-size: 1.3rem;
}

/* Slick slider arrows - Premium style */
.ht-slick-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.9);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    color: var(--white);
    font-size: 1.5rem;
}

.ht-slick-slider .slick-arrow:hover {
    background: var(--white);
    color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.ht-slick-slider .slick-prev {
    left: 40px;
}

.ht-slick-slider .slick-next {
    right: 40px;
}

/* Slick slider dots - Premium style */
.ht-slick-slider .slick-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ht-slick-slider .slick-dots li {
    margin: 0;
}

.ht-slick-slider .slick-dots li button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
    padding: 0;
}

.ht-slick-slider .slick-dots li.slick-active button {
    background: var(--gold);
    width: 40px;
    border-radius: 20px;
}

.ht-slick-slider .slick-dots li button:hover {
    background: var(--gold);
}

/* Responsive adjustments for hero slider */
@media (max-width: 1200px) {
    .slider-title--big-bold {
        font-size: 3.5rem;
    }

    .slider-title--big-light {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .hero-slider-area,
    .hero-slider-wrapper,
    .single-slider-item {
        min-height: 600px;
    }

    .slider-title--big-bold {
        font-size: 2.8rem;
    }

    .slider-title--big-light {
        font-size: 1.5rem;
    }

    .slider-title--small {
        font-size: 1.2rem;
    }

    .ht-slick-slider .slick-arrow {
        width: 50px;
        height: 50px;
    }

    .ht-slick-slider .slick-prev {
        left: 20px;
    }

    .ht-slick-slider .slick-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-slider-area,
    .hero-slider-wrapper,
    .single-slider-item {
        min-height: 500px;
    }

    .slider-title--big-bold {
        font-size: 2rem;
    }

    .slider-title--big-light {
        font-size: 1.2rem;
    }

    .slider-title--small {
        font-size: 1rem;
    }

    .hero-slider-button {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .hero-slider-content {
        margin-top: 30vh;
    }
}

/* Additional premium button styles */
.btn-premium {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-premium-primary {
    background: var(--gold);
    color: var(--primary-dark);
}

.btn-premium-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

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

.btn-premium-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ========================================
   CATEGORIES - ULTRA CLEAN & MINIMAL
======================================== */

.cat-section {
    padding: 50px 20px 70px;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(to bottom, #fafafa, #fff);
}

.cat-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-dark);
    margin: 0 0 10px;
}

.cat-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #777;
    margin: 0 0 45px;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cat-item {
    display: block;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 18px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    text-decoration: none;
}

.cat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

.cat-item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.cat-item:hover img {
    transform: scale(1.08);
}

.cat-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 20px 20px 10px;
    text-align: center;
    transition: color 0.3s ease;
}

.cat-item:hover h3 {
    color: var(--gold);
}

.cat-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    padding: 0 0 20px;
    transition: all 0.3s ease;
}

.cat-item:hover span {
    color: var(--terracotta);
    gap: 12px;
}

.cat-item span i {
    font-size: 1.15rem;
}

@media (max-width: 1024px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .cat-item img {
        height: 190px;
    }
}

@media (max-width: 768px) {
    .cat-section {
        padding: 40px 15px 55px;
    }
    .cat-title {
        font-size: 2rem;
    }
    .cat-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    .cat-grid {
        gap: 20px;
    }
    .cat-item img {
        height: 170px;
    }
    .cat-item h3 {
        font-size: 1.1rem;
        margin: 16px 16px 8px;
    }
    .cat-item span {
        padding: 0 0 16px;
    }
}

@media (max-width: 576px) {
    .cat-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .cat-item img {
        height: 220px;
    }
    .cat-title {
        font-size: 1.75rem;
    }
}

/* ========================================
   SLICK SLIDER CUSTOMIZATION FOR DYNAMIC CONTENT
======================================== */
.slick-slider {
    margin: 0 -10px;
}

.slick-slide {
    padding: 0 10px;
}

.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    background: var(--gold) !important;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--terracotta) !important;
    transform: scale(1.1);
}

.slick-prev {
    left: -25px;
}

.slick-next {
    right: -25px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 1.5rem;
    opacity: 1;
}

.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--gold);
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--gold);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS FOR DYNAMIC CONTENT
======================================== */
@media (max-width: 768px) {
    .single-category img,
    .single-category-item img {
        height: 200px;
    }

    .product-image {
        height: 250px;
    }

    .blog-post-image,
    .article-image {
        height: 200px;
    }

    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }

    .slick-prev {
        left: -5px;
    }

    .slick-next {
        right: -5px;
    }
}

/* ========================================
   SECTION SPACING AND COMMON STYLES
======================================== */
.section-premium {
    padding: 100px 0;
}

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

.section-title h2 {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold);
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
}

/* ========================================
   SERVICES GRID - 6 Categories
======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    padding: 40px;
    text-align: center;
    font-size: 4rem;
    color: var(--gold);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    color: var(--terracotta);
    transform: scale(1.1);
}

.service-content {
    padding: 0 40px 40px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-content p {
    color: #666;
    line-height: 1.8;
}

.service-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.service-card:hover .service-image-hover {
    opacity: 0.9;
}

.service-card:hover .service-content,
.service-card:hover .service-icon {
    position: relative;
    z-index: 2;
    color: var(--white);
}

/* ========================================
   PORTFOLIO SHOWCASE - Masonry Grid
======================================== */
.portfolio-filters {
    text-align: center;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 30px;
    margin: 5px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--white);
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(44, 44, 44, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.portfolio-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-category {
    color: var(--gold);
    font-size: 1rem;
}

.portfolio-details {
    color: var(--cream);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* ========================================
   PROCESS TIMELINE - 5 Stages
======================================== */
.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.timeline-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--teal) 100%);
    z-index: 0;
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.timeline-item {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.timeline-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--white);
    border: 4px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold);
    transition: all 0.4s ease;
    position: relative;
}

.timeline-item:hover .timeline-icon {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.timeline-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    font-size: 0.95rem;
}

/* ========================================
   WHY CHOOSE US - Stats Counter
======================================== */
.why-choose-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--teal) 100%);
    color: var(--white);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--gold);
}

.feature-text {
    font-size: 1.1rem;
}

/* ========================================
   TESTIMONIALS CAROUSEL
======================================== */
.testimonials-section {
    background: var(--gray-light);
}

.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    text-align: center;
    padding: 60px 40px;
}

.testimonial-quote {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--primary-dark);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 6rem;
    color: var(--gold);
    position: absolute;
    top: -40px;
    left: -20px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    font-size: 0.95rem;
}

.testimonial-rating {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 10px;
}

/* ========================================
   CONTACT SECTION - Split Layout
======================================== */
.contact-section {
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-wrapper {
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-submit:hover {
    background: var(--terracotta);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.contact-info-wrapper {
    padding: 40px;
    background: var(--gray-light);
    border-radius: 15px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 2rem;
    color: var(--gold);
    min-width: 50px;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    font-size: 1rem;
}

.contact-details a {
    color: var(--teal);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--terracotta);
    transform: translateY(-5px);
}

/* ========================================
   SCROLL ANIMATIONS
======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px) translateZ(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: opacity, transform;
}

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

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
    .hero-premium-title {
        font-size: 3.5rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-premium-title {
        font-size: 2.8rem;
    }

    .hero-premium-subtitle {
        font-size: 1.4rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .timeline-items {
        flex-direction: column;
        gap: 40px;
    }

    .timeline-line {
        width: 4px;
        height: 100%;
        left: 50px;
        top: 0;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-premium-title {
        font-size: 2rem;
    }

    .hero-premium-subtitle {
        font-size: 1.2rem;
    }

    .section-premium {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .btn-premium {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-buttons .btn-premium {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-premium {
        min-height: 500px;
    }

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

    .stat-number {
        font-size: 3rem;
    }

    .service-card,
    .portfolio-item {
        margin: 0 10px;
    }
}

/* ========================================
   LOADING ANIMATION
======================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.container-premium {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.text-gold {
    color: var(--gold);
}

.bg-dark {
    background: var(--primary-dark);
}

.bg-light {
    background: var(--gray-light);
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

/* ========================================
   MARBLE ELEGANCE REDESIGN - 2025
   Beautiful Architecture & Interior Design
========================================= */

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Cat Section - Marble Background (DESKTOP DEFAULT) */
.cat-section-marble {
    background: url('/Theme/assets/img/marble-1.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.cat-section-marble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201,169,98,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cat-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.cat-item-luxury {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    text-decoration: none;
    display: block;
    transform: translateZ(0);
    will-change: transform;
}

.cat-item-luxury:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(201,169,98,0.3);
}

.cat-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.cat-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    transform: translateZ(0);
}

.cat-item-luxury:hover .cat-image-wrapper img {
    transform: scale(1.1) translateZ(0);
}

.cat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.cat-item-luxury:hover .cat-overlay {
    opacity: 0.8;
}

.cat-content {
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5dc 100%);
    position: relative;
}

.cat-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d2419;
    margin-bottom: 12px;
    font-family: 'IRANYekanX', sans-serif;
}

.cat-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c9a962;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.cat-item-luxury:hover .cat-cta {
    color: #8b6914;
    gap: 12px;
}

/* Category Filters for Featured Products Section */
.category-filters-premium {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.category-filter-btn {
    padding: 12px 30px;
    margin: 5px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IRANYekanX', sans-serif;
    font-size: 1rem;
}

.category-filter-btn:hover,
.category-filter-btn.active {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Featured Products Grid */
.cat-grid-premium-featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Hide filtered items */
.cat-item-luxury.hidden {
    display: none !important;
}

/* Alpine.js cloak */
[x-cloak] {
    display: none !important;
}

/* Load More Buttons */
.load-more-container {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.load-more-items-btn,
.load-more-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, #B8942B 100%);
    border: none;
    color: var(--white);
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IRANYekanX', sans-serif;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.load-more-items-btn:hover,
.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #B8942B 0%, var(--gold) 100%);
}

/* Services Section - Marble Elegance (DESKTOP DEFAULT) */
.services-marble-section {
    background: url('/Theme/assets/img/marble-2.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.services-marble-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(201,169,98,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.services-premium-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.services-premium-header h2 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c9a962 0%, #8b6914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-family: 'IRANYekanX', sans-serif;
    letter-spacing: -1px;
}

.services-premium-header p {
    font-size: 1.2rem;
    color: #6b5d4f;
    font-family: 'IRANYekanX', sans-serif;
    font-weight: 500;
}

.services-luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.service-luxury-card {
    background: rgba(255,255,255,0.98);
    border-radius: 25px;
    padding: 40px 35px;
    border: 2px solid rgba(201,169,98,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateZ(0);
}

.service-luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #c9a962 0%, #8b6914 100%);
    transform: scaleX(0) translateZ(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.service-luxury-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(201,169,98,0.25);
    border-color: rgba(201,169,98,0.5);
}

.service-icon-luxury {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(201,169,98,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
}

.service-icon-luxury img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.service-luxury-card:hover .service-icon-luxury {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(201,169,98,0.25);
}

.service-luxury-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d2419;
    margin-bottom: 15px;
    font-family: 'IRANYekanX', sans-serif;
}

.service-luxury-content p {
    font-size: 1.05rem;
    color: #6b5d4f;
    line-height: 1.8;
    font-family: 'IRANYekanX', sans-serif;
}

/* Portfolio Section - Marble Background */
.portfolio-marble-section {
    background: url('/Theme/assets/img/marble-1.webp');
                
    bottom: 100px;            
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    transform: translateZ(0);
}

.portfolio-marble-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(201,169,98,0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Process Timeline - Individual Marble Backgrounds */
.process-timeline-marble {
    padding: 100px 0;
    background: url('/Theme/assets/img/marble-1.webp');
    overflow: hidden;
}

.timeline-line-gold {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #c9a962 0%, #8b6914 100%);
    transform: translateX(-50%);
}

.timeline-items-luxury {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-item-marble {
    margin-bottom: 80px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
}

.timeline-item-marble:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon-marble {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 6px solid white;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    transform: translateZ(0);
}

.timeline-icon-marble:hover {
    transform: scale(1.1) rotate(5deg) translateZ(0);
}

.timeline-icon-marble .icon-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,169,98,0.9) 0%, rgba(139,105,20,0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-number-luxury {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    font-family: 'IRANYekanX', sans-serif;
}

.timeline-content-marble {
    flex: 1;
    background: white;
    padding: 35px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid rgba(201,169,98,0.2);
    transition: all 0.4s;
    position: relative;
}

.timeline-content-marble::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item-marble:nth-child(odd) .timeline-content-marble::before {
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-right-color: white;
}

.timeline-item-marble:nth-child(even) .timeline-content-marble::before {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-left-color: white;
}

.timeline-content-marble:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(201,169,98,0.25);
    border-color: rgba(201,169,98,0.5);
}

.timeline-content-marble h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d2419;
    margin-bottom: 12px;
    font-family: 'IRANYekanX', sans-serif;
}

.timeline-content-marble p {
    font-size: 1.1rem;
    color: #6b5d4f;
    line-height: 1.7;
    font-family: 'IRANYekanX', sans-serif;
}

/* Individual step backgrounds */
.step-1-bg { background-image: url('/Theme/assets/img/marble-1.webp'); }
.step-2-bg { background-image: url('/Theme/assets/img/marble-2.webp'); }
.step-3-bg { background-image: url('/Theme/assets/img/marble-3.webp'); }
.step-4-bg { background-image: url('/Theme/assets/img/marble-1.webp'); }
.step-5-bg { background-image: url('/Theme/assets/img/marble-2.webp'); }

/* Why Choose Section - Stunning Marble */
.why-choose-marble {
    background:
                url('/Theme/assets/img/marble-3.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.why-choose-marble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201,169,98,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.stats-luxury {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.stat-luxury-item {
    text-align: center;
    padding: 40px 20px;
    background: #ffffffb0;
    border-radius: 20px;
    border: 2px solid rgba(201,169,98,0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.stat-luxury-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(201,169,98,0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%) translateZ(0);
    transition: width 0.3s ease, height 0.3s ease;
}

.stat-luxury-item:hover::before {
    width: 250px;
    height: 250px;
}

.stat-luxury-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #c9a962;
    box-shadow: 0 20px 60px rgba(201,169,98,0.4);
}

.stat-number-luxury {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #000000 0%, #f4e4b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
    font-family: 'IRANYekanX', sans-serif;
    position: relative;
    z-index: 2;
}

.stat-label-luxury {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 600;
    font-family: 'IRANYekanX', sans-serif;
    position: relative;
    z-index: 2;
}

.stat-icon-luxury {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(201,169,98,0.2);
    position: relative;
    z-index: 2;
}

.stat-icon-luxury img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.features-luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.feature-luxury-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #ffffffb0;
    border-radius: 15px;
    border: 2px solid rgba(201,169,98,0.2);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    transform: translateZ(0);
}

.feature-luxury-item:hover {
    background: rgba(255,255,255,0.12);
    border-color: #c9a962;
    transform: translateX(10px);
}

.feature-icon-luxury {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(201,169,98,0.2);
}

.feature-icon-luxury img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.15));
}

.feature-text-luxury {
    font-size: 1.15rem;
    color: #000000;
    font-weight: 600;
    font-family: 'IRANYekanX', sans-serif;
}

/* ========================================
   DARK WOODY SERVICES SECTION - MARBLE
========================================= */
.dark-services-marble {
    background:
                url('/Theme/assets/img/marble-1.webp');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 60px 0;
    position: relative;
    min-height: auto;
}

.services-compact-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-compact-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 10px;
    font-family: 'IRANYekanX', sans-serif;
}

.services-compact-header p {
    font-size: 1rem;
    color: #a8957b;
    font-family: 'IRANYekanX', sans-serif;
}

.services-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-compact-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 15px;
    padding: 30px 20px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.service-compact-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.service-icon-compact {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    padding: 10px;
}

.service-icon-compact img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-compact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 10px;
    font-family: 'IRANYekanX', sans-serif;
    text-align: center;
}

.service-compact-card p {
    font-size: 0.9rem;
    color: #c9a962;
    line-height: 1.6;
    font-family: 'IRANYekanX', sans-serif;
    text-align: center;
}

/* ========================================
   SECTION FADE TRANSITIONS - ELIMINATE HARSH LINES
========================================= */
.featured-products-marble::before,
.blog-section-marble::before,
.testimonials-section::before,
.blog-articles-marble::before,
.cat-section-marble::before,
.services-marble-section::before,
.portfolio-marble-section::before,
.process-timeline-marble::before,
.why-choose-marble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
    z-index: 1;
    pointer-events: none;
}

.featured-products-marble::after,
.blog-section-marble::after,
.testimonials-section::after,
.blog-articles-marble::after,
.cat-section-marble::after,
.services-marble-section::after,
.portfolio-marble-section::after,
.process-timeline-marble::after,
.why-choose-marble::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
    z-index: 1;
    pointer-events: none;
}

/* ========================================
   FEATURED PRODUCTS - COMPLETELY NEW DESIGN (DESKTOP DEFAULT)
========================================= */
.featured-products-marble {
    bottom: 100px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    transform: translateZ(0);
    scroll-margin-top: 0 !important;
}

/* CRITICAL: Prevent auto-scroll when clicking tabs */
.featured-products-marble .nav-tabs,
.featured-products-marble .nav-item,
.featured-products-marble .nav-link,
.featured-products-marble .tab-content,
.featured-products-marble .tab-pane {
    scroll-margin-top: 0 !important;
    scroll-behavior: auto !important;
}

/* NUCLEAR RESET: Completely destroy all old CSS classes */
.featured-products-marble *,
.featured-products-marble *::before,
.featured-products-marble *::after {
    scroll-margin-top: 0 !important;
    scroll-behavior: auto !important;
}

.featured-products-marble .single-row-slider-tab-area,
.featured-products-marble .section-space,
.featured-products-marble .container {
    all: unset !important;
    display: block !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.featured-products-marble .row,
.featured-products-marble .col-lg-12 {
    all: unset !important;
    display: block !important;
    width: 100% !important;
}

.featured-products-marble .section-title-wrapper {
    all: unset !important;
    display: block !important;
    text-align: center !important;
    margin-bottom: 50px !important;
    position: relative !important;
    z-index: 2 !important;
}

.featured-products-marble .section-title {
    all: unset !important;
    display: inline-block !important;
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #1a1410 !important;
    font-family: 'IRANYekanX', sans-serif !important;
    margin-bottom: 20px !important;
    padding: 20px 60px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
    border: 3px solid rgba(201,169,98,0.3) !important;
}

.featured-products-marble .section-subtitle {
    all: unset !important;
    display: block !important;
    font-size: 1.2rem !important;
    color: #2d2419 !important;
    font-family: 'IRANYekanX', sans-serif !important;
    max-width: 700px !important;
    margin: 20px auto 0 !important;
    padding: 15px 40px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    text-align: center !important;
}

/* Product Grid - Modern Card Design */
.featured-products-marble .products-grid-modern,
.blog-section-marble .products-grid-modern {
    all: unset !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
    position: relative;
    z-index: 2;
}

.featured-products-marble .product-card,
.blog-section-marble .product-card {
    all: unset !important;
    display: block !important;
    background: white !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(62, 39, 35, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
}

.featured-products-marble .product-card:hover,
.blog-section-marble .product-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 32px rgba(62, 39, 35, 0.15) !important;
}

.featured-products-marble .product-image-container,
.blog-section-marble .product-image-container {
    all: unset !important;
    display: block !important;
    position: relative !important;
    overflow: hidden !important;
    aspect-ratio: 1 !important;
    background: #FAF8F6 !important;
}

.featured-products-marble .product-image,
.blog-section-marble .product-image {
    all: unset !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s !important;
}

.featured-products-marble .product-card:hover .product-image,
.blog-section-marble .product-card:hover .product-image {
    transform: scale(1.08) !important;
}

.featured-products-marble .product-badge,
.blog-section-marble .product-badge {
    all: unset !important;
    display: block !important;
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    background: linear-gradient(135deg, #D4AF37 0%, #B8942B 100%) !important;
    color: white !important;
    padding: 0.4rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3) !important;
    z-index: 1 !important;
}

.featured-products-marble .product-favorite,
.blog-section-marble .product-favorite {
    all: unset !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: 1rem !important;
    left: 1rem !important;
    width: 40px !important;
    height: 40px !important;
    background: white !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    z-index: 1 !important;
}

.featured-products-marble .product-favorite:hover,
.blog-section-marble .product-favorite:hover {
    background: #5D4037 !important;
    transform: scale(1.1) !important;
}

.featured-products-marble .product-favorite svg,
.blog-section-marble .product-favorite svg {
    width: 20px !important;
    height: 20px !important;
    fill: #5D4037 !important;
    transition: all 0.3s !important;
}

.featured-products-marble .product-favorite:hover svg,
.blog-section-marble .product-favorite:hover svg {
    fill: white !important;
}

.featured-products-marble .product-colors,
.blog-section-marble .product-colors {
    all: unset !important;
    display: flex !important;
    gap: 0.5rem !important;
    position: absolute !important;
    bottom: 1rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    opacity: 0 !important;
    transition: all 0.3s !important;
}

.featured-products-marble .product-card:hover .product-colors,
.blog-section-marble .product-card:hover .product-colors {
    opacity: 1 !important;
}

.featured-products-marble .color-option,
.blog-section-marble .color-option {
    all: unset !important;
    display: block !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
    transition: all 0.3s !important;
    cursor: pointer !important;
}

.featured-products-marble .color-option:hover,
.blog-section-marble .color-option:hover {
    transform: translateY(-3px) !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 4px 12px rgba(212,175,55,0.4) !important;
}

.featured-products-marble .color-option img,
.blog-section-marble .color-option img {
    all: unset !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.featured-products-marble .product-info,
.blog-section-marble .product-info {
    all: unset !important;
    display: block !important;
    padding: 1.5rem !important;
}

.featured-products-marble .product-category,
.blog-section-marble .product-category {
    all: unset !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
}

.featured-products-marble .product-category a,
.blog-section-marble .product-category a {
    all: unset !important;
    display: inline-block !important;
    font-size: 0.85rem !important;
    color: #795548 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-family: 'IRANYekanX', sans-serif !important;
    cursor: pointer !important;
}

.featured-products-marble .product-category a:hover,
.blog-section-marble .product-category a:hover {
    color: #5D4037 !important;
}

.featured-products-marble .product-name,
.blog-section-marble .product-name {
    all: unset !important;
    display: block !important;
    margin-bottom: 1rem !important;
}

.featured-products-marble .product-name a,
.blog-section-marble .product-name a {
    all: unset !important;
    display: block !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #3E2723 !important;
    text-decoration: none !important;
    line-height: 1.5 !important;
    font-family: 'IRANYekanX', sans-serif !important;
    cursor: pointer !important;
}

.featured-products-marble .product-name a:hover,
.blog-section-marble .product-name a:hover {
    color: #D4AF37 !important;
}

.featured-products-marble .product-pricing,
.blog-section-marble .product-pricing {
    all: unset !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
}

.featured-products-marble .current-price,
.blog-section-marble .current-price {
    all: unset !important;
    display: inline-block !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #5D4037 !important;
    font-family: 'IRANYekanX', sans-serif !important;
}

.featured-products-marble .original-price,
.blog-section-marble .original-price {
    all: unset !important;
    display: inline-block !important;
    font-size: 0.95rem !important;
    color: #BCAAA4 !important;
    text-decoration: line-through !important;
    font-family: 'IRANYekanX', sans-serif !important;
}

.featured-products-marble .category-count,
.blog-section-marble .category-count {
    all: unset !important;
    display: block !important;
    font-size: 0.9rem !important;
    color: #795548 !important;
    font-family: 'IRANYekanX', sans-serif !important;
}

/* ========================================
   LATEST ARRIVALS - COMPLETELY NEW DESIGN (DESKTOP DEFAULT)
========================================= */
.blog-section-marble {
    background: url('/Theme/assets/img/marble-3.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    transform: translateZ(0);
    scroll-margin-top: 0 !important;
}

/* NUCLEAR RESET: Completely destroy all old CSS classes */
.blog-section-marble *,
.blog-section-marble *::before,
.blog-section-marble *::after {
    scroll-margin-top: 0 !important;
    scroll-behavior: auto !important;
}

.blog-section-marble .single-row-slider-area,
.blog-section-marble .section-space,
.blog-section-marble .container {
    all: unset !important;
    display: block !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.blog-section-marble .row,
.blog-section-marble .col-lg-12 {
    all: unset !important;
    display: block !important;
    width: 100% !important;
}

.blog-section-marble .section-title-wrapper {
    all: unset !important;
    display: block !important;
    text-align: center !important;
    margin-bottom: 50px !important;
    position: relative !important;
    z-index: 2 !important;
}

.blog-section-marble .section-title {
    all: unset !important;
    display: inline-block !important;
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #1a1410 !important;
    font-family: 'IRANYekanX', sans-serif !important;
    margin-bottom: 20px !important;
    padding: 20px 60px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
    border: 3px solid rgba(201,169,98,0.3) !important;
}

.blog-section-marble .section-subtitle {
    all: unset !important;
    display: block !important;
    font-size: 1.2rem !important;
    color: #2d2419 !important;
    font-family: 'IRANYekanX', sans-serif !important;
    max-width: 700px !important;
    margin: 20px auto 0 !important;
    padding: 15px 40px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    text-align: center !important;
}

.blog-section-marble .single-row-slider-wrapper {
    all: unset !important;
    display: block !important;
    width: 100% !important;
}

/* Product cards - Different design from Featured Products */
.blog-section-marble .single-grid-product {
    background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,0.88)) !important;
    border-radius: 25px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 40px rgba(106,87,68,0.2) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 3px solid rgba(201,169,98,0.25) !important;
    margin: 10px !important;
    position: relative !important;
}

.blog-section-marble .single-grid-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #c9a962 0%, #d4b76a 50%, #c9a962 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-section-marble .single-grid-product:hover::before {
    opacity: 1;
}

.blog-section-marble .single-grid-product:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 25px 60px rgba(201,169,98,0.4) !important;
    border-color: #c9a962 !important;
}

.blog-section-marble .single-grid-product__image {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 20px 20px 0 0 !important;
}

.blog-section-marble .single-grid-product__image img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    transition: all 0.5s ease !important;
    filter: brightness(0.95) !important;
}

.blog-section-marble .single-grid-product:hover .single-grid-product__image img {
    transform: scale(1.12) rotate(2deg) !important;
    filter: brightness(1.05) !important;
}

.blog-section-marble .single-grid-product__label {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 3 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.blog-section-marble .single-grid-product__label .sale {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    box-shadow: 0 8px 20px rgba(231,76,60,0.5) !important;
}

.blog-section-marble .single-grid-product__label .new {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    box-shadow: 0 8px 20px rgba(39,174,96,0.5) !important;
}

.blog-section-marble .single-grid-product__content {
    padding: 30px !important;
    background: rgba(255,255,255,0.98) !important;
}

.blog-section-marble .single-grid-product__title {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #2d2419 !important;
    margin: 15px 0 !important;
    font-family: 'IRANYekanX', sans-serif !important;
    line-height: 1.7 !important;
}

.blog-section-marble .single-grid-product__title a {
    color: #2d2419 !important;
    transition: all 0.3s ease !important;
}

.blog-section-marble .single-grid-product__title a:hover {
    color: #c9a962 !important;
    text-shadow: 0 2px 8px rgba(201,169,98,0.3) !important;
}

.blog-section-marble .single-grid-product__price {
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    color: #c9a962 !important;
    margin-top: 15px !important;
    font-family: 'IRANYekanX', sans-serif !important;
}

.blog-section-marble .single-grid-product__category-rating {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid rgba(201,169,98,0.2) !important;
}

.blog-section-marble .category a {
    color: #6b5744 !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    transition: color 0.3s ease !important;
}

.blog-section-marble .category a:hover {
    color: #c9a962 !important;
}

.blog-section-marble .rating i.active {
    color: #f39c12 !important;
}

/* Slick slider arrows for Latest Arrivals */
.blog-section-marble .slick-prev,
.blog-section-marble .slick-next {
    background: linear-gradient(135deg, #c9a962 0%, #a08750 100%) !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    z-index: 10 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 20px rgba(201,169,98,0.4) !important;
}

.blog-section-marble .slick-prev:hover,
.blog-section-marble .slick-next:hover {
    background: linear-gradient(135deg, #d4b76a 0%, #c9a962 100%) !important;
    transform: scale(1.15) !important;
    box-shadow: 0 8px 30px rgba(201,169,98,0.6) !important;
}

/* ========================================
   TESTIMONIALS - COMPLETELY NEW DESIGN (DESKTOP DEFAULT)
========================================= */
.testimonials-section {
    background: url('/Theme/assets/img/marble-2.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    transform: translateZ(0);
    scroll-margin-top: 0 !important;
}

/* NUCLEAR RESET */
.testimonials-section *,
.testimonials-section *::before,
.testimonials-section *::after {
    scroll-margin-top: 0 !important;
    scroll-behavior: auto !important;
}

.testimonials-section .container-premium {
    all: unset !important;
    display: block !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.testimonials-section .section-title {
    all: unset !important;
    display: block !important;
    text-align: center !important;
    margin-bottom: 60px !important;
    position: relative !important;
    z-index: 2 !important;
}

.testimonials-section .section-title h2 {
    all: unset !important;
    display: inline-block !important;
    font-size: 3.2rem !important;
    font-weight: 900 !important;
    color: #1a1410 !important;
    font-family: 'IRANYekanX', sans-serif !important;
    margin-bottom: 20px !important;
    padding: 20px 60px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
    border: 3px solid rgba(201,169,98,0.3) !important;
    letter-spacing: -1px !important;
}

.testimonials-section .section-title p {
    all: unset !important;
    display: block !important;
    font-size: 1.3rem !important;
    color: #2d2419 !important;
    font-family: 'IRANYekanX', sans-serif !important;
    font-weight: 600 !important;
    text-align: center !important;
    max-width: 700px !important;
    margin: 20px auto 0 !important;
    padding: 15px 40px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 30px !important;
}

.testimonials-section .testimonial-carousel {
    max-width: 1000px !important;
    margin: 50px auto 0 !important;
    padding: 0 20px !important;
    position: relative;
    z-index: 2;
}

.testimonials-section .testimonial-slide {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 100%) !important;
    border-radius: 30px !important;
    padding: 60px 50px !important;
    box-shadow: 0 20px 60px rgba(106,87,68,0.25) !important;
    border: 3px solid rgba(201,169,98,0.35) !important;
    position: relative !important;
    transition: all 0.4s ease !important;
}

.testimonials-section .testimonial-slide::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 8rem;
    color: rgba(201,169,98,0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonials-section .testimonial-slide:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 30px 80px rgba(201,169,98,0.4) !important;
    border-color: #c9a962 !important;
}

.testimonials-section .testimonial-quote {
    font-size: 1.5rem !important;
    line-height: 2.2 !important;
    color: #2d2419 !important;
    margin-bottom: 40px !important;
    font-style: italic !important;
    font-family: 'IRANYekanX', sans-serif !important;
    text-align: center !important;
    font-weight: 600 !important;
    position: relative !important;
    z-index: 2 !important;
}

.testimonials-section .author-info {
    text-align: center !important;
}

.testimonials-section .author-info h4 {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    color: #2d2419 !important;
    margin-bottom: 8px !important;
    font-family: 'IRANYekanX', sans-serif !important;
}

.testimonials-section .author-info p {
    font-size: 1.1rem !important;
    color: #6b5744 !important;
    margin-bottom: 15px !important;
    font-family: 'IRANYekanX', sans-serif !important;
    font-weight: 600 !important;
}

.testimonials-section .testimonial-rating {
    font-size: 1.5rem !important;
    color: #f39c12 !important;
    margin-top: 15px !important;
    letter-spacing: 5px !important;
    text-shadow: 0 2px 5px rgba(243,156,18,0.3) !important;
}

/* ========================================
   BLOG ARTICLES - COMPLETELY NEW DESIGN
========================================= */
.blog-articles-marble {
    background: url('/Theme/assets/img/marble-1.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    transform: translateZ(0);
    scroll-margin-top: 0 !important;
}

/* NUCLEAR RESET: Completely destroy all old CSS classes */
.blog-articles-marble *,
.blog-articles-marble *::before,
.blog-articles-marble *::after {
    scroll-margin-top: 0 !important;
    scroll-behavior: auto !important;
}

.blog-articles-marble .blog-post-slider-area,
.blog-articles-marble .blog-post-slider-border-wrapper,
.blog-articles-marble .section-space--inner,
.blog-articles-marble .container {
    all: unset !important;
    display: block !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.blog-articles-marble .row,
.blog-articles-marble .col-lg-12 {
    all: unset !important;
    display: block !important;
    width: 100% !important;
}

.blog-articles-marble .section-title-wrapper {
    all: unset !important;
    display: block !important;
    text-align: center !important;
    margin-bottom: 60px !important;
    position: relative !important;
    z-index: 2 !important;
}

.blog-articles-marble .section-title {
    all: unset !important;
    display: inline-block !important;
    font-size: 3.2rem !important;
    font-weight: 900 !important;
    color: #1a1410 !important;
    font-family: 'IRANYekanX', sans-serif !important;
    margin-bottom: 20px !important;
    padding: 20px 60px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
    border: 3px solid rgba(201,169,98,0.3) !important;
}

.blog-articles-marble .section-subtitle {
    all: unset !important;
    display: block !important;
    font-size: 1.3rem !important;
    color: #2d2419 !important;
    font-family: 'IRANYekanX', sans-serif !important;
    max-width: 800px !important;
    margin: 20px auto 0 !important;
    padding: 15px 40px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    text-align: center !important;
}

.blog-articles-marble .blog-post-slider-wrapper {
    all: unset !important;
    display: block !important;
    width: 100% !important;
}

/* Blog article cards - Unique design */
.blog-articles-marble .single-slider-post {
    background: rgba(255,255,255,0.96) !important;
    border-radius: 25px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 45px rgba(26,20,16,0.2) !important;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    border: 2px solid rgba(201,169,98,0.3) !important;
    margin: 10px !important;
    position: relative !important;
}

.blog-articles-marble .single-slider-post::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent 0%, #c9a962 50%, transparent 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.blog-articles-marble .single-slider-post:hover::after {
    transform: scaleX(1);
}

.blog-articles-marble .single-slider-post:hover {
    transform: translateY(-20px) rotate(-1deg) !important;
    box-shadow: 0 30px 70px rgba(201,169,98,0.45) !important;
    border-color: #c9a962 !important;
}

.blog-articles-marble .single-slider-post__image {
    position: relative !important;
    overflow: hidden !important;
    height: 280px !important;
}

.blog-articles-marble .single-slider-post__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: all 0.6s ease !important;
}

.blog-articles-marble .single-slider-post:hover .single-slider-post__image img {
    transform: scale(1.15) !important;
    filter: brightness(1.1) contrast(1.05) !important;
}

.blog-articles-marble .single-slider-post__date-sticker {
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    background: linear-gradient(135deg, #c9a962 0%, #a08750 100%) !important;
    color: #fff !important;
    padding: 12px 25px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 8px 25px rgba(201,169,98,0.5) !important;
    z-index: 2 !important;
}

.blog-articles-marble .single-slider-post__content {
    padding: 35px 30px !important;
    background: rgba(255,255,255,0.98) !important;
}

.blog-articles-marble .single-slider-post__content .title {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #2d2419 !important;
    margin-bottom: 20px !important;
    font-family: 'IRANYekanX', sans-serif !important;
    line-height: 1.8 !important;
}

.blog-articles-marble .single-slider-post__content .title a {
    color: #2d2419 !important;
    transition: all 0.3s ease !important;
}

.blog-articles-marble .single-slider-post__content .title a:hover {
    color: #c9a962 !important;
    text-decoration: none !important;
}

.blog-articles-marble .single-slider-post__content .short-desc {
    font-size: 1.05rem !important;
    color: #6b5744 !important;
    line-height: 1.9 !important;
    margin-bottom: 25px !important;
    font-family: 'IRANYekanX', sans-serif !important;
}

.blog-articles-marble .blog-post-link {
    display: inline-block !important;
    background: linear-gradient(135deg, #c9a962 0%, #a08750 100%) !important;
    color: #fff !important;
    padding: 12px 35px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 20px rgba(201,169,98,0.3) !important;
    text-decoration: none !important;
}

.blog-articles-marble .blog-post-link:hover {
    background: linear-gradient(135deg, #d4b76a 0%, #c9a962 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(201,169,98,0.5) !important;
    color: #fff !important;
}

/* Update existing sections to not exceed background height */
.cat-section-marble,
.services-marble-section,
.portfolio-marble-section,
.process-timeline-marble,
.why-choose-marble {
    bottom: 100px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
    min-height: auto;
}

/* ========================================
   MOBILE RESPONSIVE - FULL BACKGROUND COVERAGE
========================================= */
@media only screen and (max-width: 768px) {
    /* CRITICAL: Use rotated mobile marble backgrounds */
    body .cat-section-marble,
    html .cat-section-marble {
        background: url('/Theme/assets/img/marble-1-mobile.webp') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        padding: 60px 0 !important;
        min-height: auto !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    body .services-marble-section,
    html .services-marble-section,
    body .featured-products-marble,
    html .featured-products-marble,
    body .testimonials-section,
    html .testimonials-section {
        background: url('/Theme/assets/img/marble-2-mobile.webp') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        padding: 60px 0 !important;
        min-height: auto !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    body .portfolio-marble-section,
    html .portfolio-marble-section,
    body .blog-section-marble,
    html .blog-section-marble,
    body .process-timeline-marble,
    html .process-timeline-marble,
    body .why-choose-marble,
    html .why-choose-marble,
    body .blog-articles-marble,
    html .blog-articles-marble {
        background: url('/Theme/assets/img/marble-3-mobile.webp') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        padding: 60px 0 !important;
        min-height: auto !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    /* Ensure grid layouts stack properly in mobile */
    .cat-grid-premium,
    .services-luxury-grid,
    .stats-luxury,
    .features-luxury-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
        width: 100% !important;
    }

    /* Fix product cards display in mobile */
    .product-card,
    .cat-card-premium,
    .service-card-luxury {
        margin-bottom: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Font size adjustments */
    .services-premium-header h2,
    .section-title h2 {
        font-size: 2rem !important;
    }

    /* Timeline mobile fixes */
    .timeline-item-marble {
        flex-direction: column !important;
        text-align: center !important;
    }

    .timeline-item-marble:nth-child(even) {
        flex-direction: column !important;
    }

    .timeline-content-marble::before,
    .timeline-line-gold {
        display: none !important;
    }

    /* Stats adjustments */
    .stat-number-luxury {
        font-size: 3rem !important;
    }

    /* Feature items hover fix */
    .feature-luxury-item:hover {
        transform: translateX(0) translateY(-5px) !important;
    }

    /* Prevent horizontal overflow */
    * {
        max-width: 100% !important;
    }

    body {
        overflow-x: hidden !important;
    }

    /* Container adjustments */
    .container-premium {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
    }

    /* Ensure view components display properly */
    [class*="component-"] {
        width: 100% !important;
        overflow: visible !important;
    }

    /* CRITICAL FIX: Slick sliders in mobile - Featured Products & Latest Arrivals */
    .featured-products-marble .ht-slick-slider,
    .blog-section-marble .ht-slick-slider,
    .blog-articles-marble .ht-slick-slider {
        all: unset !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
    }

    .featured-products-marble .slick-list,
    .blog-section-marble .slick-list,
    .blog-articles-marble .slick-list {
        all: unset !important;
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        overflow: visible !important;
    }

    .featured-products-marble .slick-track,
    .blog-section-marble .slick-track,
    .blog-articles-marble .slick-track {
        all: unset !important;
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
    }

    .featured-products-marble .slick-slide,
    .blog-section-marble .slick-slide,
    .blog-articles-marble .slick-slide {
        all: unset !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    .featured-products-marble .col,
    .blog-section-marble .col,
    .blog-articles-marble .col {
        all: unset !important;
        display: block !important;
        width: 100% !important;
    }

    /* Product cards in mobile */
    .featured-products-marble .single-grid-product,
    .blog-section-marble .single-grid-product {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 15px auto !important;
        max-width: 90% !important;
        width: 100% !important;
    }

    /* Blog article cards in mobile */
    .blog-articles-marble .single-slider-post {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 15px auto !important;
        max-width: 90% !important;
        width: 100% !important;
    }

    /* Product grid in mobile */
    .featured-products-marble .products-grid-modern,
    .blog-section-marble .products-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
        gap: 1rem !important;
    }

    .featured-products-marble .product-info,
    .blog-section-marble .product-info {
        padding: 1rem !important;
    }

    .featured-products-marble .product-name a,
    .blog-section-marble .product-name a {
        font-size: 0.95rem !important;
    }

    .featured-products-marble .current-price,
    .blog-section-marble .current-price {
        font-size: 1rem !important;
    }

    /* Container resets in mobile */
    .featured-products-marble .container,
    .blog-section-marble .container,
    .blog-articles-marble .container,
    .testimonials-section .container-premium {
        max-width: 100% !important;
        padding: 0 15px !important;
    }

    /* Image heights in mobile */
    .featured-products-marble .single-grid-product__image img,
    .blog-section-marble .single-grid-product__image img {
        height: 250px !important;
    }

    .blog-articles-marble .single-slider-post__image {
        height: 220px !important;
    }

    /* Section titles in mobile */
    .featured-products-marble .section-title,
    .blog-section-marble .section-title,
    .testimonials-section .section-title h2,
    .blog-articles-marble .section-title {
        font-size: 2rem !important;
        padding: 15px 30px !important;
    }

    .featured-products-marble .section-subtitle,
    .blog-section-marble .section-subtitle,
    .testimonials-section .section-title p,
    .blog-articles-marble .section-subtitle {
        font-size: 0.95rem !important;
        padding: 12px 25px !important;
    }

    /* Hide slick arrows in mobile */
    .featured-products-marble .slick-prev,
    .featured-products-marble .slick-next,
    .blog-section-marble .slick-prev,
    .blog-section-marble .slick-next,
    .blog-articles-marble .slick-prev,
    .blog-articles-marble .slick-next {
        display: none !important;
    }
}

/* ========================================
   CRITICAL: PREVENT AUTO-SCROLL ON TAB CLICKS
========================================= */
html {
    scroll-behavior: auto !important;
}

.featured-products-marble a[data-toggle="tab"],
.featured-products-marble .nav-link[data-toggle="tab"] {
    pointer-events: auto !important;
}

/* Prevent Bootstrap tab scroll behavior */
.featured-products-marble .tab-pane,
.featured-products-marble .fade {
    transition: none !important;
}

@media (max-width: 480px) {
    .services-premium-header h2 {
        font-size: 1.6rem;
    }
    
    .service-luxury-card {
        padding: 30px 25px;
    }
    
    .timeline-icon-marble {
        width: 100px;
        height: 100px;
    }
    
    .timeline-number-luxury {
        font-size: 2.2rem;
    }
}
