
/* Primary Styles */
body {
    background: #fefefe;
    padding-top: 65px; /* Account for fixed navbar height */
}

body.dark {
    background: #2b2b35;
    color: #fff;
}

/* Bootstrap 4 Navbar Customization */
.custom-navbar {
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    padding: 10px 0;
    transition: all 0.3s ease;
}

/* Dark mode - white logo */
body.dark .navbar-logo {
    filter: brightness(0) invert(1);
}

/* Nav Items */
.navbar-nav .nav-item {
    margin: 0 8px;
    position: relative;
}

.navbar-nav .nav-link {
    color: #212121 !important;
    font-weight: 500;
    padding: 8px 12px !important;
    position: relative;
    transition: all 0.3s ease;
}

body.dark .navbar-nav .nav-link {
    color: #fff !important;
}

.navbar-nav .nav-item:hover .nav-link {
    color: #8167a9 !important;
}

.navbar-nav .nav-item.active .nav-link {
    color: #777 !important;
}

body.dark .navbar-nav .nav-item.active .nav-link {
    color: #999 !important;
}

/* Dropdown Menu Styling */
.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 3px;
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    padding: 10px;
    margin-top: 8px;
    min-width: 200px;
    background-color: #fcfaff;
}

body.dark .navbar-nav .dropdown-menu {
    background-color: #1f2029;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}

.dropdown-item {
    padding: 6px 15px;
    color: #212121;
    border-radius: 2px;
    transition: all 0.2s ease;
    font-size: 14px;
}

body.dark .dropdown-item {
    color: #fff;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #fff !important;
    background-color: rgba(129, 103, 169, 0.6);
    text-decoration: none;
}

/* Dark/Light Mode Switch */
.nav-switch-container {
    display: flex;
    align-items: center;
    padding: 8px 12px;
}

.nav-switch {
    width: 50px;
    height: 24px;
    border: 2px solid #8167a9;
    border-radius: 25px;
    background: #000;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-circle {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transition: all 0.3s ease;
}

.nav-switch.switched {
    border-color: #000;
    background: #8167a9;
}

.nav-switch.switched .nav-circle {
    left: 28px;
}

.switch-label {
    font-size: 14px;
    color: #212121;
    transition: all 0.3s ease;
}

body.dark .switch-label {
    color: #fff;
}

/* Hover Dropdown for Desktop */
@media (min-width: 768px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    body {
        padding-top: 65px;
    }
    
    .custom-navbar {
        padding: 8px 0;
    }

    .navbar-logo {
        margin-left: 30px;
    }

    .navbar-nav {
        text-align: left;
        padding: 15px 0;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin: 0;
        border: none;
        box-shadow: none;
        background-color: transparent;
    }
    
    body.dark .dropdown-menu {
        background-color: transparent;
    }
    
    .dropdown-item {
        padding: 10px 25px;
        color: #212121;
    }
    
    body.dark .dropdown-item {
        color: #fff;
    }
    
    .nav-switch-container {
        justify-content: flex-start;
        padding: 15px;
        margin-top: 10px;
        border-top: 1px solid #eee;
    }
    
    body.dark .nav-switch-container {
        border-top-color: #444;
    }
}

/* Navbar Toggler Button Dark Mode Fix */
.navbar-toggler {
    border: 1px solid #dee2e6;
    background: transparent;
}

body.dark .navbar-toggler {
    border-color: #555;
    background: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(33, 33, 33, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile specific toggler styles */
@media (max-width: 767px) {
    .navbar-toggler {
        border: 1px solid #ddd;
        padding: 6px 10px;
    }
    
    body.dark .navbar-toggler {
        border-color: #666;
        background: transparent;
    }
    
    .navbar-toggler:focus,
    .navbar-toggler:active {
        border-color: #8167a9;
        background: transparent;
        box-shadow: 0 0 0 2px rgba(129, 103, 169, 0.25);
    }
    
    body.dark .navbar-toggler:focus,
    body.dark .navbar-toggler:active {
        border-color: #8167a9;
        background: transparent;
        box-shadow: 0 0 0 2px rgba(129, 103, 169, 0.4);
    }
}

/* Modern Animated Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 6px;
    background: transparent;
    width: 32px;
    height: 32px;
    position: relative;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(129, 103, 169, 0.3);
    border-radius: 4px;
}

.navbar-toggler-icon {
    width: 20px;
    height: 14px;
    background: transparent;
    position: relative;
    display: block;
}

.navbar-toggler-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #212121;
    border-radius: 1px;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon span:nth-child(1) {
    top: 0;
}

.navbar-toggler-icon span:nth-child(2) {
    top: 6px;
}

.navbar-toggler-icon span:nth-child(3) {
    top: 12px;
}

/* Animation when expanded */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 6px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 6px;
}

/* Dark Theme */
body.dark .navbar-toggler-icon span {
    background: #ffffff;
}

/* Mobile optimization */
@media (max-width: 767px) {
    .navbar-toggler {
        width: 36px;
        height: 36px;
        margin-right: 20px;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 2px rgba(129, 103, 169, 0.4);
    }
}



.nav-link:focus,
.dropdown-item:focus {
    outline: 2px solid #8167a9;
    outline-offset: 2px;
}


/* Hero Section */
.hero-section {
    position: relative;
}

.hero-image {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .accent-text {
    color: #E3DC05;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-outline-light {
    border-width: 2px;
}

.hero-buttons .btn-outline-light:hover {
    background: #fff;
    color: #212121;
}

/* Section Styling */


.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #8167a9;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

body.dark .section-title {
    color: #e0e0e0;
}
body.dark .section-title::after {
    background: #bfa1e3;
}
body.dark .section-subtitle {
    color: #aaa;
}

/* Art Cards */
.art-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.art-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.art-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.art-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.art-card:hover .art-image img {
    transform: scale(1.05);
}

.art-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(129, 103, 169, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.art-card:hover .art-overlay {
    opacity: 1;
}

.art-actions {
    display: flex;
    gap: 15px;
}

.btn-like, .btn-view {
    background: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8167a9;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-like:hover, .btn-view:hover {
    background: #8167a9;
    color: #fff;
}

.art-info {
    padding: 1rem;
}

.art-title {
    font-size: 0.9rem;
    font-weight: 400;
    color: #212121;
    margin-bottom: 0.2rem;
}

.art-artist {
    color: #8167a9;
    font-weight: 400;
    margin-bottom: 0.9rem;
}

.art-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.art-price {
    font-size: 1rem;
    font-weight: 500;
    color: #212121;
}

.art-category {
    background: #f8f6ff;
    color: #8167a9;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
}

/* About Section */
.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: #8167a9;
    border-radius: 15px;
    z-index: -1;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-content {
    padding-left: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8167a9;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    margin: 0;
}

/* Artist Cards */
.artist-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.artist-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid #8167a9;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 0.5rem;
}

.artist-specialty {
    color: #666;
    margin-bottom: 1rem;
}

.artist-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.artist-social a {
    color: #8167a9;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.artist-social a:hover {
    color: #6a5490;
    transform: translateY(-2px);
}

/* Service Cards */
.service-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #f8f6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #8167a9;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #8167a9 0%, #6a5490 100%);
    color: #fff;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-section .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    height: 60px;
    border: none;
    border-radius: 30px 0 0 30px;
    padding: 0 25px;
    font-size: 1rem;
}

.newsletter-form .btn {
    height: 60px;
    border-radius: 0 30px 30px 0;
    padding: 0 30px;
    background: #212121;
    border: 2px solid #212121;
}

.newsletter-form .btn:hover {
    background: transparent;
    border-color: #fff;
}

/* Dark Theme Styles */
body.dark .art-card,
body.dark .artist-card,
body.dark .service-card {
    background: #2a2b36;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

body.dark .art-card:hover,
body.dark .artist-card:hover,
body.dark .service-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

body.dark .art-title,
body.dark .artist-name,
body.dark .service-card h3 {
    color: #fff;
}

body.dark .art-price {
    color: #fff;
}

body.dark .art-category {
    background: #3a3b46;
    color: #8167a9;
}

body.dark .service-icon {
    background: #3a3b46;
}

body.dark .bg-light {
    background: #1f2029 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .about-stats {
        gap: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .newsletter-section h2 {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .mr-3 {
        margin-right: 0 !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .art-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}


/* Product Page Styles */
.breadcrumb-section {
    padding: 20px 0;
    background: #f8f9fa;
    
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: #8167a9;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Product Gallery Section */
.product-gallery-section {
    padding-top: 30px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image {
    width: 100%;
    max-width: 600px;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.main-image:hover {
    box-shadow: 0 25px 55px rgba(0,0,0,0.25);
}

.image-thumbnails {
    width: 100%;
    max-width: 600px;
}

.image-thumbnails .row {
    display: flex;
    gap: 10px;
    justify-content: left;
}

.image-thumbnails .col-3 {
    flex: 1 0 20%; /* 5 thumbnails max */
    max-width: 150px;
}

.thumbnail {
    width: 100%;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: #8167a9;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(129,103,169,0.5);
}

#magnifierLens {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid #555;
    border-radius: 10px;
    background-repeat: no-repeat;
    cursor: none;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);

    opacity: 0;
    transition: opacity 0.3s ease;
    visibility: visible;
    z-index: 9999;

    pointer-events: none; /* Allows mouse events to pass through lens */
}

/*Social Media Buttons*/

.social-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.share-label {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    z-index: 2;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    transition: opacity 0.2s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    border-color: rgba(255,255,255,0.5);
}

.social-icon:hover::before {
    opacity: 0.2;
}

/* Light theme (default) */
.social-icon {
    background: rgba(255,255,255,0.95);
    color: #333;
    border-color: rgba(255,255,255,0.3);
}

.share-label {
    color: #333;
}

/* Dark theme - matches your body.dark system */
body.dark .social-icon {
    background: rgba(0,0,0,0.85);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

body.dark .share-label {
    color: #fff;
}


/* Brand accent colors for hover */
.facebook:hover { border-color: #1877f2; }
.instagram:hover { border-color: #e4405f; }
.twitter:hover { border-color: #000000; }
.whatsapp:hover { border-color: #25d366; }
.linkedin:hover { border-color: #0077b5; }
.pinterest:hover { border-color: #bd081c; }
.tiktok:hover { border-color: #000000; }
.telegram:hover { border-color: #0088cc; }
.reddit:hover { border-color: #ff4500; }

/* Responsive sizes for mobile */
@media (max-width: 576px) {
    .social-share {
        justify-content: center;
        gap: 12px;
    }
    .social-icon {
        width: 36px;
        height: 36px;
    }
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
    .share-label {
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
        margin-bottom: 6px;
    }
}

/*Social Media Buttons End*/

/* Product Info */
.product-info {
    padding-left: 30px;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 0.5rem;
}

.product-artist {
    font-size: 1.2rem;
    color: #8167a9;
    margin-bottom: 1rem;
}

.artist-link {
    color: #8167a9;
    text-decoration: none;
    font-weight: 600;
}

.artist-link:hover {
    text-decoration: underline;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #ffc107;
}

.rating-text {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Product Description */
.product-description {
    font-size: 1rem;
    color: #424242;
    line-height: 1.5;
    max-height: 4.5em; /* 3 lines */
    overflow: hidden;
    margin-bottom: 10px;
    transition: max-height 0.3s ease;
}

.product-description.expanded {
    max-height: 1000px; /* enough to show everything */
}
.read-more-btn {
    cursor: pointer;
    color: #0066cc;
    font-weight: 500;
    display: inline-block;
    margin-top: 5px;
}


/* Existing styles unchanged */
.product-specifications {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    font-size: 0.95rem;
    color: #212112;
}

.product-specifications th,
.product-specifications td {
    padding: 8px 12px;
    vertical-align: middle;
}

.product-specifications th {
    font-weight: 600;
    width: 40%;
    background-color: #f5f5f5;
    border-radius: 8px 0 0 8px;
    color: #8167a9;
}

.product-specifications td {
    background-color: #fafafa;
    border-radius: 0 8px 8px 0;
}

/* Dark mode overrides */
body.dark .product-specifications {
    color: #e0e0e0;
}

body.dark .product-specifications th {
    background-color: #3a3a4a;
    color: #b099d8;
    border-radius: 8px 0 0 8px;
}

body.dark .product-specifications td {
    background-color: #2a2a38;
    border-radius: 0 8px 8px 0;
}


.classy-order-btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #ffffff;

    /* Balanced, soft-but-rich gradient */
    background: linear-gradient(135deg, #6c5bb5, #8474cc);

    border: none;
    border-radius: 12px;

    /* Medium subtle shadow */
    box-shadow: 0 4px 14px rgba(110, 90, 180, 0.28);

    transition: all 0.28s ease;
}

.classy-order-btn:hover {
    background: linear-gradient(135deg, #7765c0, #8e7dd8);
    box-shadow: 0 6px 20px rgba(120, 100, 190, 0.38);
    transform: translateY(-2px);
}

.classy-order-btn:active {
    transform: scale(.985);
    box-shadow: 0 3px 9px rgba(100, 80, 170, 0.25);
}





/*Similar Products */
.similar-arts-heading {
  font-weight: 500;
  font-size: 1.4rem;
  text-align: center;
  color: #4a4a57;
  font-family: inherit; /* keeps your site's font */
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

body.dark .similar-arts-heading {
  color: #cfcfe0;
}

.decorative-line {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(90deg, #7f7bbd 0%, #a8a6d3 100%);
  border-radius: 1px;
}


/* Product Price */
.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: #212121;
}

.original-price {
    font-size: 1.5rem;
    color: #6c757d;
    text-decoration: line-through;
}

.discount-badge {
    background: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Product Details */

.detail-item {
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-item:last-child {
    border-bottom: none;
}

/* Product Actions */
.quantity-selector .input-group {
    border-radius: 8px;
    overflow: hidden;
}

.quantity-selector .btn {
    border: 1px solid #dee2e6;
    background: #f8f9fa;
}

.quantity-selector .form-control {
    border-left: none;
    border-right: none;
    border-color: #dee2e6;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-add-to-cart {
    background: #8167a9;
    border-color: #8167a9;
    padding: 12px 30px;
    font-weight: 600;
}

.btn-add-to-cart:hover {
    background: #6a5490;
    border-color: #6a5490;
}

.btn-wishlist {
    padding: 12px 30px;
    font-weight: 600;
}

/* Product Meta */
.product-meta {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #6c757d;
}

.meta-item i {
    color: #8167a9;
    width: 20px;
}

/* Product Tabs */
.product-tabs-section {
    padding-top: 80px;
}

.product-tabs .nav-link {
    color: #6c757d;
    font-weight: 600;
    padding: 15px 25px;
    border: none;
    background: transparent;
}

.product-tabs .nav-link.active {
    color: #8167a9;
    background: transparent;
    border-bottom: 3px solid #8167a9;
}

.tab-content {
    padding: 40px 0;
}

.artwork-context {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.artwork-context h5 {
    color: #8167a9;
    margin-bottom: 15px;
}

.artwork-context ul {
    padding-left: 20px;
}

.artwork-context li {
    margin-bottom: 8px;
    color: #555;
}

/* Review Styles */
.review-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.average-rating h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 10px;
}

.review-item {
    border-bottom: 1px solid #e9ecef;
    padding: 25px 0;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-info h5 {
    margin-bottom: 5px;
    color: #212121;
}

.review-date {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Shipping Options */
.shipping-option {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.shipping-option h5 {
    color: #8167a9;
    margin-bottom: 10px;
}

/* Related Artworks */
.related-artworks-section {
    padding-top: 80px;
}

/* Dark Theme Styles */
body.dark .breadcrumb-section {
    background: #2a2b36;
}

body.dark .breadcrumb-item a {
    color: #8167a9;
}

body.dark .breadcrumb-item.active {
    color: #adb5bd;
}

body.dark .product-title,
body.dark .current-price {
    color: #fff;
}

body.dark .product-description,
body.dark .detail-item {
    color: #adb5bd;
}

body.dark .main-image {
    border-color: #444;
}

body.dark .thumbnail {
    border-color: #444;
}

body.dark .artwork-context {
    background: #2a2b36;
}

body.dark .review-summary {
    background: #2a2b36;
}

body.dark .shipping-option {
    background: #2a2b36;
}

body.dark .table {
    color: #adb5bd;
}

body.dark .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255,255,255,0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-info {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .product-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-date {
        margin-top: 5px;
    }
}

/* Animation for image switching */
.main-image img {
    transition: opacity 0.6s ease;
}

.thumbnail {
    transition: all 0.6s ease;
}



/* Modal base */
.modal-content {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border: none;
    font-family: 'Poppins', sans-serif;
    color: #212112;
    background-color: #fff;
    padding: 0;
    overflow: hidden;
}

/* Dark mode support */
body.dark .modal-content {
    background-color: #2a2a36;
    color: #e0e0e0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

/* Modal header */
.modal-header {
    background-color: #8167a9;
    color: #fff;
    padding: 20px 30px;
    font-size: 1.5rem;
    font-weight: 500;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Dark mode header */
body.dark .modal-header {
    background-color: #5a3e85;
}

/* Close button */
.modal-header .close {
    font-size: 1.5rem;
    color: #fff;
    opacity: 0.9;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.modal-header .close:hover {
    opacity: 1;
}

/* Modal body */
.modal-body {
    padding: 30px;
    background-color: #fafafa;
    font-size: 1rem;
    line-height: 1.5;
}

/* Dark mode body */
body.dark .modal-body {
    background-color: #3a3a4a;
}

/* Form groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #424242;
}

/* Dark mode label */
body.dark .form-group label {
    color: #d0d0d0;
}

/* Inputs and textarea */
.form-control {
    width: 100%;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1.5px solid #ccc;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #8167a9;
    outline: none;
    box-shadow: 0 0 8px rgba(129, 103, 169, 0.6);
}

/* Dark mode inputs */
body.dark .form-control {
    background-color: #4a4a61;
    border-color: #666676;
    color: #e0e0e0;
}

body.dark .form-control:focus {
    border-color: #b099d8;
    box-shadow: 0 0 8px rgba(176, 159, 216, 0.7);
    background-color: #5a5a7a;
}

/* Modal footer */
.modal-footer {
    padding: 20px 30px;
    background-color: #fafafa;
    border-top: none;
    display: flex;
    justify-content: flex-end;
}

/* Dark mode footer */
body.dark .modal-footer {
    background-color: #3a3a4a;
}

/* Submit button */
.modal-footer .btn-primary {
    background-color: #8167a9;
    border: none;
    font-size: 1.2rem;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: 0 6px 15px rgba(129, 103, 169, 0.5);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.modal-footer .btn-primary:hover {
    background-color: #5a3e85;
    box-shadow: 0 8px 25px rgba(90, 62, 133, 0.8);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .modal-content {
        margin: 10px;
    }
    .modal-header, .modal-body, .modal-footer {
        padding: 15px 20px;
    }
    .modal-footer .btn-primary {
        width: 100%;
        padding: 14px 0;
    }
}

/*** Start Filter System ***/

/* Filter Page Styles */

.page-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #212121;
    letter-spacing: -0.02em;
}

/* Sticky Filter Sidebar */
.sticky-filter {
    position: sticky;
    top: 100px;
    padding: 25px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.filter-header {
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.filter-title {
    font-weight: 500;
    font-size: 1.2rem;
    color: #212121;
    letter-spacing: -0.01em;
}

.filter-count {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 10px;
    background-color: #8167a9;
    color: white;
    font-weight: 400;
}

.filter-group {
    position: relative;
    margin-bottom: 24px;
}

.filter-label {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    color: #424242;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
}

.filter-label i {
    color: #8167a9;
    width: 16px;
    opacity: 0.8;
}

/* Enhanced Select Styles for Single Select */
.filter-select {
    height: 44px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    padding: 0 12px;
    background-color: #fff;
    width: 100%;
    cursor: pointer;
    font-weight: 400;
    color: #424242;
}

.filter-select:focus {
    border-color: #8167a9;
    box-shadow: 0 0 0 2px rgba(129, 103, 169, 0.1);
    outline: none;
}

/* Price Inputs */
.price-inputs .input-group {
    margin-bottom: 8px;
}

.price-inputs .input-group-text {
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    border-right: none;
    color: #666;
    border-radius: 6px 0 0 6px;
    font-size: 0.9rem;
    font-weight: 400;
}

.price-inputs .form-control {
    border: 1px solid #e0e0e0;
    border-left: none;
    border-radius: 0 6px 6px 0;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 400;
    color: #424242;
}

.price-inputs .form-control:focus {
    border-color: #8167a9;
    box-shadow: none;
}

.price-inputs .form-control::placeholder {
    color: #999;
    font-weight: 400;
}

/* Filter Actions */
.filter-actions {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    margin-top: 10px;
}

.btn-apply {
    background: #8167a9;
    border: 1px solid #8167a9;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    color: white;
    padding: 10px 16px;
    margin-bottom: 12px;
}

.btn-apply:hover {
    background: #6a5490;
    border-color: #6a5490;
    color: white;
    transform: none;
    box-shadow: 0 2px 6px rgba(129, 103, 169, 0.2);
}

.btn-clear {
    border-radius: 6px;
    font-weight: 500;
    padding: 10px 16px;
    border: 1px solid #ddd;
    color: #666;
    background: transparent;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.btn-clear:hover {
    background: #f8f9fa;
    color: #555;
    border-color: #ccc;
}

/* Mobile Filter Toggle Button */
.d-lg-none.mb-3 {
    margin-bottom: 16px;
}

.btn-filter-toggle {
    border: 1px solid #8167a9;
    color: #8167a9;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: transparent;
    font-size: 0.95rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-filter-toggle:hover {
    background: #8167a9;
    color: white;
    text-decoration: none;
    border-color: #8167a9;
}

.btn-filter-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(129, 103, 169, 0.2);
}

.btn-filter-toggle i {
    font-size: 0.9rem;
    margin-right: 8px;
    opacity: 0.9;
}

/* Dark theme for mobile toggle button */
body.dark .btn-filter-toggle {
    border-color: #8167a9;
    color: #8167a9;
    background: transparent;
}

body.dark .btn-filter-toggle:hover {
    background: #8167a9;
    color: white;
    border-color: #8167a9;
}

/* Collapse state indicator */
.btn-filter-toggle[aria-expanded="true"] {
    background: #8167a9;
    color: white;
    border-color: #8167a9;
}

body.dark .btn-filter-toggle[aria-expanded="true"] {
    background: #8167a9;
    color: white;
    border-color: #8167a9;
}

/* Active Filters Bar */
.active-filters-bar {
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.active-filters-text {
    font-weight: 500;
    color: #424242;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
}

.active-filters-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.filter-tag {
    background: #8167a9;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 400;
}

.filter-tag .remove-tag {
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    background: none;
    border: none;
    color: white;
    padding: 0;
    margin-left: 2px;
    font-size: 0.7rem;
}

.filter-tag .remove-tag:hover {
    opacity: 1;
}

.clear-active-filters {
    font-size: 0.8rem;
    padding: 3px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    background: transparent;
    transition: all 0.2s ease;
    font-weight: 400;
}

.clear-active-filters:hover {
    background: #f8f9fa;
    border-color: #ccc;
    color: #555;
}

/* Load More Button */
.btn-load-more {
    border-radius: 6px;
    padding: 10px 24px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #8167a9;
    color: #8167a9;
    background: transparent;
    font-size: 0.95rem;
}

.btn-load-more:hover {
    background: #8167a9;
    color: white;
    transform: none;
    box-shadow: 0 2px 6px rgba(129, 103, 169, 0.2);
}

/* Mobile Filter Toggle Button */
.btn-outline-primary {
    border: 1px solid #8167a9;
    color: #8167a9;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: transparent;
    font-size: 0.95rem;
}

.btn-outline-primary:hover {
    background: #8167a9;
    color: white;
    transform: none;
}

.btn-outline-primary:focus {
    box-shadow: 0 0 0 2px rgba(129, 103, 169, 0.2);
}

/* Mobile Styles */
@media (max-width: 991.98px) {
    .page-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .sticky-filter {
        position: static;
        margin-bottom: 20px;
        border-radius: 6px;
        box-shadow: 0 1px 6px rgba(0,0,0,0.05);
        padding: 20px;
    }
    
    .filter-header {
        padding-bottom: 12px;
        margin-bottom: 16px;
    }
    
    .filter-title {
        font-size: 1.1rem;
    }
    
    .filter-select {
        height: 42px;
        font-size: 16px;
    }
    
    .btn-apply, .btn-clear {
        padding: 10px 16px;
        font-size: 0.95rem;
    }
    
    .active-filters-bar {
        padding: 12px 16px;
        margin-bottom: 20px;
    }
    
    .btn-load-more {
        padding: 10px 20px;
    }
}

/* Dark Theme Styles */
body.dark .page-title {
    color: #fff;
}

body.dark .sticky-filter {
    background: #2a2b36;
    border-color: #444;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

body.dark .filter-title {
    color: #fff;
}

body.dark .filter-header {
    border-bottom-color: #444;
}

body.dark .filter-label {
    color: #e0e0e0;
}

body.dark .filter-label i {
    color: #a990d4;
}

body.dark .filter-select {
    background: #1f2029;
    border-color: #444;
    color: #e0e0e0;
}

body.dark .filter-select:focus {
    border-color: #8167a9;
    background: #1f2029;
    color: #e0e0e0;
}

body.dark .price-inputs .input-group-text {
    background-color: #2a2b36;
    border-color: #444;
    color: #ccc;
}

body.dark .price-inputs .form-control {
    background: #1f2029;
    border-color: #444;
    color: #e0e0e0;
}

body.dark .price-inputs .form-control:focus {
    border-color: #8167a9;
}

body.dark .price-inputs .form-control::placeholder {
    color: #888;
}

body.dark .filter-actions {
    border-top-color: #444;
}

body.dark .active-filters-bar {
    background: #2a2b36;
    border-color: #444;
}

body.dark .active-filters-text {
    color: #e0e0e0;
}

body.dark .btn-clear {
    border-color: #555;
    color: #ccc;
    background: transparent;
}

body.dark .btn-clear:hover {
    background: #3a3b46;
    border-color: #666;
    color: #fff;
}

body.dark .btn-outline-primary {
    border-color: #8167a9;
    color: #8167a9;
    background: transparent;
}

body.dark .btn-outline-primary:hover {
    background: #8167a9;
    color: white;
}

body.dark .btn-load-more {
    border-color: #8167a9;
    color: #8167a9;
    background: transparent;
}

body.dark .btn-load-more:hover {
    background: #8167a9;
    color: white;
}

body.dark .clear-active-filters {
    border-color: #555;
    color: #ccc;
    background: transparent;
}

body.dark .clear-active-filters:hover {
    background: #3a3b46;
    border-color: #666;
    color: #fff;
}

/* Form Text in Dark Mode */
body.dark .form-text.text-muted {
    color: #888 !important;
}

/* Collapse Animation */
.collapse:not(.show) {
    display: none;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

/* Products Grid Spacing */
#productsGrid .col-sm-6 {
    padding: 0 8px;
}

#productsGrid .mb-4 {
    margin-bottom: 1.5rem !important;
}

/* Ensure product cards fill the grid properly */
#productsGrid .col-sm-6 > div {
    height: 100%;
}

/* Responsive adjustments for filter sidebar */
@media (min-width: 992px) {
    .sticky-filter {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    
    .sticky-filter::-webkit-scrollbar {
        width: 4px;
    }
    
    .sticky-filter::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    .sticky-filter::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 2px;
    }
    
    .sticky-filter::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }
}

body.dark .sticky-filter::-webkit-scrollbar-track {
    background: #2a2b36;
}

body.dark .sticky-filter::-webkit-scrollbar-thumb {
    background: #555;
}

body.dark .sticky-filter::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* Focus states for accessibility */
.filter-select:focus,
.price-inputs .form-control:focus,
.btn-apply:focus,
.btn-clear:focus,
.btn-load-more:focus,
.btn-outline-primary:focus {
    outline: none;
}

.btn-apply:focus {
    box-shadow: 0 0 0 2px rgba(129, 103, 169, 0.3);
}

.btn-clear:focus {
    box-shadow: 0 0 0 2px rgba(221, 221, 221, 0.3);
}

.btn-load-more:focus {
    box-shadow: 0 0 0 2px rgba(129, 103, 169, 0.3);
}

.btn-outline-primary:focus {
    box-shadow: 0 0 0 2px rgba(129, 103, 169, 0.3);
}

/* Loading state for buttons */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: button-loading-spinner 0.8s ease infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

/* Empty state for products */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-state i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

body.dark .empty-state {
    color: #999;
}

body.dark .empty-state i {
    color: #444;
}

body.dark .empty-state h3 {
    color: #999;
}

/* Print styles */
@media print {
    .sticky-filter,
    .btn-load-more,
    .active-filters-bar,
    .d-lg-none {
        display: none !important;
    }
    
    .col-lg-3 {
        display: none;
    }
    
    .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/*** End Filter System ***/


/* Footer Section */
.footer-area {
    background-color: #f8f9fa;
    color: #444444;
    padding: 40px 0 20px;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid #dddddd;
    text-align: left !important;
}

.footer-heading {
    font-size: 1.375rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #212121;
}

.footer-underline {
    width: 70px;
    height: 2px;
    background-color: #8167a9;
    margin-bottom: 15px;
    border-radius: 1px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8167a9;
}

.footer-section p, .footer-section li {
    font-size: 0.9rem;
    color: #666666;
}

.social-icons a {
    color: #666666;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #8167a9;
}

.contact-info i {
    margin-right: 8px;
    color: #8167a9;
}

/* Copyright */
.copyright-area {
    background: #e9ecef;
    padding: 10px 0;
    font-size: 0.875rem;
    color: #666666;
    border-top: 1px solid #dddddd;
}

/* Responsive */
@media (max-width: 767px) {
    .footer-section {
        margin-bottom: 30px;
        text-align: left !important;
    }
    .social-icons a {
        margin-right: 10px;
    }
}

/* Dark theme overrides for footer */
body.dark .footer-area {
    background-color: #2a2a38;
    color: #d0d0d0;
    border-top: 1px solid #444455;
}

body.dark .footer-heading {
    color: #cfc0f7;
}

body.dark .footer-underline {
    background-color: #8167a9;
}

body.dark .footer-links a {
    color: #bfbfcf;
}

body.dark .footer-links a:hover {
    color: #cfc0f7;
}

body.dark .footer-section p,
body.dark .footer-section li {
    color: #b0b0c0;
}

body.dark .social-icons a {
    color: #b0b0c0;
}

body.dark .social-icons a:hover {
    color: #cfc0f7;
}

body.dark .contact-info i {
    color: #b099d8;
}

body.dark .copyright-area {
    background: #1e1e28;
    color: #8a8acb;
    border-top: 1px solid #444455;
}

/* The left text alignment and padding remain as per your base styles */
