/** 
 * CSS Custom Properties & Base Styles 
 */
:root {
    --primary: #4A235A;
    --primary-dark: #3a1b47;
    --accent: #D4AC0D;
    --accent-hover: #e5bd1e;
    --dark: #1B1B1B;
    --light: #F4F4F4;
    --neutral: #A6ACAF;

    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

p {
    line-height: 1.6;
}

.text-accent {
    color: var(--accent);
}

.text-dark {
    color: var(--dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(212, 172, 13, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(74, 35, 90, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(27, 27, 27, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    text-decoration: none;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
}

.logo-cheff {
    color: #fff;
    font-weight: 400;
    margin-right: 4px;
}

.navbar.scrolled .logo-cheff {
    color: var(--primary);
}

.logo-pizza {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--dark);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 172, 13, 0.3);
    text-decoration: none;
}

.navbar.scrolled .nav-contact {
    background: var(--primary);
    color: #fff;
    border-color: transparent;
}

.navbar.scrolled .nav-contact i {
    color: var(--accent);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 20px 5%;
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

.mobile-link:last-child {
    border-bottom: none;
}

.phone-link {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
}

/* --- 1. Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at right center, rgba(74, 35, 90, 0.4) 0%, rgba(27, 27, 27, 1) 70%);
    z-index: 1;
}

.hero-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 650px;
}

.hero-title {
    color: #fff;
    font-size: clamp(4.5rem, 8vw, 8rem);
    line-height: 0.9;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    height: 2px;
    background: var(--accent);
    flex: 1;
    max-width: 100px;
}

.hero-divider i {
    color: var(--accent);
    font-size: 1.5rem;
}

.hero-subtitle {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 80%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Parallax effect on scroll via JS, or subtle floating via CSS */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.hero-image img {
    width: 110%;
    max-width: 700px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    animation: float 6s ease-in-out infinite;
}

/* --- 2. USP Bar --- */
.usp-bar {
    background-color: var(--primary);
    padding: 30px 0;
    border-bottom: 2px solid var(--accent);
    position: relative;
    z-index: 10;
    margin-top: -1px;
}

.usp-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.usp-item i {
    color: var(--accent);
    font-size: 1.8rem;
}

.usp-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 172, 13, 0.4);
}

/* --- 3. Featured Products --- */
.menu-section {
    padding: 120px 5% 100px;
    max-width: 1300px;
    margin: 0 auto;
}

.menu-header {
    margin-bottom: 60px;
    position: relative;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--dark);
    position: relative;
    z-index: 2;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: -10px;
    width: 110%;
    height: 20px;
    background: rgba(212, 172, 13, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.menu-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #eee;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 172, 13, 0.15);
    border-color: rgba(212, 172, 13, 0.3);
}

.card-image-wrapper {
    flex: 0 0 160px;
    text-align: center;
    position: relative;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-image-wrapper img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.menu-card:hover .card-image-wrapper img {
    transform: scale(1.05) rotate(3deg);
}

.pizza-name {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.pizza-size {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.pizza-desc {
    color: var(--neutral);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



/* --- 4. About Section --- */
.about-section {
    background: #fff;
    padding: 100px 5%;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-text .section-title {
    margin-bottom: 30px;
}

.about-desc {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary);
    border: 4px solid #fff;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 30px rgba(74, 35, 90, 0.3);
    text-align: center;
}

.badge-number {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 3.5rem;
    line-height: 1;
}

.badge-text {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* --- 5. Reviews Section --- */
.reviews-section {
    background: var(--dark);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.reviews-section::before,
.reviews-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
}

.reviews-section::before {
    left: 0;
    background: linear-gradient(to right, var(--dark), transparent);
}

.reviews-section::after {
    right: 0;
    background: linear-gradient(to left, var(--dark), transparent);
}

.marquee-wrapper {
    display: flex;
    width: 200%;
    animation: marquee 30s linear infinite;
}

.marquee-wrapper:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    gap: 30px;
    padding: 0 15px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    width: 400px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.stars {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-text {
    color: #eee;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    color: var(--neutral);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Scrolls half because content is duplicated */
}

/* --- 6. CTA Section --- */
.cta-section {
    background-color: var(--primary);
    padding: 120px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1628840042765-356cda07504e?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(4rem, 8vw, 7rem);
    color: #fff;
    margin-bottom: 20px;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-btn i {
    margin-right: 10px;
}

/* --- 7. Footer --- */
.footer {
    background: var(--dark);
    padding: 80px 5% 30px;
    border-top: 2px solid var(--accent);
    color: #fff;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-desc {
    color: var(--neutral);
    max-width: 350px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--neutral);
    font-size: 0.9rem;
}

/* --- Animations & Utilities --- */

/* Initial Load Animations */
.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.animate-fade-in-right {
    opacity: 0;
    animation: fadeInRight 1s ease 0.6s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Design --- */

@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .desktop-only {
        display: none;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text .section-title::after {
        left: 10%;
        width: 80%;
    }
}

@media (max-width: 850px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }

    .hero-divider {
        justify-content: center;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
        margin-bottom: 60px;
    }

    .usp-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .usp-divider {
        display: none;
    }

    .usp-item {
        width: 40%;
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-desc {
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-contact {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .menu-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .pizza-name {
        justify-content: center;
    }

    .card-image-wrapper {
        flex: 0 0 auto;
    }

    .card-image-wrapper img {
        max-width: 200px;
    }

    .usp-item {
        width: 100%;
    }

    .review-card {
        width: 300px;
    }
}

/* --- 8. Locations / Şubelerimiz Page --- */

.locations-page {
    background-color: var(--light);
    min-height: 100vh;
    position: relative;
    padding-top: var(--nav-height);
    display: flex;
    flex-direction: column;
}

.locations-bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1628840042765-356cda07504e?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.locations-header {
    text-align: center;
    padding: 60px 5% 40px;
    position: relative;
    z-index: 2;
}

.locations-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(74, 35, 90, 0.2);
    margin-bottom: 25px;
    border: 4px solid var(--accent);
}

.locations-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--primary);
    margin-bottom: 15px;
}

.locations-subtitle {
    color: #555;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 20px;
}

.global-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(74, 35, 90, 0.3);
}

.global-call a {
    color: var(--accent);
    text-decoration: none;
    font-size: 1.1rem;
}

.locations-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5% 80px;
    width: 100%;
    z-index: 2;
    flex: 1;
}

.branch-card {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 35, 90, 0.1);
}

.branch-btn {
    width: 100%;
    background: #fff;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background-color 0.3s ease;
}

.branch-btn:hover {
    background: #fafafa;
}

.branch-btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.branch-icon {
    color: var(--accent);
    font-size: 1.5rem;
}

.chevron {
    color: var(--neutral);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.branch-btn:hover .chevron {
    transform: translateX(5px);
    color: var(--primary);
}

/* --- 9. Modal Overlay --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(74, 35, 90, 0.1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--dark);
    /* dark purple or similar */
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.4rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary);
    transform: scale(1.1) rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.modal-title {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 5px;
    line-height: 1.1;
}

.modal-note {
    font-style: italic;
    color: var(--neutral);
    font-size: 0.95rem;
    display: none;
    /* hidden by default, shown if exists */
}

.modal-note.active {
    display: block;
}

.modal-body .info-group {
    background: #fafafa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-body .info-group i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.modal-body .info-group p {
    margin: 0;
    line-height: 1.4;
    color: var(--dark);
}

.phone-action-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(74, 35, 90, 0.05);
    border: 2px solid rgba(74, 35, 90, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.phone-action-box:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 35, 90, 0.2);
}

.phone-icon-wrapper {
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.phone-action-box:hover .phone-icon-wrapper {
    color: var(--accent);
}

.phone-text-wrapper {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.85rem;
    color: var(--neutral);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.phone-number {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 800;
    font-family: var(--font-body);
    transition: color 0.3s ease;
}

.phone-action-box:hover .phone-label,
.phone-action-box:hover .phone-number {
    color: #fff;
}

.modal-body .info-group:last-child {
    margin-bottom: 0;
}

/* Modal Delivery Links */
.modal-delivery-links {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.delivery-pill {
    padding: 10px 20px;
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    flex: 1 1 calc(50% - 10px);
    /* 2 per row */
}

.delivery-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.btn-getir {
    background-color: #5D3EBC;
}

.btn-trendyol {
    background-color: #F27A1A;
}

.btn-yemeksepeti {
    background-color: #EA004B;
}

.btn-uber {
    background-color: #06C167;
}

.btn-migros {
    background-color: #FF7F00;
}

@media (max-width: 600px) {
    .locations-title {
        font-size: 3rem;
    }

    .branch-btn {
        padding: 20px;
    }

    .branch-btn-content {
        font-size: 1.1rem;
        gap: 10px;
    }

    .details-inner {
        padding: 20px;
    }
}