﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #9E5CCF; /* softened for light theme harmony */
    --secondary-color: #E7C4F3;
    --accent-color: #F3E6FA;
    --dark: #F7F5FB; /* section background light */
    --darker: #FFFFFF; /* page background light */
    --light: #FFFFFF;
    --text-dark: #1f1240;
    --text-light: #2d1b4e; /* use dark text color across site */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

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

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 4rem);
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 4px 30px rgba(158, 92, 207, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem clamp(1rem, 4vw, 4rem);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
}

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

.nav-link {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--text-light);
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-animation,
.hero-animation-2,
.hero-animation-3 {
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-animation {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    opacity: 0.3;
}

.hero-animation-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    bottom: 20%;
    right: 15%;
    opacity: 0.25;
    animation-delay: 2s;
}

.hero-animation-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    top: 50%;
    right: 30%;
    opacity: 0.2;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 20px var(--primary-color)); }
    50% { filter: drop-shadow(0 0 40px var(--secondary-color)); }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--darker);
    box-shadow: 0 4px 15px rgba(221, 146, 240, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(221, 146, 240, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-image {
    width: 100%;
    max-width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(221, 146, 240, 0.4);
    animation: floatImage 6s ease-in-out infinite;
    background: #2a1a4e;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* Counters Section */
.counters-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(221, 146, 240, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(221, 146, 240, 0.3);
    background: rgba(221, 146, 240, 0.1);
}

.counter-icon {
    stroke: var(--primary-color);
    margin-bottom: 1.5rem;
}

.counter-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--secondary-color);
    font-family: 'Orbitron', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    font-weight: 500;
}

/* Section Styles */
.about-section,
.makrame-section,
.paneler-section,
.faq-section,
.shop-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.section-label {
    display: inline-block;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

/* About Section */
.about-section {
    background: var(--dark);
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(221, 146, 240, 0.3);
    background: #2a1a4e;
}

.about-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    z-index: -1;
}

.about-content {
    flex: 1;
}

.about-text {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    opacity: 0.9;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item svg {
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.feature-item span {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    font-weight: 600;
    color: var(--text-light);
}

/* Makrame Section */
.makrame-section {
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}

.makrame-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.makrame-image-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.makrame-image-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    background: #2a1a4e;
    transition: all 0.3s ease;
}

.makrame-image-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(221, 146, 240, 0.4);
}

.makrame-info {
    flex: 1;
}

.subsection-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(221, 146, 240, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.product-item:hover {
    background: rgba(221, 146, 240, 0.1);
    transform: translateX(10px);
}

.product-item svg {
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.product-item h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.product-item p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--text-light);
    opacity: 0.8;
}

.external-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: all 0.3s ease;
}

.external-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Paneler Section */
.paneler-section {
    background: var(--darker);
}

.paneler-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.paneler-text {
    flex: 1;
}

.paneler-description {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.technique-card {
    padding: 2rem 1.5rem;
    background: rgba(221, 146, 240, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.technique-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(221, 146, 240, 0.3);
    background: rgba(221, 146, 240, 0.1);
}

.technique-number {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.technique-card h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.technique-card p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.6;
}

.paneler-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.paneler-image-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
}

.stack-image {
    position: absolute;
    width: 80%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(221, 146, 240, 0.3);
    transition: all 0.3s ease;
    background: #2a1a4e;
}

.stack-1 {
    top: 0;
    left: 0;
    z-index: 3;
}

.stack-2 {
    top: 50px;
    left: 50px;
    z-index: 2;
}

.stack-3 {
    top: 100px;
    left: 100px;
    z-index: 1;
}

.stack-image:hover {
    transform: scale(1.05);
    z-index: 10;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    background: rgba(221, 146, 240, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    stroke: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.7;
    color: var(--text-light);
    opacity: 0.9;
}

/* Shop Section */
.shop-section {
    background: var(--dark);
}

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

.shop-item {
    background: rgba(221, 146, 240, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.shop-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(221, 146, 240, 0.4);
}

.shop-image-wrapper {
    position: relative;
    overflow: hidden;
}

.shop-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
    background: #2a1a4e;
}

.shop-item:hover .shop-image {
    transform: scale(1.1);
}

.shop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 5, 32, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.shop-info {
    padding: 2rem;
}

.shop-info h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.shop-info p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.shop-price {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Orbitron', sans-serif;
}

/* Footer */
.footer {
    background: var(--darker);
    border-top: 2px solid var(--primary-color);
    padding: clamp(3rem, 6vw, 5rem) 0 2rem 0;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-description {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.6;
}

.footer-title {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a {
    color: var(--text-light);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateX(5px);
}

.newsletter-text {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid var(--primary-color);
    background: rgba(221, 146, 240, 0.1);
    color: var(--text-light);
    border-radius: 8px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-family: 'Exo 2', sans-serif;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(221, 146, 240, 0.3);
}

.newsletter-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--darker);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(221, 146, 240, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(221, 146, 240, 0.2);
    color: var(--text-light);
    opacity: 0.7;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

/* Mobile Menu */
@media (max-width: 968px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
        border-top: 2px solid var(--primary-color);
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.3rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid,
    .makrame-content,
    .paneler-layout {
        flex-direction: column;
    }
    
    .makrame-image-grid {
        grid-template-columns: 1fr;
    }
    
    .paneler-image-stack {
        max-width: 350px;
        height: 400px;
    }
    
    .stack-image {
        width: 90%;
        height: 280px;
    }
    
    .stack-2 {
        top: 40px;
        left: 30px;
    }
    
    .stack-3 {
        top: 80px;
        left: 60px;
    }
}

@media (max-width: 640px) {
    .counters-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .techniques-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--darker);
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -4px 30px rgba(158, 92, 207, 0.2);
    padding: 1.5rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.cookie-banner.show {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}


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

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

.cookie-banner-text h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.cookie-banner-text p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

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

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

.cookie-btn {
    padding: 0.8rem 2rem;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--darker);
    box-shadow: 0 4px 15px rgba(158, 92, 207, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(158, 92, 207, 0.4);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cookie-btn-decline:hover {
    background: var(--primary-color);
    color: var(--darker);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.5rem 1rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}