:root {
    
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    
    --bg-color: linear-gradient(to right bottom, #131313 0%, #242424 100%);
    --bg-secondary-color: linear-gradient(to right bottom, #1a1a1a 0%, #202020 100%);
    --bg-color-solid: #121212;
    --bg-secondary-color-solid: #1a1a1a;
    --text-color: #E0E0E0;
    --heading-color: #FFFFFF;
    --primary-color: #742e2e;
    --primary-color-hover: #b33a3a;
    --border-color: #333333;
    --shadow-color: rgba(224, 224, 224, 0.1);
}

[data-theme="light"] {
    
    --bg-color: linear-gradient(to right bottom, #e9e8e8 0%, #ffffff 100%);
    --bg-secondary-color: linear-gradient(to right bottom, #fdfdfd, #ffffff);
    --bg-color-solid: #f3f3f3;
    --bg-secondary-color-solid: #ffffff;
    --text-color: #495057;
    --heading-color: #212529;
    --border-color: #DEE2E6;
    --shadow-color: rgba(3, 3, 3, 0.568);
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}


body.lightbox-open {
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-primary);
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-color-hover);
}

ul {
    list-style: none;
}

section {
    padding: 60px 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-weight: 500;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background-color: var(--primary-color-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
}


.text-center {
    text-align: center;
    margin-top: 20px;
}



.header {
    background: var(--bg-secondary-color);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.header-container {
    width: 100%;
    padding: 0 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    margin-right: auto;
}

.logo-img {
    height: 80px;
    width: auto;
}


.logo-light { display: none; }
.logo-dark { display: block; }
[data-theme="light"] .logo-light { display: block; }
[data-theme="light"] .logo-dark { display: none; }

.header-right-panel {
    display: flex;
    align-items: center;
    gap: 60px; 
}

.main-nav .nav-list {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    font-family: var(--font-primary);
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}


.theme-switch-wrapper { display: flex; align-items: center; }
.theme-switch { position: relative; display: inline-block; width: 60px; height: 34px; cursor: pointer; }
.theme-switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: #3c3c3c; border-radius: 34px; transition: .4s; }
.slider::before { position: absolute; content: ""; height: 26px; width: 26px; left: 4px; bottom: 4px; background-color: rgb(160, 160, 160); border-radius: 50%; transition: .4s; }
input:checked + .slider::before { transform: translateX(26px); }
[data-theme="light"] .slider { background-color: #ccc; }
.slider-icon { position: absolute; left: 4px; bottom: 4px; width: 26px; height: 26px; display: flex; justify-content: center; align-items: center; transition: transform .4s; }
input:checked ~ .slider > .slider-icon { transform: translateX(26px); }
.slider-icon .fa-sun, .slider-icon .fa-moon { font-size: 16px; transition: opacity 0.3s ease, transform 0.3s ease; position: absolute; }
.slider-icon .fa-sun { color: #1d1d1d; } .slider-icon .fa-moon { color: #1d1d1d; }
.slider-icon .fa-sun { opacity: 0; transform: scale(0); } .slider-icon .fa-moon { opacity: 1; transform: scale(1); }
[data-theme="light"] .slider-icon .fa-sun { opacity: 1; transform: scale(1); } [data-theme="light"] .slider-icon .fa-moon { opacity: 0; transform: scale(0); }


.main-nav .mobile-theme-switch { display: none; }
.mobile-nav-toggle { display: none; }



.hero {
    background: var(--bg-secondary-color);
    text-align: center;
    padding: 80px 0;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--heading-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.hero h1 span {
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 400;
    display: block;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    margin-top: 10px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 30px;
}



.delivery-countdown {
    background: var(--bg-color);
    text-align: center;
    padding: 80px 20px;
}

.delivery-countdown p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.countdown-timer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#countdown-message {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.timer-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.time-block {
    background: var(--bg-secondary-color);
    padding: 20px;
    border-radius: 10px;
    min-width: 120px;
    box-shadow: 0 5px 15px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.time-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--font-primary);
}

.time-label {
    display: block;
    font-size: 1rem;
    color: var(--text-color);
    text-transform: uppercase;
}


.gallery .container {
    max-width: 1200px;
}


.gallery-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px var(--shadow-color);
    cursor: pointer;
}


.gallery-image-wrapper:nth-child(3) {
    grid-column: span 2;
}
.gallery-image-wrapper:nth-child(4) {
    grid-column: span 2;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-image-wrapper:hover img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(116, 46, 46, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    color: #fff;
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.gallery-image-wrapper:hover .image-overlay i {
    transform: scale(1);
}



.news {
    background: var(--bg-secondary-color);
}

.news-reviews-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin: 10px;
    align-items: stretch;
}

.news-column,
.reviews-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-column h2,
.reviews-column h2 {
    text-align: center;
    font-size: 2rem;
}

.news-column h2::after,
.reviews-column h2::after {
    margin: 10px auto 0;
}

.news-carousel-container {
    position: relative;
    width: 500px;
    height: 540px;
    box-shadow: 0 5px 20px var(--shadow-color);
    border-radius: 8px;
    background: var(--bg-secondary-color);
    margin-inline: auto;
    overflow: hidden;
}

.news-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.news-slide.active {
    opacity: 1;
    visibility: visible;
}

.news-slide iframe {
    max-width: 100%;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.google-rating {
    margin-bottom: 2.5rem;
}

.google-rating h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.google-rating .stars {
    color: #fbbc05;
    font-size: 1.3rem;
}

.opening-hours-card {
    background: var(--bg-color);
    padding: 20px 25px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 10px var(--shadow-color);
}

.opening-hours-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: var(--font-primary);
    color: var(--heading-color);
}

.opening-hours-card h4 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.hours-list {
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span {
    color: var(--text-color);
}

.hours-list li strong {
    font-weight: 500;
    color: var(--heading-color);
}

.delivery-info {
    margin-top: 25px;
    margin-bottom: 0;
    text-align: center;
    font-weight: 500;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.delivery-info i {
    color: var(--primary-color);
}



.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--bg-secondary-color-solid);
    color: var(--text-color);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}


.contact-form .text-center {
    margin-top: 20px;
}

.map-container {
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px var(--shadow-color);
    border-color: var(--primary-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.address {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.address i {
    color: var(--primary-color);
    margin-right: 10px;
}



.footer {
    background: var(--bg-secondary-color-solid);
    color: #aaa;
    padding: 50px 0 30px 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 30px;
}

.footer-column h4 {
    font-family: var(--font-primary);
    color: var(--heading-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 8px;
}

.footer-column p {
    margin-bottom: 15px;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
}

.footer-column p i {
    margin-right: 12px;
    margin-top: 5px;
    color: var(--primary-color);
    width: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-column ul a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.footer-social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    color: #fff;
}


.footer-separator {
    border: 0;
    height: 1px;
    background-color: var(--border-color);
    margin: 10px 0 20px 0;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
}


@media (max-width: 768px) {
    .footer-content {
        text-align: center;
    }
    .footer-column h4::after {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-column p {
        justify-content: center;
        text-align: left;
    }
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 5px;
    animation: zoomIn 0.4s ease-out;
}

.close-lightbox-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox-btn:hover {
    color: #bbb;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}


@media (max-width: 992px) {
    .news-reviews-grid { grid-template-columns: 1fr; }
    .reviews-column { margin-top: 50px; }
    .contact-grid { grid-template-columns: 1fr; }
    .map-wrapper { margin-top: 40px; }
    .header-container { padding: 0 30px; }

    .gallery-showcase {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
  
    .gallery-image-wrapper:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero h1 span { font-size: 1.5rem; }
    

    .header-right-panel .theme-switch-wrapper { display: none; }
    .header-container { padding: 0 20px; }
    .main-nav {
        display: block; position: fixed; top: 0; right: -100%;
        width: 100%; height: 100vh; background: var(--bg-secondary-color);
        box-shadow: -5px 0 15px var(--shadow-color);
        transition: right 0.4s ease-in-out;
        padding-top: 80px; z-index: 1000;
    }
    .main-nav.active { right: 0; }
    .main-nav .nav-list { flex-direction: column; text-align: center; align-items: center; gap: 40px; }
    .main-nav a { font-size: 1.5rem; }
    .mobile-nav-toggle { display: block; z-index: 1001; margin-left: 20px; background: none; border: none; color: var(--text-color); font-size: 1.5rem; cursor: pointer; }
    .logo-img { height: 60px; }
    .main-nav.active .mobile-theme-switch {
        display: block;
        margin: 40px auto 0;
        text-align: center;
    }


    .news-carousel-container, .news-column .text-center { width: 100%; max-width: 500px; }


    .btn-call-mobile {
        display: flex; align-items: center; justify-content: center;
        gap: 10px; width: 100%; margin-top: 20px;
        padding: 12px; background-color: var(--primary-color); color: #fff; border-radius: 5px;
        text-align: center; font-weight: 700; transition: background-color 0.3s;
    }
    .btn-call-mobile:hover { background-color: var(--primary-color-hover); color: #fff; }
    

    .gallery-showcase {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
}


@media (max-width: 480px) {
    body { font-size: 15px; }
    .hero h1 { font-size: 2rem; }
    .hero h1 span { font-size: 1.2rem; }
    .hero p { font-size: 1rem; }
    .header-container { padding: 0 15px; }
    section { padding: 40px 0; }
    .logo-img { height: 50px; }
    .news-carousel-container { height: 500px; }


    .time-block { min-width: 80px; padding: 15px 10px; }
    .time-value { font-size: 2rem; }
    .time-label { font-size: 0.8rem; }
}



.stores-page .stores-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.filter-group {
    display: flex;
    flex-direction: column;
}
.filter-group label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 500;
}
.filters select {
    background-color: var(--primary-color); color: #fff; padding: 12px 25px; border-radius: 5px; border: none;
    font-family: var(--font-primary); font-size: 1rem; text-transform: uppercase; cursor: pointer;
    -webkit-appearance: none; -moz-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat; background-position: right 1rem center; background-size: 1em; padding-right: 3rem;
}
.filters select:hover {
    background-color: var(--primary-color-hover);
}
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 70px;
}
.store-card {
    background: var(--bg-secondary-color); border-radius: 10px; overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color); display: flex; flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}
.store-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px var(--shadow-color);
}
.store-image {
    position: relative;
    height: 300px;
}
.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.map-link {
    position: absolute; top: 0; right: 0; bottom: 0; width: 95px; background-color: rgba(116, 46, 46, 0.9);
    color: white; display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; font-size: 1rem; font-weight: 700; transition: all 0.3s; border-radius: 100px 0 0 100px;
}
.map-link:hover {
    background-color: var(--primary-color);
    width: 100px;
    color: white;
}
.map-link i {
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.store-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.store-info h3 {
    font-size: 1.4rem;
    color: var(--heading-color);
    margin-bottom: 15px;
}
.store-info p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 10px;
}
.store-info p strong {
    color: var(--heading-color);
}
.btn-call-mobile {
    display: none; 
}


.breadcrumb-nav {
    margin-bottom: 40px; padding-top: 20px;
    border-bottom: 1px solid var(--border-color); padding-bottom: 20px;
}
.breadcrumb-nav ol { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.breadcrumb-nav li { display: flex; align-items: center; font-size: 0.95rem; }
.breadcrumb-nav li:not(:last-child)::after { content: '>'; margin: 0 0.75em; color: var(--text-color); opacity: 0.6; }
.breadcrumb-nav a { color: var(--text-color); text-decoration: none; transition: color 0.3s; }
.breadcrumb-nav a:hover { color: var(--primary-color); }
.breadcrumb-nav span[aria-current="page"] { color: var(--primary-color); font-weight: 500; }


.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s cubic-bezier(0.39, 0.575, 0.565, 1), transform 1.2s cubic-bezier(0.39, 0.575, 0.565, 1); 
}
.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.form-notification { padding: 20px; border-radius: 5px; text-align: center; font-size: 1.1rem; font-weight: 500; }
.form-notification.success { background-color: #2E8B57; color: white; }
.form-notification.error { background-color: var(--primary-color); color: white; }