/* --- Header with Black Background --- */
.site-header {
    background-color: #000;
    border-bottom: 1px solid #333;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin: 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
}

.site-branding {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.site-branding .custom-logo-link {
    max-width: 50px;
}

.site-title a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
    margin: 0;
}

h1.site-title {
    margin: 0;
}

.site-title a:hover {
    color: #ccc;
}

/* --- Right Navigation --- */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 20px;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.main-navigation li a {
    display: block;
    padding: 0.5rem 0;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

/* Underline animation on hover */
.main-navigation li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

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

/* --- Mobile Menu Toggle --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.menu-toggle:hover {
    background-color: #333;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    margin: 4px 0;
    transition: all 0.3s ease-in-out;
}

.nav-is-open .menu-toggle .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-is-open .menu-toggle .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-is-open .menu-toggle .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* --- Mobile Styles --- */
@media screen and (max-width: 768px) {
    .main-navigation {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        background: #000;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        padding: 1rem 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
        padding: 0 20px;
    }
    
    .main-navigation li a {
        padding: 0.5rem 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-is-open .main-navigation {
        display: block;
    }
}

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

:root {
    --primary: #c62828;
    --primary-dark: #8e0000;
    --secondary: #d4a574;
    --gold: #ffd700;
    --dark: #121212;
    --darker: #000000;
    --light: #ffffff;
    --section-padding: 80px 0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    --border-radius: 12px;
    --card-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--light);
    background-color: var(--darker);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

p {
    color: rgba(255, 255, 255, 0.85);
}

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

.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title h2 {
    font-size: 2.8rem;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    background: linear-gradient(45deg, var(--gold), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Enhanced Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    animation: kenburns 30s infinite;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0,0,0,0.9) 0%, 
        rgba(0,0,0,0.6) 50%, 
        rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    width: 90%;
    max-width: 900px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out;
}

.slide-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

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

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(198, 40, 40, 0.5);
}

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

/* Enhanced Slider Controls - positioned below button */
.slider-controls {
    position: relative;
    margin-top: 2rem;
    display: flex;
    gap: 12px;
    justify-content: center;
    z-index: 10;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.slider-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.3);
    opacity: 0;
    transition: var(--transition);
}

.slider-dot:hover::after {
    opacity: 1;
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.3);
    border-color: var(--light);
}

/* Loading Animation */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary), var(--gold));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--secondary));
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .slider-controls {
        margin-top: 1.5rem;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-slider {
        height: 100vh;
        min-height: 600px;
    }
    
    .slide-content {
        width: 95%;
        padding: 0 15px;
    }
    
    .slide-content h1 {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }
    
    .slide-content p {
        font-size: clamp(1rem, 2vw, 1.3rem);
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .slider-controls {
        margin-top: 1rem;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-slider {
        min-height: 500px;
    }
    
    .slide-content h1 {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }
    
    .slide-content p {
        font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .slider-controls {
        margin-top: 0.8rem;
    }
    
    .slide-content {
        width: 100%;
    }
}








/* About Us Section - Bigger Box */
.about-us {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(198, 40, 40, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

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

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

.section-title h2 {
    font-size: 2.2rem;
    color: #ffd700;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    letter-spacing: 1px;
}

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

/* Main Box - Big Size */
.main-about-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    height: 420px; /* और बड़ा height */
    display: flex;
}

.main-about-box:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.15);
}

.about-content-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

/* Image Section */
.about-image-section {
    flex: 0 0 42%; /* Width बढ़ाई */
    position: relative;
    overflow: hidden;
}

.about-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(198, 40, 40, 0.1) 0%, 
        transparent 50%);
}

/* Text Section - More Space */
.about-text-section {
    flex: 1;
    padding: 35px 40px; /* और padding बढ़ाया */
    display: flex;
    flex-direction: column;
    overflow-y: auto; /* Scroll if text is long */
}

.about-text-section h3 {
    font-size: 1.9rem; /* और बड़ा heading */
    color: #ffd700;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.about-text-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #c62828, transparent);
}

.about-text-section p {
    font-size: 1rem; /* Font size बढ़ाया */
    line-height: 1.65; /* Line height बढ़ाया */
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 18px;
    text-align: justify;
}

/* Last paragraph को highlight */
.about-text-section p:last-child {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
}

/* Value Boxes Section */
.value-boxes-title {
    text-align: center;
    margin-bottom: 30px;
}

.value-boxes-title h3 {
    font-size: 1.8rem;
    color: #ffd700;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.value-boxes-title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, #c62828, transparent);
}

.value-boxes-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 0;
}

.value-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.08);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c62828, #ffd700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.value-box:hover::before {
    transform: scaleX(1);
}

.value-icon {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.value-box:hover .value-icon {
    transform: scale(1.1);
}

.value-box h4 {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Desktop में paragraph show */
.value-box p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    display: block;
}

/* ========== MOBILE RESPONSIVENESS ========== */
@media (max-width: 992px) {
    .about-content-wrapper {
        flex-direction: column;
        height: auto;
    }
    
    .main-about-box {
        height: auto;
        margin-bottom: 30px;
    }
    
    .about-image-section {
        flex: 0 0 320px; /* Mobile में height बढ़ाई */
        min-width: 100%;
    }
    
    .about-text-section {
        padding: 30px;
    }
    
    .about-text-section h3 {
        font-size: 1.7rem;
    }
    
    .about-text-section p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .value-boxes-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .value-box {
        padding: 20px 15px;
        min-height: 160px;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 50px 0;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .about-image-section {
        height: 260px; /* Mobile में height बढ़ाई */
    }
    
    .about-text-section {
        padding: 25px;
    }
    
    .about-text-section h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .about-text-section p {
        font-size: 0.9rem;
        line-height: 1.55;
    }
    
    .about-text-section p:last-child {
        font-size: 0.91rem;
        line-height: 1.55;
    }
    
    .value-boxes-title h3 {
        font-size: 1.5rem;
    }
    
    /* MOBILE में paragraph HIDE */
    .value-box p {
        display: none;
    }
    
    .value-box {
        padding: 15px 12px;
        min-height: 130px;
    }
    
    .value-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .value-box h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
}

@media (max-width: 576px) {
    .about-us {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .about-image-section {
        height: 240px;
    }
    
    .about-text-section {
        padding: 20px;
    }
    
    .about-text-section h3 {
        font-size: 1.5rem;
    }
    
    .about-text-section p {
        font-size: 0.88rem;
        line-height: 1.5;
    }
    
    .about-text-section p:last-child {
        font-size: 0.89rem;
        line-height: 1.5;
    }
    
    .value-boxes-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .value-box {
        min-height: 110px;
        padding: 15px;
    }
    
    .value-icon {
        font-size: 1.6rem;
    }
    
    .value-box h4 {
        font-size: 0.95rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .about-image-section {
        height: 220px;
    }
    
    .about-text-section h3 {
        font-size: 1.4rem;
    }
    
    .about-text-section p {
        font-size: 0.85rem;
        line-height: 1.45;
    }
    
    .about-text-section p:last-child {
        font-size: 0.86rem;
    }
}

/* Icon Styling */
.icon-star {
    color: #FFD700;
}

.icon-certificate {
    color: #4CAF50;
}

.icon-history {
    color: #2196F3;
}

.icon-trophy {
    color: #FF9800;
}

/* Premium Product Catalogue Section */
.premium-catalogue {
    padding: 80px 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #141414 100%);
    position: relative;
    overflow: hidden;
}

.premium-catalogue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(198, 40, 40, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 85% 80%, rgba(212, 165, 116, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, transparent 30%, rgba(255, 215, 0, 0.02) 100%);
    pointer-events: none;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-main-title {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #ffd700, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-main-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.section-divider {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, #c62828, #ffd700, #c62828);
    margin: 0 auto;
    border-radius: 2px;
}

/* Premium Product Card */
.premium-product-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 35px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.premium-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(198, 40, 40, 0.03) 0%, 
        transparent 30%,
        rgba(255, 215, 0, 0.03) 100%);
    pointer-events: none;
}

.premium-product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Product Card Header */
.product-card-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.product-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
}

.product-title-container {
    flex: 1;
}

.product-main-title {
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.product-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.premium-tag {
    background: linear-gradient(135deg, #ffd700, #ff9800);
    color: #000;
}

.glow-tag {
    background: linear-gradient(135deg, #2196F3, #4CAF50);
    color: white;
}

.classic-tag {
    background: linear-gradient(135deg, #795548, #8D6E63);
    color: white;
}

.natural-tag {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    color: white;
}

.luxury-tag {
    background: linear-gradient(135deg, #9C27B0, #673AB7);
    color: white;
}

.imported-tag {
    background: linear-gradient(135deg, #FF5722, #FF9800);
    color: white;
}

/* Product Card Body */
.product-card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.reverse-layout {
    direction: rtl;
}

.reverse-layout > * {
    direction: ltr;
}

/* Hero Image */
.product-hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    height: 350px;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    transition: transform 0.6s ease;
}

.product-hero-image:hover .hero-img {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    text-align: center;
}

.overlay-text {
    color: #ffd700;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Product Details Box */
.product-details-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.description-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid #ffd700;
}

.description-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 600;
}

.description-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.highlight-text {
    color: #ffd700;
    font-weight: 500;
}

/* Best For Section */
.best-for-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.best-for-title {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 600;
}

.best-for-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.best-for-btn {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.best-for-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

/* Collection Intro */
.collection-intro {
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin: 0;
}

/* Italian Varieties Grid */
.italian-varieties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

/* Italian Card Design - Updated */
.italian-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.italian-card.active {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.italian-card.active .italian-description {
    max-height: 500px;
    padding: 20px;
    opacity: 1;
}

.italian-card.active .toggle-icon {
    transform: rotate(180deg);
}

/* Italian Image - Full Box, No Margin */
.italian-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.italian-content {
    padding: 20px;
}

.italian-title {
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

/* Italian Buttons */
.italian-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.italian-btn {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.2);
    cursor: default;
    transition: all 0.3s ease;
}

.italian-btn:hover {
    background: rgba(255, 215, 0, 0.15);
}

/* Italian Toggle - More About */
.italian-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.toggle-text {
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: 500;
}

.toggle-icon {
    color: #ffd700;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.italian-description {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    transition: all 0.4s ease;
}

.italian-description p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Price Specs Card */
.price-specs-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(198, 40, 40, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    padding: 35px;
    margin: 50px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.price-card-header {
    text-align: center;
    margin-bottom: 40px;
}

.price-card-title {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 10px;
    font-weight: 700;
}

.price-card-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Price Grid */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.price-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.price-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.price-item-header {
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.price-item-title {
    font-size: 1.3rem;
    color: #ffd700;
    font-weight: 600;
    margin: 0;
}

/* Price Item Image */
.price-item-image {
    height: 150px;
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.price-item-specs {
    padding: 20px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.spec-value {
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: 500;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.price-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.price-value {
    font-size: 1.3rem;
    color: #4CAF50;
    font-weight: 700;
}

/* ========== MOBILE RESPONSIVENESS ========== */
@media (max-width: 1200px) {
    .italian-varieties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-card-body {
        gap: 30px;
    }
    
    .product-hero-image {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .premium-catalogue {
        padding: 60px 0;
    }
    
    .section-main-title {
        font-size: 2.2rem;
    }
    
    .premium-product-card {
        padding: 30px;
    }
    
    .product-card-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reverse-layout {
        direction: ltr;
    }
    
    .product-hero-image {
        height: 250px;
    }
    
    .italian-varieties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-main-title {
        font-size: 1.8rem;
    }
    
    .section-main-subtitle {
        font-size: 1rem;
    }
    
    .premium-product-card {
        padding: 25px;
    }
    
    .product-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .product-main-title {
        font-size: 1.6rem;
    }
    
    .product-number {
        font-size: 2rem;
    }
    
    .product-hero-image {
        height: 200px;
    }
    
    .description-text {
        font-size: 1rem;
    }
    
    .italian-varieties-grid {
        grid-template-columns: 1fr;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .premium-catalogue {
        padding: 50px 0;
    }
    
    .section-main-title {
        font-size: 1.6rem;
    }
    
    .premium-product-card {
        padding: 20px;
    }
    
    .product-main-title {
        font-size: 1.4rem;
    }
    
    .description-title, .best-for-title {
        font-size: 1.2rem;
    }
    
    .description-text, .italian-description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .product-hero-image {
        height: 180px;
    }
    
    .italian-image {
        height: 180px;
    }
    
    .best-for-buttons {
        justify-content: center;
    }
    
    .best-for-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .italian-buttons {
        justify-content: center;
    }
    
    .italian-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .product-main-title {
        font-size: 1.3rem;
    }
    
    .product-number {
        font-size: 1.8rem;
    }
    
    .product-hero-image {
        height: 160px;
    }
    
    .italian-image {
        height: 160px;
    }
    
    .best-for-buttons, .italian-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .best-for-btn, .italian-btn {
        width: 100%;
        text-align: center;
    }
}
/* Marble Processing Final Section */
.marble-processing-final {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #121212 100%);
    position: relative;
    overflow: hidden;
}

.marble-processing-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(128, 128, 128, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-main-title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-main-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #666666, #ffd700, #666666);
    margin: 0 auto;
    border-radius: 2px;
}

/* Layer Container - REDUCED SPACE */
.layer-container {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Reduced from 100px */
    margin-top: 40px;
}

/* Layer Item */
.layer-item {
    display: flex;
    align-items: center;
    gap: 40px; /* Reduced from 60px */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    min-height: 350px; /* Fixed height for consistency */
}

.layer-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.layer-item.reverse {
    flex-direction: row-reverse;
}

.layer-number {
    position: absolute;
    top: -25px;
    left: 0;
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(255, 215, 0, 0.1);
    z-index: 0;
    font-family: 'Arial Black', sans-serif;
    line-height: 1;
}

.layer-item.reverse .layer-number {
    left: auto;
    right: 0;
}

.layer-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

/* FIX for Layer 9 - Number 9 above title */
.layer-item:nth-child(9) .layer-number {
    top: -35px; /* Position above title */
}

.layer-title {
    font-size: 1.6rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    line-height: 1.3;
}

.layer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #ffd700;
}

.layer-item.reverse .layer-title::after {
    left: auto;
    right: 0;
}

.layer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

/* Special styles for layer 9 */
.layer-9-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.process-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.process-feature:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #ffd700;
    font-size: 1.2rem;
}

.feature-title {
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* Layer Image */
.layer-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    height: 320px;
    position: relative;
}

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

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

/* ========== MOBILE RESPONSIVENESS ========== */
@media (max-width: 1200px) {
    .layer-image {
        height: 280px;
    }
}

@media (max-width: 992px) {
    .layer-item {
        flex-direction: column;
        gap: 25px;
        min-height: auto;
    }
    
    .layer-item.reverse {
        flex-direction: column;
    }
    
    .layer-image {
        width: 100%;
        height: 250px;
    }
    
    .layer-number {
        font-size: 3.5rem;
        top: -20px;
    }
    
    .layer-item:nth-child(9) .layer-number {
        top: -25px;
    }
    
    .layer-9-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .marble-processing-final {
        padding: 50px 0;
    }
    
    .section-main-title {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .layer-title {
        font-size: 1.4rem;
    }
    
    .layer-description {
        font-size: 0.95rem;
    }
    
    .layer-image {
        height: 220px;
    }
    
    .layer-container {
        gap: 30px;
    }
    
    .layer-9-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .section-main-title {
        font-size: 1.8rem;
    }
    
    .section-main-subtitle {
        font-size: 0.95rem;
    }
    
    .layer-title {
        font-size: 1.3rem;
    }
    
    .layer-description {
        font-size: 0.9rem;
    }
    
    .layer-image {
        height: 200px;
    }
    
    .layer-number {
        font-size: 3rem;
        top: -15px;
    }
    
    .layer-item:nth-child(9) .layer-number {
        top: -20px;
    }
    
    .layer-9-content {
        grid-template-columns: 1fr;
    }
    
    .process-feature {
        padding: 12px 8px;
        min-height: 90px;
    }
}

@media (max-width: 400px) {
    .section-main-title {
        font-size: 1.6rem;
    }
    
    .layer-title {
        font-size: 1.2rem;
    }
    
    .layer-image {
        height: 180px;
    }
    
    .layer-number {
        font-size: 2.5rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .feature-title {
        font-size: 0.85rem;
    }
}