:root {
--primary: #FF5E7D;
--secondary: #47B8E0;
--accent: #FFD166;
--dark: #2E294E;
--light: #F9F9F9;
--bg: #1A1A2E;
--text: #E6E6E6;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Courier New', monospace;
}

body {
background-color: var(--bg);
color: var(--text);
line-height: 1.6;
padding-top: 80px;
overflow-x: hidden;
}

header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: rgba(26, 26, 46, 0.9);
backdrop-filter: blur(10px);
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 1000;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
font-size: 1.8rem;
font-weight: bold;
color: var(--primary);
text-decoration: none;
display: flex;
align-items: center;
}

.logo span {
color: var(--accent);
}

nav ul {
display: flex;
list-style: none;
}

nav ul li {
margin-left: 2rem;
}

nav ul li a {
color: var(--text);
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
position: relative;
}

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

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

nav ul li a:hover::after {
width: 100%;
}

.burger {
display: none;
cursor: pointer;
}

.burger div {
width: 25px;
height: 3px;
background-color: var(--text);
margin: 5px;
transition: all 0.3s ease;
}

section {
padding: 5rem 2rem;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
}

.hero {
background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), 
            url('https://images.unsplash.com/photo-1534957753291-64d667ce2927?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
background-size: cover;
background-position: center;
background-attachment: fixed;
text-align: center;
position: relative;
}

.hero-content {
max-width: 800px;
margin: 0 auto;
animation: fadeIn 1.5s ease-in-out;
}

h1 {
font-size: 3.5rem;
margin-bottom: 1.5rem;
color: var(--primary);
text-transform: uppercase;
letter-spacing: 3px;
}

h2 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
color: var(--secondary);
position: relative;
display: inline-block;
}

h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 50%;
height: 3px;
background-color: var(--accent);
}

h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: var(--accent);
}

p {
margin-bottom: 1.5rem;
font-size: 1.1rem;
}

.btn {
display: inline-block;
padding: 0.8rem 2rem;
background-color: var(--primary);
color: var(--light);
text-decoration: none;
border-radius: 50px;
font-weight: bold;
transition: all 0.3s;
border: none;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 1px;
margin-top: 1rem;
}

.btn:hover {
background-color: var(--secondary);
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

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

.about {
background-color: var(--dark);
position: relative;
}

.about-content {
display: flex;
align-items: center;
gap: 3rem;
max-width: 1200px;
margin: 0 auto;
}

.about-text {
flex: 1;
}

.about-image {
flex: 1;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
transform: perspective(1000px) rotateY(-10deg);
transition: transform 0.5s;
}

.about-image:hover {
transform: perspective(1000px) rotateY(0deg);
}

.about-image img {
width: 100%;
height: auto;
display: block;
}

.product {
background-color: var(--bg);
text-align: center;
}

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

.product-card {
background-color: var(--dark);
border-radius: 10px;
padding: 2rem;
transition: transform 0.3s, box-shadow 0.3s;
position: relative;
overflow: hidden;
}

.product-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.product-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.product-card img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 5px;
margin-bottom: 1rem;
}

.price {
font-size: 1.5rem;
font-weight: bold;
color: var(--accent);
margin: 1rem 0;
}

.old-price {
text-decoration: line-through;
color: #999;
font-size: 1.2rem;
margin-right: 0.5rem;
}

.gallery {
background-color: var(--dark);
}

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

.gallery-item {
position: relative;
overflow: hidden;
border-radius: 5px;
height: 250px;
transition: transform 0.3s;
}

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

.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}

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

.reviews {
background-color: var(--bg);
text-align: center;
}

.review-slider {
max-width: 800px;
margin: 3rem auto 0;
position: relative;
overflow: hidden;
}

.review-slide {
background-color: var(--dark);
padding: 2rem;
border-radius: 10px;
margin: 0 1rem;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
display: none;
}

.review-slide.active {
display: block;
animation: fadeIn 1s ease-in-out;
}

.review-text {
font-style: italic;
margin-bottom: 1.5rem;
position: relative;
}

.review-text::before,
.review-text::after {
content: '"';
font-size: 2rem;
color: var(--primary);
opacity: 0.5;
}

.review-author {
font-weight: bold;
color: var(--accent);
}

.slider-nav {
margin-top: 2rem;
display: flex;
justify-content: center;
gap: 1rem;
}

.slider-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: var(--text);
opacity: 0.5;
cursor: pointer;
transition: all 0.3s;
}

.slider-dot.active {
background-color: var(--primary);
opacity: 1;
transform: scale(1.2);
}

.faq {
background-color: var(--dark);
}

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

.faq-item {
margin-bottom: 1rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
padding-bottom: 1rem;
}

.faq-question {
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
padding: 1rem 0;
}

.faq-question h3 {
margin: 0;
font-size: 1.2rem;
}

.faq-toggle {
font-size: 1.5rem;
transition: transform 0.3s;
}

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

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

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

.contact {
background-color: var(--bg);
text-align: center;
}

.contact-form {
max-width: 600px;
margin: 2rem auto 0;
background-color: var(--dark);
padding: 2rem;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
width: 100%;
}

.form-group {
margin-bottom: 1.5rem;
text-align: left;
}

.form-group label {
display: block;
margin-bottom: 0.5rem;
color: var(--accent);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 0.8rem;
background-color: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 5px;
color: var(--text);
font-size: 1rem;
}

.form-group textarea {
min-height: 150px;
resize: vertical;
}

.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
z-index: 2000;
justify-content: center;
align-items: center;
}

.modal-content {
background-color: var(--dark);
padding: 2rem;
border-radius: 10px;
max-width: 500px;
text-align: center;
position: relative;
animation: modalFadeIn 0.5s ease-out;
}

.close-modal {
position: absolute;
top: 10px;
right: 10px;
font-size: 1.5rem;
cursor: pointer;
color: var(--text);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: var(--dark);
padding: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 1000;
box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
transform: translateY(100%);
transition: transform 0.5s ease-out;
}

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

.cookie-text {
flex: 1;
margin-right: 2rem;
}

@media (max-width: 500px) {
    .cookie-text {
        margin-right: 1rem;
        font-size: 0.8rem;
    }
}

footer {
background-color: var(--dark);
padding: 3rem 2rem;
text-align: center;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
text-align: left;
}

.footer-column h3 {
color: var(--primary);
margin-bottom: 1.5rem;
font-size: 1.3rem;
}

.footer-column ul {
list-style: none;
}

.footer-column ul li {
margin-bottom: 0.8rem;
}

.footer-column ul li a {
color: var(--text);
text-decoration: none;
transition: color 0.3s;
}

.footer-column ul li a:hover {
color: var(--secondary);
}

.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}

.social-links a {
color: var(--text);
font-size: 1.5rem;
transition: color 0.3s;
}

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

.copyright {
margin-top: 3rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 0.9rem;
opacity: 0.7;
}

.disclaimer {
font-size: 0.8rem;
opacity: 0.6;
margin-top: 2rem;
line-height: 1.4;
}

@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}

@keyframes modalFadeIn {
from { opacity: 0; transform: translateY(-50px); }
to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

nav ul {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    clip-path: circle(0px at 90% -10%);
    transition: clip-path 0.7s ease-out;
    pointer-events: none;
}

nav ul.open {
    clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
}

nav ul li {
    margin: 1rem 0;
}

.burger {
    display: block;
}

.burger.active .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active .line2 {
    opacity: 0;
}

.burger.active .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.about-content {
    flex-direction: column;
}

.about-image {
    margin-top: 2rem;
}

section {
    padding: 3rem 1rem;
}
}