/* ===================================
   RESET & GENERAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e63946;
    --secondary-color: #f1faee;
    --dark-color: #1d3557;
    --accent-color: #a8dadc;
    --text-color: #ffffff;
    --overlay-color: rgba(29, 53, 87, 0.7);
    --font-primary: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* ===================================
   HEADER
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(29, 53, 87, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.sticky {
    background: rgba(29, 53, 87, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.logo span {
    color: white;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-header-phone,
.btn-header-order {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-header-phone {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-header-phone:hover {
    background: white;
    color: var(--dark-color);
}

.btn-header-order {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-header-order:hover {
    background: #d62839;
    border-color: #d62839;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(29, 53, 87, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-phone {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
}

.mobile-order {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a4a6a 100%),
                url('imagini/hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-subtitle strong {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--accent-color);
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-color);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
    background: #d62839;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.btn-secondary:hover {
    background: var(--text-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* ===================================
   MENIU PREVIEW SECTION
   =================================== */
.meniu-section {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 2rem;
    position: relative;
}

.meniu-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.meniu-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.meniu-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meniu-title span {
    color: var(--primary-color);
}

.meniu-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #495057;
    font-weight: 400;
}

.meniu-subtitle strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Pizza Grid */
.pizza-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Pizza Card */
.pizza-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: backwards;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.pizza-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pizza-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pizza-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pizza-card:nth-child(4) {
    animation-delay: 0.4s;
}

.pizza-card:nth-child(5) {
    animation-delay: 0.5s;
}

.pizza-card:nth-child(6) {
    animation-delay: 0.6s;
}

.pizza-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.2);
}

/* Pizza Image */
.pizza-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.pizza-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pizza-card:hover .pizza-image {
    transform: scale(1.1);
}

.pizza-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

.pizza-badge.spicy {
    background: #ff6b35;
}

.pizza-badge.premium {
    background: #f77f00;
}

.pizza-badge.italian {
    background: #06a77d;
}

.pizza-badge.drinks {
    background: #457b9d;
}

.pizza-badge.chicken {
    background: #f77f00;
}

/* Pizza Content */
.pizza-content {
    padding: 1.8rem;
}

.pizza-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.pizza-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.pizza-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f8f9fa;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #495057;
    font-weight: 500;
}

.feature i {
    color: var(--primary-color);
}

/* Meniu CTA */
.meniu-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.btn-meniu,
.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-meniu {
    background: var(--dark-color);
    color: white;
    border: 2px solid var(--dark-color);
    box-shadow: 0 10px 30px rgba(29, 53, 87, 0.3);
}

.btn-meniu:hover {
    background: transparent;
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(29, 53, 87, 0.4);
}

.btn-order {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.btn-order:hover {
    background: #d62839;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.5);
}

/* ===================================
   LOCAȚII SECTION
   =================================== */
.locatii-section {
    width: 100%;
    min-height: 90vh;
    background: linear-gradient(135deg, #1d3557 0%, #2a4a6a 100%);
    padding: 4rem 2rem;
    position: relative;
}

.locatii-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.locatii-header {
    text-align: center;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title span {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
}

/* Grid */
.locatii-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Location Card */
.location-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out backwards;
}

.location-card:nth-child(1) {
    animation-delay: 0.1s;
}

.location-card:nth-child(2) {
    animation-delay: 0.2s;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(230, 57, 70, 0.3);
}

/* Logo Section */
.location-logo {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
}

.location-logo img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.location-card:hover .location-logo img {
    transform: scale(1.08);
}

.location-label {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.location-label.primary {
    background: var(--primary-color);
}

.location-label.secondary {
    background: #f77f00;
}

/* Info Section */
.location-info {
    padding: 1.8rem 2rem 2rem;
}

.location-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-info h3 i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.location-info p {
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.location-info strong {
    color: #212529;
    font-weight: 600;
}

.location-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.location-info a:hover {
    color: #d62839;
    text-decoration: underline;
}

/* Actions */
.location-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.btn-call,
.btn-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-call {
    background: var(--primary-color);
    color: white !important;
    border: none;
}

.btn-call:hover {
    background: #d62839;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

.btn-map {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid #dee2e6;
}

.btn-map:hover {
    background: var(--dark-color);
    color: white;
    border-color: var(--dark-color);
    transform: translateY(-2px);
}

/* Info Bar */
.info-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: white;
    text-align: center;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.info-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    width: 100%;
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-brand {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ANPC Badges */
.anpc-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.anpc-badges a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.anpc-badges img {
    height: 40px;
    width: auto;
}

.anpc-badges a:hover {
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer-links i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact span {
    font-size: 0.95rem;
    color: #e0e0e0;
}

.footer-contact div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1.5rem;
}

.footer-copyright p,
.footer-company p {
    font-size: 0.9rem;
    color: #999;
}

.footer-copyright a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #d62839;
}

.footer-copyright i {
    color: var(--primary-color);
    margin: 0 0.3rem;
}

.footer-company strong {
    color: #ccc;
}

/* ===================================
   LEGAL PAGES
   =================================== */
.page-header {
    background: linear-gradient(135deg, #1d3557 0%, #2a4a6a 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: white;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.legal-content {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-container h2:first-child {
    margin-top: 0;
}

.legal-container h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    font-size: 1rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    font-size: 1rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 0.6rem;
}

.legal-container strong {
    color: var(--dark-color);
    font-weight: 600;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-container a:hover {
    color: #d62839;
    text-decoration: underline;
}

.legal-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none !important;
    background: var(--primary-color);
    color: white !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.btn-back:hover {
    background: #d62839;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.5);
    text-decoration: none !important;
}

.btn-back i {
    color: white !important;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 900px;
    width: 90%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    padding: 2rem;
    display: flex;
    animation: slideUp 0.4s ease-out;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-consent.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 3rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-text a:hover {
    color: #d62839;
}

.cookie-actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-cookie-accept,
.btn-cookie-reject,
.btn-cookie-customize {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-cookie-accept {
    background: var(--primary-color);
    color: white;
}

.btn-cookie-accept:hover {
    background: #d62839;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

.btn-cookie-customize {
    background: #0d6efd;
    color: white;
}

.btn-cookie-customize:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

.btn-cookie-reject {
    background: #6c757d;
    color: white;
}

.btn-cookie-reject:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Cookie Settings Button (bottom left) - ICON ONLY */
.cookie-settings-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    animation: slideInLeft 0.4s ease-out;
}

.cookie-settings-btn:hover {
    background: #d62839;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.6);
}

.cookie-settings-btn i {
    font-size: 1.4rem;
}

/* Cookie Customization Panel */
.cookie-customize-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.customize-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e9ecef;
    background: white;
}

.customize-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.close-customize {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.close-customize:hover {
    color: var(--primary-color);
}

.customize-modal {
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.customize-content {
    max-height: 400px;
    overflow-y: auto;
    padding: 2rem;
}

/* Custom Scrollbar */
.customize-content::-webkit-scrollbar {
    width: 8px;
}

.customize-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.customize-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.customize-content::-webkit-scrollbar-thumb:hover {
    background: #d62839;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.category-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.category-info i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.category-info strong {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.category-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    border-radius: 26px;
    transition: background 0.3s ease;
}

.toggle-switch label:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch input:checked + label {
    background: var(--primary-color);
}

.toggle-switch input:checked + label:before {
    transform: translateX(24px);
}

.toggle-switch.disabled label {
    cursor: not-allowed;
    background: var(--primary-color);
    opacity: 0.6;
}

.customize-actions {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e9ecef;
    background: white;
    border-radius: 0 0 12px 12px;
}

.btn-save-preferences {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-save-preferences:hover {
    background: #d62839;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

/* Scroll to Top Button (bottom right) */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--dark-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(29, 53, 87, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.scroll-to-top:hover {
    background: #1a2942;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(29, 53, 87, 0.6);
}

.scroll-to-top i {
    font-size: 1.4rem;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 992px) {
    /* Header Responsive */
    .nav-menu {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .header-container {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0.8rem 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    /* Meniu Section Responsive */
    .meniu-section {
        padding: 3rem 1rem;
    }
    
    .meniu-header {
        margin-bottom: 2.5rem;
    }
    
    .pizza-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pizza-image-wrapper {
        height: 250px;
    }
    
    .pizza-content {
        padding: 1.5rem;
    }
    
    .pizza-name {
        font-size: 1.4rem;
    }
    
    .pizza-description {
        font-size: 0.95rem;
    }
    
    .meniu-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-meniu,
    .btn-order {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    /* Locații Section Responsive */
    .locatii-section {
        padding: 3rem 1rem;
    }
    
    .locatii-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-logo {
        padding: 2rem 1.5rem 1.2rem;
    }
    
    .location-logo img {
        width: 150px;
        height: 150px;
    }
    
    .location-info {
        padding: 1.5rem;
    }
    
    .location-actions {
        grid-template-columns: 1fr;
    }
    
    .info-bar {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .info-item i {
        font-size: 1.6rem;
    }
    
    .info-item span {
        font-size: 0.9rem;
    }
    
    /* Footer Responsive */
    .footer {
        padding: 2.5rem 1rem 1rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .anpc-badges {
        justify-content: flex-start;
    }
    
    /* Legal Pages Responsive */
    .page-header {
        padding: 2rem 1rem;
    }
    
    .legal-content {
        padding: 2rem 1rem;
    }
    
    .legal-container {
        padding: 2rem 1.5rem;
    }
    
    .legal-container h2 {
        font-size: 1.5rem;
    }
    
    .legal-container h3 {
        font-size: 1.2rem;
    }
    
    /* Cookie Consent Responsive */
    .cookie-consent {
        bottom: 1rem;
        width: 95%;
        padding: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-icon {
        font-size: 2.5rem;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-settings-btn {
        bottom: 1rem;
        left: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .cookie-settings-btn i {
        font-size: 1.2rem;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .scroll-to-top i {
        font-size: 1.2rem;
    }
    
    .cookie-customize-panel {
        padding: 1rem;
    }
    
    .customize-modal {
        max-width: 95%;
    }
    
    .customize-content {
        max-height: 50vh;
        padding: 1.5rem;
    }
    
    .customize-header,
    .customize-actions {
        padding: 1rem 1.5rem;
    }
    
    .category-info strong {
        font-size: 1rem;
    }
    
    .category-description {
        font-size: 0.85rem;
    }
    
    .btn-cookie-customize {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
}

/* ===================================
   PERFORMANCE OPTIMIZATIONS
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

