/* Color Palette - Premium Suit Store */
:root {
    --primary-navy: #1a2332;
    --primary-burgundy: #8b2635;
    --accent-gold: #d4af37;
    --accent-gold-light: #e8c547;
    --dark-charcoal: #2c3e50;
    --light-cream: #f5f1e8;
    --warm-gray: #6b7280;
    --soft-white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    --gradient-burgundy: linear-gradient(135deg, #8b2635 0%, #a83245 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #e8c547 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 35, 50, 0.85) 0%, rgba(139, 38, 53, 0.75) 100%);
}

/* Main styles */
body {
    background: linear-gradient(to bottom, #ffffff 0%, #f5f1e8 100%);
    font-family: 'Raleway', sans-serif;
    color: var(--dark-charcoal);
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
}

/* Navigation */
.navbar {
    box-shadow: 0 4px 20px rgba(26, 35, 50, 0.1);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    border-bottom: 2px solid var(--accent-gold);
    z-index: 1030;
}

.navbar.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

.navbar-brand {
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-menu-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.nav-menu-items .nav-item {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link {
    color: var(--dark-charcoal);
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    position: relative;
    margin: 0 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 50px;
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-burgundy);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
    left: 50%;
}

.search-form {
    width: 100%;
    max-width: 400px;
}

.search-form .form-control {
    border-radius: 25px 0 0 25px;
    border: 2px solid var(--light-cream);
    background: var(--soft-white);
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
}

.search-form .form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

.search-form .btn {
    border-radius: 0 25px 25px 0;
    border: 2px solid var(--primary-burgundy);
    border-left: none;
    background: var(--gradient-burgundy);
    color: white;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
}

.search-form .btn:hover {
    background: var(--gradient-gold);
    border-color: var(--accent-gold);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Cart button */
.cart-btn {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-charcoal) 100%);
    border: none;
    color: var(--accent-gold);
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 80px;
    justify-content: center;
}

.cart-btn i {
    font-size: 1.2rem;
}

.cart-count {
    background: var(--gradient-gold);
    color: var(--primary-navy);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1;
    padding: 0;
    min-width: 24px;
}

.cart-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cart-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(26, 35, 50, 0.3);
    color: var(--accent-gold-light);
}

.cart-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Product cards */
.card {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: var(--soft-white);
    box-shadow: 0 4px 15px rgba(26, 35, 50, 0.08);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(26, 35, 50, 0.15);
}

.card-img-top {
    transition: transform 0.5s ease;
    border-radius: 0;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.card-body {
    padding: 1.5rem;
    background: linear-gradient(to bottom, var(--soft-white) 0%, var(--light-cream) 100%);
}

.card-title a {
    color: var(--primary-navy);
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: var(--primary-burgundy);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-burgundy);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover {
    background: var(--gradient-gold);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    color: var(--primary-navy);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline-primary {
    border: 2px solid var(--primary-burgundy);
    color: var(--primary-burgundy);
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--gradient-burgundy);
    color: white;
    border-color: var(--primary-burgundy);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.3);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 1rem 0;
}

.breadcrumb-item a {
    color: var(--primary-burgundy);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--accent-gold);
}

.breadcrumb-item.active {
    color: var(--warm-gray);
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--accent-gold);
    font-weight: bold;
}

/* Footer styles */
footer {
    background: var(--gradient-primary);
    color: var(--light-cream);
    box-shadow: 0 -4px 20px rgba(26, 35, 50, 0.2);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

footer a {
    color: var(--light-cream);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

footer a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* Store info in footer only - WHITE TEXT */
footer .store-info p,
footer .store-info p *,
footer .store-info p span,
footer .store-info p strong,
footer .store-info p em {
    margin-bottom: 0.8rem;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 1.05rem;
    -webkit-text-fill-color: #ffffff !important;
}

footer .store-info i {
    width: 25px;
    color: var(--accent-gold) !important;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--light-cream);
    margin-right: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
}

.social-links a:hover {
    color: var(--accent-gold);
    background: var(--gradient-gold);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Cookie consent */
.cookie-consent {
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(26, 35, 50, 0.3);
    background: var(--gradient-primary) !important;
    border-top: 3px solid var(--accent-gold);
}

.cookie-consent .btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-navy);
}

.cookie-consent .btn-primary:hover {
    background: var(--accent-gold-light);
    color: var(--primary-navy);
}

.cookie-consent a {
    color: var(--accent-gold);
}

/* Contact page specific styles */
.store-details li {
    margin-bottom: 1.5rem;
}

.store-details i {
    font-size: 1.2rem;
    width: 25px;
    color: var(--primary-burgundy);
}

.store-details a {
    color: var(--dark-charcoal);
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-details a:hover {
    color: var(--primary-burgundy);
    transform: translateX(5px);
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-burgundy);
    color: white;
    font-weight: 600;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(139, 38, 53, 0.25);
    border-color: var(--primary-burgundy);
}

.accordion-body {
    background: linear-gradient(to bottom, var(--soft-white) 0%, var(--light-cream) 100%);
    border-left: 4px solid var(--accent-gold);
}

/* Hero Carousel - Modern Design */
.hero-section {
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.carousel {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.carousel-inner {
    border-radius: 0;
    overflow: hidden;
}

.carousel-item {
    position: relative;
}

.carousel-item img {
    filter: brightness(0.9);
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 500px;
}

.carousel-caption {
    background: var(--gradient-hero);
    padding: 3rem 4rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    text-align: center;
}

.carousel-caption h1 {
    color: var(--accent-gold);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.carousel-caption p {
    color: var(--light-cream);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.carousel-caption .lead {
    color: var(--light-cream);
    font-size: 1.2rem;
}

/* Carousel Controls - Modern Style */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 35, 50, 0.7);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.5);
    opacity: 0.8;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--gradient-burgundy);
    border-color: var(--accent-gold);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-size: 100% 100%;
    opacity: 1;
    background-color: transparent;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

/* Carousel Indicators - Modern Design */
.carousel-indicators {
    margin-bottom: 30px;
    gap: 12px;
}

.carousel-indicators [data-bs-target] {
    width: 50px;
    height: 6px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.3);
    opacity: 0.6;
    margin: 0 6px;
    cursor: pointer;
}

.carousel-indicators [data-bs-target]:hover {
    opacity: 0.8;
    background-color: rgba(212, 175, 55, 0.6);
}

.carousel-indicators [data-bs-target].active {
    opacity: 1;
    background: var(--gradient-gold);
    border-color: var(--accent-gold);
    width: 70px;
    height: 8px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Category Cards */
.category-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(26, 35, 50, 0.15);
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 35, 50, 0.25);
}

.category-card img {
    transition: transform 0.6s ease;
    filter: brightness(0.9);
}

.category-card:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.category-overlay {
    background: var(--gradient-hero);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-top: 3px solid var(--accent-gold);
}

.category-overlay h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.category-overlay p {
    color: var(--light-cream);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--soft-white) 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.services-section i {
    color: var(--primary-burgundy);
    transition: all 0.3s ease;
}

.services-section .text-center:hover i {
    color: var(--accent-gold);
    transform: scale(1.2) rotate(5deg);
}

/* Price Display */
.h4 {
    color: var(--primary-burgundy);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

/* Section Headings */
h2.text-center {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}

h2.text-center::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Form Styles */
.form-control {
    border: 2px solid var(--light-cream);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

/* Additional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease-out;
}

/* Product Details Page */
.price-section {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--soft-white) 100%);
    border-radius: 12px;
    border-left: 5px solid var(--accent-gold);
    margin-bottom: 2rem;
}

.price-section h2 {
    color: var(--primary-burgundy);
    font-size: 2.5rem;
    margin: 0;
}

.product-details {
    background: var(--soft-white);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(26, 35, 50, 0.08);
}

.product-details h3 {
    color: var(--primary-navy);
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-details ul li {
    padding: 0.5rem 0;
    color: var(--dark-charcoal);
    font-size: 1.05rem;
}

.product-details ul li i {
    color: var(--primary-burgundy);
    margin-right: 0.75rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--soft-white) 0%, var(--light-cream) 100%);
    padding: 3rem 0;
    border-radius: 20px;
    margin: 3rem 0;
}

.contact-section h2 {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.contact-section form {
    background: var(--soft-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 35, 50, 0.1);
}

/* Featured Products Section */
.featured-products {
    background: linear-gradient(to bottom, transparent 0%, var(--light-cream) 100%);
    padding: 3rem 0;
}

/* Products Section */
.products-section {
    padding: 2rem 0;
}

.products-section h3 {
    color: var(--primary-navy);
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-gold);
    margin-bottom: 2rem;
    display: inline-block;
}

/* Lead Text */
.lead {
    color: var(--warm-gray);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* List Unstyled with Icons */
.list-unstyled li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.list-unstyled li:hover {
    padding-left: 10px;
    background: rgba(212, 175, 55, 0.05);
}

/* Image Rounded Shadow */
.img-fluid.rounded.shadow {
    box-shadow: 0 10px 30px rgba(26, 35, 50, 0.2) !important;
    border: 3px solid var(--light-cream);
    transition: all 0.3s ease;
}

.img-fluid.rounded.shadow:hover {
    box-shadow: 0 15px 40px rgba(26, 35, 50, 0.3) !important;
    transform: scale(1.02);
}

/* Container with subtle background */
.container.my-5 {
    position: relative;
}

/* Text Dark Override for Carousel */
.carousel-caption.text-dark,
.carousel-caption {
    color: var(--light-cream) !important;
}

.carousel-caption.text-dark h1,
.carousel-caption h1,
.carousel-caption.text-dark p,
.carousel-caption p,
.carousel-caption.text-dark .lead,
.carousel-caption .lead {
    color: inherit;
}

/* Store Info Enhancements */
.store-info {
    background: rgba(212, 175, 55, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
}

/* Dark variant for store-info - MAXIMUM PRIORITY */
.store-info.dark {
    background: var(--gradient-primary) !important;
    color: #ffffff !important;
    border-left: 4px solid var(--accent-gold) !important;
}

/* Force white text for ALL elements inside .store-info.dark */
.store-info.dark p,
.store-info.dark p *,
.store-info.dark span,
.store-info.dark div,
section .store-info.dark p,
section .store-info.dark p *,
.contact-section .store-info.dark p,
.contact-section .store-info.dark p *,
.container .store-info.dark p,
.container .store-info.dark p *,
body .store-info.dark p,
body .store-info.dark p *,
body section .store-info.dark p,
body section .store-info.dark p *,
body .contact-section .store-info.dark p,
body .contact-section .store-info.dark p *,
body .container .store-info.dark p,
body .container .store-info.dark p *,
html body .store-info.dark p,
html body .store-info.dark p * {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 1.15rem !important;
    line-height: 1.9 !important;
    margin-bottom: 1rem !important;
    display: flex !important;
    align-items: center !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.store-info.dark h3,
.store-info.dark h4,
section .store-info.dark h3,
section .store-info.dark h4,
.contact-section .store-info.dark h3,
.contact-section .store-info.dark h4,
.container .store-info.dark h3,
.container .store-info.dark h4,
body .store-info.dark h3,
body .store-info.dark h4 {
    color: var(--accent-gold) !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.store-info.dark i,
section .store-info.dark i,
.contact-section .store-info.dark i,
.container .store-info.dark i,
body .store-info.dark i {
    color: var(--accent-gold) !important;
    width: 25px !important;
    margin-right: 0.5rem !important;
    font-size: 1.2rem !important;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)) !important;
}

.store-info h3,
.store-info h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

/* Store info on content pages (not footer) - Check background color */
section .store-info:not([style*="background"]):not(.dark) p,
.container .store-info:not([style*="background"]):not(.dark) p,
main .store-info:not([style*="background"]):not(.dark) p,
body > .container .store-info:not([style*="background"]):not(.dark) p {
    color: var(--dark-charcoal) !important;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

/* Dark background - light text - removed duplicate, using .store-info.dark p above */

section .store-info:not([style*="background"]):not(.dark) h3,
section .store-info:not([style*="background"]):not(.dark) h4,
.container .store-info:not([style*="background"]):not(.dark) h3,
.container .store-info:not([style*="background"]):not(.dark) h4,
main .store-info:not([style*="background"]):not(.dark) h3,
main .store-info:not([style*="background"]):not(.dark) h4 {
    color: var(--primary-navy) !important;
    font-weight: 700;
}

/* Dark background - gold headings */
section .store-info.dark h3,
section .store-info.dark h4,
.contact-section .store-info.dark h3,
.contact-section .store-info.dark h4,
.container .store-info.dark h3,
.container .store-info.dark h4 {
    color: var(--accent-gold) !important;
    font-weight: 700;
}

section .store-info i,
.contact-section .store-info i,
.container .store-info i,
main .store-info i {
    width: 25px;
    color: var(--accent-gold);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

::-moz-selection {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

/* Mobile Menu Adjustments */
@media (max-width: 991px) {
    .nav-menu-items {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .nav-menu-items .nav-item {
        width: 100%;
        text-align: left;
    }
    
    .nav-link {
        padding: 1rem !important;
        width: 100%;
        justify-content: flex-start;
    }
    
    .search-form {
        margin: 1rem 0;
        max-width: 100%;
    }
    
    .cart-btn {
        margin-top: 1rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .carousel-caption {
        padding: 1.5rem;
        width: 95%;
        bottom: 10%;
    }
    
    .carousel-caption p,
    .carousel-caption .lead {
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .category-overlay h3 {
        font-size: 1.5rem;
    }
    
    .category-overlay {
        padding: 1.5rem;
    }
    
    .price-section h2 {
        font-size: 2rem;
    }
    
    .product-details {
        padding: 1.5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .carousel-indicators {
        margin-bottom: 20px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 40px;
        height: 5px;
        margin: 0 4px;
    }
    
    .carousel-indicators [data-bs-target].active {
        width: 50px;
        height: 6px;
    }
}

/* FINAL OVERRIDE - Store info dark text visibility - MAXIMUM PRIORITY - ABSOLUTE */
.store-info.dark,
.store-info.dark *,
.store-info.dark p,
.store-info.dark p *,
.store-info.dark span,
.store-info.dark span *,
.store-info.dark div,
.store-info.dark div *,
.store-info.dark a,
.store-info.dark strong,
.store-info.dark em,
html body .store-info.dark,
html body .store-info.dark *,
html body .store-info.dark p,
html body .store-info.dark p *,
html body .store-info.dark span,
html body .store-info.dark div {
    color: #ffffff !important;
}

.store-info.dark p,
.store-info.dark p *,
html body .store-info.dark p,
html body .store-info.dark p * {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    -webkit-text-fill-color: #ffffff !important;
}

.store-info.dark h3,
.store-info.dark h4,
html body .store-info.dark h3,
html body .store-info.dark h4 {
    color: #d4af37 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6) !important;
    -webkit-text-fill-color: #d4af37 !important;
}

.store-info.dark i,
html body .store-info.dark i {
    color: #d4af37 !important;
    -webkit-text-fill-color: #d4af37 !important;
}

/* FINAL OVERRIDE - Footer store-info WHITE TEXT - ABSOLUTE PRIORITY */
footer .store-info,
footer .store-info *,
footer .store-info p,
footer .store-info p *,
footer .store-info span,
footer .store-info div,
html body footer .store-info,
html body footer .store-info *,
html body footer .store-info p,
html body footer .store-info p * {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
