/* GLOBAL & RESET      */
:root {
    --color-primary: #ffcd1c;
    --color-dark: #262329;
    --color-text: #5e5e5e;

    --color-heading: #212121;
    --color-light-gray: #f5f5f5;
    --color-border: #e1e1e1;
    --color-footer-bg: #54595f;
    --color-footer-text: #fff;
    --font-body: 'Work Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--color-text);
    background-color: #fff;
    font-size: 16px;
    line-height: 1.6;

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;

}

a {
    text-decoration: none;
    color: inherit;

}

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

h1,
h2,
h3,
h4 {
    color: var(--color-heading);
    font-weight: 600;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;

}



.btn-primary {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-heading);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e6b818;
    color: var(--color-heading);
}

/* ------------------- */
/* MAIN CONTENT        */
/* ------------------- */



.page-intro {
    padding: 60px 0;
    text-align: center;
}

.page-intro h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.page-intro p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.quick-links {
    padding-bottom: 50px;
}

.quick-links .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.quick-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    color: var(--color-text);
    text-decoration: none;

}

.quick-links a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background-color: var(--color-border);
}


.quick-links a:last-child {
    border-right: none;
}

.quick-links a i {
    color: var(--color-primary);
    margin-right: 8px;
}


/* Shop Location Sections */
.shop-location {
    padding: 50px 0;
}

.shop-location.alt-bg {
    background-color: var(--color-light-gray);
}

.shop-card,
.multi-shop-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.shop-info {
    border: 1px solid var(--color-border);
    padding: 40px;
    position: relative;
    background-color: #fff;
    border-radius: 6px;
}

.shop-info::before {
    content: attr(data-tag);
    position: absolute;
    left: 0;
    top: 30px;
    transform: translateX(-50%) rotate(-90deg);
    background-color: var(--color-primary);
    color: var(--color-dark);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
}

.shop-info h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

.shop-info h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.shop-info ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shop-info ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.shop-info ul li i {
    font-size: 16px;
    color: var(--color-text);
    width: 20px;
    text-align: center;
    margin-top: 4px;
}

.shop-image img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    border: 1px solid var(--color-border);
    border-radius: 6px;
}

.shop-map {
    padding-top: 30px !important;
    border-radius: 6px !important;
}

.shop-map iframe {
    width: 100%;
    height: 250px;
    border: 1px solid var(--color-border);
}

#ammochostos .shop-info .btn-primary {
    margin-top: 20px;
}


/* ------------------- */
/* RESPONSIVE          */
/* ------------------- */

/* Tablet */
@media (max-width: 1024px) {

    .main-nav ul li a {
        padding: 15px 10px;
        font-size: 13px;
    }

    .shop-card,
    .multi-shop-card {
        grid-template-columns: 1fr;
    }

    .shop-image {
        order: -1;
    }
}

/* Mobile */
@media (max-width: 767px) {


    .page-intro h1 {
        font-size: 28px;
    }

    .page-intro p {
        font-size: 14px;
    }

    .quick-links .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-links a {
        border-right: none;
        padding: 5px 0;
    }

    .shop-info {
        padding: 30px 20px;
    }

    .shop-info h2 {
        font-size: 36px;
    }

}

.select-box {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    border-radius: 4px 0 0 0 !important;
    background-color: #fff !important;
    font-size: 14px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    padding: 4px 32px 4px 12px;
    cursor: pointer;
    height: 40px;
    line-height: 20px;
    background-image:
        linear-gradient(to bottom, transparent 50%, transparent 50%),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'><path fill='%23666' d='M0 0l5 6 5-6z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px 6px;
}


.select-box::-ms-expand {
    display: none;
}

.select-box:focus {
    outline: none;
    border-color: gray !important;
    box-shadow: 0 0 0 3px rgba(50, 120, 255, 0.15);
}


.text-center {
    text-align: center;
}

.paragraph {
    font-size: 16px !important;
    font-weight: 300;


}

.subtitle {
    font-size: 18px !important;
    line-height: 2.5 !important;
    font-weight: 400;
}

.subtitle .bold {
    font-weight: 800;
}

.box-container {
    padding: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: fit-content;
    height: fit-content;
    justify-content: center;
}



.search-bar {
    display: flex;
    flex-grow: 1;
    margin: 0 40px;
    background-color: var(--color-white);
    border: 1px solid #ddd;
}

.search-bar select {
    padding: 0 15px;
    border: none;
    background: transparent;
    font-size: 14px;
    border-right: 1px solid #eee;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 30px;
}