/* ============================================
   INTERIOR DESIGN - ENHANCED WITH PRICING
   ============================================ */

/* Hero Section */
.interior-hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.interior-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.interior-hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}

.interior-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 2rem;
    max-width: 1200px;
}

.hero-label {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(59, 68, 75, 0.3);
    border: 1px solid rgba(59, 68, 75, 0.5);
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease 0.3s both;
}

.interior-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 10rem);
    letter-spacing: 10px;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    opacity: 0;
}

.interior-hero-title .title-line {
    display: block;
}

.interior-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 3px;
    opacity: 0;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 1s both;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s both;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #3B444B;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* ============================================
   PRODUCTS SECTION - WITH VIDEOS
   ============================================ */

.products-section {
    padding: 8rem 2rem;
    background: #0a0a0a;
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 68, 75, 0.3), transparent);
}

.products-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-top: 1rem;
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

/* Product Card - Video Enhanced */
.product-card {
    background: rgba(17, 17, 17, 0.6);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(59, 68, 75, 0.1);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(59, 68, 75, 0.4);
    border-color: rgba(59, 68, 75, 0.3);
    background: rgba(17, 17, 17, 0.8);
}

/* Video Wrapper */
.product-video-wrapper {
    position: relative;
    width: 100%;
    /* height: 400px; */
    overflow: hidden;
    background: #000;
}

.product-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.5s ease;
    filter: grayscale(20%) brightness(0.9);
}

.product-card:hover .product-video {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover .video-overlay {
    opacity: 1;
}

/* Play Button */
.play-button {
    width: 80px;
    height: 80px;
    background: rgba(59, 68, 75, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.product-card:hover .play-button {
    transform: scale(1);
    background: #3B444B;
    border-color: rgba(255, 255, 255, 0.3);
}

.play-button i {
    font-size: 1.8rem;
    color: #fff;
    margin-left: 5px;
}

/* Product Info */
.product-info {
    padding: 2rem;
    position: relative;
}

.product-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(59, 68, 75, 0.2);
    border-radius: 20px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-category {
    background: rgba(59, 68, 75, 0.3);
}

.product-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.product-card:hover .product-title {
    color: #3B444B;
}

.product-description {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-description {
    opacity: 0.9;
}

/* Product Meta - With Price */
.product-meta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

.product-meta-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-location {
    opacity: 0.8;
}

.product-location i {
    color: #3B444B;
}

.product-year {
    opacity: 0.5;
    font-size: 0.8rem;
}

/* Price Styling */
.product-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.price-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0.5;
    margin-bottom: 0.3rem;
}

.price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: #3B444B;
    line-height: 1;
    transition: all 0.3s ease;
}

.product-card:hover .price-amount {
    color: #4a5562;
    transform: scale(1.05);
}

.price-currency {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-left: 0.2rem;
}

/* ============================================
   RESPONSIVE - MOBILE OPTIMIZED
   ============================================ */

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 5rem 1.5rem;
    }
    
    .products-header {
        margin-bottom: 3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .product-video-wrapper {
        height: 350px;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-meta {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-price {
        align-items: flex-start;
    }
    
    .price-amount {
        font-size: 1.6rem;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 4rem 1rem;
    }
    
    .product-video-wrapper {
        height: 300px;
    }
    
    .product-info {
        padding: 1.2rem;
    }
    
    .product-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .price-amount {
        font-size: 1.4rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.3rem;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .product-video-wrapper {
        height: 280px;
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
}

/* ============================================
   CATEGORIES SECTION - TEXT BELOW IMAGE
   ============================================ */

.categories-section {
    padding: 8rem 2rem;
    background: #0f0f0f;
    position: relative;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 68, 75, 0.3), transparent);
}

.categories-header {
    text-align: center;
    margin-bottom: 5rem;
}

.categories-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

/* Category Card - REDESIGNED */
.category-card {
    position: relative;
    background: rgba(17, 17, 17, 0.6);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
}



/* Image Wrapper - Fixed Height */
.category-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: #000;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.5s ease;
    filter: grayscale(20%) brightness(0.9);
}

.category-card:hover .category-image {
    transform: scale(1.08);
   
}



/* Content Section - BELOW IMAGE */
.category-content {
    position: relative;
    padding: 2rem 0;
    background: transparent;
}

/* Icon */
.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 68, 75, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border: 1px solid rgba(59, 68, 75, 0.3);
}

.category-card:hover .category-icon {
    background: rgba(59, 68, 75, 0.4);
    transform: scale(1.1) rotate(10deg);
    border-color: rgba(59, 68, 75, 0.5);
}

.category-icon i {
    font-size: 1.5rem;
    color: #3B444B;
    transition: color 0.3s ease;
}

.category-card:hover .category-icon i {
    color: #4a5562;
}

/* Title */
.category-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
    color: #fff;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.category-card:hover .category-title {
    color: #3B444B;
}

/* Description */
.category-description {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: opacity 0.3s ease;
}

.category-card:hover .category-description {
    opacity: 0.9;
}

/* Link - Call to Action */
.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #3B444B;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    background: rgba(59, 68, 75, 0.1);
    border-radius: 50px;
}

.category-card:hover .category-link {
    background: rgba(59, 68, 75, 0.2);
    color: #4a5562;
    gap: 1rem;
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(5px);
}

/* Accent Line Above Content */
.category-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    width: 0;
    height: 2px;
    background: #3B444B;
    transition: width 0.5s ease;
}

.category-card:hover .category-content::before {
    width: 60px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .category-image-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 5rem 1.5rem;
    }
    
    .categories-header {
        margin-bottom: 3rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .category-image-wrapper {
        height: 380px;
    }
    
    .category-content {
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 1.2rem;
    }
    
    .category-icon i {
        font-size: 1.3rem;
    }
    
    .category-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    
    .category-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .category-link {
        font-size: 0.85rem;
        padding: 0.7rem 1.3rem;
    }
}

@media (max-width: 480px) {
    .categories-section {
        padding: 4rem 1rem;
    }
    
    .categories-grid {
        gap: 2rem;
    }
    
    .category-image-wrapper {
        height: 300px;
        border-radius: 16px 16px 0 0;
    }
    
    .category-content {
        padding: 1.2rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .category-icon i {
        font-size: 1.2rem;
    }
    
    .category-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
        margin-bottom: 0.6rem;
    }
    
    .category-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .category-link {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        letter-spacing: 1.5px;
    }
    
    .category-content::before {
        left: 1.2rem;
    }
}

@media (max-width: 375px) {
    .category-image-wrapper {
        height: 280px;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .category-description {
        font-size: 0.8rem;
    }
}

/* ============================================
   CTA SECTION - ENHANCED
   ============================================ */

.cta-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 68, 75, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 8s ease-in-out infinite;
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 1.3rem;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3.5rem;
    background: #3B444B;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(59, 68, 75, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: #4a5562;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(59, 68, 75, 0.6);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-bg {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* ============================================
   RESPONSIVE - MOBILE OPTIMIZED
   ============================================ */

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .products-section,
    .categories-section {
        padding: 5rem 1.5rem;
    }
    
    .products-header,
    .categories-header {
        margin-bottom: 3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
     .category-card {
        height: 450px;
    }
    
    .product-image-wrapper {
        height: 350px;
    }
    
   
    .product-info {
        padding: 1.5rem;
    }
    
    .product-meta {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-price {
        align-items: flex-start;
    }
    
    .price-amount {
        font-size: 1.6rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-stats .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-section {
        padding: 5rem 1.5rem;
    }
    
    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 4rem 1rem;
    }
    
    .product-image-wrapper {
        height: 300px;
    }
    
    .product-info {
        padding: 1.2rem;
    }
    
    .product-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
   
    
    .category-content {
        padding: 2rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-icon i {
        font-size: 1.2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.75rem;
    }
    
    .price-amount {
        font-size: 1.4rem;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .product-image-wrapper {
        height: 280px;
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
    
    .category-card {
        height: 420px;
    }
}