:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #2ecc71;
  --dark-color: #1a2530;
  --light-color: #ecf0f1;
  --text-color: #333;
  --text-light: #f8f9fa;
  --border-color: #ddd;
  --success-color: #27ae60;
  --error-color: #e74c3c;
  --warning-color: #f39c12;
  --info-color: #3498db;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: 'Arial', sans-serif;
  --font-headings: 'Montserrat', sans-serif;
  --neon-color: #00c2ff;
  --neon-text-shadow: 0 0 5px rgba(0, 194, 255, 0.7), 0 0 10px rgba(0, 194, 255, 0.5), 0 0 15px rgba(0, 194, 255, 0.3);
  --neon-box-shadow: 0 0 5px rgba(0, 194, 255, 0.7), 0 0 8px rgba(0, 194, 255, 0.5), 0 0 12px rgba(0, 194, 255, 0.3);
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: #f5f8fa;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
}

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

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

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

.neon-button {
  background-color: transparent;
  border: 2px solid var(--neon-color);
  color: var(--neon-color);
  text-shadow: var(--neon-text-shadow);
  box-shadow: var(--neon-box-shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.neon-button:hover {
  color: white;
  border-color: var(--neon-color);
}

.neon-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--neon-color);
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}

.neon-button:hover::before {
  opacity: 1;
}

/* Header */
header {
  background-color: white;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

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

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

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
}

nav ul li a:hover, nav ul li a.active {
  color: var(--secondary-color);
}

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

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

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

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

/* Hero Section */
.hero {
  background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('images/logo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: 80px 0;
  margin-bottom: 50px;
}

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

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Advantages Section */
.advantages {
  padding: 50px 0;
  background-color: white;
  margin-bottom: 50px;
}

.advantages h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.advantage-item {
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.advantage-item h3 {
  margin-bottom: 15px;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 50px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.cta-box {
  background-color: var(--light-color);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin-top: 50px;
}

.cta-box h3 {
  margin-bottom: 20px;
}

/* Product Info Section */
.product-info {
  padding: 50px 0;
  background-color: #f8f9fa;
}

.product-info h2 {
  text-align: center;
  margin-bottom: 30px;
}

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

.info-text p {
  margin-bottom: 20px;
  text-align: justify;
}

.info-text h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Products Section */
.products {
  padding: 50px 0;
}

.products h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

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

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

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

.product-card h3 {
  padding: 15px 15px 5px 15px;
  font-size: 1.2rem;
}

.product-card .price {
  padding: 0 15px;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.product-card .description {
  padding: 0 15px 15px 15px;
  font-size: 0.9rem;
  color: #666;
  height: 80px;
  overflow: hidden;
}

.product-card .btn {
  display: block;
  margin: 15px;
  text-align: center;
}

/* Product Detail */
.product-detail {
  padding: 50px 0;
}

.product-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

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

.product-info h1 {
  margin-bottom: 15px;
}

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

.product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.stars {
  display: flex;
  color: #f39c12;
  margin-right: 10px;
}

.product-description {
  margin-bottom: 30px;
}

.product-description h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.product-description ul {
  margin-bottom: 20px;
}

.quantity-selector {
  margin-bottom: 20px;
}

.quantity-selector label {
  margin-right: 10px;
}

.quantity-selector select {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.product-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.product-meta {
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.product-tabs {
  margin-top: 50px;
}

.tab-headers {
  display: flex;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 20px;
}

.tab-header {
  padding: 10px 20px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: #666;
}

.tab-header.active {
  color: var(--secondary-color);
}

.tab-header.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.specs-table th, .specs-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.specs-table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

.specs-table td ul {
  margin-bottom: 0;
}

.review-summary {
  margin-bottom: 30px;
}

.average-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rating-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.review-list {
  margin-top: 30px;
}

.review-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.reviewer {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.review-date {
  color: #666;
  font-size: 0.9rem;
}

/* Cart Section */
.cart-section {
  padding: 50px 0;
}

.cart-section h1 {
  text-align: center;
  margin-bottom: 40px;
}

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

.cart-empty svg {
  margin-bottom: 20px;
  color: #aaa;
}

.cart-empty p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.cart-header {
  font-weight: bold;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 20px;
}

.cart-row {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
  gap: 15px;
  align-items: center;
  padding: 15px 0;
}

.cart-items .cart-row {
  border-bottom: 1px solid var(--border-color);
}

.product-info {
  display: flex;
  align-items: center;
}

.product-info img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 4px;
}

.product-quantity {
  display: flex;
  align-items: center;
}

.product-quantity .quantity-input {
  width: 60px;
  text-align: center;
  padding: 5px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.product-quantity .quantity-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 10px;
  color: var(--secondary-color);
}

.product-remove button {
  background: none;
  border: none;
  color: var(--error-color);
  cursor: pointer;
}

.cart-footer {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cart-totals {
  width: 300px;
}

.subtotal, .tax, .total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.total {
  font-weight: bold;
  font-size: 1.2rem;
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
}

.cart-actions {
  display: flex;
  gap: 15px;
}

/* Checkout Section */
.checkout-section {
  padding: 50px 0;
}

.checkout-section h1 {
  text-align: center;
  margin-bottom: 40px;
}

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

.checkout-form, .checkout-summary {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.checkout-form h2, .checkout-summary h2 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.checkout-summary .order-summary {
  margin-bottom: 20px;
}

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

.summary-item-info {
  display: flex;
  align-items: center;
}

.summary-item-info img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 4px;
}

.summary-item-details h4 {
  margin-bottom: 5px;
}

.summary-item-price {
  color: var(--secondary-color);
  font-weight: bold;
}

.summary-totals {
  margin-top: 20px;
}

/* Success Section */
.success-section {
  padding: 50px 0;
}

.success-message {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.success-message h1 {
  margin-bottom: 20px;
}

.success-message p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.next-steps {
  text-align: left;
  margin: 30px 0;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.next-steps h2 {
  margin-bottom: 15px;
}

.success-actions {
  margin-top: 30px;
}

/* Contact Page */
.page-header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 50px 0;
  margin-bottom: 50px;
}

.page-header h1 {
  color: white;
  margin-bottom: 10px;
}

.contact-section {
  padding: 0 0 50px 0;
}

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

.contact-info {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.contact-info h2 {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  margin-bottom: 25px;
}

.info-icon {
  margin-right: 15px;
  color: var(--secondary-color);
}

.info-content h3 {
  margin-bottom: 5px;
}

.business-hours {
  margin-top: 30px;
}

.business-hours h3 {
  margin-bottom: 15px;
}

.business-hours ul {
  list-style: none;
  margin-left: 0;
}

.business-hours ul li {
  margin-bottom: 10px;
}

.business-hours ul li span {
  font-weight: 600;
  margin-right: 10px;
}

.social-links {
  margin-top: 30px;
}

.social-links h3 {
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f8f9fa;
  border-radius: 50%;
  color: var(--primary-color);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  color: white;
}

.contact-form-container {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
  margin-bottom: 30px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.map-section {
  padding: 50px 0;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.responsive-map {
  height: 100%;
}

.responsive-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.faq-section {
  padding: 50px 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #f8f9fa;
  cursor: pointer;
}

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

.faq-toggle {
  transition: var(--transition);
}

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

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

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

/* About Page */
.about-intro {
  padding: 0 0 50px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.about-image {
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.about-text h2 {
  margin-top: 30px;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
}

.about-text ul {
  margin-bottom: 20px;
}

.achievements {
  padding: 50px 0;
  background-color: #f8f9fa;
}

.achievements h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.achievement-item {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.achievement-icon {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.achievement-item h3 {
  margin-bottom: 15px;
}

.team-section {
  padding: 50px 0;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.team-member {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

.team-member h3 {
  padding: 20px 20px 5px 20px;
  margin-bottom: 5px;
}

.team-member p {
  padding: 0 20px;
  margin-bottom: 10px;
}

.team-member p:nth-of-type(1) {
  color: var(--secondary-color);
  font-weight: 600;
}

.team-member .social-links {
  padding: 0 20px 20px 20px;
  margin-top: 15px;
}

.team-member .social-links a {
  margin-right: 10px;
}

.partners-section {
  padding: 50px 0;
  background-color: #f8f9fa;
}

.partners-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.partners-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.partners-text h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.testimonials {
  padding: 50px 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.testimonial-item {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-info h4 {
  margin-bottom: 5px;
}

.author-info p {
  color: #666;
  margin-bottom: 0;
}

.cta-section {
  background-color: var(--primary-color);
  color: white;
  padding: 80px 0;
}

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

.cta-content h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 50px 0 0 0;
}

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

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-links h4, .footer-contact h4 {
  color: white;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  margin-left: 0;
}

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

.footer-links ul li a {
  color: #bbb;
}

.footer-links ul li a:hover {
  color: white;
}

.footer-contact p {
  margin-bottom: 10px;
  color: #bbb;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

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

.cookie-content p {
  flex: 1;
  margin-right: 20px;
  margin-bottom: 0;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
  
  .product-detail-content,
  .checkout-container {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-content p {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 10px 10px 10px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .cart-row {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .cart-header .product-price,
  .cart-header .product-total,
  .cart-items .product-price,
  .cart-items .product-total {
    display: none;
  }
  
  .cart-footer {
    flex-direction: column;
  }
  
  .cart-totals {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .cart-row {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 15px;
  }
  
  .cart-header {
    display: none;
  }
  
  .product-info {
    flex-direction: column;
    align-items: center;
  }
  
  .product-info img {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .product-quantity {
    justify-content: center;
    margin: 10px 0;
  }
  
  .product-remove {
    margin-top: 10px;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}
