/* ========================================
   GURUKRIPA FURNITURE WEBSITE STYLES
   ========================================
   
   This CSS file contains all styles for the Gurukripa Furniture website.
   Organized by sections with detailed comments for easy maintenance.
   
   Sections:
   1. Global Font Settings
   2. Top Banner & Navigation
   3. Hero Section & Carousel
   4. Category Section
   5. Featured Collections
   6. Two Section Layout
   7. New Grid Section
   8. Best Sellers Section
   9. Image Marquee Section
   10. Cart Page Styles
   11. Footer
   12. Responsive Design
   ======================================== */

/* ========================================
   GLOBAL FONT SETTINGS
   ======================================== */

/* Apply Inter font to all elements by default */
* {
    font-family: 'Inter', sans-serif;
}

/* Apply Playfair Display font to all headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Brand font class for special text */
.brand-font {
    font-family: 'Playfair Display', serif;
}

/* Body element styling */
body {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* Apply Inter font to all text elements */
p, span, div, a, button, input, textarea, select, label {
    font-family: 'Inter', sans-serif;
}

/* Apply Playfair Display to specific title classes */
.hero-title, .section-title, .product-title, .page-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* ========================================
   TOP BANNER & NAVIGATION STYLES
   ======================================== */

/* Top banner for announcements and promotions */
.top-banner {
    background-color: #fcf5ee;
    padding: 8px 0;
    font-size: 14px;
    color: #333;
    font-weight: 400;
    overflow: hidden;
}

.top-banner .d-flex {
    animation: slideText 40s ease-in-out infinite;
    white-space: nowrap;
}

.top-banner .d-flex:hover {
    animation-play-state: paused;
}

@keyframes slideText {
    0% {
        transform: translateX(50%) scale(1);
        opacity: 0.8;
    }
    10% {
        transform: translateX(30%) scale(1.1);
        opacity: 1;
    }
    20% {
        transform: translateX(10%) scale(1);
        opacity: 0.9;
    }
    30% {
        transform: translateX(-10%) scale(1.05);
        opacity: 1;
    }
    40% {
        transform: translateX(-30%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 1;
    }
    60% {
        transform: translateX(-30%) scale(1);
        opacity: 0.9;
    }
    70% {
        transform: translateX(-10%) scale(1.05);
        opacity: 1;
    }
    80% {
        transform: translateX(10%) scale(1);
        opacity: 0.8;
    }
    90% {
        transform: translateX(30%) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translateX(50%) scale(1);
        opacity: 0.8;
    }
}

/* Main navigation bar styling */
.navbar {
    background-color: #fcf5ee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px 0;
}

.navbar-nav {
    gap: 10px;
}

.navbar-nav .nav-link {
    margin: 0 5px;
}

.navbar-logo-section {
    padding: 10px;
    margin-right: 30px;
}

.navbar-logo-section a {
    text-decoration: none;
}



.navbar-brand small {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    display: block;
    margin-top: -8px;
    color: #666;
    letter-spacing: 0.2px;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    color: #333 !important;
    font-weight: 500;
    margin: 0 20px;
    font-size: 16px;
    letter-spacing: 0.1px;
    text-transform: none;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #000 !important;
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #000 !important;
    background-color: rgba(0, 0, 0, 0.08);
    font-weight: 600;
}

.nav-link i {
    font-size: 12px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: rotate(180deg);
}

.navbar-toggler {
    border: none;
    padding: 0;
    font-size: 24px;
    color: #333;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-collapse {
    background-color: #fcf5ee;
    border-radius: 10px;
    margin-top: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
    margin: 10px 0;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(0,0,0,0.05);
}

.search-box {
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 8px 15px;
    background-color: #f8f9fa;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.search-box:focus {
    outline: none;
    border-color: #333;
}

/* ========================================
   HERO SECTION & CAROUSEL STYLES
   ======================================== */

/* Main hero section container */
.hero-section {
    padding: 80px 0;
    background-color: #fcf5ee;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    padding-left: 40px;
    padding-right: 40px;
}

.hero-section .row {
    margin-left: 30px;
    margin-right: 30px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.carousel-slide.next {
    transform: translateX(100%);
}

.slide-content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 50px;
}

.slide-text {
    flex: 1;
    padding-right: 50px;
    text-align: left;
    margin-top: 0;
}

.slide-image {
    flex: 1;
    position: relative;
    height: 500px;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.carousel-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.carousel-dot.active {
    background-color: #333;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background-color: #999;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

.sale-badge {
    background-color: #ff4444;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 62px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.shop-now-btn {
    background-color: #000;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.shop-now-btn:hover {
    background-color: #333;
    color: white;
}

.furniture-display {
    position: relative;
    height: 500px;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
}

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

.dot.active {
    background-color: #333;
}

.red-dot {
    position: absolute;
    bottom: 20px;
    left: 200px;
    width: 8px;
    height: 8px;
    background-color: #ff4444;
    border-radius: 50%;
}

.cart-link {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cart-link:hover {
    color: #007bff;
    transform: scale(1.1);
}

.user-link {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.user-link:hover {
    color: #007bff;
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* ========================================
   FOOTER SECTION STYLES
   ======================================== */

/* Main footer container */
.footer {
    background: #fdfcfa;
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #8B0000;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 25px;
    color: #000000;
    position: relative;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #8B0000;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

       .navbar-logo {
           width: auto;
           height: 60px;
           object-fit: contain;
           border-radius: 4px;
           max-width: 250px;
       }

       .footer-logo {
           width: auto;
           height: 50px;
           object-fit: contain;
           border-radius: 4px;
           max-width: 200px;
       }

       .footer-brand i {
           font-size: 24px;
           color: #ff6b6b;
           margin-right: 10px;
       }

       /* Responsive styles for logos */
       @media (max-width: 768px) {
           .navbar-logo {
               width: auto;
               height: 45px;
               max-width: 180px;
           }
           
           .footer-logo {
               width: auto;
               height: 40px;
               max-width: 150px;
           }
       }

       @media (max-width: 480px) {
           .navbar-logo {
               width: auto;
               height: 40px;
               max-width: 150px;
           }
           
           .footer-logo {
               width: auto;
               height: 35px;
               max-width: 120px;
           }
       }

.footer-brand .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #090909;
    margin-right: 5px;
}

.footer-brand small {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #040404;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 25px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #101010;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #8B0000;
    color: white;
    transform: translateY(-2px);
}

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

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

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #8B0000;
    transition: width 0.3s ease;
}

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

.footer-links a:hover::before {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    color: #ff6b6b;
    font-size: 16px;
    width: 20px;
}

.contact-item span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #000000;
}

.footer-bottom {
    margin-top: 40px;
}

.footer-divider {
    height: 1px;
    background: #8B0000;
    margin-bottom: 20px;
}

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

.copyright, .developer-info {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #d41111;
    margin: 0;
}

.developer-info {
    color: #ff6b6b;
    font-weight: 500;
}

/* Additional Page Styles */
.page-section {
    padding: 80px 0;
    background-color: #fcf5ee;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.product-price {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ff4444;
}

.btn-primary {
    background-color: #000;
    border-color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

/* Split Screen Section Styles */
.split-screen-section {
    min-height: 500px;
    overflow: hidden;
}

.split-left {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-image: url('images/Accent Leisure Chairs.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.split-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.split-right {
    background: #ffffff;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-image: url('images/Modern & Minimal.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.split-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.split-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
}

.split-right .split-content {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
}

.split-text {
    flex: 1;
    z-index: 3;
    position: relative;
}

.split-right .split-text {
    flex: none;
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
}

.split-furniture {
    display: none;
}

.collection-badge {
    color: #bdc3c7;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.discount-badge {
    color: #e67e22;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.discount-badge .highlight {
    text-decoration: underline;
    font-weight: 600;
}

.split-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.split-title-right {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.split-left .split-title {
    color: #ffffff;
}

.split-right .split-title {
    color: #2c3e50;
}

.split-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
}

.split-left .split-description {
    color: #bdc3c7;
}

.split-right .split-description {
    color: #7f8c8d;
}

.split-btn {
    background-color: #ecf0f1;
    color: #2c3e50;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.split-btn:hover {
    background-color: #bdc3c7;
    color: #2c3e50;
}

/* Responsive Design for Category Section */
/* ========================================
   CATEGORY SECTION RESPONSIVE DESIGN
   ======================================== */

/* Large tablets and small desktops (1200px and below) */
@media (max-width: 1200px) {
    /* Keep horizontal scroll with adjusted gap */
    .category-grid {
        gap: 25px;
        margin: 0 30px;
    }
}

/* Tablets and medium screens (768px and below) */
@media (max-width: 768px) {
    /* Category section padding adjustment */
    .category-section {
        padding: 60px 0;
    }
    
    /* Category header margin adjustment */
    .category-header {
        margin-bottom: 40px;
    }
    
    /* Keep horizontal scroll for tablets */
    .category-grid {
        gap: 20px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    /* Reduce title size for better mobile fit */
    .category-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    /* Adjust subtitle size */
    .category-subtitle {
        font-size: 14px;
    }
    
    /* Reduce card padding for mobile */
    .category-card {
        padding: 25px 15px;
        min-width: 160px;
        width: 160px;
    }
    
    /* Adjust icon size for mobile */
    .category-icon i {
        font-size: 32px;
    }
    
    /* Adjust image size for mobile */
    .category-image {
        width: 50px;
        height: 50px;
    }
    
    /* Adjust category name size */
    .category-name {
        font-size: 14px;
    }
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
    /* Category section padding for mobile */
    .category-section {
        padding: 40px 0;
    }
    
    /* Category header margin for mobile */
    .category-header {
        margin-bottom: 30px;
    }
    
    /* Keep horizontal scroll for mobile phones */
    .category-grid {
        gap: 15px;
        margin: 0 auto;
        padding: 0 10px;
    }
    
    /* Further reduce title size for mobile */
    .category-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    /* Adjust subtitle for mobile */
    .category-subtitle {
        font-size: 13px;
    }
    
    /* Adjust red dot position for mobile */
    .red-dot-category {
        right: calc(50% + 80px);
        width: 6px;
        height: 6px;
    }
    
    /* Adjust card padding for mobile */
    .category-card {
        padding: 20px 15px;
        min-width: 140px;
        width: 140px;
    }
    
    /* Adjust icon size for mobile */
    .category-icon i {
        font-size: 28px;
    }
    
    /* Adjust image size for mobile */
    .category-image {
        width: 45px;
        height: 45px;
    }
    
    /* Adjust category name for mobile */
    .category-name {
        font-size: 13px;
    }
}

/* Extra small mobile phones (375px and below) */
@media (max-width: 375px) {
    /* Category section padding for extra small screens */
    .category-section {
        padding: 30px 0;
    }
    
    /* Category header margin for extra small screens */
    .category-header {
        margin-bottom: 25px;
    }
    
    /* Keep horizontal scroll for extra small screens */
    .category-grid {
        margin: 0 auto;
        padding: 0 8px;
        gap: 12px;
    }
    
    /* Further reduce title size */
    .category-title {
        font-size: 24px;
    }
    
    /* Adjust subtitle for extra small screens */
    .category-subtitle {
        font-size: 12px;
    }
    
    /* Adjust card padding for extra small screens */
    .category-card {
        padding: 18px 12px;
        min-width: 80px;
    }
    
    /* Adjust icon size for extra small screens */
    .category-icon i {
        font-size: 24px;
    }
    
    /* Adjust image size for extra small screens */
    .category-image {
        width: 40px;
        height: 40px;
    }
    
    /* Adjust category name for extra small screens */
    .category-name {
        font-size: 12px;
    }
}

/* Responsive Design for Featured Collections */
@media (max-width: 1200px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-left: 30px;
        margin-right: 30px;
    }
    
    .featured-header {
        margin-left: 30px;
        margin-right: 30px;
    }
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .featured-header {
        flex-direction: column;
        gap: 20px;
        max-width: 600px;
        margin: 0 auto 30px auto;
        padding: 0 15px;
    }
    
    .featured-title {
        font-size: 32px;
    }
    
    .featured-subtitle {
        font-size: 14px;
    }
    
    .featured-image {
        height: 240px;
    }
    
    .featured-product-title {
        font-size: 16px;
    }
    
    .current-price {
        font-size: 16px;
    }
    
    .original-price {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
        margin: 0 auto;
        padding: 0 10px;
    }
    
    .featured-header {
        max-width: 400px;
        margin: 0 auto 25px auto;
        padding: 0 10px;
    }
    
    .featured-title {
        font-size: 28px;
    }
    
    .featured-image {
        height: 220px;
    }
    
    .featured-content {
        padding: 15px;
    }
}

/* Extra small mobile phones (375px and below) */
@media (max-width: 375px) {
    .featured-section {
        padding: 40px 0;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 300px;
        margin: 0 auto;
        padding: 0 8px;
    }
    
    .featured-header {
        max-width: 300px;
        margin: 0 auto 20px auto;
        padding: 0 8px;
    }
    
    .featured-title {
        font-size: 24px;
    }
    
    .featured-subtitle {
        font-size: 13px;
    }
    
    .featured-image {
        height: 200px;
    }
    
    .featured-content {
        padding: 12px;
    }
    
    .featured-product-title {
        font-size: 14px;
    }
    
    .current-price {
        font-size: 14px;
    }
    
    .original-price {
        font-size: 11px;
    }
}

/* Responsive Design for Split Screen */
@media (max-width: 991px) {
    .split-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .split-text {
        margin-bottom: 30px;
    }
    
    .split-title-right {
        font-size: 26px;
    }
    
    .split-text-right {
        margin-bottom: 30px;
    }
    
    .split-title-right {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .split-screen-section {
        min-height: auto;
    }
    
    .split-left, .split-right {
        min-height: 500px;
    }
    
    .split-content {
        padding: 30px 15px;
    }
    
    .split-title {
        font-size: 28px;
    }
    
    .split-description {
        font-size: 14px;
    }
    
    .split-title-right {
        font-size: 28px;
    }
    
    .split-description-right {
        font-size: 14px;
    }
}

/* Responsive Design */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 72px;
    }
    
    .hero-section .container {
        padding-left: 50px;
        padding-right: 50px;
    }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 56px;
    }
    
    .hero-section .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
    .navbar-brand {
        font-size: 28px;
    }
    
    .nav-link {
        margin: 0 8px;
        font-size: 14px;
        padding: 6px 12px !important;
    }
    
    .navbar-nav {
        gap: 5px;
    }
    
    .hero-title {
        font-size: 48px;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
        font-size: 15px;
    }
    
    .sale-badge {
        text-align: center;
        display: block;
        margin: 0 auto 20px;
    }
    
    .shop-now-btn {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }
    
    .furniture-display {
        height: 400px;
        margin-top: 40px;
    }
    
    .hero-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .red-dot {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobile Large (576px to 767px) */
@media (max-width: 767px) {
    .top-banner {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand {
        font-size: 24px;
    }
    
    .navbar-brand small {
        font-size: 11px;
    }
    
    .search-box {
        display: none;
    }
    
    .hero-section {
        padding: 60px 0 40px 0;
        margin-top: 0;
    }
    
    .carousel-container {
        height: auto;
        min-height: 500px;
        margin-top: 20px;
    }
    
    .slide-content {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        gap: 20px;
    }
    
    .slide-text {
        flex: none;
        padding-right: 0;
        margin-bottom: 20px;
        order: 1;
        width: 100%;
    }
    
    .slide-image {
        flex: none;
        order: 2;
        height: 250px;
        width: 100%;
        margin-top: 20px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.5;
    }
    
    .shop-now-btn {
        padding: 12px 25px;
        font-size: 13px;
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .sale-badge {
        font-size: 11px;
        padding: 8px 15px;
        margin: 0 auto 15px;
        display: block;
        width: fit-content;
    }
    
    .hero-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .carousel-controls {
        bottom: 15px;
        right: 15px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    /* Split Screen Mobile Fixes */
    .split-screen-section {
        margin-top: 0;
    }
    
    .split-left, .split-right {
        min-height: 300px;
        padding: 40px 20px;
    }
    
    .split-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .split-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .split-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .collection-badge {
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 15px;
    }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
    .navbar-brand {
        font-size: 20px;
    }
    
    .navbar-brand small {
        font-size: 10px;
    }
    
    .hero-section {
        padding: 50px 0 30px 0;
    }
    
    .carousel-container {
        min-height: 450px;
        margin-top: 15px;
    }
    
    .slide-image {
        height: 200px;
    }
    
    .hero-title {
        font-size: 26px;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 13px;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .sale-badge {
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 12px;
    }
    
    .shop-now-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .carousel-controls {
        bottom: 10px;
        right: 10px;
        gap: 6px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    /* Split Screen Mobile Fixes */
    .split-left, .split-right {
        min-height: 250px;
        padding: 30px 15px;
    }
    
    .split-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .split-description {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .split-btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .collection-badge {
        font-size: 9px;
        padding: 5px 10px;
        margin-bottom: 12px;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer h5 {
        font-size: 18px;
    }
    
    .footer p, .footer a {
        font-size: 13px;
    }
    
    .cart-badge {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .hero-section {
        padding: 40px 0 25px 0;
    }
    
    .carousel-container {
        min-height: 400px;
        margin-top: 10px;
    }
    
    .slide-image {
        height: 180px;
    }
    
    .hero-title {
        font-size: 22px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 12px;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .sale-badge {
        font-size: 9px;
        padding: 5px 10px;
        margin-bottom: 10px;
    }
    
    .shop-now-btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .navbar-brand {
        font-size: 18px;
    }
    
    /* Split Screen Mobile Fixes */
    .split-left, .split-right {
        min-height: 200px;
        padding: 25px 10px;
    }
    
    .split-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .split-description {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .split-btn {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .collection-badge {
        font-size: 8px;
        padding: 4px 8px;
        margin-bottom: 10px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 20px 0;
    }
    
    .carousel-container {
        min-height: 400px;
    }
    
    .slide-image {
        height: 200px;
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .hero-description {
        margin-bottom: 15px;
        text-align: center;
    }
}

/* ========================================
   CATEGORY SECTION STYLES
   ======================================== */

/* Main category section container */
.category-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Category section header with title and subtitle */
.category-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

/* Red dot decoration for category header */
.red-dot-category {
    position: absolute;
    top: -10px;
    right: calc(50% + 100px);
    width: 8px;
    height: 8px;
    background-color: #ff4444;
    border-radius: 50%;
}

/* Main category title styling */
.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

/* Category subtitle styling */
.category-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Category grid layout - responsive grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    transform: none !important;
}



/* Smooth transition for hover effects */
.category-card {
    transition: all 0.3s ease, transform 0.1s ease;
}

/* Individual category card styling */
.category-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

/* Hover effect for category cards */
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Category icon container */
.category-icon {
    margin-bottom: 20px;
}

/* Category icon styling (for font icons) */
.category-icon i {
    font-size: 40px;
    color: #333;
}

/* Category image styling (for image icons) */
.category-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

/* Category name text styling */
.category-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

/* ========================================
   FEATURED COLLECTIONS SECTION STYLES
   ======================================== */

/* Main featured collections section container */
.featured-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    margin-left: 45px;
    margin-right: 45px;
}

.featured-title-section {
    flex: 1;
}

.featured-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
}

.featured-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666;
    margin: 0;
    text-align: left;
}

.featured-action {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.featured-action:hover {
    transform: translateX(5px);
}

.go-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #999;
}

.featured-action i {
    font-size: 18px;
    color: #999;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-left: 45px;
    margin-right: 45px;
}

/* Responsive grid for different screen sizes */
@media (max-width: 1200px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-left: 30px;
        margin-right: 30px;
    }
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .featured-section {
        padding: 50px 0;
    }
    
    .featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 30px;
    }
    
    .featured-title {
        font-size: 28px;
        text-align: center;
        width: 100%;
    }
    
    .featured-subtitle {
        text-align: center;
        width: 100%;
    }
    
    .featured-action {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .featured-grid {
        margin-left: 15px;
        margin-right: 15px;
        gap: 15px;
    }
    
    .featured-section {
        padding: 40px 0;
    }
    
    .featured-header {
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 25px;
    }
    
    .featured-title {
        font-size: 24px;
    }
    
    .featured-subtitle {
        font-size: 14px;
    }
    
    .featured-card {
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    .featured-image {
        height: 180px;
    }
    
    .featured-content {
        padding: 15px;
    }
    
    .featured-product-title {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .featured-price {
        gap: 5px;
    }
    
    .current-price {
        font-size: 16px;
    }
    
    .original-price {
        font-size: 12px;
    }
}

.featured-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.featured-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.featured-content {
    padding: 20px;
}

/* Responsive styles for featured cards */
@media (max-width: 768px) {
    .featured-card {
        margin-bottom: 20px;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .featured-content {
        padding: 25px 20px;
    }
    
    .featured-product-title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .featured-price {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .current-price {
        font-size: 20px;
    }
    
    .original-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .featured-image {
        height: 200px;
    }
    
    .featured-content {
        padding: 20px 15px;
    }
    
    .featured-product-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .current-price {
        font-size: 18px;
    }
    
    .original-price {
        font-size: 14px;
    }
}

.featured-product-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.featured-price {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-price:hover {
    transform: scale(1.05);
}

.featured-price:hover .current-price {
    color: #d4a574;
}

/* Hard override to ensure single-column Featured grid on tablets and mobiles */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr !important;
        margin-left: 15px !important;
        margin-right: 15px !important;
        gap: 18px !important;
    }
    .featured-header {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }
}

/* Featured description (hidden on desktop, visible on mobile) */
.featured-description {
    display: none;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .featured-description {
        display: block;
    }
}

.current-price {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.original-price {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .shop-now-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        padding: 10px 15px;
    }
    
    .carousel-dot {
        min-width: 44px;
        min-height: 44px;
    }
    
    .category-card {
        min-height: 44px;
        min-width: 44px;
    }
    
    .featured-card {
        min-height: 44px;
        min-width: 44px;
    }
    
    .best-sellers-card {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Improve touch targets for mobile */
    .featured-price,
    .best-sellers-price {
        min-height: 44px;
        padding: 10px;
    }
    
    .featured-card,
    .best-sellers-card {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    }
}

/* Two Section Layout Styles */
.two-section-layout {
    margin: 80px 0;
}

.left-section {
    background: #ffffff;
    padding: 80px 60px;
    height: 500px;
    display: flex;
    align-items: center;
}

.left-content {
    max-width: 600px;
    width: 100%;
}

.left-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.left-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.feature-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-block i {
    font-size: 32px;
    color: #000000;
    flex-shrink: 0;
    margin-top: 5px;
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}

.feature-content {
    flex: 1;
}

.right-section {
    background-image: url('images/Fancy Sofa set.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    position: relative;
}

.right-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 60px;
}

.right-text {
    color: white;
    max-width: 300px;
}

.right-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.right-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.right-btn {
    background: white;
    color: #2c3e50;
    border: none;
    padding: 12px 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.right-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Responsive Design for Two Section Layout */
@media (max-width: 1200px) {
    .left-section {
        padding: 60px 40px;
        height: 550px;
    }

    .left-title {
        font-size: 36px;
    }

    .right-section {
        height: 550px;
    }

    .right-overlay {
        padding: 50px;
    }

    .right-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .two-section-layout {
        margin: 60px 0;
    }

    .left-section {
        padding: 50px 30px;
        height: auto;
        min-height: 500px;
    }

    .left-title {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .right-section {
        height: 400px;
    }

    .right-overlay {
        padding: 40px 30px;
    }

    .right-title {
        font-size: 28px;
    }

    .right-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .left-section {
        padding: 40px 20px;
        min-height: 450px;
    }

    .left-title {
        font-size: 28px;
    }

    .left-description {
        font-size: 14px;
    }

    .features-grid {
        gap: 25px;
    }

    .feature-block i {
        font-size: 28px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-desc {
        font-size: 13px;
    }

    .right-section {
        height: 350px;
    }

    .right-overlay {
        padding: 30px 20px;
    }

    .right-title {
        font-size: 24px;
    }

    .right-subtitle {
        font-size: 14px;
    }

    .right-btn {
        padding: 12px 20px;
        font-size: 12px;
    }
}

/* New Grid Section Styles */
.new-grid-section {
    margin: 80px 0;
    padding: 0 120px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 20px solid white;
}

.grid-item:hover {
    transform: scale(1.02);
}

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

.grid-item:hover .grid-image {
    /* Image is now static - no animation */
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    color: black;
    padding: 30px 20px 20px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.grid-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: black;
}

.grid-overlay .view-all {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Special positioning for Comfortable Sofa card */
.comfort-sofa-overlay {
    bottom: 0 !important;
    top: auto !important;
    right: 0 !important;
    left: auto !important;
    text-align: right;
    padding: 20px 20px 20px 0;
    background: transparent !important;
}

.small-item {
    height: 500px;
}

.large-item {
    height: 500px;
}

.medium-item {
    height: 500px;
}

/* Responsive styles for new grid section */
@media (max-width: 991px) {
    .new-grid-section {
        padding: 0 60px;
    }

    .small-item, .large-item, .medium-item {
        height: 400px;
    }

    .grid-overlay h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .new-grid-section {
        padding: 0 40px;
        margin: 60px 0;
    }

    .small-item, .large-item, .medium-item {
        height: 350px;
    }

    .grid-overlay {
        padding: 20px 15px 15px;
        background: transparent;
    }

    .grid-overlay h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .new-grid-section {
        padding: 0 15px;
        margin: 40px 0;
    }

    .small-item, .large-item, .medium-item {
        height: 280px;
    }

    .grid-overlay {
        padding: 15px 10px 10px;
        background: transparent;
    }

    .grid-overlay h3 {
        font-size: 16px;
    }
}

 /* Best Sellers Section Styles */
 .best-sellers-section {
     padding: 80px 0;
     background-color: #ffffff;
 }

 .best-sellers-header {
     text-align: center;
     margin-bottom: 60px;
     margin-left: 120px;
     margin-right: 120px;
 }

 .best-sellers-title {
     font-family: 'Playfair Display', serif;
     font-size: 42px;
     font-weight: 600;
     color: #333;
     margin-bottom: 15px;
 }

 .best-sellers-subtitle {
     font-family: 'Inter', sans-serif;
     font-size: 16px;
     color: #666;
     margin: 0;
 }

 .best-sellers-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     margin-left: 120px;
     margin-right: 120px;
 }

 .best-sellers-card {
     background-color: #ffffff;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0,0,0,0.08);
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .best-sellers-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0,0,0,0.15);
 }

 .best-sellers-image {
     width: 100%;
     height: 400px;
     overflow: hidden;
     background-color: #f8f9fa;
     position: relative;
 }

 .best-sellers-image img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     transition: transform 0.3s ease;
 }

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

 .best-sellers-content {
     padding: 20px;
 }

 .best-sellers-product-title {
     font-family: 'Playfair Display', serif;
     font-size: 22px;
     font-weight: 600;
     color: #333;
     margin-bottom: 10px;
     line-height: 1.3;
 }

 .best-sellers-price {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.best-sellers-price:hover {
    transform: scale(1.05);
}

.best-sellers-price:hover .current-price {
    color: #d4a574;
}

 .best-sellers-price .current-price {
     color: #333;
 }

 .best-sellers-price .original-price {
     font-size: 14px;
     color: #999;
     text-decoration: line-through;
     margin-left: 10px;
 }

 .add-to-cart-btn {
     position: absolute;
     bottom: -60px;
     left: 0;
     right: 0;
     background-color: #f5f5f5;
     color: #333;
     border: none;
     padding: 15px 20px;
     font-family: 'Inter', sans-serif;
     font-weight: 600;
     font-size: 14px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     transition: all 0.3s ease;
     cursor: pointer;
     transform: translateY(0);
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     text-decoration: none;
 }

 .best-sellers-card:hover .add-to-cart-btn {
     transform: translateY(-60px);
 }

 /* Responsive Design for Best Sellers */
 @media (max-width: 991px) {
     .best-sellers-header {
         margin-left: 60px;
         margin-right: 60px;
     }
     
     .best-sellers-grid {
         margin-left: 60px;
         margin-right: 60px;
     }
     
     .best-sellers-title {
         font-size: 36px;
     }
 }

 @media (max-width: 768px) {
     .best-sellers-section {
         padding: 60px 0;
     }
     
     .best-sellers-header {
         margin-left: 40px;
         margin-right: 40px;
         margin-bottom: 40px;
     }
     
     .best-sellers-grid {
         grid-template-columns: 1fr;
         gap: 20px;
         margin-left: 40px;
         margin-right: 40px;
     }
     
     .best-sellers-title {
         font-size: 32px;
     }
     
     .best-sellers-subtitle {
         font-size: 14px;
     }
     
     .best-sellers-image {
         height: 320px;
     }
     
     .best-sellers-product-title {
         font-size: 18px;
     }
     
     .best-sellers-price {
         font-size: 16px;
     }
     
     .best-sellers-content {
         padding: 25px 20px;
     }
     
     .best-sellers-product-title {
         text-align: center;
         margin-bottom: 15px;
     }
     
     .best-sellers-price {
         text-align: center;
         justify-content: center;
     }
 }

 @media (max-width: 480px) {
     .best-sellers-section {
         padding: 40px 0;
     }
     
     .best-sellers-header {
         margin-left: 15px;
         margin-right: 15px;
         margin-bottom: 30px;
     }
     
     .best-sellers-grid {
         grid-template-columns: 1fr;
         gap: 15px;
         margin-left: 15px;
         margin-right: 15px;
     }
     
     .best-sellers-title {
         font-size: 28px;
     }
     
     .best-sellers-image {
         height: 250px;
     }
     
     .best-sellers-content {
         padding: 20px 15px;
     }
     
     .best-sellers-product-title {
         font-size: 16px;
         line-height: 1.4;
     }
     
     .best-sellers-price {
         font-size: 14px;
     }
     
     .best-sellers-card {
         border-radius: 8px;
         box-shadow: 0 3px 10px rgba(0,0,0,0.1);
     }
     
     .best-sellers-image {
         height: 280px;
     }
     
     .best-sellers-content {
         padding: 15px;
     }
     
     .best-sellers-product-title {
         font-size: 16px;
     }
     
     .best-sellers-price {
         font-size: 14px;
     }
 }

/* ========================================
   CUSTOMIZE FURNITURE SECTION
   ======================================== */

.customize-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.customize-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.customize-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.customize-content {
    position: relative;
}

.customize-text {
    padding-right: 40px;
}

.customize-badge {
    display: inline-block;
    background: #8B0000;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.customize-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.customize-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.customize-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.feature-item i {
    color: #ff6b6b;
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.customize-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.customize-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.customize-btn.primary {
    background: #8B0000;
    color: white;
}

.customize-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.customize-btn.secondary {
    background: white;
    color: #333;
    border: 2px solid #ddd;
}

.customize-btn.secondary:hover {
    background: #f8f9fa;
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.customize-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.customize-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.customize-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
          padding: 30px 25px 25px;
      color: #333;
}

.overlay-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Customize Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-header {
    background: #8B0000;
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.btn-primary {
    background: #8B0000;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

/* Responsive Design for Customize Section */
@media (max-width: 991px) {
    .customize-section {
        padding: 60px 0;
    }
    
    .customize-title {
        font-size: 2rem;
    }
    
    .customize-heading {
        font-size: 1.8rem;
    }
    
    .customize-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .customize-features {
        grid-template-columns: 1fr;
    }
    
    .customize-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .customize-section {
        padding: 50px 0;
    }
    
    .customize-title {
        font-size: 1.8rem;
    }
    
    .customize-heading {
        font-size: 1.5rem;
    }
    
    .customize-description {
        font-size: 0.95rem;
    }
    
    .customize-image {
        height: 300px;
    }
    
    .customize-image img {
        height: 300px;
    }
    
    .customize-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .customize-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .customize-section {
        padding: 40px 0;
    }
    
    .customize-title {
        font-size: 1.6rem;
    }
    
    .customize-heading {
        font-size: 1.3rem;
    }
    
    .customize-features {
        gap: 10px;
    }
    
    .feature-item {
        padding: 10px 12px;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    .customize-image {
        height: 250px;
    }
    
    .customize-image img {
        height: 250px;
    }
    
    .customize-overlay {
        padding: 20px 15px 15px;
    }
    
    .overlay-content h4 {
        font-size: 1.1rem;
    }
    
    .overlay-content p {
        font-size: 0.8rem;
    }
}

/* Client Reviews Section Styles */
.client-reviews-section {
    padding: 50px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.reviews-header {
    margin-bottom: 40px;
}

.reviews-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.reviews-subtitle {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
}

.reviews-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.reviews-marquee-track {
    display: flex;
    animation: reviewsMarquee 40s linear infinite;
    width: max-content;
    gap: 20px;
}

.review-item {
    flex-shrink: 0;
    width: 280px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.review-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.review-image {
    margin-bottom: 15px;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-text {
    margin-bottom: 12px;
}

.review-text p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #495057;
    font-style: italic;
    margin: 0;
}

.review-rating {
    margin-bottom: 8px;
}

.review-rating i {
    font-size: 1rem;
    margin: 0 1px;
}

.review-name {
    color: #2c3e50;
    font-size: 0.9rem;
}

@keyframes reviewsMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design for Client Reviews */
@media (max-width: 991px) {
    .review-item {
        width: 260px;
        padding: 18px;
    }
    
    .reviews-title {
        font-size: 1.8rem;
    }
    
    .client-image {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .client-reviews-section {
        padding: 40px 0;
    }
    
    .reviews-title {
        font-size: 1.6rem;
    }
    
    .review-item {
        width: 240px;
        padding: 15px;
    }
    
    .client-image {
        width: 50px;
        height: 50px;
    }
    
    .review-text p {
        font-size: 0.8rem;
    }
    
    .reviews-marquee-track {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .client-reviews-section {
        padding: 30px 0;
    }
    
    .reviews-title {
        font-size: 1.4rem;
    }
    
    .review-item {
        width: 220px;
        padding: 12px;
    }
    
    .reviews-marquee-track {
        gap: 12px;
    }
    
    .client-image {
        width: 45px;
        height: 45px;
    }
} 

/* Footer Responsive Styles */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h5 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
     .copyright, .developer-info {
     font-size: 12px;
 }

/* Testimonials Section Styles */
.testimonials-section {
    background: #fdfcfa;
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #ffc107;
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #f0f0f0;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
    font-size: 16px;
}

.author-title {
    color: #888;
    font-size: 14px;
    margin: 0;
}

/* Responsive styles for testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .author-image {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .author-image {
        width: 40px;
        height: 40px;
    }
}

/* About page specific styles */
.about-page .slide-image img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.about-page .img-fluid {
    object-fit: contain;
    max-width: 100%;
    max-height: 400px;
    width: 100%;
    height: auto;
}

/* General image fitting improvements */
.slide-image img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.img-fluid {
    object-fit: contain;
    max-width: 100%;
    height: auto;
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h5 {
        font-size: 15px;
    }
    
    .footer-brand .brand-name {
        font-size: 20px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .contact-item span {
        font-size: 13px;
    }
    
    .copyright, .developer-info {
        font-size: 11px;
    }
}

/* ========================================
   CART PAGE STYLES
   ======================================== */

/* Cart Section */
.cart-section {
    background-color: #f8f9fa;
    min-height: 80vh;
}

.cart-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cart-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
}

/* Cart Item */
.cart-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: white;
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.cart-item-image {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.cart-item-category {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 0;
}

/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.quantity-display {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    min-width: 30px;
    text-align: center;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.remove-btn {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 6px;
}

.remove-btn:hover {
    background: #dc3545;
    color: white;
}

/* Continue Shopping */
.continue-shopping {
    text-align: center;
}

/* Cart Summary */
.cart-summary {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.summary-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #6c757d;
}

.summary-divider {
    margin: 20px 0;
    border-color: #e9ecef;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Promo Code */
.promo-section .form-control {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 12px 15px;
}

.promo-section .btn {
    border-radius: 6px;
    padding: 12px 20px;
}

/* Checkout Section */
.checkout-section .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkout-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Payment Methods */
.payment-methods {
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.payment-icons i {
    font-size: 24px;
    color: #6c757d;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: #007bff;
    transform: scale(1.1);
}

/* Cart Responsive Design */
@media (max-width: 768px) {
    .cart-container {
        padding: 20px;
    }
    
    .cart-title {
        font-size: 24px;
    }
    
    .cart-item {
        padding: 15px;
    }
    
    .cart-item-title {
        font-size: 16px;
    }
    
    .cart-summary {
        margin-top: 30px;
        position: static;
    }
    
    .summary-title {
        font-size: 20px;
    }
    
    .quantity-controls {
        gap: 8px;
    }
    
    .quantity-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cart-container {
        padding: 15px;
    }
    
    .cart-title {
        font-size: 20px;
    }
    
    .cart-item {
        padding: 12px;
    }
    
    .cart-item-image {
        height: 60px;
    }
    
    .cart-item-title {
        font-size: 14px;
    }
    
    .cart-item-category {
        font-size: 12px;
    }
    
    .quantity-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .quantity-display {
        font-size: 14px;
    }
    
    .cart-item-price {
        font-size: 16px;
    }
    
    .summary-title {
        font-size: 18px;
    }
    
    .summary-item {
        font-size: 14px;
    }
    
    .summary-total {
        font-size: 18px;
    }
}

/* ========================================
   LOGIN PAGE STYLES
   ======================================== */

.login-section {
    background-color: #f8f9fa;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.login-container {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.login-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.login-subtitle {
    color: #6c757d;
    font-size: 16px;
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.password-input-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 18px;
}

.password-toggle:hover {
    color: #007bff;
}

.form-options {
    font-size: 14px;
}

.forgot-password {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.divider {
    position: relative;
    text-align: center;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.divider span {
    background: white;
    padding: 0 20px;
    color: #6c757d;
    font-size: 14px;
}

.social-btn {
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.register-link a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.register-link a:hover {
    text-decoration: underline;
}

/* ========================================
   CHECKOUT PAGE STYLES
   ======================================== */

.checkout-section {
    background-color: #f8f9fa;
    min-height: 80vh;
}

.checkout-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.checkout-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
}

/* Progress Steps */
.checkout-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.progress-step.active .step-number {
    background: #007bff;
    color: white;
}

.step-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: #007bff;
    font-weight: 600;
}

/* Form Sections */
.form-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #007bff;
    background: #f8f9ff;
}

.payment-option input[type="radio"] {
    margin-right: 15px;
}

.payment-label {
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    margin: 0;
}

.card-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

/* Order Summary */
.order-summary {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.order-item:last-child {
    border-bottom: none;
}

.item-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.item-info p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.item-price {
    font-weight: 600;
    color: #2c3e50;
}

.order-totals {
    border-top: 2px solid #e9ecef;
    padding-top: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: #6c757d;
}

.total-final {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
    margin-top: 15px;
}

.place-order-btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Responsive Design for Login & Checkout */
@media (max-width: 768px) {
    .login-container {
        padding: 30px 20px;
    }
    
    .login-title {
        font-size: 28px;
    }
    
    .checkout-container {
        padding: 20px;
    }
    
    .checkout-title {
        font-size: 24px;
    }
    
    .checkout-progress {
        flex-direction: column;
        gap: 20px;
    }
    
    .progress-step:not(:last-child)::after {
        display: none;
    }
    
    .order-summary {
        margin-top: 30px;
        position: static;
    }
    
    .form-section-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 20px 15px;
    }
    
    .login-title {
        font-size: 24px;
    }
    
    .checkout-container {
        padding: 15px;
    }
    
    .checkout-title {
        font-size: 20px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .form-section-title {
        font-size: 16px;
    }
    
    .payment-option {
        padding: 12px;
    }
    
         .card-details {
         padding: 15px;
     }
}

/* ========================================
   PROFILE PAGE STYLES
   ======================================== */

.profile-section {
    background-color: #f8f9fa;
    min-height: 80vh;
}

.profile-nav {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.profile-avatar {
    font-size: 80px;
    color: #6c757d;
    margin-bottom: 15px;
}

.profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.profile-email {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 0;
}

.nav-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-tab {
    background: none;
    border: none;
    padding: 15px 20px;
    text-align: left;
    border-radius: 8px;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-tab:hover {
    background: #f8f9fa;
    color: #007bff;
}

.nav-tab.active {
    background: #007bff;
    color: white;
}

.profile-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.profile-tab {
    display: none;
}

.profile-tab.active {
    display: block;
}

/* Addresses */
.addresses-grid {
    display: grid;
    gap: 20px;
}

.address-card {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.address-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.address-card.default {
    border-color: #007bff;
    background: #f8f9ff;
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.address-type {
    background: #007bff;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.default-badge {
    background: #28a745;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.address-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.address-content p {
    color: #6c757d;
    margin-bottom: 5px;
    font-size: 14px;
}

.address-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Orders */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.order-info h5 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.order-date {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.order-status {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.order-status.delivered {
    background: #d4edda;
    color: #155724;
}

.order-status.processing {
    background: #fff3cd;
    color: #856404;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.order-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.order-item-info h6 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.order-item-info p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 5px;
}

.order-item-price {
    font-weight: 600;
    color: #2c3e50;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.order-total {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

/* Settings */
.settings-section {
    margin-bottom: 40px;
}

.settings-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.notification-settings,
.privacy-settings {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

/* Profile Responsive Design */
@media (max-width: 768px) {
    .profile-nav {
        margin-bottom: 30px;
        position: static;
    }
    
    .nav-tabs {
        flex-direction: row;
        overflow-x: auto;
        gap: 5px;
    }
    
    .nav-tab {
        white-space: nowrap;
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .profile-content {
        padding: 20px;
    }
    
    .content-title {
        font-size: 20px;
    }
    
    .order-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .order-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .profile-nav {
        padding: 20px;
    }
    
    .profile-avatar {
        font-size: 60px;
    }
    
    .profile-name {
        font-size: 18px;
    }
    
    .profile-content {
        padding: 15px;
    }
    
    .content-title {
        font-size: 18px;
    }
    
    .address-card {
        padding: 15px;
    }
    
    .order-card {
        padding: 15px;
    }
    
    .order-item {
        flex-direction: column;
        text-align: center;
    }
    
    .order-item-image {
        width: 80px;
        height: 80px;
    }
} 

/* Desktop: 6 columns */
@media (min-width: 1200px) {
    .category-grid { /* Horizontal scroll layout */ }
}

/* Tablet: 3 columns */
@media (max-width: 1200px) {
    .category-grid { /* Horizontal scroll layout */ }
}

/* Mobile: 2 columns */
@media (max-width: 768px) {
    .category-grid { /* Horizontal scroll layout */ }
}

/* Product Detail Thumbnail Images Styles */
.thumbnail-images {
    margin-top: 20px;
}

.thumbnail-image {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-image:hover {
    border-color: #007bff;
    transform: scale(1.05);
}

.thumbnail-image.active {
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

.main-product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* Product Detail Responsive */
@media (max-width: 768px) {
    .main-product-image {
        height: 300px;
    }
    
    .thumbnail-image {
        height: 60px;
    }
}