* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary-color: #2d1b4e;
--secondary-color: #5c3d8f;
--accent-color: #9d7bca;
--dark-bg: #1a0f2e;
--light-bg: #f4f1f8;
--text-color: #333;
--light-text: #fff;
--success-color: #4caf50;
--error-color: #f44336;
--border-radius: 8px;
--transition: all 0.3s ease;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--light-bg);
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

header {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}

.navbar {
padding: 1rem 0;
}

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

.logo {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
color: var(--light-text);
font-size: 1.5rem;
font-weight: bold;
}

.logo img {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
}

.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
align-items: center;
}

.nav-menu a {
color: var(--light-text);
text-decoration: none;
font-weight: 500;
transition: var(--transition);
position: relative;
}

.nav-menu a:hover {
color: var(--accent-color);
}

.cart-link {
position: relative;
display: flex;
align-items: center;
}

.cart-count {
position: absolute;
top: -8px;
right: -8px;
background: var(--error-color);
color: white;
border-radius: 50%;
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.75rem;
font-weight: bold;
}

.hero {
position: relative;
height: 600px;
overflow: hidden;
}

.slider {
position: relative;
width: 100%;
height: 100%;
}

.slide {
position: absolute;
width: 100%;
height: 100%;
display: none;
background: linear-gradient(135deg, rgba(45, 27, 78, 0.9), rgba(92, 61, 143, 0.9)), url('images/logo.jpg');
background-size: cover;
background-position: center;
}

.slide.active {
display: flex;
align-items: center;
justify-content: center;
animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

.slide-content {
text-align: center;
color: var(--light-text);
max-width: 800px;
padding: 2rem;
}

.slide-content h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
font-size: 1.5rem;
margin-bottom: 2rem;
}

.cta-button {
background: var(--accent-color);
color: var(--light-text);
border: none;
padding: 1rem 2.5rem;
font-size: 1.1rem;
border-radius: var(--border-radius);
cursor: pointer;
transition: var(--transition);
font-weight: bold;
}

.cta-button:hover {
background: var(--secondary-color);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.slider-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255,255,255,0.3);
color: white;
border: none;
padding: 1rem 1.2rem;
font-size: 1.5rem;
cursor: pointer;
transition: var(--transition);
z-index: 10;
}

.slider-btn:hover {
background: rgba(255,255,255,0.5);
}

.slider-btn.prev {
left: 20px;
}

.slider-btn.next {
right: 20px;
}

.features {
padding: 5rem 0;
background: white;
}

.features h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: var(--primary-color);
}

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

.feature-card {
background: var(--light-bg);
padding: 2rem;
border-radius: var(--border-radius);
text-align: center;
transition: var(--transition);
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
color: var(--accent-color);
margin-bottom: 1rem;
}

.feature-card h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-top: 3rem;
padding: 2rem;
background: var(--primary-color);
border-radius: var(--border-radius);
}

.stat {
text-align: center;
color: var(--light-text);
}

.stat h3 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
color: var(--accent-color);
}

.about-products {
padding: 5rem 0;
background: var(--light-bg);
}

.about-products h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: var(--primary-color);
}

.content-block {
background: white;
padding: 2rem;
margin-bottom: 2rem;
border-radius: var(--border-radius);
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-block h3 {
color: var(--secondary-color);
margin-bottom: 1rem;
font-size: 1.8rem;
}

.content-block p {
margin-bottom: 1rem;
line-height: 1.8;
font-size: 1.05rem;
}

.products {
padding: 5rem 0;
background: white;
}

.products h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: var(--primary-color);
}

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

.product-card {
background: var(--light-bg);
border-radius: var(--border-radius);
overflow: hidden;
transition: var(--transition);
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.product-card a {
display: block;
text-decoration: none;
color: inherit;
}

.product-card img {
width: 100%;
height: 250px;
object-fit: cover;
}

.product-card h3 {
padding: 1rem 1rem 0.5rem;
color: var(--primary-color);
}

.product-card p {
padding: 0 1rem;
color: var(--text-color);
font-size: 0.9rem;
}

.price {
padding: 0.5rem 1rem;
font-size: 1.5rem;
font-weight: bold;
color: var(--secondary-color);
}

.btn-add-cart {
width: calc(100% - 2rem);
margin: 1rem;
padding: 0.8rem;
background: var(--accent-color);
color: white;
border: none;
border-radius: var(--border-radius);
cursor: pointer;
font-size: 1rem;
font-weight: bold;
transition: var(--transition);
}

.btn-add-cart:hover {
background: var(--secondary-color);
}

.cta-section {
padding: 4rem 0;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
text-align: center;
color: var(--light-text);
}

.cta-section h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.cta-section p {
font-size: 1.2rem;
margin-bottom: 2rem;
}

.modal {
display: none;
position: fixed;
z-index: 2000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.5);
}

.modal-content {
background-color: white;
margin: 10% auto;
padding: 2rem;
border-radius: var(--border-radius);
max-width: 500px;
position: relative;
}

.close {
position: absolute;
right: 1rem;
top: 1rem;
font-size: 2rem;
font-weight: bold;
cursor: pointer;
color: var(--text-color);
}

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

.modal-content h2 {
margin-bottom: 1.5rem;
color: var(--primary-color);
}

.modal-content form {
display: flex;
flex-direction: column;
gap: 1rem;
}

.modal-content input,
.modal-content textarea {
padding: 0.8rem;
border: 1px solid #ddd;
border-radius: var(--border-radius);
font-size: 1rem;
font-family: inherit;
}

.notification {
position: fixed;
top: 100px;
right: 20px;
background: var(--success-color);
color: white;
padding: 1rem 1.5rem;
border-radius: var(--border-radius);
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
display: none;
z-index: 3000;
}

.notification.show {
display: block;
animation: slideIn 0.3s ease-in;
}

@keyframes slideIn {
from {
transform: translateX(400px);
}
to {
transform: translateX(0);
}
}

.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark-bg);
color: var(--light-text);
padding: 1.5rem;
z-index: 2000;
box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
display: none;
}

.cookie-consent.show {
display: block;
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-content p {
margin-bottom: 1rem;
}

.cookie-buttons {
display: flex;
gap: 1rem;
align-items: center;
flex-wrap: wrap;
}

.btn-accept,
.btn-decline {
padding: 0.8rem 1.5rem;
border: none;
border-radius: var(--border-radius);
cursor: pointer;
font-weight: bold;
transition: var(--transition);
}

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

.btn-decline {
background: var(--error-color);
color: white;
}

.cookie-buttons a {
color: var(--accent-color);
text-decoration: underline;
}

footer {
background: var(--dark-bg);
color: var(--light-text);
padding: 3rem 0 1rem;
}

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

.footer-col h4 {
color: var(--accent-color);
margin-bottom: 1rem;
}

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

.footer-col ul li {
margin-bottom: 0.5rem;
}

.footer-col a {
color: var(--light-text);
text-decoration: none;
transition: var(--transition);
}

.footer-col a:hover {
color: var(--accent-color);
}

.reg-number {
margin-top: 1rem;
font-size: 0.9rem;
opacity: 0.8;
}

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

.social-links a {
color: var(--light-text);
transition: var(--transition);
}

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

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

.product-detail {
padding: 3rem 0;
}

.product-detail-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
margin-bottom: 3rem;
}

.product-image {
width: 100%;
border-radius: var(--border-radius);
}

.product-info h1 {
color: var(--primary-color);
margin-bottom: 1rem;
font-size: 2.5rem;
}

.product-info .price {
font-size: 2rem;
color: var(--secondary-color);
margin-bottom: 1rem;
padding: 0;
}

.product-description {
margin-bottom: 2rem;
line-height: 1.8;
}

.product-buttons {
display: flex;
gap: 1rem;
margin-top: 2rem;
}

.btn-buy {
flex: 1;
padding: 1rem;
background: var(--secondary-color);
color: white;
border: none;
border-radius: var(--border-radius);
cursor: pointer;
font-size: 1.1rem;
font-weight: bold;
transition: var(--transition);
}

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

.product-features {
background: var(--light-bg);
padding: 2rem;
border-radius: var(--border-radius);
margin-bottom: 2rem;
}

.product-features h3 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.product-features ul {
list-style: none;
}

.product-features li {
padding: 0.5rem 0;
padding-left: 1.5rem;
position: relative;
}

.product-features li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--success-color);
font-weight: bold;
}

.cart-page {
padding: 3rem 0;
min-height: 60vh;
}

.cart-page h1 {
color: var(--primary-color);
margin-bottom: 2rem;
}

.cart-items {
background: white;
border-radius: var(--border-radius);
padding: 2rem;
margin-bottom: 2rem;
}

.cart-item {
display: grid;
grid-template-columns: 100px 1fr auto auto;
gap: 1.5rem;
align-items: center;
padding: 1.5rem;
border-bottom: 1px solid #eee;
}

.cart-item:last-child {
border-bottom: none;
}

.cart-item img {
width: 100px;
height: 100px;
object-fit: cover;
border-radius: var(--border-radius);
}

.cart-item-info h3 {
color: var(--primary-color);
margin-bottom: 0.5rem;
}

.quantity-control {
display: flex;
align-items: center;
gap: 0.5rem;
}

.quantity-control button {
width: 30px;
height: 30px;
border: 1px solid var(--accent-color);
background: white;
color: var(--accent-color);
cursor: pointer;
border-radius: 4px;
font-weight: bold;
}

.quantity-control button:hover {
background: var(--accent-color);
color: white;
}

.quantity-control input {
width: 50px;
text-align: center;
border: 1px solid #ddd;
padding: 0.3rem;
border-radius: 4px;
}

.btn-remove {
background: var(--error-color);
color: white;
border: none;
padding: 0.5rem 1rem;
border-radius: var(--border-radius);
cursor: pointer;
}

.btn-remove:hover {
opacity: 0.8;
}

.cart-summary {
background: var(--light-bg);
padding: 2rem;
border-radius: var(--border-radius);
}

.cart-summary h2 {
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.summary-row {
display: flex;
justify-content: space-between;
margin-bottom: 1rem;
}

.summary-row.total {
font-size: 1.5rem;
font-weight: bold;
color: var(--secondary-color);
padding-top: 1rem;
border-top: 2px solid var(--accent-color);
}

.btn-checkout {
width: 100%;
padding: 1rem;
background: var(--success-color);
color: white;
border: none;
border-radius: var(--border-radius);
cursor: pointer;
font-size: 1.1rem;
font-weight: bold;
margin-top: 1rem;
}

.btn-checkout:hover {
opacity: 0.9;
}

.empty-cart {
text-align: center;
padding: 3rem;
}

.empty-cart h2 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.checkout-page {
padding: 3rem 0;
}

.checkout-container {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 2rem;
}

.checkout-form {
background: white;
padding: 2rem;
border-radius: var(--border-radius);
}

.checkout-form h2 {
color: var(--primary-color);
margin-bottom: 1.5rem;
}

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

.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 500;
color: var(--text-color);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 0.8rem;
border: 1px solid #ddd;
border-radius: var(--border-radius);
font-size: 1rem;
font-family: inherit;
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}

.btn-submit {
width: 100%;
padding: 1rem;
background: var(--success-color);
color: white;
border: none;
border-radius: var(--border-radius);
cursor: pointer;
font-size: 1.1rem;
font-weight: bold;
margin-top: 1rem;
}

.btn-submit:hover {
opacity: 0.9;
}

.order-summary {
background: var(--light-bg);
padding: 2rem;
border-radius: var(--border-radius);
height: fit-content;
}

.order-item {
display: flex;
justify-content: space-between;
margin-bottom: 1rem;
padding-bottom: 1rem;
border-bottom: 1px solid #ddd;
}

.success-page {
padding: 5rem 0;
text-align: center;
min-height: 60vh;
}

.success-content {
background: white;
padding: 3rem;
border-radius: var(--border-radius);
max-width: 600px;
margin: 0 auto;
}

.success-icon {
width: 100px;
height: 100px;
background: var(--success-color);
border-radius: 50%;
margin: 0 auto 2rem;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 3rem;
}

.success-content h1 {
color: var(--primary-color);
margin-bottom: 1rem;
}

.success-content p {
margin-bottom: 2rem;
font-size: 1.1rem;
}

.contact-page {
padding: 3rem 0;
}

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

.contact-info {
background: var(--light-bg);
padding: 2rem;
border-radius: var(--border-radius);
}

.contact-info h2 {
color: var(--primary-color);
margin-bottom: 1.5rem;
}

.contact-item {
display: flex;
align-items: start;
gap: 1rem;
margin-bottom: 1.5rem;
}

.contact-item svg {
color: var(--accent-color);
flex-shrink: 0;
}

.contact-form {
background: white;
padding: 2rem;
border-radius: var(--border-radius);
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-page {
padding: 3rem 0;
}

.about-hero {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--light-text);
padding: 4rem 2rem;
border-radius: var(--border-radius);
text-align: center;
margin-bottom: 3rem;
}

.about-hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
}

.about-content {
background: white;
padding: 3rem;
border-radius: var(--border-radius);
margin-bottom: 3rem;
}

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

.about-content p {
margin-bottom: 1rem;
line-height: 1.8;
}

.team-section {
padding: 3rem 0;
}

.team-section h2 {
text-align: center;
color: var(--primary-color);
margin-bottom: 3rem;
font-size: 2.5rem;
}

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

.team-card {
background: white;
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
transition: var(--transition);
text-align: center;
}

.team-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-card img {
width: 100%;
height: 400px;
object-fit: cover;
}

.team-card h3 {
color: var(--primary-color);
margin: 1rem 0 0.5rem;
padding: 0 1rem;
}

.team-card .position {
color: var(--accent-color);
font-weight: bold;
margin-bottom: 1rem;
}

.team-card .bio {
padding: 0 1rem 1.5rem;
color: var(--text-color);
line-height: 1.6;
}

@media (max-width: 768px) {
.navbar .container {
flex-direction: column;
gap: 1rem;
}

.nav-menu {
flex-direction: column;
gap: 1rem;
}

.slide-content h1 {
font-size: 2rem;
}

.slide-content p {
font-size: 1rem;
}

.product-detail-container {
grid-template-columns: 1fr;
}

.checkout-container {
grid-template-columns: 1fr;
}

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

.cart-item {
grid-template-columns: 1fr;
gap: 1rem;
}

.form-row {
grid-template-columns: 1fr;
}

.product-buttons {
flex-direction: column;
}
}