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

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Bootstrap Container Override */
.container {
    max-width: 1440px !important;
}

/* Modern Header Styles */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.modern-header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

/* Logo Section */
.logo-section {
    flex: 0 0 auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 125px;
    margin-right: 10px;
}

.brand-name {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #333;
}

/* Navigation Menu */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: #666;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #D2A679;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-action-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.header-action-link i {
    font-size: 20px;
    color: #8B5A3C;
    transition: all 0.3s ease;
}

.header-action-link span {
    color: #333;
}

.header-action-link:hover {
    color: #B8845F;
    text-decoration: none;
}

.header-action-link:hover i {
    color: #B8845F;
    transform: scale(1.1);
}

.header-action-link.cart-link {
    width: 40px;
    height: 40px;
    /*background: #D2A679;*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 2px solid #8B5A3C;
}

.header-action-link.cart-link i {
    font-size: 18px;
}

.header-action-link.cart-link:hover {
    background: #D2D2D2;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav-backdrop {
    display: none;
}

body.mobile-menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('/images/hero-interior.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #e8e4df;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.hero-content {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
    color: #fff;
    max-width: 550px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 15px;
    opacity: 0.95;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
}

.hero-tagline {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    max-width: 550px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.btn-hero-cta {
    display: inline-block;
    background: #8B7355;
    color: #fff;
    padding: 18px 45px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #8B7355;
}

.btn-hero-cta:hover {
    background: #6D5A43;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.4);
}

/* Shop Now Box */
.shop-now-box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 80px;
    z-index: 3;
    background: linear-gradient(135deg, rgba(245, 240, 230, 0.98) 0%, rgba(250, 245, 235, 0.98) 100%);
    padding: 45px 50px 50px;
    max-width: 380px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border-top: 4px solid #B8845F;
    backdrop-filter: blur(10px);
}

.shop-badge {
    position: absolute;
    top: -12px;
    right: 40px;
    background: #B8845F;
    color: #fff;
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.shop-title {
    font-size: 56px;
    font-weight: 700;
    color: #6B4423;
    line-height: 1;
    margin-bottom: 12px;
    text-transform: capitalize;
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
}

.shop-description {
    font-size: 18px;
    line-height: 1.5;
    color: #5C4033;
    margin-bottom: 25px;
    font-weight: 400;
}

.shop-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    padding: 20px 0;
    border-top: 1px solid rgba(139, 69, 19, 0.15);
    border-bottom: 1px solid rgba(139, 69, 19, 0.15);
}

.shop-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #5C4033;
}

.shop-feature-item i {
    color: #8B4513;
    font-size: 16px;
    width: 20px;
}

.shop-feature-item span {
    font-size: 15px;
    font-weight: 500;
}

.btn-shop-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #D2A679 0%, #B8845F 50%, #8B5A3C 100%);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(184, 132, 95, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-shop-now::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: left 0.5s ease;
}

.btn-shop-now:hover::before {
    left: 100%;
}

.btn-shop-now span {
    color: #fff;
    position: relative;
    z-index: 1;
}

.btn-shop-now:hover {
    background: linear-gradient(135deg, #C0935E 0%, #A0714A 50%, #704A2E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 132, 95, 0.5);
    color: #fff;
    text-decoration: none;
}

.btn-shop-now i {
    color: #fff;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-shop-now:hover i {
    transform: translateX(4px);
}

/* Inspiration Gallery Section */
.inspiration-section {
    padding: 80px 20px;
    background: #fff;
}

.inspiration-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 30px;
}

.inspiration-title-block {
    flex: 1;
}

.inspiration-title {
    font-size: 42px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.inspiration-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
}

.view-all-link {
    color: #8B5A3C;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
    padding-top: 10px;
}

.view-all-link:hover {
    color: #8B5A3C;
    gap: 12px;
}

.view-all-link i {
    font-size: 18px;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.inspiration-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.inspiration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Top row - Kids Room, Home Office, Guest Bedroom */
.inspiration-card:nth-child(1) {
    grid-column: span 2;
    grid-row: 1;
}

.inspiration-card:nth-child(2) {
    grid-column: span 2;
    grid-row: 1;
}

.inspiration-card:nth-child(3) {
    grid-column: span 2;
    grid-row: 1;
}

/* Bottom row - Foyer, Dining Room, Bathroom */
.inspiration-card:nth-child(4) {
    grid-column: span 1;
    grid-row: 2;
}

.inspiration-card:nth-child(5) {
    grid-column: span 3;
    grid-row: 2;
}

.inspiration-card:nth-child(6) {
    grid-column: span 2;
    grid-row: 2;
}

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

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

.inspiration-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Explore Real Spaces Section */
.explore-spaces-section {
    padding: 80px 0 80px 0;
    background: #fff;
}

.explore-spaces-section .container {
    max-width: 100%;
    padding: 0;
}

.explore-title {
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    padding: 0 20px;
}

.space-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.category-tab {
    background: transparent;
    border: none;
    color: #999;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.category-tab:hover {
    color: #333;
}

.category-tab.active {
    color: #333;
    font-weight: 600;
}

.category-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #D2A679;
}

.spaces-carousel-wrapper {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.spaces-carousel {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0;
    scrollbar-width: none;
}

.spaces-carousel::-webkit-scrollbar {
    display: none;
}

.space-card {
    flex: 0 0 25%;
    min-width: 25%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
}

.space-card:hover {
    transform: scale(1.02);
}

.space-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.carousel-nav i {
    color: #333;
    font-size: 16px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #999;
}

.dot.active {
    background: #333;
    width: 10px;
    height: 10px;
}

/* Consultation CTA Section */
.consultation-cta-section {
    padding: 0;
    background: #fff;
}

.cta-split-container {
    display: flex;
    min-height: 350px;
}

.cta-image-side {
    flex: 0 0 50%;
    overflow: hidden;
}

.cta-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.cta-content-side {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 60px;
    background: #f8f8f8;
}

.cta-text-wrapper {
    text-align: center;
    max-width: 500px;
}

.cta-heading {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.btn-consultation {
    display: inline-block;
    background: linear-gradient(135deg, #D2A679 0%, #B8845F 50%, #8B5A3C 100%);
    color: #fff;
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(184, 132, 95, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-consultation::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: left 0.5s ease;
}

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

.btn-consultation:hover {
    background: linear-gradient(135deg, #C0935E 0%, #A0714A 50%, #704A2E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 132, 95, 0.5);
    color: #fff;
    text-decoration: none;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 35px;
}

.cta-feature-item {
    text-align: center;
}

.cta-feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #D2A679;
    border-radius: 50%;
}

.cta-feature-icon i {
    font-size: 20px;
    color: #D2A679;
}

.cta-feature-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

/* Modern Footer */
.modern-footer {
    background: #f5f0e8;
    color: #4a4a4a;
}

.footer-info-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #e8dcc8;
    padding: 0;
}

.footer-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px;
    border-right: 1px solid rgba(139, 69, 19, 0.15);
}

.footer-info-box:last-child {
    border-right: none;
}

.info-box-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
}

.info-box-icon i {
    font-size: 24px;
    color: #B8845F;
}

.info-box-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.info-box-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.footer-main {
    padding: 60px 20px;
    background: #f5f0e8;
}

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

.footer-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr 1.5fr;
    gap: 50px;
}

.footer-col {
    color: #4a4a4a;
}

.footer-brand {
    padding-right: 30px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8B4513;
}

.footer-address {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.footer-address strong {
    color: #333;
}

.footer-bottom {
    background: #e8dcc8;
    padding: 25px 20px;
    border-top: 1px solid rgba(139, 69, 19, 0.15);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-payment .payment-methods {
    height: 30px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 115, 85, 0.07);
    border-radius: 50%;
    color: #B8845F;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #B8845F;
    color: #fff;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #8B4513;
}

/* Content Section */
.content-section {
    padding: 100px 20px;
    background: #fff;
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #000;
    color: #fff;
}

.feature-icon i {
    font-size: 32px;
    color: #333;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: #fff;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 15px 30px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        order: 3;
        margin-left: auto;
    }
    
    .header-actions {
        order: 2;
    }
    
    .logo-section {
        order: 1;
    }
    
    .main-navigation {
        display: flex;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .main-navigation.active {
        transform: translateX(0);
    }

    .mobile-nav-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 9998;
        display: none;
    }

    .mobile-nav-backdrop.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        font-size: 16px;
        display: block;
        padding: 10px 0;
    }
    
    /* Hide header actions text on mobile - show only cart and login icons */
    .header-actions {
        flex-direction: row;
        gap: 15px;
        width: auto;
        margin-top: 0;
    }
    
    .header-action-link {
        width: auto;
        justify-content: center;
        padding: 5px;
    }
    
    /* Hide text labels, show only icons */
    .header-action-link span {
        display: none;
    }
    
    /* Hide wishlist link completely on mobile */
    .header-action-link[href="/wishlist"] {
        display: none;
    }
    
    .header-action-link.cart-link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    
    /* Hero section - restructure for mobile */
    .hero-section {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: auto;
        padding-bottom: 0;
        margin-top: 60px;
        position: relative;
    }
    
    /* Go Shopping box - appears FIRST on mobile with new style */
    .shop-now-box {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        transform: none;
        order: -1;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 25px 20px;
        border-radius: 0;
        background: linear-gradient(135deg, #D2A679 0%, #B8845F 50%, #8B5A3C 100%);
        border-top: none;
        box-shadow: none;
        text-align: center;
    }
    
    .shop-badge {
        display: none;
    }
    
    .shop-description {
        font-size: 16px;
        margin-bottom: 15px;
        color: #fff;
    }
    
    .btn-shop-now {
        display: inline-flex;
        padding: 12px 30px;
        font-size: 14px;
        background: #fff;
        color: #8B5A3C;
        box-shadow: none;
    }
    
    .btn-shop-now span {
        color: #8B5A3C;
    }
    
    .btn-shop-now i {
        color: #8B5A3C;
    }
    
    .btn-shop-now:hover {
        background: #f5f5f5;
        color: #8B5A3C;
    }
    
    /* Hero content - show text on the image */
    .hero-content {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        padding: 40px 20px;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-tagline {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .btn-hero-cta {
        padding: 12px 25px;
        font-size: 12px;
    }
    
    .shop-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .shop-description {
        font-size: 16px;
        margin-bottom: 18px;
    }
    
    .shop-features {
        gap: 10px;
        padding: 15px 0;
        margin-bottom: 22px;
    }
    
    .shop-feature-item {
        gap: 10px;
    }
    
    .shop-feature-item span {
        font-size: 14px;
    }
    
    .btn-shop-now {
        padding: 14px 28px;
        font-size: 15px;
        gap: 10px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .inspiration-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .inspiration-title {
        font-size: 32px;
    }
    
    .inspiration-subtitle {
        font-size: 15px;
    }
    
    .view-all-link {
        align-self: flex-start;
    }
    
    .inspiration-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 15px;
    }
    
    .inspiration-card:nth-child(1),
    .inspiration-card:nth-child(2),
    .inspiration-card:nth-child(3),
    .inspiration-card:nth-child(4),
    .inspiration-card:nth-child(5),
    .inspiration-card:nth-child(6) {
        grid-column: span 1;
        grid-row: auto;
    }
    
    .inspiration-image {
        height: 220px;
    }
    
    .explore-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .space-categories {
        gap: 10px;
        margin-bottom: 35px;
    }
    
    .category-tab {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .space-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 240px;
    }
    
    .space-image {
        height: 200px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: -15px;
    }
    
    .next-btn {
        right: -15px;
    }
    
    .cta-split-container {
        min-height: 300px;
    }
    
    .cta-image {
        height: 300px;
    }
    
    .cta-content-side {
        padding: 40px 40px;
    }
    
    .cta-heading {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .btn-consultation {
        padding: 14px 35px;
        font-size: 12px;
    }
    
    .cta-features {
        gap: 30px;
        margin-top: 40px;
    }
    
    .cta-feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .cta-feature-icon i {
        font-size: 20px;
    }
    
    .cta-feature-title {
        font-size: 14px;
    }
    
    .footer-info-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-info-box {
        padding: 25px 30px;
        border-right: none;
        border-bottom: 1px solid rgba(139, 69, 19, 0.15);
    }
    
    .footer-info-box:nth-child(odd) {
        border-right: 1px solid rgba(139, 69, 19, 0.15);
    }
    
    .footer-info-box:nth-child(3),
    .footer-info-box:nth-child(4) {
        border-bottom: none;
    }
    
    .footer-row {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-col:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .btn-hero-cta {
        padding: 15px 30px;
        font-size: 12px;
    }
    
    .brand-name {
        font-size: 14px;
    }
    
    .logo-icon {
        width: 125px;
    }
    
    .inspiration-title {
        font-size: 26px;
    }
    
    .inspiration-subtitle {
        font-size: 14px;
    }
    
    .inspiration-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }
    
    .inspiration-image {
        height: 220px;
    }
    
    .inspiration-label {
        bottom: 15px;
        left: 15px;
        font-size: 13px;
        padding: 6px 14px;
    }
    
    .explore-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .space-categories {
        gap: 8px;
        margin-bottom: 30px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 0 10px;
    }
    
    .category-tab {
        font-size: 11px;
        padding: 5px 0;
        white-space: nowrap;
    }
    
    .space-card {
        flex: 0 0 85%;
        min-width: 260px;
    }
    
    .space-image {
        height: 180px;
    }
    
    .carousel-nav {
        width: 35px;
        height: 35px;
    }
    
    .carousel-nav i {
        font-size: 14px;
    }
    
    .prev-btn {
        left: -10px;
    }
    
    .next-btn {
        right: -10px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .dot.active {
        width: 8px;
        height: 8px;
    }
    
    .cta-split-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .cta-image-side {
        flex: 0 0 auto;
        height: 300px;
    }
    
    .cta-content-side {
        flex: 0 0 auto;
        padding: 50px 30px;
    }
    
    .cta-heading {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .btn-consultation {
        padding: 14px 30px;
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 25px;
        margin-top: 35px;
    }
    
    .cta-feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .cta-feature-icon i {
        font-size: 20px;
    }
    
    .cta-feature-title {
        font-size: 14px;
    }
    
    .footer-info-boxes {
        grid-template-columns: 1fr;
    }
    
    .footer-info-box {
        padding: 20px 25px;
        border-right: none;
        border-bottom: 1px solid rgba(139, 69, 19, 0.15);
    }
    
    .footer-info-box:last-child {
        border-bottom: none;
    }
    
    .info-box-icon {
        width: 45px;
        height: 45px;
    }
    
    .info-box-icon i {
        font-size: 20px;
    }
    
    .info-box-content h4 {
        font-size: 13px;
    }
    
    .info-box-content p {
        font-size: 12px;
    }
    
    .footer-main {
        padding: 40px 20px;
    }
    
    .footer-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .footer-logo {
        font-size: 28px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .footer-heading {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-address {
        font-size: 12px;
    }
    
    .footer-bottom {
        padding: 20px 15px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }
}
