:root {
    --purple-primary: #8B5CF6;
    --purple-dark: #6D28D9;
    --purple-light: #A78BFA;
    --pink-primary: #EC4899;
    --pink-dark: #DB2777;
    --pink-light: #F472B6;
    --turquoise-primary: #06B6D4;
    --turquoise-dark: #0891B2;
    --turquoise-light: #22D3EE;
    
    --bg-dark: #1A1A2E;
    --bg-darker: #0F0F1E;
    --bg-card: rgba(26, 26, 46, 0.6);
    --bg-card-hover: rgba(26, 26, 46, 0.8);
    
    --text-light: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.9);
    --text-accent: #F472B6;
    
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #06B6D4 100%);
    --gradient-purple-pink: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --gradient-pink-turquoise: linear-gradient(135deg, #EC4899 0%, #06B6D4 100%);
    --gradient-card: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 50%, rgba(6, 182, 212, 0.2) 100%);
    
    --header-height: 80px;
    --border-radius: 16px;
    --shadow-sm: 0 4px 6px rgba(139, 92, 246, 0.1);
    --shadow-md: 0 10px 25px rgba(139, 92, 246, 0.2);
    --shadow-lg: 0 20px 40px rgba(139, 92, 246, 0.3);
}

* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
    padding-top: var(--header-height);
}

p, .lead, .card-text, .text-muted {
    color: var(--text-light) !important;
    opacity: 0.9 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

small.text-muted {
    color: var(--text-light) !important;
    opacity: 0.85 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    color: var(--text-light);
}

.card-body {
    color: var(--text-light);
}

.card-body p,
.card-body .lead,
.card-body .card-text {
    color: var(--text-light);
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.card-body h1,
.card-body h2,
.card-body h3,
.card-body h4,
.card-body h5,
.card-body h6 {
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bg-dark {
    background: var(--bg-dark) !important;
    color: var(--text-light) !important;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-dark p,
.bg-dark .lead,
.bg-dark .card-text {
    color: var(--text-light) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.bg-dark .card {
    background: rgba(26, 26, 46, 0.9);
    border-color: rgba(139, 92, 246, 0.4);
    color: var(--text-light);
}

.bg-light {
    background: rgba(26, 26, 46, 0.9) !important;
    color: var(--text-light) !important;
}

.bg-light .nav-link {
    color: var(--text-light) !important;
}

.bg-light .nav-link.active {
    background: var(--gradient-purple-pink) !important;
    color: var(--text-light) !important;
}

.list-group-item {
    background: rgba(26, 26, 46, 0.8);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--text-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-tabs {
    border-bottom-color: rgba(139, 92, 246, 0.3);
}

.nav-tabs .nav-link {
    color: var(--text-light);
    opacity: 0.8;
    border-color: transparent;
}

.nav-tabs .nav-link:hover {
    border-color: rgba(139, 92, 246, 0.3);
    opacity: 1;
    color: var(--pink-light);
}

.nav-tabs .nav-link.active {
    background: rgba(26, 26, 46, 0.8);
    border-color: rgba(139, 92, 246, 0.5);
    color: var(--text-light);
    opacity: 1;
}

.tab-content {
    color: var(--text-light);
    background: rgba(26, 26, 46, 0.6);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.tab-content h3,
.tab-content h4,
.tab-content h5 {
    color: var(--text-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.tab-content p {
    color: var(--text-light);
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.text-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    color: var(--text-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.badge.bg-success {
    background: var(--gradient-pink-turquoise) !important;
    color: var(--text-light) !important;
}

.contact-info {
    color: var(--text-light);
}

.contact-info h3,
.contact-info h4 {
    color: var(--text-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-info p {
    color: var(--text-light);
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-info strong {
    color: var(--text-light);
    opacity: 1;
}

.progress {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    height: 2rem;
}

.progress-bar {
    background: var(--gradient-primary);
    color: var(--text-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-group-flush .list-group-item {
    border-color: rgba(139, 92, 246, 0.2);
}

.card-title {
    color: var(--text-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.card-title.h3,
.card-title.h4,
.card-title.h5 {
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.team-card .card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.team-card h3,
.team-card h5 {
    color: var(--text-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
}

.team-card .text-muted {
    color: var(--text-light) !important;
    opacity: 0.85 !important;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-card .card-text {
    color: var(--text-light);
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

h3.h5,
h4.h5,
h5.h5 {
    color: var(--text-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

h3.h5::before,
h4.h5::before,
h5.h5::before {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Montserrat', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    position: relative;
}

.navbar {
    padding: 1.2rem 0;
    background: rgba(26, 26, 46, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-height: var(--header-height);
    border-bottom: 2px solid transparent;
    border-image: var(--gradient-primary) 1;
    box-shadow: var(--shadow-md);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1030 !important;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

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

.nav-menu-items {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex: 1;
    gap: 0.5rem;
    margin: 0 auto;
    max-width: 900px;
}

.nav-menu-items .nav-item {
    flex: 1 1 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 50px;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-light) !important;
    padding: 0.75rem 1rem !important;
    margin: 0 !important;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-purple-pink);
    opacity: 0.2;
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: var(--pink-light) !important;
    transform: translateY(-2px);
}

.form-control {
    background: rgba(139, 92, 246, 0.15);
    border: 2px solid rgba(139, 92, 246, 0.3);
    color: var(--text-light);
    border-radius: 12px;
    padding: 0.75rem 1.2rem;
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--purple-primary);
    color: var(--text-light);
    box-shadow: 0 0 0 0.25rem rgba(139, 92, 246, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light {
    border-radius: 12px;
    padding: 0.6rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    font-weight: 500;
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--gradient-purple-pink);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-light);
}

.breadcrumb {
    background-color: transparent;
    padding: 1rem 0;
}

.breadcrumb-item a {
    color: var(--turquoise-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--pink-light);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-light);
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes footstep {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); }
    100% { transform: translateY(0) scale(1); }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cart-btn {
    position: relative;
    padding: 0.75rem 1.2rem !important;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cart-count {
    background: var(--pink-primary);
    color: var(--text-light);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 24px;
    padding: 0 4px;
}

.cart-count:empty {
    display: none;
}

.snipcart-checkout:hover i {
    animation: footstep 0.5s ease;
    color: var(--pink-light);
}

.snipcart-checkout:hover .cart-count {
    background: var(--turquoise-primary);
    transform: scale(1.1);
}

.hero-section {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    border-radius: 0;
}

.hero-section .carousel {
    height: 400px;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 0;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    position: relative;
}

.carousel-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.carousel-item:hover .carousel-image-wrapper img {
    transform: scale(1.05);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4) 0%, rgba(236, 72, 153, 0.4) 50%, rgba(6, 182, 212, 0.4) 100%);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0;
    text-align: center;
}

.carousel-content {
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem 3rem;
    border-radius: var(--border-radius);
    border: 2px solid rgba(139, 92, 246, 0.4);
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    animation: fadeInUp 0.8s ease;
}

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

.carousel-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-size: 2.5rem;
}

.carousel-subtitle {
    color: var(--text-light);
    opacity: 1;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.carousel-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

.category-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.category-card:hover::before {
    left: 0;
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--purple-primary);
    box-shadow: var(--shadow-lg);
}

.category-card .card-img-top {
    transition: transform 0.4s ease;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

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

.category-card .card-body {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.category-card .card-title {
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.category-card .card-text {
    color: var(--text-light);
    opacity: 0.95;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.product-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card a {
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.product-card:hover::after {
    opacity: 0.3;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--pink-primary);
    box-shadow: var(--shadow-lg);
}

.product-card .card-img-top {
    transition: transform 0.4s ease;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
}

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

.product-card .card-body {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
}

.product-card h3 a,
.product-card h5 a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.product-card h3 a:hover,
.product-card h5 a:hover {
    color: var(--pink-light);
    text-decoration: underline;
}

.product-card .card-text {
    color: var(--text-light);
    opacity: 0.95;
    font-size: 0.95rem;
    margin: 0.75rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.product-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
}

.categories-section,
.featured-products,
.products-section,
.about-section {
    padding: 4rem 0;
}

.categories-section h2,
.featured-products h2,
.products-section h2,
.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.newsletter-section {
    background: rgba(26, 26, 46, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    margin: 4rem 0;
    padding: 4rem 2rem !important;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.4);
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: gradient-shift 15s ease infinite;
    background-size: 200% 200%;
}

.newsletter-section h2,
.newsletter-section p {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.newsletter-section .input-group {
    position: relative;
    z-index: 1;
}

.newsletter-section .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.newsletter-section .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--pink-primary);
}

.about-section {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 4rem 2rem;
    margin: 4rem 0;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.about-section ul li {
    color: var(--text-light);
    font-size: 1.1rem;
    padding: 0.5rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.about-section ul li i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.75rem;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    border-top: 2px solid transparent;
    border-image: var(--gradient-primary) 1;
    position: relative;
}

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

.contact-form-wrapper {
    position: relative;
    z-index: 1;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 2px solid rgba(139, 92, 246, 0.4);
}

.contact-form-wrapper .card {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius);
    color: var(--text-light);
}

.contact-info i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.contact-info .d-flex:hover i {
    transform: scale(1.2);
}

.opening-hours-section .card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--border-radius);
    color: var(--text-light);
}

.faq-section .accordion-button {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-light);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--border-radius) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--gradient-purple-pink);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.faq-section .accordion-body {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-light);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer h5 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.footer a:hover {
    color: var(--pink-light);
    transform: translateX(5px);
}


.company-info {
    font-size: 0.95rem;
    opacity: 0.95;
    color: var(--text-light);
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    z-index: 1000;
    border-top: 2px solid transparent;
    border-image: var(--gradient-primary) 1;
    box-shadow: 0 -10px 30px rgba(139, 92, 246, 0.3);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    color: var(--text-light);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: var(--text-light);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-link {
    color: var(--turquoise-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--pink-light);
    text-decoration: underline;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid rgba(139, 92, 246, 0.5);
    margin: 0 2rem;
}

.carousel-control-prev {
    left: 2rem;
}

.carousel-control-next {
    right: 2rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
    box-shadow: var(--shadow-lg);
    background: rgba(139, 92, 246, 0.9);
    border-color: var(--pink-primary);
}

.carousel-indicators {
    display: none !important;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-fade .carousel-item:first-of-type {
    position: relative;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
    z-index: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
    z-index: 0;
}

.info-block-section {
    padding: 2rem 0;
}

.info-block-wrapper {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    border: 2px solid rgba(139, 92, 246, 0.2);
    box-shadow: var(--shadow-md);
}

.info-item {
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.info-item:hover {
    transform: translateY(-5px);
    background: rgba(139, 92, 246, 0.1);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.info-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.info-title {
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.info-text {
    color: var(--text-light);
    opacity: 0.95;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .nav-menu-items {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-menu-items .nav-item {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        justify-content: flex-start;
    }
    
    .info-block-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .hero-section .carousel {
        height: 300px;
        border-radius: var(--border-radius);
    }
    
    .carousel-content {
        padding: 1.5rem 2rem;
        max-width: 90%;
    }
    
    .carousel-title {
        font-size: 1.75rem !important;
        margin-bottom: 0.75rem;
    }
    
    .carousel-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .carousel-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 0.75rem;
    }
    
    .carousel-control-prev {
        left: 0.75rem;
    }
    
    .carousel-control-next {
        right: 0.75rem;
    }
    
    .info-block-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .info-icon i {
        font-size: 1.5rem;
    }
    
    .info-title {
        font-size: 1.1rem;
    }
    
    .info-text {
        font-size: 0.9rem;
    }
    
    .categories-section h2,
    .featured-products h2,
    .products-section h2 {
        font-size: 2rem;
    }
    
    .category-card,
    .product-card {
        margin-bottom: 2rem;
    }
    
    .category-card .card-img-top {
        height: 250px;
    }
    
    .product-card .card-img-top {
        height: 240px;
    }
    
    .newsletter-section {
        padding: 3rem 1.5rem !important;
    }
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--purple-primary);
    color: var(--text-light);
}

::-moz-selection {
    background: var(--purple-primary);
    color: var(--text-light);
}
