@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Lora:wght@400;500;600;700&display=swap');

:root {
    --border-color: #80808059;
    --transition: all 0.15s ease-in;
    --nav-color: #333;
    --background-light-gray: #ececec;
    --light-gray-text: rgb(127 123 119);
    --font-size-16: 16px;
    
    /* MahaLaxmi Color Variables */
    --mahalaxmi-white: #FFFFFF;
    --mahalaxmi-gold: #C9A96E;
    --mahalaxmi-gold-bright: #E6C547;
    --card-shadow: 0 0 5px rgba(0, 0, 0, 0.10);
    --font-lexend: 'Lexend Deca', sans-serif;
    --font-open-sans: 'Open Sans', sans-serif;
    --font-playfair: 'Playfair Display', serif;
    --font-montserrat: 'Montserrat', sans-serif;
    --font-lora: 'Lora', serif;
    --leaf-color: rgb(107, 163, 49);
}

/* ============================================
   BLOG STYLES
   ============================================ */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

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

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

.blog-title a {
    color: #1a1a1a;
    transition: color 0.3s ease;
    text-decoration: none;
}

.blog-title a:hover {
    color: var(--primary-color, #dc3545) !important;
}

.blog-meta {
    font-size: 0.875rem;
    color: #6c757d;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: var(--font-playfair), serif;
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    font-family: var(--font-playfair), serif;
}

.blog-detail-meta {
    font-size: 0.95rem;
    color: #6c757d;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.blog-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    font-family: var(--font-lora), serif;
}

.blog-description {
    text-align: justify;
}

.blog-description img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-description p {
    margin-bottom: 1.5rem;
}

.blog-description h1,
.blog-description h2,
.blog-description h3,
.blog-description h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-playfair), serif;
}

.blog-share-section {
    border-top: 2px solid #e9ecef;
    padding-top: 1.5rem;
}

/* Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
    font-family: var(--font-playfair), serif;
}

.recent-blog-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 1rem;
}

.recent-blog-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.recent-blog-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

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

.recent-blog-image:hover img {
    transform: scale(1.1);
}

.recent-blog-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.recent-blog-title a {
    color: #1a1a1a;
    transition: color 0.3s ease;
    text-decoration: none;
}

.recent-blog-title a:hover {
    color: var(--primary-color, #dc3545);
}

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

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list li a {
    color: #333;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

.category-list li a:hover {
    color: var(--primary-color, #dc3545);
    padding-left: 0.5rem;
}

.category-list li a i {
    font-size: 0.75rem;
    opacity: 0.5;
}

.newsletter-widget {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 1.5rem;
}

#load-more-blogs {
    min-width: 200px;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#load-more-blogs:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991.98px) {
    .blog-sidebar {
        position: static;
        margin-top: 3rem;
    }

    .blog-detail-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }
}

/* ============================================
   NEW BLOG CATEGORY SECTION STYLES
   ============================================ */
/* Blog Page Header */
.blog-page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 60px 0;
    margin-bottom: 0;
}

.blog-page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-family: var(--font-playfair, 'Playfair Display'), serif;
    letter-spacing: -1px;
}

.blog-page-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-latest-section {
    padding: 60px 0;
}

.blog-category-section {
    padding: 60px 0;
    margin-bottom: 0;
}

.blog-category-header {
    margin-bottom: 40px;
}

.blog-category-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-playfair, 'Playfair Display'), serif;
    letter-spacing: -0.5px;
}

.blog-view-more-btn {
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 6px;
    background-color: transparent;
    border: 2px solid currentColor;
}

.blog-view-more-btn:hover {
    background-color: currentColor;
    color: #fff !important;
    transform: translateX(5px);
    border-color: currentColor;
}

.blog-view-more-btn:hover i {
    transform: translateX(3px);
}

.blog-card-latest,
.blog-card-category {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.blog-card-latest:hover,
.blog-card-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.blog-card-image-link {
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 280px;
}

.blog-category-badge-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    font-size: 0.65rem !important;
    padding: 4px 10px !important;
    margin: 0 !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-latest:hover .blog-card-img,
.blog-card-category:hover .blog-card-img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: rgba(220, 53, 69, 0.9);
    color: #fff;
}

.blog-card-latest .blog-category-badge-overlay {
    background-color: rgba(220, 53, 69, 0.9);
    color: #fff;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
    font-family: var(--font-playfair, 'Playfair Display'), serif;
}

.blog-card-title a {
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a:hover {
    color: var(--primary-color, #dc3545) !important;
}

.blog-card-date {
    font-size: 0.875rem;
    margin: 0 0 12px 0;
    opacity: 0.7;
    font-weight: 500;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Dark section styles */
.blog-category-section[style*="background-color: #dc3545"] .blog-card-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-category-section[style*="background-color: #dc3545"] .blog-card-category:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.blog-category-section[style*="background-color: #dc3545"] .blog-card-title a:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .blog-page-title {
        font-size: 2.5rem;
    }
    
    .blog-page-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-category-title {
        font-size: 2rem;
    }
    
    .blog-card-title {
        font-size: 1.25rem;
    }
    
    .blog-card-image-link {
        height: 240px;
    }
}

@media (max-width: 767.98px) {
    .blog-page-header {
        padding: 50px 0 40px 0;
    }
    
    .blog-page-title {
        font-size: 2rem;
    }
    
    .blog-page-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-latest-section,
    .blog-category-section {
        padding: 40px 0;
    }
    
    .blog-category-title {
        font-size: 1.75rem;
    }
    
    .blog-card-title {
        font-size: 1.1rem;
    }
    
    .blog-card-image-link {
        height: 200px;
    }
    
    .blog-view-more-btn {
        font-size: 0.875rem;
        padding: 6px 12px;
    }
    
    .blog-category-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 16px;
    }

    .blog-detail-title {
        font-size: 1.75rem;
    }

    .page-title {
        font-size: 1.75rem;
    }
}

/* Typography - Tanishq Style */
body {
    font-family: var(--font-lora), serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-playfair), serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
}

h2 {
    font-size: 2rem; /* 32px */
    font-weight: 600;
}

h3 {
    font-size: 1.75rem; /* 28px */
    font-weight: 600;
}

h4 {
    font-size: 1.5rem; /* 24px */
    font-weight: 500;
}

h5 {
    font-size: 1.25rem; /* 20px */
    font-weight: 500;
}

h6 {
    font-size: 1.125rem; /* 18px */
    font-weight: 500;
}

/* Navigation and UI elements */
.navbar, .nav-link, .nav-category {
    font-family: var(--font-montserrat), sans-serif;
    font-weight: 500;
}

/* Section titles */
.section-title {
    font-family: var(--font-playfair), serif;
    font-weight: 600;
    font-size: 2rem;
}

/* Product names and important text */
.product-name, .card-title {
    font-family: var(--font-playfair), serif;
    font-weight: 500;
}

/* Buttons */
.btn {
    font-family: var(--font-montserrat), sans-serif;
    font-weight: 500;
}

/* Perfect Match Section Styles */
.perfect-match-section { 
    background: #f8f9fa;
    margin: 2rem 0;
}

.perfect-match-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.perfect-match-title {
    font-family: var(--font-playfair), serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.perfect-match-subtitle {
    font-family: var(--font-montserrat), sans-serif;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
}

/* Section header styling */
.perfect-match-header {
    text-align: center;
    margin-bottom: 3rem;
}

.perfect-match-header h2 {
    font-family: var(--font-playfair), serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.perfect-match-header p {
    font-family: var(--font-montserrat), sans-serif;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 0;
    font-weight: 400;
}

/* Modern Category Cards */
.category-card-modern {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

/* Ensure proper grid layout */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Additional styling for better visibility */
.perfect-match-section .row {
    margin: 0;
}

.perfect-match-section .col-md-3 {
    padding: 0 0.75rem;
}

.category-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.category-image-modern {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.category-text-modern {
    padding: 1.5rem 1rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-text-modern h5 {
    font-family: var(--font-montserrat), sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2c2c2c;
    margin: 0;
    letter-spacing: 0.5px;
}

/* View All Card Special Styling */
.view-all-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
}

.view-all-content {
    padding: 2rem 1rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.view-all-number {
    font-family: var(--font-playfair), serif;
    font-size: 3rem;
    font-weight: 700;
    color: #8B4513;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.view-all-text {
    font-family: var(--font-montserrat), sans-serif;
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

/* Video Gallery Styles */
.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #000;
    aspect-ratio: 2/3;
    min-height: 500px;
    margin-bottom: 2rem;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    background: #f8f9fa;
}

/* Video loading state - removed for better performance */

/* Video Slider Styles */
.video-slider-container {
    position: relative;
    padding: 0 50px;
}

.videoSwiper {
    width: 100%;
    height: auto;
    padding: 20px 0;
}

.videoSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.videoSwiper .video-card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* Video Slider Navigation */
.video-nav-next,
.video-nav-prev {
    color: #8B4513 !important;
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-nav-next:hover,
.video-nav-prev:hover {
    background: #8B4513;
    color: white !important;
    transform: scale(1.1);
}

.video-nav-next::after,
.video-nav-prev::after {
    font-size: 16px;
}

/* Video Slider Pagination */
.video-pagination {
    position: relative;
    margin-top: 30px;
}

.video-pagination .swiper-pagination-bullet {
    background: #8B4513;
    opacity: 0.3;
    width: 12px;
    height: 12px;
    margin: 0 6px;
}

.video-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #8B4513;
}

/* Video Gallery Row Spacing - Keep for other sections */
.video-gallery-row {
    gap: 2rem;
}

.video-gallery-row .col-lg-3,
.video-gallery-row .col-md-6,
.video-gallery-row .col-12 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.section-subtitle {
    font-family: var(--font-montserrat), sans-serif;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
}

/* Video Gallery Responsive */
@media (max-width: 992px) {
    .video-card {
        aspect-ratio: 1/2;
        min-height: 450px;
        margin-bottom: 2rem;
    }
    
    .video-gallery-row {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .video-card {
        aspect-ratio: 2/3;
        min-height: 400px;
        margin-bottom: 2rem;
    }
    
    .video-gallery-row {
        gap: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .video-card:hover {
        transform: none; /* Disable hover effects on mobile */
    }
}

@media (max-width: 576px) {
    .video-card {
        aspect-ratio: 2/3;
        min-height: 350px;
        margin-bottom: 2rem;
    }
    
    .video-gallery-row {
        gap: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .perfect-match-title {
        font-size: 2rem;
    }
    
    .perfect-match-subtitle {
        font-size: 1rem;
    }
    
    .category-image-modern {
        height: 150px;
    }
    
    .view-all-number {
        font-size: 2rem;
    }
}

.btn-primary {
    background: var(--primary-color) !important;
    color: var(--bs-white) !important;
}

body {
    background: #dddddd33;
    font-family: var(--font-open-sans);
    -webkit-font-smoothing: antialiased;
}

img:not([src]) {
    visibility: hidden;
}

.width15px {
    width: 15px;
}

/* width */
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px white;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--bs-gray-300);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--bs-gray-400);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* Fixes Firefox anomaly during image load */
@-moz-document url-prefix() {
    img:-moz-loading {
        visibility: hidden;
    }
}

.height70vh {
    height: 70vh !important;
}

.ionicon-search-outline {
    display: inline-block;
    -webkit-mask: url('../ionicons/dist/svg/search-outline.svg');
    background: currentColor;
    color: var(--bs-white);
    height: 20px;
    width: 20px;
}

.ionicon-link-outline {
    display: inline-block;
    -webkit-mask: url('../ionicons/dist/svg/link-outline.svg');
    background: currentColor;
    color: var(--bs-black);
    height: 25px;
    width: 25px;
}

.ionicon-paper-plane-outline {
    display: inline-block;
    -webkit-mask: url('../ionicons/dist/svg/paper-plane-outline.svg');
    background: currentColor;
    color: var(--bs-white);
    height: 25px;
    width: 25px;
}

.grid-icons-outline {
    display: inline-block;
    -webkit-mask: url('../ionicons/dist/svg/grid-outline.svg');
    background: currentColor;
    color: var(--bs-black);
    height: 24px;
    width: 24px;
    transition: var(--transition);
    cursor: pointer;
}

.list-icons-outline {
    display: inline-block;
    -webkit-mask: url('../ionicons/dist/svg/list-outline.svg');
    background: currentColor;
    color: var(--bs-black);
    height: 24px;
    width: 24px;
    transition: var(--transition);
    cursor: pointer;
}

.grid-list-icon-box {
    padding: 8px;
    background: var(--bs-white);
    border-radius: 10px;
    height: 40px;
    transition: var(--transition);
}

.message-send-icon {
    background-color: #ebebeb;
    margin: 0 5px;
    padding: 8px;
    border-radius: 50%;
    height: fit-content;
    display: flex;
    cursor: pointer;
    width: fit-content;
}

.ionicon-file {
    display: inline-block;
    -webkit-mask: url('../ionicons/dist/svg/document.svg');
    background: currentColor;
    color: var(--bs-white);
    height: 20px;
    width: 20px;
    vertical-align: sub;
}

.ionicon-ellipse {
    display: inline-block;
    -webkit-mask: url('../ionicons/dist/svg/ellipse.svg');
    background: currentColor;
    color: var(--primary-color);
    height: 20px;
    width: 20px;
    vertical-align: sub;
}

.ionicon-bag-handle-outline {
    display: block;
    -webkit-mask: url('../ionicons/dist/svg/bag-handle-outline.svg');
    background: currentColor;
    color: var(--primary-color);
    height: 20px;
    width: 20px;
}

.ionicon-heart {
    display: block;
    -webkit-mask: url('../ionicons/dist/svg/heart-outline.svg');
    background: currentColor;
    color: var(--primary-color);
    height: 20px;
    width: 20px;
}

.ionicon-person {
    display: block;
    -webkit-mask: url('../ionicons/dist/svg/person-outline.svg');
    background: currentColor;
    color: var(--primary-color);
    height: 20px;
    width: 20px;
}

.ionicon-compare-outline {
    display: block;
    -webkit-mask: url('../ionicons/dist/svg/shuffle-outline.svg');
    background: currentColor;
    color: var(--primary-color);
    height: 20px;
    width: 20px;
}

.ionicon-person-outline {
    display: block;
    -webkit-mask: url('../ionicons/dist/svg/person-outline.svg');
    background: currentColor;
    color: var(--bs-dark-text-emphasis);
    height: 20px;
    width: 20px;
}

.ionicon-cart-outline {
    display: block;
    -webkit-mask: url('../ionicons/dist/svg/cart-outline.svg');
    background: currentColor;
    color: var(--bs-dark-text-emphasis);
    height: 20px;
    width: 20px;
}

.ionicon-heart-outline {
    display: block;
    -webkit-mask: url('../ionicons/dist/svg/heart-outline.svg');
    background: currentColor;
    height: 100px;
    width: 100px;
    margin: auto;
    color: var(--bs-gray-300);
}

.ionicon-cart-outline-2 {
    display: block;
    -webkit-mask: url('../ionicons/dist/svg/cart-outline.svg');
    background: currentColor;
    height: 100px;
    width: 100px;
    margin: auto;
    color: var(--bs-gray-300);
}

.active-nav {
    background-color: var(--bs-white);
    color: var(--bs-black);
}

a {
    color: var(--primary-color);
    text-decoration: none !important;
}

.nav-category a:hover {
    color: var(--primary-color-onhover);
    text-decoration: none;

}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.color-white {
    color: var(--bs-white);
}

header {
    background-color: var(--bs-white);
}

.company-logo {
    width: 200px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
}

.searchcontainer {
    position: relative;
    width: 950px;
    padding: 2px;
    border-radius: 25px;
    background-color: var(--bs-white);
}

.searchbar {
    border: solid 1px var(--border-color);
    box-shadow: none !important;
    padding: 9px 43px 9px 15px;
    border-radius: 20px !important;
}

.searchicon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 14px;
    top: 5px;
    border: solid 1px var(--primary-color);
    border-radius: 36px;
    margin: 0;
    background: var(--primary-color);
    color: var(--bs-white);
    padding: 8px 8px;
}

.searchicon ion-icon {
    font-size: 24px !important;
}

.fa-bars {
    color: var(--primary-color);
}

.menu-icon {
    color: var(--bs-dark-text-emphasis);
    font-size: 24px;
    margin-right: 10px;

}

.offcanvas-body ul li {
    padding: 16px;
}

li small {
    background-color: #dc3545;
    color: var(--bs-white);
    margin-left: 10px;
    padding: 2px 4px;
    border-radius: 5px;
}

.menubar-logo {
    width: 35px;
}

.bg-nav {
    background-color: #b0b0b094;
}

.nav-category a, .nav-category {
    color: #000 !important;
}
.navbar-md-icons {
    font-size: 20px !important;
    color: var(--bs-gray-800) !important;
}

.navbar-md ion-icon {
    font-size: 30px;
    vertical-align: middle;
    color: var(--bs-dark-text-emphasis);
}

.icon-color-prime {
    color: var(--bs-gray-800);
}

.language-box {
    border-top: solid 1px var(--border-color);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.searchicon:hover {
    background-color: var(--primary-color-onhover);
    ;
    color: var(--bs-white);
    transition-duration: 0.2s;
}

.companylogo {
    width: 230px;
}

.card {
    border: none;
}

.card-body {
    padding: 16px;
}

.card-title {
    margin-bottom: 5px;
    font-size: var(--font-size-16);
    height: 19px;
    overflow: hidden;
    font-family: var(--font-lexend);
    font-weight: 500;
}

.brand-title {
    margin-bottom: 5px;
    font-size: var(--font-size-14);
    height: 16px;
    overflow: hidden;
    font-family: var(--font-lexend);
    font-weight: 900;
    padding-bottom: 30px;
}

.card-text {
    color: var(--bs-gray-600);
    font-size: 14px;
    margin-bottom: 5px;
    height: 20px;
    overflow: hidden;
}

.product-disc {
    height: 22px;
    overflow: hidden;
    display: block;
}

.card-price {
    font-size: var(--font-size-16);
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.theme-krajee-svg .empty-stars .krajee-icon-star {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBoZWlnaHQ9IjMycHgiIHdpZHRoPSIzMnB4IiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHZpZXdCb3g9IjAgMCA0OC45NCA0Ny45NCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgZmlsbD0iI2FhYSIgc3Ryb2tlPSIjZmZmZiI+DQoNCjxnIGlkPSJTVkdSZXBvX2JnQ2FycmllciIgc3Ryb2tlLXdpZHRoPSIwIi8+DQoNCjxnIGlkPSJTVkdSZXBvX3RyYWNlckNhcnJpZXIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlPSIjQ0NDQ0NDIiBzdHJva2Utd2lkdGg9IjAuMzgzNTE5OTk5OTk5OTk5OTciLz4NCg0KPGcgaWQ9IlNWR1JlcG9faWNvbkNhcnJpZXIiPiA8cGF0aCBzdHlsZT0iZmlsbDogI2QwZDBkMDsiIGQ9Ik0yNi4yODUsMi40ODZsNS40MDcsMTAuOTU2YzAuMzc2LDAuNzYyLDEuMTAzLDEuMjksMS45NDQsMS40MTJsMTIuMDkxLDEuNzU3IGMyLjExOCwwLjMwOCwyLjk2MywyLjkxLDEuNDMxLDQuNDAzbC04Ljc0OSw4LjUyOGMtMC42MDgsMC41OTMtMC44ODYsMS40NDgtMC43NDIsMi4yODVsMi4wNjUsMTIuMDQyIGMwLjM2MiwyLjEwOS0xLjg1MiwzLjcxNy0zLjc0NiwyLjcyMmwtMTAuODE0LTUuNjg1Yy0wLjc1Mi0wLjM5NS0xLjY1MS0wLjM5NS0yLjQwMywwbC0xMC44MTQsNS42ODUgYy0xLjg5NCwwLjk5Ni00LjEwOC0wLjYxMy0zLjc0Ni0yLjcyMmwyLjA2NS0xMi4wNDJjMC4xNDQtMC44MzctMC4xMzQtMS42OTItMC43NDItMi4yODVsLTguNzQ5LTguNTI4IGMtMS41MzItMS40OTQtMC42ODctNC4wOTYsMS40MzEtNC40MDNsMTIuMDkxLTEuNzU3YzAuODQxLTAuMTIyLDEuNTY4LTAuNjUsMS45NDQtMS40MTJsNS40MDctMTAuOTU2IEMyMi42MDIsMC41NjcsMjUuMzM4LDAuNTY3LDI2LjI4NSwyLjQ4NnoiLz4gPC9nPg0KDQo8L3N2Zz4=)
}

.theme-krajee-svg .filled-stars .krajee-icon-star {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBoZWlnaHQ9IjMycHgiIHdpZHRoPSIzMnB4IiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHZpZXdCb3g9IjAgMCA0OC45NCA0Ny45NCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgZmlsbD0iI2FhYSIgc3Ryb2tlPSIjZmZmZiI+DQoNCjxnIGlkPSJTVkdSZXBvX2JnQ2FycmllciIgc3Ryb2tlLXdpZHRoPSIwIi8+DQoNCjxnIGlkPSJTVkdSZXBvX3RyYWNlckNhcnJpZXIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlPSIjQ0NDQ0NDIiBzdHJva2Utd2lkdGg9IjAuMzgzNTE5OTk5OTk5OTk5OTciLz4NCg0KPGcgaWQ9IlNWR1JlcG9faWNvbkNhcnJpZXIiPiA8cGF0aCBzdHlsZT0iZmlsbDogI2VhYmUxMjsiIGQ9Ik0yNi4yODUsMi40ODZsNS40MDcsMTAuOTU2YzAuMzc2LDAuNzYyLDEuMTAzLDEuMjksMS45NDQsMS40MTJsMTIuMDkxLDEuNzU3IGMyLjExOCwwLjMwOCwyLjk2MywyLjkxLDEuNDMxLDQuNDAzbC04Ljc0OSw4LjUyOGMtMC42MDgsMC41OTMtMC44ODYsMS40NDgtMC43NDIsMi4yODVsMi4wNjUsMTIuMDQyIGMwLjM2MiwyLjEwOS0xLjg1MiwzLjcxNy0zLjc0NiwyLjcyMmwtMTAuODE0LTUuNjg1Yy0wLjc1Mi0wLjM5NS0xLjY1MS0wLjM5NS0yLjQwMywwbC0xMC44MTQsNS42ODUgYy0xLjg5NCwwLjk5Ni00LjEwOC0wLjYxMy0zLjc0Ni0yLjcyMmwyLjA2NS0xMi4wNDJjMC4xNDQtMC44MzctMC4xMzQtMS42OTItMC43NDItMi4yODVsLTguNzQ5LTguNTI4IGMtMS41MzItMS40OTQtMC42ODctNC4wOTYsMS40MzEtNC40MDNsMTIuMDkxLTEuNzU3YzAuODQxLTAuMTIyLDEuNTY4LTAuNjUsMS45NDQtMS40MTJsNS40MDctMTAuOTU2IEMyMi42MDIsMC41NjcsMjUuMzM4LDAuNTY3LDI2LjI4NSwyLjQ4NnoiLz4gPC9nPg0KDQo8L3N2Zz4=)
}

.card-rating {
    width: 20px !important;
    height: 20px !important;
    margin-bottom: 5px;
}

header {
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-outer {
    padding: 8px 0;
}

.nav-sticky {
    box-shadow: rgb(0 0 0 / 15%) 0px 3px 8px 0px;
    padding: 6px 0px !important;
}

.search-nav {
    transition: all 0.5s ease-in-out;
}

.nav-scroll-up {
    position: sticky !important;
    top: 0px !important;
}

.nav-scroll-down {
    top: -65px;
}

.bghover:hover {
    color: var(--primary-color-onhover);
}

.Bungeefont {
    font-family: "Bungee Shade", cursive;
    font-size: 35px;
    color: var(--bs-black);
}

.iconsize {
    width: 10px;
}

.img-size-slider {
    height: 100vh;
}

.btn {
    transition: var(--transition);
}

.sliderbtn {
    background: rgb(255, 255, 255);
    width: 75px;
    border-radius: 12px;
    height: 25px;
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.slider-click-act {
    height: 12px !important;
    width: 12px !important;
    border-radius: 60%;
}

.slider-img-border {
    border-radius: 10px;
}

.slider-btn-hover:hover {
    background-color: rgb(124, 118, 118) !important;
    transition-duration: 0.53s;
}

.main-bg {
    background-color: #f5f5f7;
}

.slider-caption {
    color: var(--bs-white) !important;
    margin-bottom: 50%;
}

.slider-caption-samsung {
    color: var(--bs-white) !important;
}

.sintony-bold {
    font-family: "Sintony", sans-serif;
    font-weight: 700;
}

.sintony-regular {
    font-family: "Sintony", sans-serif;
    font-weight: 400;
}

.nav-category {
    padding: 10px 14px;
    border: none;
    border-radius: 20px;
    height: fit-content;
    margin: 0 5px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-category:hover,
.nav-category a {
    color: white;
}

.nav-category:hover {
    background-color: var(--bs-white);
}

.shopingicon {
    padding: 14px 15px;
    border-radius: 33px;
    background: var(--bs-white);
    position: relative;
}

.btn:focus {
    box-shadow: none !important;
}

.btn-none {
    border: none;
}

.swiper {
    width: 100%;
    height: 100%;
}

.xzoom {
    width: auto !important;
    box-shadow: none !important;
}

/* ElevateZoom Preview Window - Override inline styles with maximum specificity */
.zoomWindow,
body .zoomWindow,
html body .zoomWindow,
body .zoomWindow[style],
html body .zoomWindow[style],
.shopify-product-gallery .zoomWindow,
.shopify-product-gallery .zoomWindow[style] {
    width: 600px !important;
    height: 600px !important;
    min-width: 600px !important;
    min-height: 600px !important;
    max-width: 600px !important;
    max-height: 600px !important;
    border: 2px solid rgb(136, 136, 136) !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
    background-color: rgb(255, 255, 255) !important;
    overflow: hidden !important;
    z-index: 100 !important;
}

/* Force override inline styles with attribute selector */
.zoomWindow[style*="width"],
.zoomWindow[style*="height"],
body .zoomWindow[style*="width"],
body .zoomWindow[style*="height"] {
    width: 600px !important;
    height: 600px !important;
    min-width: 600px !important;
    min-height: 600px !important;
    max-width: 600px !important;
    max-height: 600px !important;
}

.xzoom-preview {
    width: 600px !important;
    height: 600px !important;
    min-width: 600px !important;
    min-height: 600px !important;
    max-width: 600px !important;
    max-height: 600px !important;
    border: solid 2px rgb(136, 136, 136) !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
    background-color: var(--bs-white) !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    overflow: hidden !important;
}

@media (max-width: 1400px) {
    .zoomWindow,
    body .zoomWindow,
    html body .zoomWindow,
    .shopify-product-gallery .zoomWindow {
        width: 700px !important;
        height: 700px !important;
        min-width: 700px !important;
        min-height: 700px !important;
        max-width: 700px !important;
        max-height: 700px !important;
    }
    
    .xzoom-preview {
        width: 700px !important;
        height: 700px !important;
        min-width: 700px !important;
        min-height: 700px !important;
        max-width: 700px !important;
        max-height: 700px !important;
    }
}

@media (max-width: 1200px) {
    .zoomWindow,
    body .zoomWindow,
    html body .zoomWindow,
    .shopify-product-gallery .zoomWindow {
        width: 600px !important;
        height: 600px !important;
        min-width: 600px !important;
        min-height: 600px !important;
        max-width: 600px !important;
        max-height: 600px !important;
    }
    
    .xzoom-preview {
        width: 600px !important;
        height: 600px !important;
        min-width: 600px !important;
        min-height: 600px !important;
        max-width: 600px !important;
        max-height: 600px !important;
    }
}

@media (max-width: 768px) {
    .zoomWindow,
    body .zoomWindow,
    html body .zoomWindow,
    .shopify-product-gallery .zoomWindow {
        width: 500px !important;
        height: 500px !important;
        min-width: 500px !important;
        min-height: 500px !important;
        max-width: 500px !important;
        max-height: 500px !important;
    }
    
    .xzoom-preview {
        width: 500px !important;
        height: 500px !important;
        min-width: 500px !important;
        min-height: 500px !important;
        max-width: 500px !important;
        max-height: 500px !important;
    }
}

.xzoom-gallery {
    margin-left: 0px !important;
    margin-bottom: 0px !important;
}

.product-title {
    font-size: 24px;
    font-weight: 500;
    font-family: var(--font-lexend);
    margin-bottom: 15px;
}

.product-price-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.offer-head {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.offer-text {
    height: 65px;
    overflow: hidden;
    font-size: 14px;
    margin-bottom: 5px;
}

.swiper-wrapper-productview {
    height: 500px;
}

.mySwiper-productview {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper-productview .swiper-slide {
    width: 100%;
    padding: 5px;
}

.mySwiper-productview .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-slide-productview-lg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: solid 1px var(--border-color);
}

.swiper-slide {
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.swiper-slide img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.section-title {
    font-size: 26px;
    font-family: var(--font-lexend);
}

.categories-card {
    text-align: center;
    padding: 10px 0px;
    border-radius: 10px;
    overflow: hidden;
}

.categories-card-text {
    padding: 10px;
}

.categories-card-text h4 {
    font-weight: 300;
    font-size: var(--font-size-16);
    font-family: var(--font-lexend);
    margin-bottom: 5px;
}

.categories-card-text p {
    font-size: 15px;
    color: var(--bs-gray-600);
}


.categories-image {
    height: 120px;
    padding: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-white);
    border-radius: 10px;
}

.brand_div img {
    width: 100%;
    height: 100%;
}

.brands-image {
    height: 100px;
    padding: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--bs-white);
}

.brands-image img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    transition: var(--transition);
    object-fit: contain;
}

.brands-page-image {
    height: 100px;
    padding: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    width: 125px;
}

.brands-page-image img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    transition: var(--transition);
    object-fit: contain;
}


.brands-card {
    text-align: center;
    padding: 10px 0px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}


.brands-page-image:hover img {
    scale: 1.1;
}

.brands-image:hover img {
    scale: 1.1;
}

.brand_div [type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.brand_div {
    height: 35px !important;
    width: 35px !important;
}

.brand_div .form-check-label {
    height: 100% !important;
}

/* IMAGE STYLES */
.brand_div [type=radio]+img {
    cursor: pointer;
    max-height: 35px;
    max-width: 35px;
    object-fit: contain;
}

/* CHECKED STYLES */
.brand_div [type=radio]:checked+img {
    outline: 2px solid var(--primary-color);
}

.selected-brand {
    outline: 2px solid var(--primary-color);
}

.categories-image img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    transition: var(--transition);
    object-fit: contain;
}


.categories-image:hover img {
    scale: 1.1;
}

.fit-content {
    width: fit-content;
}

.lineshadow {
    width: 100%;
    border: solid 0.2px var(--border-color);
}

.viewmorebtn {
    background: black;
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
        rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.viewmorebtn:hover,
.viewmorebtn:active {
    color: var(--primary-color) !important;
    background-color: var(--primary-soft-onhover) !important;
}

.swiper2 {
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--bs-gray-700);
    font-size: 30px;
    transition: var(--transition);
}

.swiper-button-next {
    right: 0px;
    opacity: 1 !important;
}

.swiper-button-prev {
    left: 0px;
    opacity: 1 !important;
}

@media (max-width:991px) {
    .product-title {
        font-size: 20px;
    }
}

@media (min-width:768px) {

    .swiper-button-next {
        right: 20px;
        transition: var(--transition);
        opacity: 0 !important;
    }

    .swiper-arrow:hover .swiper-button-next {
        right: 0;
        transition: var(--transition);
        opacity: 1 !important;
    }

    .swiper-button-prev {
        left: 20px;
        transition: var(--transition);
        opacity: 0 !important;
    }

    .swiper-arrow:hover .swiper-button-prev {
        left: 0;
        transition: var(--transition);
        opacity: 1 !important;
    }
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: "none";
}

.rate {
    float: left;
    align-self: start;
}

.rate:not(:checked)>input {
    position: absolute;
    top: -9999px;
}

.rate:not(:checked)>label {
    float: right;
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 20px;
    color: #ccc;
}

.rate:not(:checked)>label:before {
    content: "★ ";
}

.rate>input:checked~label {
    color: #ffc700;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
    color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
    color: #c59b08;
}

.add-in-cart-btn {
    background: var(--primary-color);
    color: var(--bs-white);
    margin: 5px 0 0 0;
    transition: var(--transition);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border-radius: 5px;
    overflow: hidden;
}

.add-in-cart-btn:hover {
    background: var(--primary-color-onhover);
    color: var(--bs-white);
}

.add-in-cart-btn:active {
    background: var(--primary-color-onhover) !important;
    color: var(--bs-white) !important;
}

.add-in-cart {
    bottom: 0;
    opacity: 1;
    position: relative;
    left: 5%;
    transition: var(--transition);
}

.add-in-cart-btn:hover .add-in-cart {
    bottom: 25px;
    opacity: 0;
    transition: all 0.1s ease-in-out;
}

.add-in-cart-icon {
    position: relative;
    opacity: 0;
    top: 26px;
    right: 40px;
}

.add-in-cart-btn:hover .add-in-cart-icon {
    top: 0;
    transition: var(--transition);
    opacity: 1;
}

.product-img-style3 {
    height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

}

.product-img-style3 {
    height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

}

.card-h-418 {
    width: 250px;
}

.product-img {
    height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-product-img {
    height: 300px;
    width: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-white);
    border-radius: 10px;
}

.dropdown-item:active {
    text-decoration: none;
    background-color: #ffffff !important;
}

@media (max-width:991px) {
    .compare-product-img {
        width: auto;
        max-height: 150px;
    }

    .img-box-h250,
    .product-image-1,
    .product-img {
        height: 170px !important;
        width: 170px !important;
        margin: auto !important;
    }

    .product-discount-label {
        display: none !important;
    }

    .card-price {
        font-size: 18px !important;
    }

    .offer_price {
        font-size: 16px !important;
    }   

    .product-icon-onhover ion-icon {
        font-size: 20px !important;
    }

    .product-icon-spacebtw {
        margin: 7px !important;
    }

    .add-to-fav-btn { 
        position: absolute;
        left: 0px !important;
        top: 0px !important;
    }

    .categorises-container {
        height: 135px !important;
    }

    .explore-btn {
        font-size: 12px;
    }

    .category-body {
        top: 95px !important;
        left: 10px !important;
    }

    .category-body h3 {
        font-size: 12px !important;
    }

    .grid-card-container {
        padding-right: .25rem !important;
        padding-left: .25rem !important;
    }

    .product-img-style3 {
        height: 170px !important;
    }

    .product-image-1 img {
        object-fit: cover !important;
        border-radius: 7px !important;
        width: 170px !important;
        height: 170px  !important;
    }

    .comment-image img {
        height: 60px !important;
        width: 60px !important;
    }

    th.compare-field {
        display: none;
    }

    .compare-table td:before {
        content: attr(data-title);
        display: block;
        margin-bottom: 15px;
        text-transform: capitalize;
        font-family: var(--font-lexend);
        font-weight: 500;
        text-align: center;
        color: var(--bs-secondary-text-emphasis);
    }
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    transition: var(--transition);
    padding: 20px;
    object-fit: contain;
}

.compare-product-img img {
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    transition: var(--transition);
    object-fit: contain;
}

.rating-container .empty-stars {
    color: #aaa;
    font-size: 14px;
    width: 100%;
    display: block;
}

.rating-animate .filled-stars {
    transition: width .25s ease;
    color: #eabe12;
    font-size: 14px;
}

.rating-sm {
    font-size: 14px;
}

.dropdown-menu {
    border: none !important;
    box-shadow: var(--card-shadow);
}

th.compare-field {
    min-width: 200px;
    font-family: var(--font-lexend);
    font-weight: 500;
    text-align: center;
}

td.compare-value {
    color: var(--bs-gray-600);
    border-inline-end: 1px solid var(--border-color);
    text-align: center;
}

.swiper-wid .card {
    width: 100%;
    overflow: hidden;
    transition: var(--transition);
    border-radius: 10px;
    margin: 15px 0px;
}

.mySwiper3 .card:hover {
    transform: translateY(-5px) translateZ(0);
}

.card-temp {
    overflow: hidden;
    transition: var(--transition);
    border-radius: 10px;
}

.card-temp:hover {
    transform: translateY(-5px) translateZ(0);
}

.product-icon-onhover {
    background: rgb(255, 255, 255);
    width: min-content;
    position: absolute;
    right: 0px;
    opacity: 0;
    top: 10px;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    cursor: pointer;
}

.deshboard-onhover ul li {
    padding: 4px;
    color: black;
    width: max-content;
}

.deshboard-onhover ul li:hover {
    color: var(--primary-color);
}

.fixed-icon {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 1;
}

.buy-now-btn .btn {
    border-radius: 30px;
    box-shadow: rgb(38 57 77) 0px 20px 30px -10px;
    padding: 8px 10px;
}

.buy-now-btn {
    z-index: 9999;
    position: fixed;
    bottom: 15px;
    left: 15px;
}

.whatsapp-icon {
    width: 45px;
    height: 45px;
}

.whatsapp-icon .btn {
    padding: 0 !important;
}

.whatsapp-icon .btn img {
    max-width: 100%;
    max-height: 100%;
}


.deshboard-onhover {
    background: rgb(255, 255, 255);
    width: min-content;
    position: absolute;
    top: 50px;
    padding: 10px;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    cursor: pointer;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.profile .dropdown-toggle::after {
    display: none !important;
}


.product-icon-onhover ion-icon {
    font-size: 26px;
}

.product-icon-spacebtw {
    margin: 12px;
}

.product-banner-container {
    height: 428px;
}

.product-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    cursor: pointer;
}

.product-banner:hover {
    scale: 1.1;
}

.product-image-1 {
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card:hover .product-icon-onhover {
    right: 10px;
    opacity: 1;
}

.card:hover {
    box-shadow: var(--card-shadow);
}

.box-shadow:hover {
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.fa-icon-hover:hover {
    opacity: 0.5;
    transition: var(--transition);
}

.ion-icon-hover:hover {
    opacity: 0.5;
    transition: var(--transition);
}

.bg-gradient-design {
    background: radial-gradient(circle, rgba(242, 130, 219, 0.908000700280112) 40%, rgba(112, 176, 252, 0.8939950980392157) 100%);
}

.product-background-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-background-img img {
    width: 100%;
}

.banner-heading {
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: var(--font-lexend);
    ;
}

.banner-paragraph {
    line-height: 34px;
    font-size: 24px;
    color: var(--bs-gray-900);
}

.countdown li {
    display: inline-block;
    width: 90px;
    font-size: 16px;
    list-style-type: none;
    margin: 5px;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--bs-white);
    border-radius: 10px;
    padding: 4px 0px;
    color: #878787;
    font-family: var(--font-lexend);
    font-weight: 600;
}

.countdown li span {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #1c1d1d;
}

@media all and (max-width: 768px) {
    .countdown li {
        font-size: calc(1.125rem * var(--smaller));
    }

    .countdown li span {
        font-size: calc(3.375rem * var(--smaller));
    }
}

@media (max-width: 1024px) {
    .banner-heading {
        font-size: 28px;
    }

    .banner-paragraph {
        font-size: 16px;
    }

    .countdown li {
        width: 70px;
    }
}

@media (max-width: 767px) {
    .row {
        justify-content: center;
    }

    .sale-section {
        margin-top: 10px;
    }

    .countdown li {
        width: 45px;
    }

    .viewmorebtn {
        font-size: 12px;
    }

    .section-title {
        font-size: 20px;
    }
}

@media (max-width: 425px) {
    .countdown li {
        font-size: 14px;
        width: 60px;
        border-radius: 7px;
    }
}

.mySwiper4 .swiper-slide {
    background: var(--bs-white);
}

.card5 {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: var(--bs-white);
    border-radius: 10px;
    min-height: 123px;
}

.card5 img {
    width: 100px !important;
    height: 100px !important;
    padding: 10px;
}

.swiper-slide5 {
    width: 300px !important;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide5 img {
    display: block;
    height: 100%;
}

.mySwiper-preview {
    height: 400px;
    width: 400px;
}

.mySwiper-thumb {
    height: 400px;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper-thumb .swiper-slide {
    width: 100%;
    opacity: 0.7;
    padding: 5px;
    border: solid 1px var(--border-color);
    border-radius: 6px;
    background: var(--bs-white);
}

.mySwiper-thumb .swiper-slide-thumb-active {
    opacity: 1;
}

.card6 {
    width: 100%;
    border-radius: 10px;
    background-color: var(--bs-white);
    margin: 15px 0;
}

.card6-img {
    border-radius: 10px;
    height: 214px;
    width: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
}

.card-price-section {
    font-size: 25px;
}

.blogs {
    background-color: var(--bs-white);
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    margin-bottom: 24px;
}

.blogs p {
    height: 82px;
    font-size: 14px;
    overflow: hidden;
}

.blog-img-box {
    overflow: hidden;
    height: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-img-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.read-more-btn {
    background: var(--bs-white);
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    text-align: start;
    padding: 0;

}

.card-testimonial {
    background-color: var(--primary-soft);
    height: auto;
    transition: var(--transition);
    border-radius: 10px;
    padding: 0px 16px;
}

.card-testimonial p {
    height: auto;
}

.user-img {
    width: 100px;
    height: 100px;
    margin: 16px 0 0 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
}

.user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-media-icon {
    color: var(--mahalaxmi-white);
    background: transparent;
    padding: 4px;
    border-radius: 8px;
    margin: 0 1px;
    font-size: 24px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-media-icon:hover {
    color: var(--mahalaxmi-gold);
    background: rgba(201, 169, 110, 0.1);
    transform: translateY(-2px);
}

.style-none {
    border: none;
    color: var(--bs-white);
    background: none;
}

.style-none:hover {
    border: none;
    color: var(--bs-white);
    background: none;
}

.nav-item p {
    color: var(--bs-gray-600);
}

/* Dark Footer Styles */
.footer-dark {
    background: #000000 !important;
    color: #ffffff !important;
}

.footer-dark * {
    color: #e0e0e0 !important;
}

.footer-dark h5 {
    color: #ffffff !important;
    font-weight: 600;
}

.footer-dark p {
    color: #b0b0b0 !important;
}

.footer-dark a {
    color: #b0b0b0 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-dark a:hover {
    color: #ffffff !important;
}

.footer-dark .nav-item i,
.footer-dark .fa,
.footer-dark ion-icon {
    color: #ffffff !important;
}

.footer-dark .border-top,
.footer-dark .border-bottom {
    border-color: #333333 !important;
}

.footer-logo {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    max-height: 100%;
    max-width: 100%;
}

.copyright-section {
    background: #0f0f0f !important;
    color: #b0b0b0 !important;
    font-size: 12px;
    padding: 8px 15px;
    text-align: center;
    margin: 48px 0 0 0;
}

.copyright-section a {
    color: #b0b0b0 !important;
}

.copyright-section a:hover {
    color: #ffffff !important;
}

.footer-text-section h5 {
    font-family: var(--font-lexend);
    font-size: 18px;
    font-weight: 600;
    color: #ffffff !important;
}

.footer-text-section p {
    font-size: 14px;
    color: #b0b0b0 !important;
    line-height: 35px;
    transition: var(--transition);
}

.footer-text-section p:hover {
    color: #ffffff !important;
}

.footer-icons-section {
    border-right: solid 1px #333333 !important;
}

.footer-icons-section h5 {
    color: #ffffff !important;
}

.social-media-icon {
    color: #b0b0b0 !important;
    font-size: 24px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-media-icon:hover {
    color: #ffffff !important;
}

@media (max-width: 1199px) {
    .product-banner-container {
        display: none !important;
    }

    .shopingicon {
        padding: 14px 13px;
    }

    .searchbar {
        font-size: 14px;
    }

    .searchcontainer {
        width: 100%;
        background: var(--primary-soft);
        border-radius: 0;
        padding: 10px 12px;
    }

    .searchicon {
        right: 16px;
        top: 13px;
        padding: 6px;
    }
}

@media (max-width: 991px) {
    .footer-icons-section {
        border-right: none;
        border-bottom: solid 1px #333333 !important;
        text-align: center;
        padding-bottom: 48px;
    }

    .footer-text-section {
        padding-top: 48px;
    }

    .footer-logo {
        margin: auto;
    }
}

@media(max-width:767px) {
    .display-sm-none {
        display: none;
    }
}

@media(max-width:576px) {
    .display-sm-none {
        display: none !important;
    }

    .copyright-section {
        font-size: small;
    }
}

@media(max-width:500px) {
    .card-body-6 {
        font-size: 13px;
    }

    .card6-img {
        width: 140px;
    }
}

@media (max-width: 424px) {
    .font-icon-lg {
        font-size: 1.25em !important;
        line-height: .05em;
        vertical-align: -0.075em;
    }

    .company-logo {
        width: 160px;
        height: 100px;
    }
}

@media(max-width:374px) {
    .card-body-6 {
        font-size: 12px;
    }

    .card6-img {
        width: 122px;
    }
}

@media (max-width: 357px) {
    .card-body small {
        font-size: 14px;
    }

    .display-xs-none {
        display: none;
    }

    .col-xs-12 {
        width: 100%;
    }
}

.jssocials-share {
    padding: 0 5px;
}

/* product detail page css */
.imageThumbnail li {
    padding: 5px;
    border: solid 1px var(--border-color);
    cursor: pointer;
}

.mySwiper-productview .swiper-slide {
    background: none;
}

.product-img-section {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.plus-minus-input {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
}

.input-group-field {
    text-align: center;
    width: 50px;
    padding: 8px;
    border: solid 1px var(--border-color);
    margin: 0 1px;
    border-right: none;
}

input.input-group-field:focus-visible,
input.input-group-field:focus {
    outline: none;
    border-top: solid 1px var(--border-color);
    border-bottom: solid 1px var(--border-color);
}

.plus-minus-input .input-group-button .circle {
    padding: 5px;
    border: solid 1px #80808059;
    background-color: var(--bs-white);
    transition: var(--transition);
}

.plus-minus-input:hover .input-group-button:hover .circle:hover {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

.minus-btn {
    border-radius: 6px 0 0 6px;
}

.plus-btn {
    border-radius: 0 6px 6px 0;
}

.add-btn {
    background: var(--primary-color);
    color: var(--bs-white);
    transition: var(--transition);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border-radius: 5px;
}

.add-btn:hover {
    color: var(--bs-white);
    background-color: var(--primary-color-onhover);
}

.add-btn:active {
    color: var(--bs-white) !important;
    background-color: var(--primary-color-onhover) !important;
    border-color: var(--primary-color-onhover) !important;
}


.buynow-btn {
    background: var(--leaf-color);
    color: var(--bs-white);
    border-radius: 5px;
    transition: var(--transition);
}

.buynow-btn:hover {
    color: var(--bs-white);
    background-color: rgb(100, 155, 46);
}

.buynow-btn:active {
    background-color: rgb(99 151 45) !important;
    color: var(--bs-white) !important;
}

.offer-section {
    border-top: solid 1px var(--border-color);
    border-bottom: solid 1px var(--border-color);
}

.offer-detail {
    border: solid 1px var(--border-color);
    border-radius: 10px;
    padding: 10px;
    width: 155px;
}

.offer-detail a:hover {
    color: #dc3545;
}

.delivery-service {
    border-top: solid 1px var(--border-color);
    border-bottom: solid 1px var(--border-color);
}

.delivery-service ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.delivery-service ul li {
    text-align: center;
}

.delivery-service ul li img {
    width: 30px;
}

.delivery-service ul li p {
    font-size: 12px;
    font-weight: 500;
    margin: 10px 0;
    cursor: default;
}

.compare-share-btn {
    border-bottom: solid 1px var(--border-color);
}

.compare-share-btn li {
    display: flex;
    align-items: center;
    border: solid 1px var(--border-color);
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
}

.compare-share-btn li a {
    display: flex;
    color: var(--nav-color);
    text-decoration: none;
}

.compare-share-btn li:hover {
    background-color: #f4f4f5;
}

.compare-share-btn img {
    width: 20px;
    height: 20px;
}

.compare-share-btn p {
    margin: 0 0 0 5px;
    font-size: 14px;
    font-weight: 600;
}

.product-add-section p {
    margin-bottom: 10px;
    font-size: 14px;
}

.show-btn,
.hide-btn {
    font-size: 14px;
}

.show-btn img,
.hide-btn img {
    width: 13px;
}

.list-dot {
    list-style: unset;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border: solid 1px var(--border-color);
    padding: 10px;
}

.item-detail li {
    font-size: 14px;
    margin: 10px 0;
}

.item-detail img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.item-detail p {
    font-size: 14px;
    margin: 0;
    color: var(--bs-gray-600);
    font-weight: 500;
}

.arrow {
    width: 15px;
}

.review-line {
    width: 35vw;
    border-radius: 15px;
    margin: 0 10px;
}

.progress,
.progress-stacked {
    height: 10px !important;
}

.rating-disabled .rating-stars {
    cursor: pointer !important;
}

.customar-review,
.post-rating {
    border-top: solid 1px var(--border-color);
    border-bottom: solid 1px var(--border-color);
}

.rating-input {
    display: none !important;
}

.rating-xs {
    font-size: 16px;
    margin-bottom: 5px;
}

.rating-container .rating-stars:focus {
    outline: none;
}

.review-textarea {
    border-bottom: solid 1px var(--border-color);
}

textarea {
    width: 100%;
    padding: 10px;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--bs-white);
    border-radius: 5px;
    transition: var(--transition);
    margin: 10px 10px 0 0;
    padding: 5px 20px;
}

.submit-btn:hover {
    color: var(--bs-white);
    background-color: var(--primary-color-onhover);
}

.submit-btn:active {
    background: var(--primary-color-onhover) !important;
    color: var(--bs-white) !important;
}

.product-img-section-md {
    position: relative;
    top: 0;
    z-index: 1;
    align-self: flex-start;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.mobile-sticky-btn {
    position: sticky;
    bottom: 0;
    z-index: 9;
}

.product-reviews-display {
    padding: 24px 0;
}

.comment-text {
    padding: 20px;
    border: solid 1px var(--border-color);
    border-radius: 10px;
    background: var(--bs-white);
    min-height: 137px;
}

.comment-title {
    margin: 0px;
    font-weight: 600;
}

.comment-time {
    margin: 0px;
    font-weight: 500;
    color: var(--bs-gray-600);
}

.discription {
    font-size: 15px;
    color: var(--bs-gray-700);
}

.comment-image img {
    border-radius: 10px;
    height: 100px;
    width: 100px;
}

/* Silver Empire Assurance Section -  Style */
.assurance-section { 
    background: #ffffff !important;
}

.assurance-brand {
    padding-right: 40px;
}

.assurance-title {
    font-family: var(--font-playfair, 'Playfair Display', serif);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.assurance-title .brand-name {
    color: #000000;
    display: block;
}

.assurance-title .assurance-text {
    color: #8B4513;
    display: block;
}

.assurance-tagline {
    font-family: var(--font-montserrat, 'Montserrat', sans-serif);
    font-size: 16px;
    color: #666666;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

.assurance-box {
    text-align: center;
    padding: 20px 15px;
}

.assurance-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.assurance-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assurance-icon svg {
    width: 100%;
    height: 100%;
}

.assurance-icon svg path.cls-1 {
    fill: #C9A96E;
}

.assurance-box-title {
    font-family: var(--font-playfair, 'Playfair Display', serif);
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.assurance-box-text {
    font-family: var(--font-lora, 'Lora', serif);
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 991px) {
    .assurance-section {
        padding: 60px 0 !important;
    }
    
    .assurance-brand {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .assurance-title {
        font-size: 36px;
        align-items: center;
    }
    
    .assurance-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .assurance-section {
        padding: 40px 0 !important;
    }
    
    .assurance-title {
        font-size: 28px;
    }
    
    .assurance-tagline {
        font-size: 14px;
    }
    
    .assurance-icon {
        width: 70px;
        height: 70px;
    }
    
    .assurance-box-title {
        font-size: 18px;
    }
    
    .assurance-box-text {
        font-size: 13px;
    }
}

/* Modern Info Boxes Redesign - Keep for backward compatibility */
.freedel-sec { 
    background: #f8f9fa !important;
}

.info-box-wrapper {
    height: 100%;
    padding: 15px;
}

.info-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    border-color: #dc3545;
}

.info-box:hover::before {
    transform: scaleX(1);
}

.icon-box-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.info-box-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.svg-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    padding: 18px;
    box-shadow: 0 4px 16px rgba(220, 53, 69, 0.25);
    transition: all 0.3s ease;
}

.info-box:hover .svg-wrapper {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.35);
}

.svg-wrapper svg {
    width: 44px;
    height: 44px;
    filter: brightness(0) invert(1);
}

.info-box-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 12px 0;
    color: #1a1a1a !important;
    font-family: var(--font-playfair, 'Playfair Display', serif);
    letter-spacing: -0.5px;
}

.info-box-inner {
    margin-top: 8px;
}

.info-box-inner p {
    font-size: 15px;
    margin: 0;
    text-align: center;
    color: #666666 !important;
    line-height: 1.6;
    font-family: var(--font-lora, 'Lora', serif);
}

/* Responsive Design */
@media (max-width: 991px) {
    .freedel-sec {
        padding: 40px 0 !important;
    }
    
    .info-box {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .svg-wrapper {
        width: 70px;
        height: 70px;
        padding: 15px;
    }
    
    .svg-wrapper svg {
        width: 40px;
        height: 40px;
    }
    
    .info-title {
        font-size: 18px;
    }
    
    .info-box-inner p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .freedel-sec {
        padding: 30px 0 !important;
    }
    
    .info-box {
        padding: 25px 15px;
    }
    
    .svg-wrapper {
        width: 65px;
        height: 65px;
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .svg-wrapper svg {
        width: 35px;
        height: 35px;
    }
    
    .info-title {
        font-size: 17px;
    }
    
    .info-box-inner p {
        font-size: 13px;
    }
}

.promo-nav {
    background-color: #464b4f;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-nav-text {
    color: var(--bs-white);
    margin: 0;
    text-transform: capitalize;
    font-weight: 500;
}


@media (max-width:1199px) {
    .product-img-section {
        display: block;
    }
}

@media (max-width: 1024px) {
    .offer-text {
        font-size: 13px;
    }

    .delivery-service ul li img {
        width: 60px;
    }

    .delivery-service ul li p {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .info-title {
        font-size: 16px;
    }

    .delivery-service ul li img {
        width: 50px;
    }

    .delivery-service ul li p {
        font-size: 12px;
    }
}

@media (max-width: 767px) {

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

    .info-box-inner p {
        font-size: 10px;
    }

    .review-line {
        width: 70%;
    }

    .add-btn {
        border-radius: 0;
    }

    .buynow-btn {
        border-radius: 0;
        width: 50%;
    }

    .create-review-section {
        padding-top: 48px;
        border-top: solid 1px var(--border-color);
    }

    .customar-review-view {
        padding-bottom: 48px;
    }

    .product-price-title {
        font-size: 24px;
    }

    .element-title {
        font-size: 20px;
    }

    .rating-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .review-line {
        width: 65%;
    }

    .offer-text {
        font-size: 13px;
    }

    .info-box-inner p {
        font-size: 13px;
        margin-bottom: 22px;
    }
}

@media (max-width: 445px) {
    .delivery-service ul li img {
        width: 45px;
    }
}

@media (max-width: 425px) {
    .product-title {
        font-size: 16px;
    }
}

@media (max-width: 375px) {
    .offer-text {
        font-size: 10px;
    }

    .offer-head {
        font-size: 12px;
    }

    .offer-btn {
        font-size: 12px;
    }

    .delivery-service ul li img {
        width: 40px;
    }

    .delivery-service ul li p {
        font-size: 10px;
    }
}

.dropdown-item input {
    width: 15% !important;
    vertical-align: middle;
}

/* product-list-view page css */
.nav-link {
    color: var(--bs-black) !important;
    transition: color .05s ease-in-out, background-color .05s ease-in-out, border-color .05s ease-in-out !important;
}

.filter-titles {
    background: var(--bs-gray-100) !important;
}

.nav-pills .nav-link {
    border-radius: 0 !important;
    text-align: start;
}

.nav-link.active {
    color: var(--primary-color) !important;
    background-color: var(--bs-white) !important;
}

.tab-content>.tab-pane {
    padding: 10px 0 0 0;
}

.form-check-label {
    color: var(--bs-gray-700);
}

.offcanvas-bottom {
    height: 45vh !important;
}

.separator {
    display: flex;
    justify-content: center;
    align-items: center;
}

.thirdparty-login {
    height: 40px;
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px;
    border: solid 1px var(--border-color);
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
}

.thirdparty-login:hover {
    background-color: var(--bs-gray-200);
}

.thirdparty-login img {
    max-height: 100%;
    max-width: 100%;
}

.mobile-app-wrapper img {
    max-height: 100%;
    max-width: 100%;
}

.separator span {
    height: 1px;
    width: 50%;
    background: var(--bs-gray-400);
    margin: 0 7px;
}

.apply-btn {
    width: 130px;
    height: fit-content;
    padding: 5px;
    border: solid 1px var(--border-color);
    background: var(--primary-color);
    color: var(--bs-white);
    border-radius: 10px;
}

.apply-btn:active {
    background: var(--primary-color-onhover);
}

.product-avilable small {
    color: #736767;
    line-height: 20px;
    font-size: 12px;
}

button ion-icon {
    vertical-align: middle;
}

.select-btn {
    border: solid 1px var(--border-color);
    border-radius: 10px;
}

.filter-section h5 {
    font-size: 15px;
    font-weight: 600;
}

.filter-section {
    height: fit-content;
    background: #ffffff !important;
    border-radius: 10px;
}

.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 0;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 4px;
}

.slider-box {
    width: 90%;
    margin: 25px auto
}

.breadcrumb {
    background: #ffff;
    border-radius: 10px;
    padding: 10px;
}

label,
input {
    border: none;
    display: inline-block;
    margin-right: -4px;
    vertical-align: top;
    width: 100%
}

input {
    width: 70%
}

.toggle {
    transition: var(--transition);
}

.grid-list-icon-box:hover {
    background: #e5e7e8;
}

.productlist-title-section {
    align-items: center;
}

.productlist-title-section img {
    width: 40px;
    height: 40px;
}

.list-view-card img {
    height: 100%;
    object-fit: contain;
}

.listview-text ul li {
    color: var(--bs-gray-600);
    font-size: 14px;
}

.list-view-card {
    position: relative;
    min-height: 200px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    transform: none !important;
}

.list-view-card .row {
    min-height: 200px;
    margin-right: 0px;
    margin-left: 0px;
}

.accordion-button {
    background-color: #ffffff;
    box-shadow: none !important;
}

.accordion-button :focus {
    box-shadow: none;
}

.form-check-input:focus {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, .25)
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--primary-soft);
}

.page-link {
    color: var(--nav-color);
}

.page-link:focus {
    box-shadow: none;
}

.breadcrumb-item a {
    color: var(--primary-color);
}

.form-select {
    cursor: pointer;
}

.form-select:focus {
    border-color: solid 1px var(--border-color);
    outline: 0;
    box-shadow: none;
}

.rating-div {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    cursor: pointer;

}

.add-to-fav-btn .ion-icon {
    color: #ced4da;
    transition: var(--transition);
    font-size: 28px;
}

.add-to-fav-btn .heart {
    color: red;
}

.add-to-fav-btn .heart-outline:hover {
    color: #b1b7bc;
}

.filtersection-slider {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px var(--border-color);
}

.selected {
    color: red !important;
}

.offcanvas-header {
    background-color: var(--bs-white) !important;
    border: solid 1px var(--border-color);
}

.btn-check:checked,
.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    border: none;
}

/* .compare-btn {
    border: solid 1px var(--border-color);
    border-radius: 10px;
}

.compare-btn-selected {
    border-color: #1c61e7;
    color: #1c61e7;
}

.compare-btn-selected:hover {
    color: #1c61e7;
} */

.product-filter-mobilescreen {
    border-top: solid 1px var(--border-color);
    border-bottom: solid 1px var(--border-color);
}

.product-filter-mobilescreen button {
    border-radius: 0;
}

.product-filter-mobilescreen .sortby-btn {
    border-right: solid 1px var(--border-color) !important;
}

.product-filter-mobilescreen ion-icon {
    font-size: 18px;
}

.offcanvas-end {
    width: 350px !important;
    height: 100%;
}

.offcanvas {
    z-index: 1051;
}

@media (max-width: 768px) {
    .productlist-md .card {
        box-shadow: none;
    }
}

@media (max-width: 445px) {
    .list-view-card .card-body {
        font-size: 12px;
    }

    .list-view-card h5 {
        font-size: 16px;
    }

    .list-view-card h6 {
        font-size: 14px;
    }
}

@media (max-width: 425px) {
    .filtersection-slider button {
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    .list-view-card .card-body {
        font-size: 10px;
    }

    .list-view-card h5 {
        font-size: 15px;
    }

    .list-view-card h6 {
        font-size: 13px;
    }
}

/* product grid view page CSS*/
.grid-card-container {
    margin-bottom: 24px;
}

.grid-view-card:hover {
    box-shadow: none;
    transform: none;
}

.grid-view-card p {
    color: #5a5c60;
}

.grid-view-card .fa-star {
    font-size: 12px;
}

/* register and login page CSS*/
.Register-text {
    border-left: solid 1px var(--border-color);
}

.form-control {
    border-radius: 10px !important;
}

.form-lable {
    margin: 0;
    color: var(--bs-gray-600);
    font-size: 15px;
}

.password-insert {
    position: relative;
    border: none;
}

.password-insert input {
    border: solid 1px var(--border-color);
}

.eye-icons {
    height: 20px;
    position: absolute;
    right: 8px;
}

.password-insert ion-icon {
    font-size: 18px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.form-control input {
    outline: none;
    padding: 8px 12px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 40px var(--bs-white) inset !important;
}

.eye-btn {
    cursor: pointer;
}

.Register-btn {
    width: 100%;
}

.Register-btn:hover {
    background: var(--primary-color-onhover);
    color: var(--bs-white);
}

.Register-text p {
    color: var(--bs-gray-600);
    font-size: 14px;
}

.login-register-btn {
    background-color: var(--primary-soft);
    color: var(--primary-color);
    border-radius: 10px;
    padding: 10px 24px;
    transition: var(--transition);
}

.login-register-btn:hover {
    background-color: var(--primary-soft);
    color: var(--primary-color);
}

.login-register-btn:active {
    background-color: var(--primary-soft) !important;
    color: var(--primary-color) !important;
    border: none;
}

.wd-login-divider p {
    border-bottom: solid 1px var(--border-color);
    width: 48%;
    margin: 0 10px;
}

@media(max-width:767px) {
    .Register-text {
        border-left: none;
    }
}

/* forget password page css */
.forgetpassword-form {
    width: 50%;
}

@media(max-width:767px) {
    .forgetpassword-form {
        width: 100%;
    }
}

/* my account css */

.myaccount-navigation {
    border-right: solid 1px var(--border-color);
}

.padding-16-30 {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 16px;
    padding-top: 16px;
}

.myaccount-navigation ul a {
    color: var(--nav-color);
}

.myaccount-navigation ul li {
    padding: 10px 15px;
    margin: 5px 0;
    transition: var(--transition);
    cursor: pointer;
    font-weight: 600;
}

.myaccount-navigation ul li:hover {
    background: var(--background-light-gray);
    border-radius: 10px;
}

.myaccount-navigation-link-selected {
    background: var(--primary-soft);
    border-radius: 10px;
}

.myaccount-navigation h4 {
    color: var(--nav-color);
    padding: 0px 10px 10px 15px;
}

.dashboard-text {
    color: var(--light-gray-text);
}

.dashboard-text p {
    font-size: 18px;
    color: var(--bs-gray-600);
}

.dashboard-text a {
    color: var(--nav-color);
}

.ionicon-receipt-outline {
    display: inline-block;
    -webkit-mask: url('../ionicons/dist/svg/receipt-outline.svg');
    background: currentColor;
    color: var(--bs-gray-600);
    height: 48px;
    width: 48px;
}

.ionicon-notifications-outline {
    display: inline-block;
    -webkit-mask: url('../ionicons/dist/svg/notifications-outline.svg');
    background: currentColor;
    color: var(--bs-gray-600);
    height: 48px;
    width: 48px;
}

.ionicon-location-outline {
    display: inline-block;
    -webkit-mask: url('../ionicons/dist/svg/location-outline.svg');
    background: currentColor;
    color: var(--bs-gray-600);
    height: 48px;
    width: 48px;
}

.ionicon-person-circle-outline {
    display: inline-block;
    -webkit-mask: url('../ionicons/dist/svg/person-circle-outline.svg');
    background: currentColor;
    color: var(--bs-gray-600);
    height: 48px;
    width: 48px;
}

.ionicon-heart-outline-2 {
    display: inline-block;
    -webkit-mask: url('../ionicons/dist/svg/heart-outline.svg');
    background: currentColor;
    color: var(--bs-gray-600);
    height: 48px;
    width: 48px;
}

.ionicon-map-outline {
    display: inline-block;
    -webkit-mask: url('../ionicons/dist/svg/map-outline.svg');
    background: currentColor;
    color: var(--bs-gray-600);
    height: 48px;
    width: 48px;
}

.ionicon-wallet-outline {
    display: inline-block;
    -webkit-mask: url('../ionicons/dist/svg/wallet-outline.svg');
    background: currentColor;
    color: var(--bs-gray-600);
    height: 48px;
    width: 48px;
}

.ionicon-cash-outline {
    display: inline-block;
    -webkit-mask: url('../ionicons/dist/svg/cash-outline.svg');
    background: currentColor;
    color: var(--bs-gray-600);
    height: 48px;
    width: 48px;
}

.ionicon-log-out-outline {
    display: inline-block;
    -webkit-mask: url('../ionicons/dist/svg/log-out-outline.svg');
    background: currentColor;
    color: var(--bs-gray-600);
    height: 48px;
    width: 48px;
}

.dashboard-links-container div:hover i {
    color: var(--primary-color);
    transition: all .3s ease
}

.dashboard-links-container {
    padding: 0 10px;
    margin-bottom: 20px;
}

.dashboard-links-container div {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 0px 0px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    text-align: center;
    border-radius: 10px;
}


@media(max-width:767px) {
    .myaccount-navigation {
        border-right: none;
    }
}

/* order page CSS */
.order-card {
    max-width: 100% !important;
}

.order-card:hover {
    transform: none;
}

.address-link {
    color: var(--bs-gray-700);
    font-weight: bold;
    height: fit-content;
}

.img-box-150 {
    height: 150px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box-200 {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box-250 {
    height: 250px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box-h250 {
    height: 220px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.img-box-350 {
    height: 350px;
    width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box-400 {
    height: 400px;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box-80 {
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box-60 {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box-25 {
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box-100 {
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box-100 img,
.img-box-150 img,
.img-box-200 img,
.img-box-80 img,
.img-box-250 img,
.img-box-400 img,
.img-box-350 img,
.img-box-25 img,
.img-box-60 img {
    max-width: 100%;
    max-height: 100%;
}

.img-box-h250 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gray-700 {
    color: var(--bs-gray-700);
}

.gray-500-hover:hover {
    color: var(--bs-gray-500);
}

.password-update-section {
    border: solid 1px var(--border-color);
    border-radius: 10px;
}

.wishlist-card {
    transform: none !important;
}

.wishlist-product-actions {
    position: relative;
}

.wishlist-product-remove a {
    font-size: 17px;
    transition: var(--transition);
}

.wishlist-product-checkbox {
    position: absolute;
    right: 10px;
}

.wishlist-product-container {
    border: solid 1px var(--border-color);
    border-top: none;
    padding: 10px;
    border-radius: 0 0 10px 10px;
}

.wishlist-group-head {
    font-size: 20px;
    border: solid 1px var(--border-color);
    padding: 15px;
    border-radius: 10px 10px 0 0;
}

.jssocials-share img {
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.7;
    margin: 0 2px;
    width: 20px;
}

.media-icons ion-icon:hover {
    color: var(--bs-gray-700);
}

.wishlist-bulk-action {
    display: flex;
    font-size: 18px;
    flex-wrap: wrap;
    align-items: center;
    height: 0px;
    padding: 0 25px;
    background: var(--background-light-gray);
    transition: all 0.25s ease;
}

.wishlist-visible {
    height: 40px;
}

.wishlist-btn {
    transition: all 0.15s ease;
    opacity: 0;
    cursor: pointer;
    color: var(--bs-gray-700);
}

.wishlist-btn:hover {
    color: var(--bs-gray-600);
}

.wishlist-btn-visible {
    opacity: 1;
}

.wishlist-bulk-action ion-icon {
    vertical-align: middle;
}

.wishlist-bulk-action a {
    color: var(--bs-gray-700);
}

.wishlist-bulk-action a:hover {
    color: var(--bs-gray-600);
}

@media(max-width:425px) {
    .wishlist-bulk-action {
        font-size: 14px;
    }
}

@media(max-width:360px) {
    .wishlist-bulk-action {
        font-size: 10px;
    }
}

/* categorises page css */
.categorises-container {
    position: relative;
    width: 100%;
    height: 250px;
    cursor: pointer;
    border-radius: 10px;
}

.categorises-container-product {
    position: relative;
    width: 100%;
    height: 130px;
    cursor: pointer;
    border-radius: 10px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(4, 4, 4, 1) 2%, rgba(255, 255, 255, 0) 50%);
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.categorises-banner-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.categorises-banner-img img {
    width: 100%;
    height: 100%;
    transition: scale 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96);
    object-fit: cover;
}

.categorises-container:hover img {
    scale: 1.1;
}

.categorises-container-product:hover img {
    scale: 1.1;
}

.category-body {
    position: absolute;
    top: 180px;
    left: 40px;
    color: var(--bs-white);
}

.category-body h3 {
    position: relative;
    margin-bottom: 5px;
    font-family: var(--font-lexend);
    font-weight: 500;
    top: 0;
    transition: all 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.category-body-product {
    position: absolute;
    top: 100px;
    left: 10px;
    color: var(--bs-white);
}

.category-body-product h6 {
    position: relative;
    margin-bottom: 5px;
    font-family: var(--font-lexend);
    font-weight: 500;
    top: 0;
    transition: all 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.categorises-container:hover .category-body h3 {
    top: -33px;
}

.categorises-container-product:hover .category-body-product h6 {
    top: -20px;
}

.explore-btn {
    position: relative;
    top: -8px;
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    ;
}

.categorises-container:hover .explore-btn {
    top: -33px;
    opacity: 1;
}

.banner-cat-btn {
    position: absolute;
    top: 75%;
    right: 40%;
}

.modal-title {
    font-family: var(--font-lexend);
    font-size: 20px;
    font-weight: 500;
}

.cart-modal-card {
    position: relative;
    padding: 20px 15px 0;
    border-bottom: solid 1px var(--border-color);
    border-radius: 0;
    transition: var(--transition);
}

.product-sm-removal {
    position: absolute;
    top: -3px;
    right: 25px;
}

.product-sm-removal button {
    padding: 0;
}

.product-sm-removal ion-icon {
    background: white;
    padding: 3px;
    border-radius: 7px;
}

.cart-modal-card:hover {
    box-shadow: none;
    transform: none;
    background: var(--bs-gray-100);
}

.cart-modal-card:hover .card-title {
    color: var(--bs-gray-600);
    transition: var(--transition);
}

.spinner-border {
    width: 20px;
    height: 20px;
    font-size: 10px;
}

.card-modal-plus-minus-btn {
    padding: 5px 3px !important;
    border: solid 1px #80808059 !important;
    background-color: var(--bs-white);
    color: var(--bs-gray-600);
    transition: var(--transition) !important;
}

.input-field-cart-modal {
    text-align: center !important;
    width: 35px !important;
    margin: 0 -1px;
    padding: 5px 3px !important;
    color: var(--bs-gray-600);
    border: solid 1px var(--border-color) !important;
    border-right: none !important;
}

.plus-minus-input:hover .input-group-button:hover .circle:hover {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

.cart-modal-pricing {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
}

.cart-modal-card .card-body {
    padding: 0px;
}

.cart-img-box {
    height: 110px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-fluid {
    max-width: 100%;
    max-height: 100%;
}

.subtotal-section {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-top: solid 1px var(--border-color);
    border-bottom: solid 1px var(--border-color);
}

.subtotal-section h5 {
    margin: 0px;
    font-weight: 600;
}

.cart-modal-checkout-section {
    padding: 15px;
}

.view-cart-btn {
    background: var(--primary-soft);
    color: var(--primary-color);
}

.view-cart-btn:hover {
    color: var(--primary-color);
    background-color: var(--primary-soft);
}

.quickview-card:hover {
    box-shadow: none !important;
    transform: none !important;
}

.quickview-title {
    font-size: 23px;
    height: 32px !important;
    font-family: var(--font-lexend);
}

.quickview-product-brands {
    font-size: 14px;
    font-weight: 500;
    color: var(--bs-gray-600);
    margin-bottom: 5px;
}

.rating-review-text {
    margin: 0;
    font-size: 14px;
    color: var(--bs-gray-600);
}

.quickview-pricing-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quickview-price-cancle {
    text-decoration: line-through;
    color: var(--bs-gray-600);
    font-size: 16px;
    margin-bottom: 5px;
}

.quickview-pricing {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 23px;
    margin-bottom: 5px;
}

.posted_in {
    padding: 20px 0 0 0;
    border-top: solid 1px var(--border-color);
    margin-bottom: 5px;
}

.posted_in a {
    color: var(--bs-gray-600);
}

.category-lable {
    font-weight: 600;
}

.view-details-btn {
    position: absolute;
    color: var(--bs-white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    bottom: -10px;
    z-index: 11;
    width: 100%;
    transition: var(--transition);
    opacity: 0;
}

.quickview-img-section {
    position: relative;
}

.quickview-img-section:hover .view-details-btn {
    bottom: 0px;
    opacity: 1;
}

.quickview-close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 15;
    font-size: 14px;
    width: 30px;
    height: 30px;
    border: none;
    background: var(--primary-color);
    color: var(--bs-white);
    border-radius: 8px;
    overflow: visible !important;
    transition: var(--transition);
}

.quickview-close-btn:hover {
    background: var(--primary-color-onhover);
    transition: var(--transition);
}

.quickview-close-btn>ion-icon {
    transition: all 250ms ease-in-out;
}

.quickview-close-btn:hover>ion-icon {
    font-size: 20px;
    transform: rotate(90deg);
}

.quickview-color-variant {
    border-collapse: inherit;
}

.color-swatch {
    border: solid 1px var(--border-color);
    padding: 2px;
    border-radius: 50%;
    width: fit-content;
    transition: var(--transition);
}

.color-swatch-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
}

.color-swatch-img img {
    max-width: 100%;
    max-height: 100%;
}

.color-swatch:hover {
    border: solid 1px var(--bs-gray-700);
}

.image-swatch {
    border: solid 1px var(--border-color);
    padding: 2px;
    width: fit-content;
    transition: var(--transition);
}

.image-swatch span {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bs-gray-100);
    cursor: pointer;
}

.image-swatch img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.default-swatch {
    min-width: 65px;
    text-align: center;
    padding: 5px 8px;
    border: solid 1px var(--border-color);
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.default-swatch:hover {
    background-color: var(--bs-gray-100);
}

.default-swatch:active {
    border: solid 1px var(--border-color);
}

.border-active {
    border: solid 1px var(--bs-gray-700);
}

.product-color {
    cursor: pointer;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.subtotal-amount {
    color: var(--primary-color);
}

.checkout-btn {
    background-color: var(--primary-color);
    color: var(--bs-white);
    border-color: var(--primary-color);
}

.checkout-btn:hover {
    background-color: var(--primary-color-onhover) !important;
    color: var(--bs-white) !important;
    border-color: var(--primary-color-onhover) !important;
}

.checkout-btn:active {
    background-color: var(--primary-color-onhover) !important;
    color: var(--bs-white) !important;
    border-color: var(--primary-color-onhover) !important;
}

input::file-selector-button {
    font-weight: 400;
    color: var(--bs-white);
    background-color: var(--primary-color);
    border: solid 1px var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    transition: var(--transition);
}

input::file-selector-button:hover {
    background-color: var(--primary-color-onhover);
}

.checkout-step {
    background-color: var(--primary-color);
    color: var(--bs-white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.checkout-step h3 {
    margin: 0px;
    font-weight: 500;
    font-size: 24px;
    font-family: var(--font-lexend);
    color: var(--bs-white);
}

.product-thumbnail {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-thumbnail img {
    max-width: 100%;
    max-height: 100%;
}

.cart-table {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.cart-table tbody,
.cart-table td,
.cart-table tfoot,
.cart-table th,
.cart-table thead,
.cart-table tr {
    border: none;
    padding: 15px;
}

.cart-table tr {
    border-bottom: solid 1px var(--border-color) !important;
}

.cart-table th {
    color: var(--bs-gray-800);
}

.product-removal ion-icon {
    font-size: 20px;
    color: var(--bs-gray-600);
}

.product-name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-lexend);
    color: var(--bs-gray-800);
}

.product-price p,
.product-disc {
    font-size: 14px;
    margin: 0;
    color: var(--bs-gray-600);
    font-weight: 500;
}

.product-subtotal p {
    margin: 0;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
}

.coupon-box input {
    width: auto;
    font-size: 14px;
}

.coupon-box button {
    font-size: 14px;
    border-radius: 5px;
}

.cart-total {
    background-color: var(--bs-white);
    padding: 20px;
    border-radius: 10px;
}

.cart-total-table tbody,
.cart-total-table td,
.cart-total-table tfoot,
.cart-total-table th,
.cart-total-table thead,
.cart-total-table tr {
    border: none;
    padding: 15px;
}

.cart-total-table th {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-lexend);
}

.cart-total-table tr {
    border-bottom: solid 1px var(--border-color);
}

.cart-total-table td {
    text-align: right;
}

.cart-subtotal p,
.shopping-total p {
    margin: 0;
    color: var(--bs-gray-600);
    font-size: 15px;
    font-weight: 500;
}

.Delivery-Return-help-section {
    margin-top: 20px;
}

.order-total p {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
}

.order-total {
    border: none !important;
}

.cart-total-table {
    margin-bottom: 10px;
}

.shopping-total input {
    float: right !important;
    margin-left: 7px !important;
}

.cart-titles {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-lexend);
}

.Delivery-Return-help-section {
    background-color: var(--bs-white);
    padding: 20px;
    border-radius: 10px;
}

.Delivery-Return-help-section .accordion-item {
    border: none;
}

.Delivery-Return-help-section .accordion-button {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-lexend);
    padding: 20px 0;
    border-bottom: solid 1px var(--border-color);
}

.Delivery-Return-help-section .accordion-body {
    font-size: 15px;
    color: var(--bs-gray-600);
    padding: 10px 0;
}

.Delivery-Return-help-section .accordion-button:not(.collapsed) {
    background: none !important;
    color: var(--primary-color);
}

@media (max-width:767px) {
    .cart-table {
        padding: 15px;
    }

    .cart-table thead {
        display: none !important;
    }

    .cart-table tr {
        position: relative;
        display: flex;
        flex-direction: column;
        padding-left: 120px;
    }

    .product-removal {
        position: absolute;
        top: 5px;
        right: 5px;
        z-index: 1;
    }

    .product-thumbnail {
        position: absolute;
        top: 30px;
        left: 0;
        width: 100px;
        height: 100px;
    }

    .cart-table td {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 5px;
        align-items: center;
    }

    .product-price,
    .product-quantity {
        border-bottom: dashed 1px var(--border-color);
        margin-bottom: 5px;
    }

    .product-price span,
    .product-quantity span,
    .product-subtotal span {
        font-size: 11px;
        font-weight: 500;
    }

    .cart-table>.plus-minus-input,
    .circle,
    .input-field-cart-modal {
        padding: 2px 3px !important;
    }

    .cart-table .input-field-cart-modal {
        padding: 2px 3px !important;
    }

    .checkout-step {
        justify-content: center !important;
    }
}

.billing-detail-section,
.Payment-Method-section,
.order-checkout-detail,
.wallet-use-section {
    background-color: var(--bs-white);
    padding: 20px;
    border-radius: 10px;
}

.Payment-Method-section {
    margin-top: 20px;
}

.checkout-page-titles {
    font-size: 22px;
    font-weight: 500;
    font-family: var(--font-lexend);
    padding-bottom: 10px;
    margin: 0;
}

.shipping-address {
    border-top: solid 1px var(--border-color);
    padding: 10px;
}

.delivary-time {
    border-top: solid 1px var(--border-color);
    padding: 14px 5px 5px 5px;
}

.shipping-address h5,
.delivary-time h5 {
    margin: 0;
}

.shipping-address ion-icon {
    font-size: 22px;
    cursor: pointer;
}

.selected-address {
    padding-top: 10px;
    font-size: 14px;
    font-weight: 100;
}

.selected-address p {
    margin: 0;
    font-size: 14px;
    color: var(--bs-dark-text-emphasis);
}

.delivary-time .form-check {
    padding-top: 5px;
}

.delivary-time .form-check-label {
    padding: 0;
    font-size: 14px;
    color: var(--bs-dark-text-emphasis);
}

.payment-type-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 60px;
}

.payment-type-img-box img {
    max-width: 100%;
    max-height: 100%;
}

.payment-type .form-check-label {
    display: flex;
    align-items: center;
    gap: 20px;
}

.address-modal-title {
    font-size: 22px;
    font-weight: 500;
    font-family: var(--font-lexend);
}

.btn-delivery,
.btn-delivery:hover {
    border: solid 2px var(--border-color) !important;
}

.cancle-btn:hover {
    background-color: var(--bs-gray-100);
}

.addresses ion-icon {
    font-size: 24px;
}

.addresses p {
    margin: 0;
    color: var(--bs-dark-text-emphasis);
}

.ordered-product-info p {
    margin: 0;
    font-size: 14px;
    color: var(--bs-dark-text-emphasis);
}

.ordered-product-price p {
    margin: 0;
    font-weight: 500;
    color: var(--primary-color);
}

.ordered-product-container {
    padding: 10px;
    border-top: solid 1px var(--border-color);
}

.step-active {
    border-bottom: 3px solid white;
    padding: 6px 10px;
}

.ordered-product-img {
    display: flex;
    width: 100px;
    height: 100px;
    justify-content: center;
    align-items: center;
}

.ordered-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ordered-subtotal-section {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 10px 0px;
}

.subtotal-price {
    font-weight: 600;
    color: var(--primary-color);
}

.charges-section,
.final-order-total {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding: 10px 0;
    border-top: solid 1px var(--border-color);
}

.charges-title p {
    color: var(--bs-dark-text-emphasis);
    margin: 0;
}

.charges p {
    color: var(--bs-dark-text-emphasis);
    margin: 0;
}

.total-price-tital {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}

.total-price {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.order-placed-title {
    font-size: 35px;
    text-align: center;
    font-weight: 500;
    color: var(--bs-green);
}

.progressbar-box {
    position: relative;
}

.progressbar-box p {
    font-size: 12px;
    margin: 0;
    font-weight: 600;
    text-align: center;
}

#progressbar .active {
    color: var(--bs-dark-text-emphasis);
}

#steps {
    text-align: center;
}

.step {
    width: 40px;
    height: 40px;
    background-color: var(--primary-soft-onhover);
    display: inline-block;
    border-color: transparent;
    border-radius: 50%;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    line-height: 35px;
}

.step:first-child {
    line-height: 40px;
}

.step:nth-child(n+2) {
    margin: 0 0 0 100px;
}

.step:nth-child(n+2):before {
    width: 75px;
    height: 3px;
    display: block;
    background-color: var(--primary-soft-onhover);
    transform: translate(-95px, 20px);
    content: '';
}

.step:after {
    width: 150px;
    display: block;
    transform: translate(-55px, 3px);

    color: hsl(226, 10%, 55%);
    content: attr(data-desc);
    font-weight: 400;
    font-size: 13px;
}

.step:first-child:after {
    transform: translate(-55px, -1px);
}

.step.active {
    color: var(--primary-color);
    background: var(--primary-soft-onhover);
}

.step.active:before {
    background: var(--primary-color);
}

.step.active:after {
    color: var(--primary-color);
}

.step.done {
    background-color: var(--primary-color);
    color: hsl(0, 0%, 100%);
}

.order-detail-box {
    background-color: var(--bs-white);
    padding: 20px;
    justify-content: space-between;
}

.order-detail-box div h5 {
    font-size: 16px;
    font-weight: 600;
}

.order-detail-box div p {
    margin: 0px;
    font-size: 14px;
    color: var(--bs-dark-text-emphasis);
}

.invoice-icon {
    color: var(--primary-color);
    font-size: 18px;
    vertical-align: text-bottom;
    margin-right: 2px;
}

.order-detail-img {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.order-detail-img img {
    max-width: 100%;
    max-height: 100%;
}

.order-detail-title {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

.filter-input {
    cursor: pointer;
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
    left: 0;
}

.jssocials-share {
    margin: 0 !important;
}

.swiper-slide-quickview {
    height: 569px;
}


.select2-results__option--highlighted {
    border: solid 1px var(--border-color);
}


.search_product+.select2-container .search-container {
    border: solid 0px var(--border-color) !important;
}

.fs-7 {
    font-size: 12px;
}

.edit-city-dropdown {
    background: white;
    position: relative;
    top: -29px;
    z-index: 9999;
}

.edit-city-container {
    display: contents !important;
}

.search-dropdown {
    display: block !important;
    width: 770px !important;
    z-index: 9999 !important;
    background: rgb(255, 255, 255);
    top: 24px !important;
    position: fixed !important;
    left: unset !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
}

/* Ensure Select2 dropdown is visible for header search */
.search-input-wrapper .select2-container--open .select2-dropdown {
    z-index: 9999 !important;
    display: block !important;
}

.select2-container--open .select2-dropdown--below {
    z-index: 9999 !important;
}

.search-dropdown .select2-selection--single {
    min-height: 0 !important;
}

.search_product+.select2-container {
    width: 100% !important;
    margin-top: 0px !important;
    background: white;
}

.profile_image .avatar {
    height: 110px !important;
    width: 110px !important;
    object-fit: cover;
}

@media (min-width:1399px) {
    .select2-container {
        width: 85%;
    }
}

@media (min-width:980px) {
    .select2-container {
        width: 75%;
    }
}

@media (max-width:767px) {
    .swiper-slide-quickview {
        height: 250px;
    }

    .select2-container {
        width: 80%;
    }
}

@media (min-width:560px) {
    .select2-container {
        width: 62%;
    }
}

@media (min-width:318px) {
    .select2-container {
        width: 84%;
    }
}

.select2-container {
    width: 95%;
    background: white;
    margin-top: -21px;
}

.select2-results img {
    width: 65px;
}

.select2-results ul {
    list-style: none;
    border-top: solid 1px var(--border-color);
    margin: 3px 0 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    max-height: 300px;
    overflow: auto;
}

.select2-result-repository {
    display: flex !important;
    font-size: 14px;
    gap: 15px;
    align-items: center;
    min-height: 75px;
    transition: var(--transition);
}

.select2-results__option:hover {
    background-color: var(--bs-gray-100);
    transition: var(--transition);
}

.select2-hidden-accessible {
    clip: rect(0 0 0 0) !important;
    border: 0 !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
}

.select2-search__field {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    outline: none;
}

.select2-selection {
    display: block;
    width: 100%;
}

.select2-result-repository__title {
    font-weight: 600;
}

.select2-results__option {
    padding: 8px;
    border-bottom: solid 1px var(--border-color);
    margin: 0;
    width: 100%;
}

.select2-responsive-container {
    width: 100% !important;
}

.colored-toast.swal2-icon-success {
    background-color: #a5dc86 !important;
}

.colored-toast.swal2-icon-error {
    background-color: #f27474 !important;
}

.colored-toast.swal2-icon-warning {
    background-color: #f8bb86 !important;
}

.colored-toast.swal2-icon-info {
    background-color: #3fc3ee !important;
}

.colored-toast.swal2-icon-question {
    background-color: #87adbd !important;
}

.colored-toast .swal2-title {
    color: white;
}

.colored-toast .swal2-close {
    color: white;
}

.colored-toast .swal2-html-container {
    color: white;
}

.count-box {
    position: absolute;
    background: var(--primary-soft-onhover);
    color: var(--primary-color);
    top: -4px;
    font-size: 10px;
    border-radius: 10px;
    right: -2px;
}

.input-group-prepend {
    position: absolute;
    z-index: 8;
    font-size: 25px;
    top: 3px;
    left: 10px;
}

.daterangepicker td.active {
    background-color: var(--primary-color) !important;
    border-color: transparent;
    color: #fff;
}

.deliverable_status {
    font-size: 14px;
    font-weight: 100;
}

@media (max-width:1199px) {
    .select2-selection {
        padding: 5px;
        border-radius: 10px;
        background-color: var(--bs-white);
    }

    .search-dropdown {
        top: 68px !important;
        border-radius: 10px;
        width: 96vw !important;
    }

    .count-box {
        top: -8px;
        font-size: 8px;
    }

    .search_product+.select2-container .select2-selection--single {
        min-height: 35px !important;
        height: 35px !important;
    }
}

.promocode-image-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promocode-image-box img {
    max-width: 100px;
    min-height: 100px;
}

#redeem_promocode {
    border: 1px solid var(--border-color);
    margin-top: 16px;
}

.promocode-section {
    margin: 10px 0px;
    padding: 10px 0px;
    cursor: pointer;
    background-color: var(--bs-white);
    transition: var(--transition);
}


.promo-title {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--font-lexend);
    text-align: start;
}

.promo-disc {
    font-size: 14px;
    text-transform: capitalize;
    text-align: start;
}

#promo_code_modal .modal-body {
    height: 400px;
    overflow: auto;
}

.faq_image {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq_image img {
    max-width: 100%;
    max-height: 100%;
}

.ticket-table {
    border-spacing: 0 15px;
    border-collapse: inherit;
}

.ticket-table th,
.ticket-table td {
    padding: 15px;
    text-align: center;
}

.ticket-table tr {
    transition: var(--transition);
    cursor: pointer;
}

.ticket-table tbody tr:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transition: var(--transition);
}

.Executive-img {
    padding: 10px;
    border-radius: 50%;
    background-color: var(--primary-soft);
}

.reply-box {
    padding: 10px;
    background-color: var(--bs-gray-200);
    width: fit-content;
    border-radius: 10px;
    display: inline-flex;
    text-align: end;
    position: relative;
}

.reply-box::before {
    border-color: var(--bs-gray-200);
    border-style: solid;
    border-width: 13px 5px 2px 3px;
    bottom: -4px;
    clear: both;
    content: "";
    display: block;
    height: 0;
    position: absolute;
    right: 4px;
    transform: rotate(125deg);
    width: 0;
    border-radius: 50% 50% 0 0;
}

.sender-box {
    padding: 10px;
    width: fit-content;
    border-radius: 10px;
    display: inline-flex;
    text-align: start;
    border: solid 1px var(--border-color);
    position: relative;
}

.sender-box::before {
    border-color: #e9e9e9;
    border-style: solid;
    border-width: 7px 4px 5px 2px;
    left: -5px;
    bottom: -5px;
    clear: both;
    content: "";
    display: block;
    height: 0;
    position: absolute;
    transform: rotate(243deg);
    width: 0;
    border-radius: 50% 50% 0 0;
}

.chat-send-time {
    font-size: 14px;
    color: var(--bs-gray-600);
    font-weight: 500;
    margin: 0 7px;
}

.chat-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.msg-body {
    min-height: 60vh;
    max-height: 70vh;
    overflow: auto;
}


.chat-image-preview {
    width: 100px;
    height: 100px;
    object-fit: contain;
    padding: 10px;
    border: solid 1px var(--border-color);
    margin-top: 10px;
}

.image-preview-container {
    width: fit-content;
    position: relative;
}

.preview-close {
    position: absolute;
    top: 5px;
    right: -5px;
    cursor: pointer;
}

.refer-img-box {
    height: 200px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.refer-img-box img {
    max-width: 100%;
    max-height: 100%;
}

.wallet-card {
    max-width: 400px;
    height: 200px;
    background: rgb(61, 0, 85);
    background: linear-gradient(135deg, rgba(61, 0, 85, 1) 13%, rgba(121, 9, 109, 1) 59%, rgba(68, 0, 255, 1) 100%);
    border-radius: 10px;
    position: relative;
}

.wallet-text {
    color: var(--bs-gray-400);
    position: absolute;
    top: 30px;
    left: 25px;
    font-size: 14px;
}

.wallet-amount {
    color: var(--bs-white);
    position: absolute;
    top: 50px;
    left: 25px;
    font-family: var(--font-lexend);
    font-size: 25px;
}

.wallet-currency {
    color: var(--bs-white);
    position: absolute;
    bottom: 25px;
    right: 40px;
    font-weight: 500;
}

.wallet-user-name {
    color: var(--bs-white);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-lexend);
    position: absolute;
    bottom: 25px;
    left: 25px;
    text-transform: capitalize;
}

.transaction-btn {
    background: rgb(81 81 255);
    color: var(--bs-white);
    padding: 10px;
    font-weight: 600;
    align-items: center;
    display: flex;
    gap: 3px;
    transition: var(--transition);
    border: none;
    border-radius: 10px;
    position: relative;
}



/* color-switcher */

.setting-icon {
    font-size: 1.7rem !important;
    margin-top: 6px;
}

#colors-switcher {
    background: none repeat scroll 0 0 #fff;
    -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
    box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
    left: -189px;
    position: fixed;
    top: 25%;
    width: 189px;
    z-index: 9999;
    padding: 10px 5px
}

#colors-switcher .color-bottom {
    background: none repeat scroll 0 0 #fff
}

#colors-switcher .color-bottom a.settings {
    background: none repeat scroll 0 0 #fff;
    height: 41px;
    position: absolute;
    right: -40px;
    top: 0px;
    width: 40px;
    padding: 3px;
    border-radius: 0 30px 30px 0
}

#colors-switcher ul.color-style {
    list-style: none outside none;
    overflow: hidden;
    padding: 0;
    border-radius: 0px;
}

.list-item-inline {
    display: inline-block;
}

#colors-switcher ul.color-style li.list-inline-item:not(:last-child) {
    margin-right: 0px;
    margin-bottom: 0
}

#colors-switcher ul.color-style li a {
    cursor: pointer;
    display: block;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    margin: 3px
}

#colors-switcher ul.color-style .blue {
    background-color: #1565c0;
}

#colors-switcher ul.color-style .cyan-dark {
    background-color: #004d40;
}


#colors-switcher ul.color-style .dark-blue {
    background-color: #090088;
}

#colors-switcher ul.color-style .dark-purple {
    background-color: #4527a0;
}

#colors-switcher ul.color-style .default {
    background-color: #1c61e7;
}

#colors-switcher ul.color-style .green {
    background-color: #43ae47;
}

#colors-switcher ul.color-style .indigo {
    background-color: #1a237e;
}

#colors-switcher ul.color-style .orange {
    background-color: #d84315;
}

#colors-switcher ul.color-style .peach {
    background-color: #e9705b;
}

#colors-switcher ul.color-style .pink {
    background-color: #ad1457;
}

#colors-switcher ul.color-style .purple {
    background-color: #6a1b9a;
}

#colors-switcher ul.color-style .red {
    background-color: #c62828;
}

/*set a border on the images to prevent shifting*/
#gallery_01 img {
    border: 2px solid white;
}

.clearfix {
    display: block;
    width: 100%;
    float: left;
}

.zoom-left {
    max-width: 412px;
}

.height500px {
    height: 500px;
}

.zoomWrapper img {
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width:767px) {
    .zoomContainer {
        display: none !important;
    }
}

.swiper-slide .zoomWrapper {
    display: none;
}

.swiper-slide-active .zoomWrapper {
    display: block;
}

.flag-container {
    height: 40px !important;
}

.progress-wrap {
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: none;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    margin-left: 6px;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f062';
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: #1f2029;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.lightScrollIcon::after {
    color: #ecedf3 !important;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f062';
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    opacity: 0;
    background-image: linear-gradient(298deg, #1c61e7, #1c61e7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #1f2029;
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.max-width-540px {
    max-width: 540px;
}

.height-50vh {
    height: 50vh;
}

.card-testimonial {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F4F4F4;
}

.tcard-container {
    display: flex;
    gap: 20px;
}

.tcard {
    background-color: #e9705b;
    border-radius: 0 0 20px 20px;
    padding: 20px;
    color: white;
    width: 300px;
    height: 300px;
    text-align: center;
}

.tcard-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-top: -35px;
    border: 5px solid white;
    background-color: white;
}

.tcard-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tcard-content {
    margin-top: 20px;
}

.tcard h3 {
    font-size: 22px;
}

.tcard p {
    font-size: 14px;
}

/* chat  */

#chat-button {
    transition: all 0.35s ease-in-out;
    padding: 12px;
    background-color: #3cc766;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    z-index: 999;
    cursor: pointer;
    display: flex;
    justify-content: center;
}

#chat-button.opened,
#chat-iframe.opened {
    transition: all 0.35s ease-in-out;
    box-shadow: 0px 19px 10px 2px #00000014
}

#floating_chat_view {
    margin: 22px;
}


.chat-hide-show {
    display: none !important;
}

.chat-min {
    height: 88vh !important;
}

.chat-min>.select2-container {
    width: 100% !important;
}

.chat-max {
    height: 88vh !important;
}

.chat-theme-dark {
    background-color: #1A1D21 !important;
    border-top: 2px solid #17a2b8 !important;
}

.chat-theme-light {
    background-color: #F8F8FA !important;
    border-top: 2px solid #383F45 !important;
}

.chat-theme-light .chat-left .person-group-chat {
    background: #8e8e8e;
    padding: 1px 5px;
    border-radius: 3px;
    position: absolute;
    color: #ececec;
    top: -22px;
    left: 0;
    font-size: 12px;
}

.chat-theme-light .chat-right .person-group-chat {
    background: #8e8e8e;
    padding: 1px 5px;
    border-radius: 3px;
    position: absolute;
    color: #ececec;
    top: -22px;
    right: 0;
    font-size: 12px;
}

.chat-avtar-search {
    border-radius: 50%;
    border: none;
    width: 50px;
    height: 50px;
    background: #99e2ff;
    text-align: center;
    line-height: 52px;
    font-size: 26px;
    font-weight: 800;
    color: #777777;
    margin: 0px 16px 0px 0px;
}

.chat-avtar-main {
    border-radius: 50%;
    border: none;
    width: 45px;
    height: 45px;
    background: #e1ebff;
    text-align: center;
    line-height: 52px;
    font-size: 26px;
    font-weight: 800;
    color: #777777;
}

.chat-box .chat-content .chat-item>.chat-avtar {
    float: left;
    -webkit-user-drag: none !important;
}

.chat-box .chat-content .chat-item.chat-right .chat-avtar {
    float: right;
    -webkit-user-drag: none;
}

.chat-theme-light .delete-msg {
    position: absolute;
    color: white;
    top: 0;
    right: 3px;
}

.chat-theme-dark .delete-msg {
    position: absolute;
    color: white;
    top: 0;
    right: 3px;
}

.chat-theme-light .download-msg {
    position: absolute;
    color: black;
    top: 0;
    left: 3px;
}

.chat-theme-dark .download-msg {
    position: absolute;
    color: black;
    top: 0;
    left: 3px;
}

.chat_media_img {
    grid-area: img;
}

.chat_media_file {
    grid-area: file;
    color: #b13c3c;
}

.chat_media_size {
    grid-area: size;
}


.chat-theme-light .chat-files {
    text-align: center;
    display: grid;
    grid-template-areas:
        'img file file file size size';
    grid-gap: 10px;
    background-color: #cccccc;
    border-radius: 3px;
    padding: 10px;
    color: black;
    margin: 1px;
}

.chat-theme-dark .chat-files {
    text-align: center;
    display: grid;
    grid-template-areas:
        'img file file file size size';
    grid-gap: 10px;
    background-color: #cccccc;
    border-radius: 3px;
    padding: 10px;
    color: black;
    margin: 1px;
}

.chat-files-search {
    text-align: center;
    display: grid;
    grid-template-areas:
        'img file file file size fa-download';
    grid-gap: 10px;
    background-color: #cccccc;
    border-radius: 3px;
    padding: 10px;
    color: black;
    margin: 1px;
}

.chat-theme-light .chat-image-view {
    position: relative;
    background-color: #cccccc;
    border-radius: 3px;
    padding: 5px;
    color: black;
    margin: 1px;
}


.chat-theme-light .msg_text_media {
    display: grid;
}

.chat-theme-dark .chat-image-view {
    position: relative;
    background-color: #cccccc;
    border-radius: 3px;
    padding: 5px;
    color: black;
    margin: 1px;
}

.chat-theme-dark .msg_text_media {
    display: grid;
}

.chat-theme-light .download-btn-styling {
    background: #27ab45;
    color: black;
    padding: 7px;
    border-radius: 3px;
    display: none;
    margin: 8px 5px 0px 0px;
}

.chat-theme-dark .download-btn-styling {
    background: #27ab45;
    color: black;
    padding: 7px;
    border-radius: 3px;
    display: none;
    margin: 8px 5px 0px 0px;
}

.chat-image-view:hover .download-btn-styling {
    display: block;
}

.chat-files:hover .download-btn-styling {
    display: block;
}


.chat-theme-light .go-to-bottom-btn {
    cursor: pointer !important;
    padding: 4px !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: white !important;
    border: none;
    position: absolute;
    top: -48%;
    right: 0px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0px 4px 7px 4px #00000036;
    display: none;
    z-index: 2;
}

.chat-theme-dark .go-to-bottom-btn {
    cursor: pointer;
    padding: 6px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: white !important;
    border: none;
    position: absolute;
    top: -48%;
    right: 0px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0px 4px 7px 4px #00000036;
    display: none;
    z-index: 2;
}

.chat-theme-dark .chat-preview-btn {
    position: absolute;
    top: 30%;
    right: 60px;
    color: #868686 !important;
}

.chat-theme-light .chat-preview-btn {
    position: absolute;
    top: 30%;
    right: 60px;
    color: #414141 !important;
}

.chat-theme-dark .chat-preview-btn:hover {
    color: #5a5a5a !important;
}

.chat-theme-light .chat-preview-btn:hover {
    color: #303030 !important;
}

.chat-theme-dark .chat-time {
    color: #d8d8d8 !important;
}

.chat-theme-light .new-msg-rcv {
    font-weight: 1000 !important;
    color: #383F45 !important;
}

.chat-theme-dark .new-msg-rcv {
    font-weight: 1000 !important;
    color: #FFFFFF !important;
}

.chat-theme-light .chat-bg {
    background-image: url(../images/bg-chat.jpg) !important;
}

.chat-theme-light .text-successg {
    color: #39E500 !important;
}

.chat-theme-dark .chat-bg {
    background-color: #303335 !important;
}

.chat-theme-dark .text-success {
    color: #39E500 !important;
}

.chat-theme-dark .chat-search-box {
    background-color: #1a1d21 !important;
    border: 1px solid #a6a7ab !important;
    border-radius: .25rem !important;
    margin-right: 8px !important;
    height: 30px !important;
    width: -webkit-fill-available;
}

.chat-theme-dark .chat-search-box:hover {
    background-color: #363b42 !important;
    border: 1px solid #c9cacc !important;
}

.chat-theme-dark .chat-search-box:focus {
    background-color: #363b42 !important;
    border: 1px solid #c9cacc !important;
    color: #c9cacc !important;
}

.chat-theme-light .chat-search-box {
    border-radius: .25rem !important;
    margin-right: 8px !important;
    height: 30px !important;
    width: -webkit-fill-available;
}

.chat-theme-light .chat-search-box:hover {
    background-color: #f2f2f7;
    border-color: #d9dae4;
}

.chat-theme-dark .chat-search-btn {
    background-color: #1a1d21 !important;
    border-color: #a6a7ab !important;
}

.chat-scroll {
    overflow: scroll !important;
    outline: none !important;
}

/* width */
.chat-scroll::-webkit-scrollbar {
    width: 7px;
}

/* Track */
.chat-scroll::-webkit-scrollbar-track {
    border-radius: 7px;
}

/* Handle */
.chat-scroll::-webkit-scrollbar-thumb {
    background: rgb(66, 66, 66);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 5px;
}

.chat-theme-dark .active {
    font-weight: 700 !important;
    background: #3abaf4;
    padding: 3px 15px;
    color: #FFFDF9 !important;
}

.chat-theme-dark .active:hover {
    background: #3abaf4 !important;
    color: #FFFDF9 !important;
}

.chat-theme-light .active {
    font-weight: 700 !important;
    background: #3abaf4;
    padding: 3px 15px;
    color: #FFFDF9 !important;
}

.chat-theme-light .active:hover {
    background: #3abaf4 !important;
    color: #FFFDF9 !important;
}

.chat-theme-dark .chat-person {
    font-weight: 700;
    color: #ababab;
    padding: 3px 15px;
}

.chat-theme-dark code {
    background: #e8e8e8;
    padding: 6px 8px;
    border-radius: 4px;
}

.chat-theme-light code {
    background: #e8e8e8;
    padding: 6px 8px;
    border-radius: 4px;
}

.chat-theme-dark .chat-person:hover {
    background: rgb(0, 0, 0);
    cursor: pointer;
}

.chat-theme-light .chat-person {
    font-weight: 500;
    color: #4f5961;
    padding: 3px 15px;
}

.chat-theme-light .chat-person:hover {
    background: #FFFFFF;
    cursor: pointer;
}

.chat-theme-dark .text-color {
    color: #ababab !important;

}

.chat-theme-light .text-color {
    color: #383F45 !important;
}

.chat-theme-dark .text-color h4 {
    color: #ababab !important;
}

.chat-theme-light .text-color h4 {
    color: #383F45 !important;
}

.chat-theme-dark .theme-inputs {
    background-color: #1a1d21 !important;
    border: 1px solid #a6a7ab !important;
    border-radius: 6px !important;
    color: #c9cacc !important;
    height: auto !important;
    white-space: pre-wrap !important;
}

.chat-theme-light .theme-inputs {
    border: 1px solid #383F45 !important;
    border-radius: 6px !important;
    height: auto !important;
    white-space: pre-wrap !important;
}

.chat-card-header {
    line-height: 9px !important;
    min-height: 0px !important;
    padding: 5px 8px !important;
    border-bottom: 0px !important;
}

.chat-card-header h4 {
    font-size: 17px !important;
    font-weight: 500;
}

.chat-list-unstyled-border li {
    border-bottom: 0px !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}

.chat-card-body {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    flex: 0 !important;
}

.chat-img-undrag {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}


.chat_divider {
    padding: 8px 10px;
    text-align: center;
    font-size: medium;
    color: brown;
    margin: 0 0 20px 0px;
    display: flex;
    align-items: center;
    text-align: center;
}

.chat_divider::before,
.chat_divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #cf9a5e;
}

.chat_divider::before {
    margin-right: .25em;
}

.chat_divider::after {
    margin-left: .25em;
}


.chat_loader {
    padding: 8px 10px;
    text-align: center;
    font-size: medium;
    color: brown;
    margin: 0 0 20px 0px;
    display: flex;
    align-items: center;
    text-align: center;
    display: none;
}

.chat_loader::before,
.chat_loader::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #cf9a5e;
}

.chat_loader::before {
    margin-right: .25em;
}

.chat_loader::after {
    margin-left: .25em;
}


#chat-input-textarea-result {
    background-color: rgba(117, 117, 117, 0.36);
    position: absolute;
    bottom: 51px;
    border: 1.5px dashed rgb(119, 122, 125) !important;
    border-radius: 6px !important;
    height: auto;
}

.badge-chat {
    vertical-align: middle;
    border-radius: 5px;
    float: right;
    background-color: #fc544b;
    color: white;
    padding: .30em 1em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    margin-top: 2px;
}

#chat-button.opened,
#chat-iframe.opened {
    transition: all 0.35s ease-in-out;
    box-shadow: 0px 19px 10px 2px #00000014
}

#chat-iframe {
    border-radius: 26px;
}

.search_user+.select2-container {
    margin-top: 0px !important;
}

.search_product+.select2-container .select2-selection--single {
    min-height: 24px;
    height: 24px !important;
}

.whatsapp {
    color: #fff;
    background: #25d366;
}

.whatsapp:hover {
    color: #fff;
    background: #16c255;
}

.chat-iframe {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 450px;
    height: 600px;
    border: none;
    z-index: 999;
    background: white;
}

.font-size-20px {
    font-size: 20px;
}

 

.viewmorebtn {
    background: black !important; 
    color: white  !important; 
}

/* ============================================
   SHOPIFY-STYLE PRODUCT PAGE ENHANCEMENTS
   ============================================ */

/* Main Product Page Container */
.shopify-product-page {
    background: #ffffff;
    min-height: 100vh;
}

.shopify-product-page .container {
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* Match Bootstrap container responsive widths */
@media (min-width: 1400px) {
    .shopify-product-page .container {
        max-width: 1320px;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .shopify-product-page .container {
        max-width: 1140px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .shopify-product-page .container {
        max-width: 960px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .shopify-product-page .container {
        max-width: 720px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .shopify-product-page .container {
        max-width: 540px;
    }
}

@media (max-width: 575.98px) {
    .shopify-product-page .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.Product-Detail-card {
    margin: 0;
    padding: 0;
}

.Product-Detail-card .row {
    margin: 0;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    align-items: flex-start;
}

.Product-Detail-card .col-lg-6 {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.Product-Detail-card .col-lg-6:first-child {
    padding-right: 30px;
}

.Product-Detail-card .col-lg-6:last-child {
    padding-left: 30px;
}

@media (max-width: 991px) {
    .Product-Detail-card .col-lg-6:first-child {
        padding-right: 15px;
        padding-bottom: 2rem;
    }
    
    .Product-Detail-card .col-lg-6:last-child {
        padding-left: 15px;
    }
}

/* Product Gallery Section */
.shopify-product-gallery {
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    align-self: flex-start;
}

.shopify-product-gallery .row {
    margin: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    padding-top: 0 !important;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.shopify-product-gallery .row > * {
    padding-left: 0;
    padding-right: 0;
}

.shopify-product-gallery .swiper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Full Width Banner with Side Margins and Rounded Corners */
.full-width-banner {
    width: 100%;
    padding: 10px 10px;
    overflow: hidden;
}

.full-width-banner .swiper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 15px;
    overflow: hidden;
}

.full-width-banner .swiper-wrapper {
    width: 100% !important;
}

.full-width-banner .swiper-slide {
    width: 100% !important;
    display: flex !important;
}

.full-width-banner .swiper-slide a {
    width: 100% !important;
    display: block !important;
    border-radius: 15px;
    overflow: hidden;
}

.full-width-banner img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover;
    border-radius: 15px;
}

/* Responsive margins */
@media (min-width: 576px) {
    .full-width-banner {
        padding: 0 20px;
    }
}

@media (min-width: 768px) {
    .full-width-banner {
        padding: 0 30px;
    }
    
    .full-width-banner .swiper,
    .full-width-banner .swiper-slide a,
    .full-width-banner img {
        border-radius: 20px;
    }
}

@media (min-width: 992px) {
    .full-width-banner {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .full-width-banner {
        padding: 10px 10px;
    }
    
    .full-width-banner .swiper,
    .full-width-banner .swiper-slide a,
    .full-width-banner img {
        border-radius: 25px;
    }
}

.shopify-product-gallery .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.shopify-product-gallery .image-Thumbnail-container {
    padding: 0;
    margin-right: 8px;
}

.shopify-product-gallery .col-md-10 {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
}

.shopify-product-gallery .col-md-2 {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
}

.shopify-product-gallery .d-flex.flex-row-reverse {
    margin: 0;
    gap: 0;
    align-items: flex-start !important;
}

.shopify-product-gallery .d-flex.flex-row-reverse > * {
    margin: 0;
}

.shopify-product-gallery .xzoom-thumbs .swiper-slide {
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.shopify-product-gallery .xzoom-thumbs .swiper-slide:hover,
.shopify-product-gallery .xzoom-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--primary-color, #000);
}

.shopify-product-gallery .xzoom-thumbs img {
    width: 100%;
    height: auto;
    display: block;
}

/* Product Info Section - Sticky on Desktop */
.shopify-product-info {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    margin: 0 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.shopify-product-info::-webkit-scrollbar {
    width: 6px;
}

.shopify-product-info::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.shopify-product-info::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.shopify-product-info::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.shopify-product-details {
    background: #ffffff;
    border-radius: 0;
    padding: 0 !important;
    padding-top: 0 !important;
    margin: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 1.5rem;
}

/* Product Title */
.shopify-product-title {
    font-family: var(--font-playfair, 'Playfair Display', serif);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0.75rem;
    padding: 0 !important;
    padding-top: 0 !important;
    letter-spacing: -0.02em;
}

/* Product Description */
.shopify-product-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    margin: 0 0 1rem 0;
    font-weight: 400;
}

/* Price Section */
.shopify-product-price-wrapper {
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.shopify-tax-note {
    margin: 0;
    margin-left: 0.75rem;
    font-size: 0.875rem;
    display: inline-block;
    vertical-align: baseline;
}

.shopify-indicator {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.shopify-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.shopify-price-current {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: var(--font-montserrat, 'Montserrat', sans-serif);
}

.shopify-compare-price {
    font-size: 1.25rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.shopify-compare-price s {
    color: #999;
}

/* Variant Selection */
.shopify-variant-group {
    margin: 1rem 0;
}

.shopify-variant-label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-family: var(--font-montserrat, 'Montserrat', sans-serif);
}

.shopify-product-info .quickview-variant-sec {
    margin: 0;
    padding: 0;
    list-style: none;
}

.shopify-product-info .quickview-variant-sec li {
    margin-bottom: 0.5rem;
}

/* Color Swatches */
.shopify-product-info .color-swatch {
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.shopify-product-info .color-swatch label {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px transparent;
}

.shopify-product-info .color-swatch input:checked + label,
.shopify-product-info .color-swatch label.active {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #1a1a1a;
    transform: scale(1.1);
}

/* Image Swatches */
.shopify-product-info .image-swatch label {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
}

.shopify-product-info .image-swatch label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shopify-product-info .image-swatch input:checked + label,
.shopify-product-info .image-swatch label.active {
    border-color: #1a1a1a;
}

/* Default Swatches (Size, etc.) */
.shopify-product-info .default-swatch label {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1.5px solid #d0d0d0;
    border-radius: 4px;
    background: #fff;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 50px;
    text-align: center;
}

.shopify-product-info .default-swatch input:checked + label,
.shopify-product-info .default-swatch label.active {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.shopify-product-info .default-swatch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Product Add Section */
.product-add-section {
    margin: 1rem 0;
    padding: 0;
}

/* Quantity Selector - Correct Design */
.shopify-product-info .plus-minus-input {
    margin: 1rem 0;
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    max-width: 180px;
    border: 1.5px solid #d0d0d0;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    width: auto;
}

.shopify-product-info .input-group-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
}

.shopify-product-info .minus-btn,
.shopify-product-info .plus-btn {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border: none !important;
    background: #fff !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #1a1a1a !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
}

.shopify-product-info .minus-btn {
    border-right: 1.5px solid #d0d0d0 !important;
}

.shopify-product-info .plus-btn {
    border-left: 1.5px solid #d0d0d0 !important;
}

.shopify-product-info .minus-btn:hover,
.shopify-product-info .plus-btn:hover {
    background: #f5f5f5 !important;
    color: #1a1a1a !important;
}

.shopify-product-info .minus-btn:active,
.shopify-product-info .plus-btn:active {
    background: #e5e5e5 !important;
}

.shopify-product-info .minus-btn i,
.shopify-product-info .plus-btn i {
    font-size: 14px !important;
    line-height: 1 !important;
    display: block !important;
}

.shopify-product-info .product-quantity {
    flex: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    min-width: 60px;
    display: flex !important;
    align-items: center !important;
}

.shopify-product-info .product-quantity input,
.shopify-product-info .input-group-field {
    width: 100% !important;
    height: 44px !important;
    text-align: center !important;
    border: none !important;
    border-left: 1.5px solid #d0d0d0 !important;
    border-right: 1.5px solid #d0d0d0 !important;
    border-radius: 0 !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #fff !important;
    color: #1a1a1a !important;
    -moz-appearance: textfield !important;
    display: block !important;
}

.shopify-product-info .product-quantity input::-webkit-outer-spin-button,
.shopify-product-info .product-quantity input::-webkit-inner-spin-button,
.shopify-product-info .input-group-field::-webkit-outer-spin-button,
.shopify-product-info .input-group-field::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.shopify-product-info .product-quantity input:focus,
.shopify-product-info .input-group-field:focus {
    outline: none !important;
    border-left: 1.5px solid #1a1a1a !important;
    border-right: 1.5px solid #1a1a1a !important;
}

/* Override all old conflicting styles */
.shopify-product-info .circle {
    border-radius: 0 !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.shopify-product-info .num-block {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0 !important;
}

.shopify-product-info .button.hollow {
    background: transparent !important;
    border: none !important;
}

/* Shopify-Style Buttons */
.shopify-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--font-montserrat, 'Montserrat', sans-serif);
    min-height: 52px;
}

.shopify-btn-large {
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
    min-height: 56px;
}

.shopify-btn-primary {
    background: #1a1a1a;
    color: #fff;
}

.shopify-btn-primary:hover {
    background: #333;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.shopify-btn-secondary {
    background: #fff;
    color: #1a1a1a;
    border: 1.5px solid #1a1a1a;
}

.shopify-btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.shopify-btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.shopify-btn-whatsapp:hover {
    background: #20ba5a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.shopify-product-actions {
    margin: 1rem 0 0 0;
}

.shopify-product-actions .shopify-btn {
    flex: 1;
    min-width: 200px;
}

/* Delivery & Trust Badges */
.delivery-service {
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid #e5e5e5;
}

.delivery-service ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.delivery-service li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
}

.delivery-service li img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.delivery-service li p {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
}

/* Specification Section */
.specification {
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid #e5e5e5;
}

.specification h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.specification table {
    width: 100%;
    border-collapse: collapse;
}

.specification table tr {
    border-bottom: 1px solid #f0f0f0;
}

.specification table td {
    padding: 0.75rem 0;
    font-size: 0.9375rem;
}

.specification table td:first-child {
    font-weight: 600;
    color: #666;
    width: 40%;
}

.specification table td:last-child {
    color: #1a1a1a;
}

/* Item Detail Section */
.item-detail {
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid #e5e5e5;
}

.item-detail h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: #1a1a1a;
}

.item-detail-content {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.item-detail-content p {
    margin-bottom: 1rem;
}

.item-detail-content p:last-child {
    margin-bottom: 0;
}

/* Remove unwanted spacing from Bootstrap classes */
.shopify-product-info .row {
    margin-left: 0;
    margin-right: 0;
}

.shopify-product-info .row > * {
    padding-left: 0;
    padding-right: 0;
}

/* Ensure proper spacing for all sections */
.shopify-product-info > * {
    margin-left: 0;
    margin-right: 0;
}

/* Fix compare share section */
.compare-share-btn ul {
    margin: 0;
    padding: 0;
}

.compare-share-btn li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Fix delivery service spacing */
.delivery-service ul {
    margin: 0;
    padding: 0;
}

.delivery-service li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Remove extra padding from sections */
.specification,
.item-detail,
.delivery-service,
.compare-share-btn,
.product-add-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Product Tabs */
.shopify-product-page .nav-tabs {
    border-bottom: 1px solid #e5e5e5;
    margin: 3rem 0 0;
}

.shopify-product-page .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: #666;
    font-weight: 500;
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.shopify-product-page .nav-tabs .nav-link:hover {
    color: #1a1a1a;
    border-bottom-color: #e5e5e5;
}

.shopify-product-page .nav-tabs .nav-link.active {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
    background: transparent;
}

.shopify-product-page .tab-content {
    padding: 2rem 0;
}

/* Compare & Share Section */
.compare-share-btn {
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.compare-share-btn ul {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.compare-share-btn li {
    list-style: none;
    display: flex;
    align-items: center;
    border: solid 1px var(--border-color, #e5e5e5);
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.compare-share-btn li:hover {
    background-color: #f4f4f5;
}

.compare-share-btn li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--nav-color, #333);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.compare-share-btn li a:hover {
    color: var(--nav-color, #333);
}

.compare-share-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.compare-share-btn p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.compare-share-btn .d-flex.align-items-center {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--nav-color, #333);
}

.compare-share-btn .quick_view_share {
    display: flex;
    align-items: center;
    gap: 8px;
}

.compare-share-btn .quick_view_share .jssocials-share {
    margin: 0 4px;
}

.compare-share-btn .quick_view_share .jssocials-share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.compare-share-btn .quick_view_share .jssocials-share-link:hover {
    transform: translateY(-2px);
}

/* Ensure jsSocials icons display properly */
.compare-share-btn .quick_view_share .jssocials-share {
    display: inline-block;
    margin: 0 4px;
}

.compare-share-btn .quick_view_share .jssocials-share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    transition: all 0.2s ease;
    padding: 0;
}

.compare-share-btn .quick_view_share .jssocials-share-link svg {
    width: 20px;
    height: 20px;
}

/* Fix compare button styling */
.compare-share-btn .compare {
    padding: 0;
    border: none;
    background: transparent;
}

.compare-share-btn .compare.btn {
    padding: 0;
    border: none;
    background: transparent;
}

/* Product Image Enhancements */
.shopify-product-gallery .swiper-slide {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopify-product-gallery .zoom_03 {
    max-width: 100%;
    height: auto;
    cursor: zoom-in;
}

/* Rating Display */
.shopify-product-info .d-flex.cursor-not-allowed {
    margin: 0.75rem 0;
    align-items: center;
}

/* Rating Display */
.shopify-product-info .rating-loading {
    margin-right: 0.5rem;
}

.shopify-product-info .rating-loading {
    margin-right: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .shopify-product-info {
        position: static;
        top: auto;
        max-height: none;
        overflow: visible;
        margin-top: 2rem;
        padding-right: 0;
    }
    
    .shopify-product-title {
        font-size: 1.75rem;
    }
    
    .shopify-product-description {
        font-size: 1rem;
    }
    
    .shopify-price-current {
        font-size: 1.5rem;
    }
    
    .shopify-btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        min-height: 48px;
    }
    
    .shopify-product-actions {
        flex-direction: column;
    }
    
    .shopify-product-actions .shopify-btn {
        width: 100%;
        min-width: auto;
    }
    
    .delivery-service ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .shopify-product-gallery {
        margin-bottom: 1.5rem;
    }
    
    .shopify-product-page .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 576px) {
    .shopify-product-title {
        font-size: 1.5rem;
    }
    
    .shopify-product-price-wrapper {
        margin: 1rem 0;
    }
    
    .shopify-product-actions {
        margin: 1.5rem 0;
    }
    
    .shopify-btn-large {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        min-height: 44px;
    }
    
    .shopify-variant-group {
        margin-bottom: 1.25rem;
    }
    
    .shopify-product-info .color-swatch label {
        width: 36px;
        height: 36px;
    }
    
    .shopify-product-info .image-swatch label {
        width: 44px;
        height: 44px;
    }
    
    .shopify-product-info .default-swatch label {
        padding: 0.4rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .shopify-product-info .plus-minus-input {
        max-width: 100%;
    }
    
    .shopify-product-info .minus-btn,
    .shopify-product-info .plus-btn {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
    }
    
    .shopify-product-info .product-quantity input,
    .shopify-product-info .input-group-field {
        height: 40px !important;
    }

    /* Professional Price Ticker Styles - Enhanced Creative Design */
    /* Live Rates Section - Theme Redesign with Marquee */
    .live-rates-section {
        background: linear-gradient(135deg, #FDF8F0 0%, #F5F1E8 100%);
        padding: 40px 20px;
        margin: 40px 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        position: relative;
        border-top: 3px solid #C9A96E;
        border-bottom: 3px solid #C9A96E;
        box-shadow: 0 4px 20px rgba(74, 14, 78, 0.08);
    }

    .live-rates-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #4A0E4E, #C9A96E, #4A0E4E);
        opacity: 0.3;
    }

    .live-rates-section * {
        box-sizing: border-box;
    }

    /* Override any conflicting styles */
    .live-rates-section .live-rates-carousel-container,
    .live-rates-section .live-rates-carousel-track,
    .live-rates-section .live-rate-item {
        box-sizing: border-box;
    }

    .live-rates-section .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin: 0 auto;
        overflow: hidden;
        box-sizing: border-box;
    }

    .live-rates-wrapper {
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .live-rates-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid rgba(201, 169, 110, 0.2);
        text-align: center;
        position: relative;
    }

    .header-icon-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-bottom: 10px;
    }

    .live-rates-header i {
        color: #C9A96E;
        font-size: 28px;
        background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(230, 197, 71, 0.15));
        padding: 12px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(201, 169, 110, 0.2);
        border: 2px solid rgba(201, 169, 110, 0.3);
    }

    .live-rates-title {
        color: #4A0E4E;
        font-size: 32px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin: 0;
        font-family: var(--font-playfair), serif;
        text-shadow: 0 2px 4px rgba(74, 14, 78, 0.1);
    }

    .live-rates-subtitle {
        color: #6C757D;
        font-size: 16px;
        font-weight: 500;
        margin: 8px 0 0 0;
        font-family: var(--font-montserrat), sans-serif;
        text-align: center;
        letter-spacing: 0.5px;
    }

    /* Carousel Container - Marquee-style Design */
    .live-rates-carousel-container {
        position: relative;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        padding: 25px 0;
        margin: 0;
        box-sizing: border-box !important;
        white-space: nowrap;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 12px;
    }

    /* Fade gradient overlays for smooth edges - Theme colors */
    .live-rates-carousel-container::before,
    .live-rates-carousel-container::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 120px;
        z-index: 10;
        pointer-events: none;
    }

    .live-rates-carousel-container::before {
        left: 0;
        background: linear-gradient(to right, rgba(253, 248, 240, 1) 0%, rgba(253, 248, 240, 0) 100%);
    }

    .live-rates-carousel-container::after {
        right: 0;
        background: linear-gradient(to left, rgba(253, 248, 240, 1) 0%, rgba(253, 248, 240, 0) 100%);
    }

    .live-rates-carousel-track {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 28px !important;
        animation: marqueeLeftToRight 35s linear infinite !important;
        animation-play-state: running !important;
        will-change: transform;
        width: fit-content !important;
        min-width: fit-content !important;
        align-items: stretch !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        position: relative;
    }

    .live-rates-carousel-track.carousel-animating {
        animation: marqueeLeftToRight 35s linear infinite !important;
        animation-play-state: running !important;
    }

    .live-rates-carousel-container:hover .live-rates-carousel-track {
        animation-play-state: paused !important;
    }

    /* Marquee-style Left to Right Scrolling Animation */
    @keyframes marqueeLeftToRight {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    /* Mahalaxmi Rate Card - New Class Names to Avoid Conflicts */
    .mahalaxmi-rate-card {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 32px 28px !important;
        background: #ffffff !important;
        border-radius: 20px !important;
        border: none !important;
        box-shadow: 0 8px 24px rgba(74, 14, 78, 0.08), 0 4px 12px rgba(201, 169, 110, 0.12) !important;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
        min-width: 280px !important;
        max-width: 280px !important;
        width: 280px !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        position: relative !important;
        white-space: nowrap !important;
        float: none !important;
        clear: none !important;
        margin: 0 !important;
        cursor: pointer;
        overflow: hidden;
        backdrop-filter: blur(10px);
    }

    /* Shine effect on hover */
    .mahalaxmi-rate-card::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
        transform: rotate(45deg);
        transition: all 0.6s;
        opacity: 0;
        pointer-events: none;
        z-index: 1;
    }

    .mahalaxmi-rate-card:hover::after {
        opacity: 1;
        animation: mahalaxmiShine 1.5s ease-in-out;
    }

    @keyframes mahalaxmiShine {
        0% {
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
        }
        100% {
            transform: translateX(100%) translateY(100%) rotate(45deg);
        }
    }

    .mahalaxmi-rate-card:hover {
        transform: translateY(-12px) scale(1.03);
        box-shadow: 0 16px 40px rgba(74, 14, 78, 0.15), 0 8px 20px rgba(201, 169, 110, 0.2) !important;
    }

    /* Gold Rate Card */
    .mahalaxmi-rate-gold {
        background: linear-gradient(145deg, #ffffff 0%, #FFFBF0 50%, #FFF8E6 100%) !important;
        position: relative;
        border-left: 5px solid #C9A96E !important;
    }

    /* Gold accent line */
    .mahalaxmi-rate-gold::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(180deg, #E6C547 0%, #C9A96E 50%, #D4AF37 100%);
        border-radius: 20px 0 0 20px;
        box-shadow: 2px 0 8px rgba(201, 169, 110, 0.3);
        z-index: 0;
    }

    /* Gold decorative pattern overlay */
    .mahalaxmi-rate-gold::after {
        content: '✦';
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 24px;
        color: rgba(201, 169, 110, 0.15);
        font-weight: bold;
        z-index: 0;
        pointer-events: none;
    }

    .mahalaxmi-rate-gold:hover {
        background: linear-gradient(145deg, #FFF8E6 0%, #FFF5D6 50%, #FFEECC 100%) !important;
        border-left-color: #E6C547 !important;
    }

    /* Silver Rate Card */
    .mahalaxmi-rate-silver {
        background: linear-gradient(145deg, #ffffff 0%, #FAFBFC 50%, #F5F7FA 100%) !important;
        position: relative;
        border-left: 5px solid #9CA3AF !important;
    }

    /* Silver accent line */
    .mahalaxmi-rate-silver::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(180deg, #D1D5DB 0%, #9CA3AF 50%, #E5E7EB 100%);
        border-radius: 20px 0 0 20px;
        box-shadow: 2px 0 8px rgba(156, 163, 175, 0.25);
        z-index: 0;
    }

    /* Silver decorative pattern overlay */
    .mahalaxmi-rate-silver::after {
        content: '◆';
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 24px;
        color: rgba(156, 163, 175, 0.15);
        font-weight: bold;
        z-index: 0;
        pointer-events: none;
    }

    .mahalaxmi-rate-silver:hover {
        background: linear-gradient(145deg, #F5F7FA 0%, #F1F3F5 50%, #E9ECEF 100%) !important;
        border-left-color: #D1D5DB !important;
    }

    @keyframes shimmer {
        0% {
            background-position: -200% 0;
        }
        100% {
            background-position: 200% 0;
        }
    }

    /* Mahalaxmi Rate Info */
    .mahalaxmi-rate-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
        width: 100%;
        position: relative;
        z-index: 2;
        padding-top: 8px;
    }

    /* Metal Name */
    .mahalaxmi-metal-name {
        color: #4A0E4E;
        font-size: 24px;
        font-weight: 700;
        font-family: var(--font-playfair), serif;
        text-align: center;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        margin-bottom: 6px;
        position: relative;
        z-index: 2;
    }

    .mahalaxmi-rate-gold .mahalaxmi-metal-name {
        color: #B8860B;
        text-shadow: 0 2px 6px rgba(201, 169, 110, 0.25);
    }

    .mahalaxmi-rate-silver .mahalaxmi-metal-name {
        color: #4A5568;
        text-shadow: 0 2px 6px rgba(108, 117, 125, 0.15);
    }

    .mahalaxmi-rate-card:hover .mahalaxmi-metal-name {
        transform: scale(1.05);
    }

    /* Carat Badge */
    .mahalaxmi-carat-badge {
        color: #4A0E4E;
        font-size: 14px;
        font-weight: 600;
        background: rgba(74, 14, 78, 0.06);
        padding: 10px 22px;
        border-radius: 30px;
        font-family: var(--font-montserrat), sans-serif;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
        z-index: 2;
    }

    .mahalaxmi-rate-gold .mahalaxmi-carat-badge {
        background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(230, 197, 71, 0.2));
        color: #B8860B;
        border-color: rgba(201, 169, 110, 0.3);
        box-shadow: 0 4px 12px rgba(201, 169, 110, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.5);
    }

    .mahalaxmi-rate-silver .mahalaxmi-carat-badge {
        background: linear-gradient(135deg, rgba(156, 163, 175, 0.12), rgba(209, 213, 219, 0.18));
        color: #4A5568;
        border-color: rgba(156, 163, 175, 0.3);
        box-shadow: 0 4px 12px rgba(156, 163, 175, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.5);
    }

    .mahalaxmi-rate-card:hover .mahalaxmi-carat-badge {
        transform: scale(1.08) translateY(-2px);
        box-shadow: 0 6px 16px rgba(201, 169, 110, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.6);
    }

    /* Price Display */
    .mahalaxmi-price-display {
        color: #4A0E4E;
        font-size: 36px;
        font-weight: 800;
        font-family: var(--font-montserrat), sans-serif;
        letter-spacing: -1px;
        text-align: center;
        position: relative;
        z-index: 2;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin-top: 4px;
        padding: 12px 20px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 12px;
        backdrop-filter: blur(5px);
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .mahalaxmi-rate-gold .mahalaxmi-price-display {
        color: #B8860B;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 248, 230, 0.8));
        text-shadow: 0 2px 8px rgba(201, 169, 110, 0.3);
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(201, 169, 110, 0.15);
    }

    .mahalaxmi-rate-silver .mahalaxmi-price-display {
        color: #4A5568;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(248, 250, 252, 0.8));
        text-shadow: 0 2px 8px rgba(108, 117, 125, 0.2);
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(156, 163, 175, 0.12);
    }

    .mahalaxmi-rate-card:hover .mahalaxmi-price-display {
        transform: scale(1.08) translateY(-3px);
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05), 0 4px 16px rgba(201, 169, 110, 0.25);
    }

    /* ============================================
       NEW MODERN LIVE RATES SECTION DESIGN
       ============================================ */
    
    .live-rates-section-modern {
        padding: 60px 0 !important;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%) !important;
        position: relative;
        overflow: visible !important;
        width: 100% !important;
        margin: 0 !important;
        display: block !important;
    }

    .live-rates-section-modern .container {
        width: 100% !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 15px !important;
        display: block !important;
    }

    .live-rates-section-modern .container > * {
        display: block !important;
    }

    .live-rates-section-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, 
            var(--primary-color) 0%, 
            #C9A96E 25%, 
            var(--primary-color) 50%, 
            #9CA3AF 75%, 
            var(--primary-color) 100%);
        background-size: 200% 100%;
        animation: gradientShift 3s ease infinite;
    }

    @keyframes gradientShift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }

    .live-rates-header-modern {
        text-align: center;
        margin-bottom: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .live-rates-icon-wrapper {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-color) 0%, #C9A96E 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 24px rgba(220, 53, 69, 0.25);
        position: relative;
        animation: pulse 2s ease-in-out infinite;
    }

    .live-rates-icon-wrapper::before {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-color), #C9A96E);
        opacity: 0.3;
        z-index: -1;
        animation: ripple 2s ease-out infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }

    @keyframes ripple {
        0% { transform: scale(0.8); opacity: 1; }
        100% { transform: scale(1.2); opacity: 0; }
    }

    .live-rates-icon-wrapper i {
        font-size: 36px;
        color: #ffffff;
        z-index: 1;
    }

    .live-rates-title-wrapper {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .live-rates-title-modern {
        font-size: 42px;
        font-weight: 800;
        color: #1a1d29;
        margin: 0;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-family: var(--font-montserrat), sans-serif;
        background: linear-gradient(135deg, var(--primary-color) 0%, #C9A96E 50%, var(--primary-color) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% 100%;
        animation: textGradient 3s ease infinite;
    }

    @keyframes textGradient {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }

    .live-rates-subtitle-modern {
        font-size: 16px;
        color: #6c757d;
        font-weight: 500;
        margin: 0;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    /* Marquee-style Carousel Wrapper */
    .live-rates-carousel-wrapper {
        position: relative;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        padding: 25px 0 !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    /* Fade gradient overlays for smooth edges */
    .live-rates-carousel-wrapper::before,
    .live-rates-carousel-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100px;
        z-index: 10;
        pointer-events: none;
    }

    .live-rates-carousel-wrapper::before {
        left: 0;
        background: linear-gradient(to right, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0) 100%);
    }

    .live-rates-carousel-wrapper::after {
        right: 0;
        background: linear-gradient(to left, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0) 100%);
    }

    /* Carousel Track - Horizontal Scroll on Desktop, Static on Mobile */
    .live-rates-carousel-track-modern {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 20px !important;
        width: fit-content !important;
        min-width: fit-content !important;
        align-items: stretch !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        position: relative;
    }

    /* Desktop: Animated marquee scroll */
    @media (min-width: 992px) {
        .live-rates-carousel-track-modern {
            animation: marqueeScroll 40s linear infinite !important;
            animation-play-state: running !important;
            will-change: transform;
        }

        .live-rates-carousel-wrapper:hover .live-rates-carousel-track-modern {
            animation-play-state: paused !important;
        }
    }

    /* Mobile: Static display, no animation */
    @media (max-width: 991px) {
        .live-rates-carousel-track-modern {
            flex-wrap: wrap !important;
            justify-content: center !important;
            animation: none !important;
        }

        .live-rates-carousel-wrapper::before,
        .live-rates-carousel-wrapper::after {
            display: none !important;
        }
    }

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

    .live-rates-carousel-track-modern > * {
        flex: 0 0 auto !important;
        width: 220px !important;
        min-width: 220px !important;
        max-width: 220px !important;
        box-sizing: border-box !important;
    }

    .rate-card-modern {
        background: #ffffff !important;
        border-radius: 20px !important;
        padding: 30px 25px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative !important;
        overflow: hidden !important;
        border: 2px solid transparent !important;
        display: flex !important;
        flex-direction: column !important;
        margin: 0 !important;
        float: none !important;
        min-height: 200px !important;
    }

    .rate-card-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, transparent, currentColor, transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .rate-card-modern:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        border-color: currentColor;
    }

    .rate-card-modern:hover::before {
        opacity: 1;
    }

    /* Gold Rate Card */
    .rate-card-gold {
        color: #C9A96E;
        background: linear-gradient(135deg, #ffffff 0%, #FFFBF0 50%, #ffffff 100%);
    }

    .rate-card-gold::before {
        background: linear-gradient(90deg, transparent, #C9A96E, transparent);
    }

    .rate-card-gold:hover {
        background: linear-gradient(135deg, #FFFBF0 0%, #FFF8E6 50%, #FFFBF0 100%);
        box-shadow: 0 12px 40px rgba(201, 169, 110, 0.25);
    }

    /* Silver Rate Card */
    .rate-card-silver {
        color: #9CA3AF;
        background: linear-gradient(135deg, #ffffff 0%, #F8F9FA 50%, #ffffff 100%);
    }

    .rate-card-silver::before {
        background: linear-gradient(90deg, transparent, #9CA3AF, transparent);
    }

    .rate-card-silver:hover {
        background: linear-gradient(135deg, #F8F9FA 0%, #F1F3F5 50%, #F8F9FA 100%);
        box-shadow: 0 12px 40px rgba(156, 163, 175, 0.25);
    }

    .rate-card-header {
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
        margin-bottom: 25px !important;
        width: 100% !important;
    }

    .rate-metal-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        background: currentColor;
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }

    .rate-card-modern:hover .rate-metal-icon {
        transform: rotate(360deg) scale(1.1);
    }

    .rate-metal-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .rate-metal-name {
        font-size: 22px;
        font-weight: 700;
        color: #1a1d29;
        margin: 0;
        font-family: var(--font-montserrat), sans-serif;
    }

    .rate-carat {
        font-size: 13px;
        font-weight: 600;
        color: currentColor;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.8;
    }

    .rate-price-wrapper {
        display: flex !important;
        align-items: baseline !important;
        gap: 6px !important;
        margin-bottom: 20px !important;
        padding: 20px !important;
        background: rgba(0, 0, 0, 0.02) !important;
        border-radius: 12px !important;
        border-left: 4px solid currentColor !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .rate-currency {
        font-size: 24px;
        font-weight: 700;
        color: currentColor;
        opacity: 0.9;
    }

    .rate-price {
        font-size: 42px;
        font-weight: 800;
        color: #1a1d29;
        font-family: var(--font-montserrat), sans-serif;
        line-height: 1;
    }

    .rate-unit {
        font-size: 14px;
        font-weight: 500;
        color: #6c757d;
        margin-left: 4px;
    }

    .rate-card-footer {
        display: flex !important;
        justify-content: center !important;
        padding-top: 15px !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
        width: 100% !important;
        margin-top: auto !important;
    }

    .rate-live-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 600;
        color: #28a745;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .live-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #28a745;
        animation: livePulse 2s ease-in-out infinite;
        box-shadow: 0 0 8px rgba(40, 167, 69, 0.6);
    }

    @keyframes livePulse {
        0%, 100% { 
            opacity: 1;
            transform: scale(1);
        }
        50% { 
            opacity: 0.6;
            transform: scale(1.2);
        }
    }

    /* Mobile: Responsive card widths */
    @media (max-width: 991px) {
        .live-rates-carousel-track-modern > * {
            width: calc(50% - 10px) !important;
            min-width: calc(50% - 10px) !important;
            max-width: calc(50% - 10px) !important;
        }
    }

    @media (max-width: 576px) {
        .live-rates-carousel-track-modern > * {
            width: 100% !important;
            min-width: 100% !important;
            max-width: 100% !important;
        }
    }

    @media (max-width: 768px) {
        .live-rates-section-modern {
            padding: 40px 0;
        }

        .live-rates-header-modern {
            margin-bottom: 35px;
        }

        .live-rates-icon-wrapper {
            width: 60px;
            height: 60px;
        }

        .live-rates-icon-wrapper i {
            font-size: 28px;
        }

        .live-rates-title-modern {
            font-size: 28px;
            letter-spacing: 2px;
        }

        .live-rates-subtitle-modern {
            font-size: 14px;
        }

        .live-rates-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .rate-card-modern {
            padding: 25px 20px;
        }

        .rate-price {
            font-size: 36px;
        }

        .rate-metal-name {
            font-size: 20px;
        }
    }

    @media (max-width: 576px) {
        .live-rates-grid {
            grid-template-columns: 1fr;
        }

        .rate-price {
            font-size: 32px;
        }
    }

    /* Responsive Design for Live Rates Section */
    @media (max-width: 768px) {
        .live-rates-section {
            padding: 25px 15px;
            margin: 0 0 25px 0;
        }

        .live-rates-section .container {
            padding-left: 10px;
            padding-right: 10px;
        }

        .live-rates-header {
            margin-bottom: 20px;
        }

        .header-icon-title {
            gap: 10px;
        }

        .live-rates-header i {
            font-size: 18px;
            width: 34px;
            height: 34px;
            padding: 7px;
        }

        .live-rates-title {
            font-size: 18px;
        }

        .live-rates-subtitle {
            font-size: 12px;
        }

        .live-rates-carousel-container {
            padding: 20px 0;
        }

        .live-rates-carousel-container::before,
        .live-rates-carousel-container::after {
            width: 60px;
        }

        .live-rates-carousel-track {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            gap: 20px !important;
            animation-duration: 30s !important;
            padding: 0 !important;
        }

        .mahalaxmi-rate-card {
            min-width: 240px !important;
            max-width: 240px !important;
            width: 240px !important;
            padding: 28px 24px !important;
        }

        .mahalaxmi-metal-name {
            font-size: 22px;
        }

        .mahalaxmi-price-display {
            font-size: 30px;
            padding: 10px 16px;
        }

        .mahalaxmi-carat-badge {
            padding: 8px 18px;
            font-size: 13px;
        }

        .live-rates-title {
            font-size: 28px;
        }

        .live-rates-header i {
            width: 45px;
            height: 45px;
            font-size: 24px;
        }

        .mahalaxmi-metal-name {
            font-size: 16px;
        }

        .mahalaxmi-carat-badge {
            font-size: 12px;
            padding: 5px 12px;
        }

        .mahalaxmi-price-display {
            font-size: 20px;
        }
    }

    @media (max-width: 480px) {
        .live-rates-section {
            padding: 20px 10px;
        }

        .live-rates-header {
            margin-bottom: 15px;
            padding-bottom: 12px;
        }

        .header-icon-title {
            gap: 8px;
        }

        .live-rates-header i {
            font-size: 16px;
            width: 32px;
            height: 32px;
            padding: 6px;
        }

        .live-rates-title {
            font-size: 16px;
            letter-spacing: 1px;
        }

        .live-rates-subtitle {
            font-size: 11px;
        }

        .live-rates-carousel-container {
            padding: 15px 0;
        }

        .live-rates-carousel-container::before,
        .live-rates-carousel-container::after {
            width: 40px;
        }

        .live-rates-carousel-track {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            gap: 16px !important;
            animation-duration: 25s !important;
            padding: 0 !important;
        }

        .mahalaxmi-rate-card {
            min-width: 200px !important;
            max-width: 200px !important;
            width: 200px !important;
            padding: 24px 20px !important;
        }

        .mahalaxmi-metal-name {
            font-size: 20px;
        }

        .mahalaxmi-carat-badge {
            font-size: 12px;
            padding: 8px 16px;
        }

        .mahalaxmi-price-display {
            font-size: 26px;
            padding: 8px 14px;
        }

        .live-rates-title {
            font-size: 24px;
        }

        .live-rates-header i {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }

        .mahalaxmi-metal-name {
            font-size: 15px;
        }

        .mahalaxmi-carat-badge {
            font-size: 11px;
            padding: 4px 10px;
        }

        .mahalaxmi-price-display {
            font-size: 18px;
        }
    }
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */
/* About Page Header */
.about-page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 60px 0;
    margin-bottom: 0;
}

.about-page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-family: var(--font-playfair, 'Playfair Display'), serif;
    letter-spacing: -1px;
}

.about-page-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.about-hero-section {
    padding: 60px 0;
}

.about-hero-content {
    padding-right: 2rem;
}

.about-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-family: var(--font-playfair, 'Playfair Display'), serif;
}

.about-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.about-hero-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-family: var(--font-playfair, 'Playfair Display'), serif;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #c82333);
    margin: 0 auto 24px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Our Story Section */
.our-story-section {
    padding: 60px 0;
}

.story-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: justify;
}

.story-text p {
    margin-bottom: 1.5rem;
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    padding: 60px 0;
}

.value-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-family: var(--font-playfair, 'Playfair Display'), serif;
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

/* Promise Section */
.our-promise-section {
    padding: 60px 0;
}

.promise-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.promise-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

.promise-text:last-of-type {
    margin-bottom: 0;
}

.signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #e9ecef;
}

.signature-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 8px;
    font-style: italic;
}

.signature-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    font-family: var(--font-playfair, 'Playfair Display'), serif;
}

/* Branches Section */
.branches-section {
    padding: 60px 0;
    background-color: #f7fafc;
}

.branch-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.branch-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(220, 53, 69, 0.1);
    line-height: 1;
    font-family: var(--font-playfair, 'Playfair Display'), serif;
}

.branch-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e9ecef;
}

.branch-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
}

.branch-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    font-family: var(--font-playfair, 'Playfair Display'), serif;
}

.branch-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.branch-address,
.branch-phone {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

.branch-address i,
.branch-phone i {
    color: #dc3545;
    margin-top: 4px;
    flex-shrink: 0;
}

.branch-phone a {
    color: #dc3545;
    text-decoration: none;
    transition: color 0.3s ease;
}

.branch-phone a:hover {
    color: #c82333;
    text-decoration: underline;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #dc3545;
}

.breadcrumb-item.active {
    color: #1a1a1a;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .about-page-title {
        font-size: 2.5rem;
    }
    
    .about-page-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero-content {
        padding-right: 0;
        margin-bottom: 32px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .about-page-header {
        padding: 50px 0 40px 0;
    }
    
    .about-page-title {
        font-size: 2rem;
    }
    
    .about-page-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .about-hero-section,
    .our-story-section,
    .values-section,
    .our-promise-section,
    .branches-section {
        padding: 40px 0;
    }
    
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .story-content,
    .promise-content {
        padding: 24px;
    }
    
    .value-card {
        padding: 24px 16px;
    }
    
    .branch-card {
        padding: 24px 16px;
    }
}

/* ============================================
   FAQ SECTION STYLES
   ============================================ */
.faq-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.faq-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1d29;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.faq-section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
    font-weight: 400;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background-color: transparent;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1d29;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question[aria-expanded="true"] {
    background-color: #f8f9fa;
}

.faq-question[aria-expanded="true"] .faq-chevron ion-icon {
    transform: rotate(180deg);
}

.faq-number {
    font-weight: 600;
    color: #1a1d29;
    margin-right: 12px;
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
    color: #1a1d29;
    font-weight: 500;
    line-height: 1.5;
}

.faq-chevron {
    margin-left: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-chevron ion-icon {
    font-size: 1.25rem;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.faq-answer {
    border-top: 1px solid #e9ecef;
}

.faq-answer-content {
    padding: 20px 24px;
    color: #495057;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Styles for FAQ Section */
@media (max-width: 991.98px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section-title {
        font-size: 2rem;
    }
    
    .faq-section-subtitle {
        font-size: 1rem;
    }
    
    .faq-container {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 767.98px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section-title {
        font-size: 1.75rem;
    }
    
    .faq-section-subtitle {
        font-size: 0.95rem;
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .faq-number {
        margin-right: 8px;
    }
    
    .faq-answer-content {
        padding: 16px 20px;
        font-size: 0.9rem;
    }
    
    .faq-chevron {
        margin-left: 12px;
    }
    
    .faq-chevron ion-icon {
        font-size: 1.1rem;
    }
}

/* ============================================
   DISCLAIMER SECTION STYLES
   ============================================ */
.disclaimer-section {
    background-color: #fafafa; 
    width: 100%;
}

.disclaimer-section .container {
    max-width: 100%;
    padding-left: 50px;
    padding-right: 50px;
}

.disclaimer-container {
    max-width: 100%;
    margin: 0 auto;
}

.disclaimer-content-block {
    margin-bottom: 48px;
}

.disclaimer-content-block:last-child {
    margin-bottom: 0;
}

.disclaimer-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
}

.disclaimer-paragraph {
    font-size: 1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 400;
}

.disclaimer-paragraph:last-child {
    margin-bottom: 0;
}

.disclaimer-paragraph strong {
    color: #2c3e50;
    font-weight: 600;
}

.disclaimer-preview {
    margin-bottom: 0;
}

.disclaimer-expanded-content {
    margin-top: 20px;
    padding-top: 20px;
}

.disclaimer-actions {
    text-align: left;
    margin-top: 24px;
}

.btn-disclaimer-read-more {
    background: var(--primary-color, #dc3545);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-disclaimer-read-more:hover {
    background: var(--primary-color-onhover, #c82333);
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-disclaimer-read-more:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.btn-disclaimer-read-more[aria-expanded="true"] .read-more-text {
    display: none;
}

.btn-disclaimer-read-more[aria-expanded="true"] .read-less-text {
    display: inline !important;
}

/* Responsive Styles for Disclaimer Section */
@media (max-width: 991.98px) {
    .disclaimer-section {
        padding: 50px 0;
    }
    
    .disclaimer-section .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .disclaimer-heading {
        font-size: 1.5rem;
    }
    
    .disclaimer-container {
        max-width: 100%;
    }
    
    .disclaimer-content-block {
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .disclaimer-section {
        padding: 40px 0;
    }
    
    .disclaimer-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .disclaimer-heading {
        font-size: 1.35rem;
        margin-bottom: 16px;
    }
    
    .disclaimer-paragraph {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }
    
    .disclaimer-content-block {
        margin-bottom: 32px;
    }
    
    .btn-disclaimer-read-more {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .disclaimer-expanded-content {
        margin-top: 16px;
        padding-top: 16px;
    }
}

/* ============================================
   CERTIFICATIONS PAGE STYLES
   ============================================ */
.certifications-page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.certifications-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1d29;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.certifications-page-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.certifications-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.certification-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color, #dc3545);
}

.certification-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.certification-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #adb5bd;
    font-size: 4rem;
}

.certification-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.certification-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a1d29;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.certification-description {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.certification-details {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.certification-detail-item {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 8px;
    line-height: 1.5;
}

.certification-detail-item:last-child {
    margin-bottom: 0;
}

.certification-detail-item strong {
    color: #2c3e50;
    font-weight: 600;
}

.no-certifications {
    padding: 60px 20px;
}

.no-certifications h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* Responsive Styles for Certifications Page */
@media (max-width: 991.98px) {
    .certifications-page-header {
        padding: 50px 0;
    }
    
    .certifications-page-title {
        font-size: 2rem;
    }
    
    .certifications-section {
        padding: 50px 0;
    }
}

@media (max-width: 767.98px) {
    .certifications-page-header {
        padding: 40px 0;
    }
    
    .certifications-page-title {
        font-size: 1.75rem;
    }
    
    .certifications-page-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .certifications-section {
        padding: 40px 0;
    }
    
    .certification-image-wrapper {
        height: 200px;
    }
    
    .certification-content {
        padding: 20px;
    }
    
    .certification-title {
        font-size: 1.2rem;
    }
    
    .certification-description {
        font-size: 0.9rem;
    }
}