/* ========================================
   Sal Negra Tenerife - Main Stylesheet
   ======================================== */

/* === ROOT VARIABLES === */
:root {
    --color-primary: #8b6f5c;
    --color-black: #0a0a0a;
    --color-white: #ffffff;
    --color-gray: #5e5e5e;
    --color-gray-light: #c1c0c0;
    --color-footer: #2d2b2a;
    --color-blue: #0095eb;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;

    --transition: all 0.3s ease;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 2px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 1.5px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: 1px;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--color-gray);
}

/* === UTILITY CLASSES === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-black);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--color-primary);
    margin: 1rem auto;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-primary);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-black);
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-black);
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.nav-brand img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-white);
    transition: var(--transition);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-logo {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 90%;
    max-width: 600px;
    text-align: center;
}

.hero-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}


.hero-content {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-white);
    z-index: 2;
    width: 100%;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    color: var(--color-white);
}

/* === ABOUT SECTION === */
.about {
    padding: 6rem 0;
    background: var(--color-white);
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* About Side Images */
.about-image-left,
.about-image-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-image-left {
    left: 5%;
    animation: slideInLeft 1s ease-out 0.5s both;
}

.about-image-right {
    right: 5%;
    animation: slideInRight 1s ease-out 0.5s both;
}

.about-image-left img,
.about-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%) translateY(-50%);
        opacity: 0;
    }
    to {
        transform: translateX(0) translateY(-50%);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%) translateY(-50%);
        opacity: 0;
    }
    to {
        transform: translateX(0) translateY(-50%);
        opacity: 1;
    }
}

.about-content h2 {
    color: var(--color-black);
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* === MENU SECTION === */
.menu {
    padding: 6rem 0;
    background: #fafafa;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(139, 111, 92, 0.2);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.menu-item h4 {
    font-family: var(--font-heading);
    color: var(--color-black);
    font-size: 1.3rem;
    margin: 0;
}

.menu-item .price {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.2rem;
    white-space: nowrap;
}

.menu-item p {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin: 0;
}

/* Menu Items with Images */
.menu-item-with-image {
    padding: 0;
    overflow: hidden;
}

.menu-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.menu-item-with-image:hover .menu-item-image {
    transform: scale(1.05);
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item-with-image .menu-item-header {
    margin-bottom: 0.5rem;
}

.menu-item-with-image p {
    margin: 0;
}

/* === GALLERY SECTION === */
.gallery {
    padding: 4rem 0;
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 111, 92, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    color: var(--color-white);
    font-size: 3rem;
    font-weight: 300;
}

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--color-white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--color-primary);
}

/* === 3D CAROUSEL === */
.carousel-3d-container {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1200px;
    margin: 2rem 0;
}

.carousel-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
}

.carousel-item {
    position: absolute;
    width: 400px;
    height: 400px;
    left: 50%;
    top: 50%;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backface-visibility: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Center item (active) */
.carousel-item.active {
    z-index: 10;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: brightness(1);
}

/* Left item */
.carousel-item.left-1 {
    z-index: 5;
    transform: translate(-120%, -50%) scale(0.75) rotateY(25deg);
    opacity: 0.6;
    filter: brightness(0.7);
}

.carousel-item.left-2 {
    z-index: 3;
    transform: translate(-180%, -50%) scale(0.6) rotateY(35deg);
    opacity: 0.3;
    filter: brightness(0.5);
}

/* Right item */
.carousel-item.right-1 {
    z-index: 5;
    transform: translate(20%, -50%) scale(0.75) rotateY(-25deg);
    opacity: 0.6;
    filter: brightness(0.7);
}

.carousel-item.right-2 {
    z-index: 3;
    transform: translate(80%, -50%) scale(0.6) rotateY(-35deg);
    opacity: 0.3;
    filter: brightness(0.5);
}

/* Hidden items */
.carousel-item.hidden {
    opacity: 0;
    z-index: 1;
    transform: translate(-50%, -50%) scale(0.5);
}

/* Carousel navigation buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 111, 92, 0.9);
    color: var(--color-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

/* === CONTACT SECTION === */
.contact {
    padding: 6rem 0;
    background: #fafafa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1rem;
    line-height: 1.8;
}

.info-item a {
    color: var(--color-gray);
}

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

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
}

/* === RESERVATIONS PAGE === */
.reservation-section {
    padding: 8rem 0 6rem;
    background: var(--color-white);
    text-align: center;
}

.reservation-section h2 {
    margin-bottom: 2rem;
}

.phone-number {
    display: inline-block;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin: 2rem 0;
    transition: var(--transition);
}

.phone-number:hover {
    color: var(--color-black);
}

/* === PAGE HEADER === */
.page-header {
    padding: 8rem 0 4rem;
    background: var(--color-black);
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
    margin: 0;
}

/* === CONTENT SECTION === */
.content-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.content-section h2 {
    margin-bottom: 2rem;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* === CONTENT VIDEO BACKGROUND === */
.content-video-bg {
    position: relative;
    overflow: hidden;
}

.content-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.content-video-bg .container {
    position: relative;
    z-index: 2;
}

.content-video-bg h2 {
    color: var(--color-white);
}

.content-video-bg p {
    color: var(--color-gray-light);
}

/* === FOOTER === */
.footer {
    background: var(--color-footer);
    color: var(--color-white);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--color-gray-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.footer-section strong {
    color: var(--color-white);
}

.footer-section a {
    color: var(--color-gray-light);
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-gray-light);
    margin: 0;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: var(--color-gray-light);
    transition: var(--transition);
}

.social-links a:hover svg {
    fill: var(--color-white);
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 992px) {
    .content-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }

    .content-section {
        padding: 4rem 0;
    }

    .about {
        padding: 4rem 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Typography mobile */
    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    h2 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    h3 {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }

    /* Navigation mobile */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-black);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 0;
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 0.5rem 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        display: block;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Hero mobile */
    .hero {
        background-attachment: scroll;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .about-image-left,
    .about-image-right {
        display: none;
    }

    .hero-logo {
        max-width: 280px;
        top: 35%;
        transform: translate(-50%, -50%);
    }

    .hero-content {
        bottom: 12%;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
    }

    /* Buttons mobile */
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Page header mobile */
    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    /* Content sections mobile */
    .content-section {
        padding: 3rem 0;
    }

    .content-wrapper {
        padding: 0 0.5rem;
    }

    .content-wrapper p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }

    /* Video background mobile */
    .content-video-bg {
        min-height: auto;
    }

    .content-overlay {
        background: rgba(0, 0, 0, 0.8);
    }

    /* About section mobile */
    .about {
        padding: 3rem 0;
    }

    .about-content {
        padding: 0 1rem;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Contact mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map iframe {
        min-height: 300px;
    }

    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    /* Carousel 3D mobile */
    .carousel-3d-container {
        height: 300px;
        margin: 1rem 0;
    }

    .carousel-item {
        width: 220px;
        height: 220px;
    }

    .carousel-item.left-1 {
        transform: translate(-105%, -50%) scale(0.6) rotateY(15deg);
        opacity: 0.4;
    }

    .carousel-item.left-2 {
        display: none;
    }

    .carousel-item.right-1 {
        transform: translate(5%, -50%) scale(0.6) rotateY(-15deg);
        opacity: 0.4;
    }

    .carousel-item.right-2 {
        display: none;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .carousel-btn-prev {
        left: 5px;
    }

    .carousel-btn-next {
        right: 5px;
    }

    /* Menu mobile */
    .menu {
        padding: 3rem 0;
    }

    .menu-category {
        margin-bottom: 2.5rem;
    }

    .menu-category h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .menu-item {
        padding: 1.25rem;
    }

    .menu-item h4 {
        font-size: 1.1rem;
    }

    .menu-item .price {
        font-size: 1.1rem;
    }

    /* Reservation mobile */
    .reservation-section {
        padding: 6rem 0 4rem;
    }

    .phone-number {
        font-size: 1.8rem;
    }

    /* Footer mobile */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 1.2rem;
    }

    .social-links {
        align-items: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-logo {
        max-width: 220px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .carousel-3d-container {
        height: 260px;
    }

    .carousel-item {
        width: 180px;
        height: 180px;
    }

    .page-header {
        padding: 5rem 0 2rem;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .content-wrapper h2 {
        font-size: 1.4rem;
    }

    .phone-number {
        font-size: 1.5rem;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn:active {
        transform: scale(0.98);
    }

    .nav-menu a:active {
        background: rgba(139, 111, 92, 0.2);
    }

    .carousel-btn:active {
        transform: translateY(-50%) scale(0.95);
    }

    .menu-item:hover {
        transform: none;
    }

    .gallery-item:hover img {
        transform: none;
    }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-footer);
    color: var(--color-white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text p {
    color: var(--color-gray-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: var(--color-white);
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-accept {
    background: var(--color-primary);
    color: var(--color-white);
}

.cookie-btn-accept:hover {
    background: #a07d68;
}

.cookie-btn-reject {
    background: transparent;
    color: var(--color-gray-light);
    border: 1px solid var(--color-gray);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem 1rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}
