/* ============================================
   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 PRICING
   ============================================ */

.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-fill, minmax(280px, 1fr));
    gap: 3rem;
}

/* Product Card - 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);
    opacity: 0;
    transform: translateY(60px);
    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);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.5s ease;
    filter: grayscale(20%);
}

.product-card:hover .product-image {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-quick-view {
    padding: 1rem 2rem;
    background: #3B444B;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.product-card:hover .product-quick-view {
    transform: translateY(0);
}

.product-quick-view:hover {
    background: #4a5562;
    transform: scale(1.05) translateY(0);
}

/* Product Info - Enhanced */
.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;
}




/* ============================================
   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: 1fr 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 0;
    }
    
    .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-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;
    }
    
    .product-image-wrapper {
        height: 350px;
    }
    
    .category-card {
        height: 450px;
    }
    
    
    
    .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-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;
    }
    
   
}


/* ============================================
   CUSTOM COMMISSIONS BANNER
   ============================================ */

.commissions-banner {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.commissions-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 68, 75, 0.3), transparent);
}

.commissions-banner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 68, 75, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 8s ease-in-out infinite;
    pointer-events: none;
}

.commissions-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 3rem;
    background: rgba(17, 17, 17, 0.4);
    border-radius: 30px;
    border: 1px solid rgba(59, 68, 75, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.commissions-content:hover {
    border-color: rgba(59, 68, 75, 0.4);
    box-shadow: 0 20px 60px rgba(59, 68, 75, 0.2);
    transform: translateY(-5px);
}

/* Commission Icon */
.commission-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: rgba(59, 68, 75, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
}

.commission-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #3B444B;
    border-bottom-color: #3B444B;
    animation: spin-border 3s linear infinite;
}

.commissions-content:hover .commission-icon {
    background: rgba(59, 68, 75, 0.25);
    transform: scale(1.1) rotate(10deg);
}

.commission-icon i {
    font-size: 2.5rem;
    color: #3B444B;
    transition: all 0.3s ease;
}

.commissions-content:hover .commission-icon i {
    color: #4a5562;
}

@keyframes spin-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Commission Title */
.commission-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.commissions-content:hover .commission-title {
    color: #3B444B;
}

/* Commission Description */
.commission-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    transition: color 0.3s ease;
}

.commissions-content:hover .commission-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Commission Email Button */
.commission-email {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: #3B444B;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(59, 68, 75, 0.3);
    position: relative;
    overflow: hidden;
}

.commission-email::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;
}

.commission-email:hover::before {
    width: 300px;
    height: 300px;
}

.commission-email:hover {
    background: #4a5562;
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(59, 68, 75, 0.5);
}

.commission-email i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.commission-email:hover i {
    transform: scale(1.2) rotate(15deg);
}

/* ============================================
   PRICE STYLING FOR PRODUCTS
   ============================================ */

/* Price on Request */
.price-on-request {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #3B444B;
    line-height: 1;
}

.product-card:hover .price-on-request {
    color: #4a5562;
}

/* Sold Out Badge */
.sold-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(59, 68, 75, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.8s ease;
}

.sold-badge i {
    color: #4CAF50;
    font-size: 1rem;
}

.sold-badge span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 600;
}

/* Sold Out Price */
.price-sold-out {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .commissions-banner {
        padding: 6rem 2rem;
    }
    
    .commissions-content {
        padding: 2.5rem;
    }
    
    .commission-icon {
        width: 80px;
        height: 80px;
    }
    
    .commission-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .commissions-banner {
        padding: 5rem 1.5rem;
    }
    
    .commissions-content {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .commission-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .commission-icon i {
        font-size: 1.8rem;
    }
    
    .commission-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
        margin-bottom: 1rem;
    }
    
    .commission-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    
    .commission-email {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .commission-email i {
        font-size: 1rem;
    }
    
    .sold-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .sold-badge span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .commissions-banner {
        padding: 4rem 1rem;
    }
    
    .commissions-content {
        padding: 1.5rem;
    }
    
    .commission-icon {
        width: 60px;
        height: 60px;
    }
    
    .commission-icon i {
        font-size: 1.5rem;
    }
    
    .commission-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .commission-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .commission-email {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
    
    .price-on-request,
    .price-sold-out {
        font-size: 1.2rem;
    }
    
    .sold-badge {
        padding: 0.5rem 1rem;
    }
}



/* ============================================
   NO PRODUCTS STATE
   ============================================ */

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 8rem 2rem;
}

.no-products i {
    font-size: 5rem;
    color: rgba(59, 68, 75, 0.3);
    margin-bottom: 2rem;
}

.no-products h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    color: #fff;
}

.no-products p {
    font-size: 1rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination-wrapper {
    padding: 6rem 0 4rem;
    display: flex;
    justify-content: center;
}

.pagination-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.pagination-info {
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.page-item {
    margin: 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 1rem;
    background: rgba(59, 68, 75, 0.1);
    border: 1px solid rgba(59, 68, 75, 0.3);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: rgba(59, 68, 75, 0.3);
    border-color: #3B444B;
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: #3B444B;
    border-color: #3B444B;
    color: #fff;
}

.page-item.disabled .page-link {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Mobile pagination */
@media (max-width: 768px) {
    .pagination {
        gap: 0.3rem;
    }
    
    .page-link {
        min-width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
    
    .pagination-info {
        font-size: 0.8rem;
    }
}