:root {
--primary-color: #2c3e50;
--secondary-color: #e74c3c;
--accent-color: #3498db;
--text-color: #333;
--light-bg: #f8f9fa;
--border-color: #ddd;
--success-color: #27ae60;
--white: #ffffff;
--shadow: 0 2px 10px rgba(0,0,0,0.1);
--transition: all 0.3s ease;
}

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

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

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

.navbar {
background-color: var(--white);
box-shadow: var(--shadow);
position: sticky;
top: 0;
z-index: 1000;
}

.nav-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
}

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

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

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

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

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

.cart-link {
position: relative;
}

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

.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
gap: 5px;
}

.hamburger span {
width: 25px;
height: 3px;
background-color: var(--primary-color);
transition: var(--transition);
}

.hero {
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
color: var(--white);
padding: 100px 0;
text-align: center;
}

.hero-content h1 {
font-size: 3rem;
margin-bottom: 20px;
}

.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 30px;
}

.cta-button {
display: inline-block;
background-color: var(--secondary-color);
color: var(--white);
padding: 15px 40px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: var(--transition);
}

.cta-button:hover {
background-color: #c0392b;
transform: translateY(-2px);
}

.summary-section {
padding: 60px 0;
background-color: var(--light-bg);
}

.summary-box {
background-color: var(--white);
padding: 40px;
border-radius: 10px;
box-shadow: var(--shadow);
}

.summary-box h2 {
color: var(--primary-color);
margin-bottom: 20px;
}

.date-time {
display: flex;
align-items: center;
gap: 10px;
color: var(--accent-color);
margin-top: 20px;
}

.features {
padding: 80px 0;
}

.section-title {
text-align: center;
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 50px;
}

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

.feature-card {
background-color: var(--white);
padding: 30px;
border-radius: 10px;
box-shadow: var(--shadow);
text-align: center;
transition: var(--transition);
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.feature-icon {
color: var(--accent-color);
margin-bottom: 20px;
}

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

.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
text-align: center;
}

.stat-item {
padding: 30px;
background-color: var(--light-bg);
border-radius: 10px;
}

.stat-number {
font-size: 2.5rem;
color: var(--secondary-color);
font-weight: bold;
}

.stat-label {
color: var(--text-color);
margin-top: 10px;
}

.about-products {
padding: 80px 0;
background-color: var(--light-bg);
}

.about-text {
max-width: 900px;
margin: 0 auto 40px;
}

.about-text p {
margin-bottom: 20px;
line-height: 1.8;
}

.quality-badges {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
}

.badge {
display: flex;
align-items: center;
gap: 10px;
color: var(--primary-color);
font-weight: 600;
}

.products {
padding: 80px 0;
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 30px;
}

.product-card {
background-color: var(--white);
border-radius: 10px;
box-shadow: var(--shadow);
overflow: hidden;
transition: var(--transition);
}

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

.product-image {
width: 100%;
height: 250px;
overflow: hidden;
}

.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.product-info {
padding: 25px;
}

.product-info h3 {
color: var(--primary-color);
margin-bottom: 10px;
}

.product-description {
color: #666;
margin-bottom: 15px;
}

.product-price {
font-size: 1.8rem;
color: var(--secondary-color);
font-weight: bold;
margin-bottom: 20px;
}

.btn {
display: inline-block;
padding: 12px 30px;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
transition: var(--transition);
border: none;
cursor: pointer;
}

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

.btn-primary:hover {
background-color: #c0392b;
}

.btn-secondary {
background-color: var(--accent-color);
color: var(--white);
}

.btn-secondary:hover {
background-color: #2980b9;
}

.product-detail {
padding: 80px 0;
}

.product-detail-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
}

.product-detail-image img {
width: 100%;
border-radius: 10px;
box-shadow: var(--shadow);
}

.product-detail-price {
font-size: 2.5rem;
color: var(--secondary-color);
font-weight: bold;
margin: 20px 0;
}

.product-features {
margin: 30px 0;
}

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

.product-features ul {
list-style-position: inside;
}

.product-features li {
padding: 8px 0;
border-bottom: 1px solid var(--border-color);
}

.product-actions {
display: flex;
gap: 15px;
margin-top: 30px;
}

.product-actions .btn {
flex: 1;
text-align: center;
}

.cart-page {
padding: 80px 0;
min-height: 60vh;
}

.cart-empty {
text-align: center;
padding: 60px 0;
}

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

.cart-item {
display: grid;
grid-template-columns: 100px 1fr auto auto;
gap: 20px;
padding: 20px;
background-color: var(--white);
border-radius: 10px;
box-shadow: var(--shadow);
margin-bottom: 20px;
align-items: center;
}

.cart-item-image {
width: 100px;
height: 100px;
border-radius: 5px;
overflow: hidden;
}

.cart-item-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

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

.cart-item-price {
font-size: 1.5rem;
color: var(--secondary-color);
font-weight: bold;
}

.cart-item-remove {
background-color: var(--secondary-color);
color: var(--white);
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: var(--transition);
}

.cart-item-remove:hover {
background-color: #c0392b;
}

.cart-summary {
background-color: var(--light-bg);
padding: 30px;
border-radius: 10px;
margin-top: 30px;
}

.cart-summary-row {
display: flex;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px solid var(--border-color);
}

.cart-summary-total {
font-size: 1.3rem;
font-weight: bold;
color: var(--primary-color);
border-bottom: none;
margin-top: 10px;
}

.checkout-form {
max-width: 600px;
margin: 0 auto;
background-color: var(--white);
padding: 40px;
border-radius: 10px;
box-shadow: var(--shadow);
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
margin-bottom: 8px;
color: var(--primary-color);
font-weight: 600;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid var(--border-color);
border-radius: 5px;
font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--accent-color);
}

.success-page {
padding: 100px 0;
text-align: center;
}

.success-icon {
color: var(--success-color);
margin-bottom: 30px;
}

.success-page h1 {
color: var(--primary-color);
margin-bottom: 20px;
}

.success-page p {
font-size: 1.1rem;
margin-bottom: 15px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.contact-page {
padding: 80px 0;
}

.contact-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
margin-top: 40px;
}

.contact-item {
display: flex;
gap: 15px;
margin-bottom: 30px;
}

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

.contact-item h3 {
color: var(--primary-color);
margin-bottom: 5px;
}

.about-page {
padding: 80px 0;
}

.about-hero {
text-align: center;
margin-bottom: 60px;
}

.about-hero h1 {
color: var(--primary-color);
margin-bottom: 20px;
}

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

.about-content p {
margin-bottom: 20px;
line-height: 1.8;
}

.team-section {
margin-top: 80px;
}

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

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 40px;
}

.team-member {
background-color: var(--white);
border-radius: 10px;
box-shadow: var(--shadow);
padding: 30px;
text-align: center;
transition: var(--transition);
}

.team-member:hover {
transform: translateY(-5px);
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.team-member img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 20px;
}

.team-member h3 {
color: var(--primary-color);
margin-bottom: 5px;
}

.team-member .role {
color: var(--secondary-color);
font-weight: 600;
margin-bottom: 15px;
}

.team-member .bio {
color: #666;
line-height: 1.6;
}

.footer {
background-color: var(--primary-color);
color: var(--white);
padding: 60px 0 20px;
}

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

.footer-section h4 {
margin-bottom: 20px;
font-size: 1.2rem;
}

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

.footer-section ul li {
margin-bottom: 10px;
}

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

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

.social-links {
display: flex;
gap: 15px;
margin-top: 20px;
}

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

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

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

.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: var(--primary-color);
color: var(--white);
padding: 20px;
z-index: 9999;
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
display: none;
}

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

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

.cookie-buttons {
display: flex;
gap: 10px;
}

.cookie-btn {
padding: 10px 25px;
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: 600;
transition: var(--transition);
}

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

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

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

.cookie-content a {
color: var(--white);
text-decoration: underline;
}

@media (max-width: 768px) {
.hamburger {
display: flex;
}

.nav-menu {
position: fixed;
left: -100%;
top: 70px;
flex-direction: column;
background-color: var(--white);
width: 100%;
text-align: center;
transition: var(--transition);
box-shadow: var(--shadow);
padding: 20px 0;
}

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

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

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

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

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

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

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

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

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