:root {
  --primary-color: #ff6b6b;
  --primary-dark: #e74c3c;
  --secondary-color: #4ecdc4;
  --accent-color: #ffbe76;
  --dark-color: #2d3436;
  --light-color: #f9f9f9;
  --gray-color: #95a5a6;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --error-color: #e74c3c;
  --text-color: #333;
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --container-width: 1200px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", "Arial", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
}

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

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

ul,
ol {
  list-style-position: inside;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

/* Custom Image Frame */
.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 5px;
  background-color: white;
}

.image-frame::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  z-index: 1;
  border: 1px dashed var(--accent-color);
  border-radius: calc(var(--border-radius) - 3px);
  pointer-events: none;
}

.image-frame img {
  display: block;
  width: 100%;
  border-radius: calc(var(--border-radius) - 5px);
  transition: transform 0.3s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 6px rgba(231, 76, 60, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 8px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  box-shadow: 0 4px 6px rgba(78, 205, 196, 0.2);
}

.btn-secondary:hover {
  background-color: #3dbeb5;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 8px rgba(78, 205, 196, 0.3);
}

.btn-cookie {
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  margin: 0 5px;
}

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

.btn-cookie.customize {
  background-color: var(--gray-color);
  color: white;
}

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

.btn-cookie.accept:hover,
.btn-cookie.customize:hover {
  opacity: 0.9;
}

.btn-cookie.decline:hover {
  color: var(--dark-color);
  border-color: var(--dark-color);
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}

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

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

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

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

nav ul li a {
  color: var(--dark-color);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
}

nav ul li a i {
  margin-right: 8px;
}

nav ul li a.active,
nav ul li a:hover {
  color: var(--primary-color);
  background-color: rgba(255, 107, 107, 0.1);
}

/* Hero Section */
.hero {
  background-color: var(--secondary-color);
  color: white;
  padding: 80px 0;
  text-align: center;
  background-image: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    #2ecc71 100%
  );
}

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

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: white;
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-item p {
  color: var(--gray-color);
  margin-bottom: 0;
}

/* Products Section */
.popular-products {
  padding: 80px 0;
  background-color: var(--light-color);
}

.popular-products h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.product-item .image-frame {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  height: 250px;
}

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

.product-item h3,
.product-item p {
  padding: 0 20px;
}

.product-item h3 {
  margin-top: 20px;
  font-size: 1.3rem;
}

.product-item p {
  color: var(--gray-color);
}

.price {
  display: block;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0 20px 20px;
}

.center {
  text-align: center;
}

/* Recent Posts Section */
.recent-posts {
  padding: 80px 0;
  background-color: white;
}

.recent-posts h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.post-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.post-card .image-frame {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  height: 200px;
}

.post-card .image-frame img {
  height: 100%;
  object-fit: cover;
}

.post-card h3,
.post-card p {
  padding: 0 20px;
}

.post-card h3 {
  margin-top: 20px;
  font-size: 1.3rem;
}

.post-card p {
  color: var(--gray-color);
}

.read-more {
  display: inline-block;
  padding: 0 20px 20px;
  color: var(--primary-color);
  font-weight: 600;
}

.read-more:hover {
  color: var(--primary-dark);
}

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

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

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

.footer-col p {
  color: var(--gray-color);
  margin-bottom: 20px;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.contact-info li i {
  margin-right: 10px;
  color: var(--primary-color);
}

.contact-info a {
  color: var(--gray-color);
}

.contact-info a:hover {
  color: white;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: var(--gray-color);
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--gray-color);
  margin-left: 20px;
  font-size: 0.9rem;
}

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

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-notice.show {
  display: block;
  animation: slideUp 0.5s forwards;
}

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

.cookie-content p {
  margin-bottom: 15px;
}

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

.cookie-more {
  font-size: 0.9rem;
  color: var(--gray-color);
}

/* Page Number */
.page-number {
  text-align: center;
  padding: 20px 0;
  color: var(--gray-color);
  font-size: 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Blog Page Styles */
.page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.blog-post {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.blog-post .image-frame {
  height: 220px;
}

.blog-post .image-frame img {
  height: 100%;
  object-fit: cover;
}

.post-meta {
  display: flex;
  gap: 15px;
  margin: 20px;
  color: var(--gray-color);
  font-size: 0.9rem;
}

.blog-post h2 {
  padding: 0 20px;
  margin-top: 0;
  font-size: 1.5rem;
}

.blog-post p {
  padding: 0 20px;
  color: var(--gray-color);
}

.blog-post .btn-secondary {
  margin: 0 20px 20px;
}

/* Blog Post Styles */
.blog-post-content {
  padding: 60px 0;
}

.post-image {
  margin-bottom: 40px;
}

.post-image .image-frame {
  height: 400px;
}

.post-image .image-frame img {
  height: 100%;
  object-fit: cover;
}

.post-text {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 40px;
}

.post-text h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.post-text h3 {
  margin-top: 30px;
  color: var(--dark-color);
}

.post-text ul,
.post-text ol {
  margin-bottom: 1.5rem;
  padding-left: 20px;
}

.post-text li {
  margin-bottom: 10px;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  color: var(--gray-color);
  font-weight: 600;
}

.back-to-blog i {
  margin-right: 8px;
}

.post-navigation-links {
  display: flex;
  gap: 20px;
}

.prev-post,
.next-post {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
}

.prev-post i {
  margin-right: 8px;
}

.next-post i {
  margin-left: 8px;
}

/* About Page Styles */
.about-content {
  padding: 60px 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.about-text h2 {
  margin-top: 0;
  color: var(--primary-dark);
}

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

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

.mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.mission-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0 60px;
}

.process-step {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

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

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

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

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

.team-member h3,
.team-member p {
  padding: 0 20px;
}

.team-member h3 {
  margin-top: 20px;
}

.team-member p:last-child {
  padding-bottom: 20px;
}

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

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

.testimonial-text {
  font-style: italic;
  position: relative;
  padding: 0 20px;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
  position: absolute;
}

.testimonial-text::before {
  top: -20px;
  left: 0;
}

.testimonial-text::after {
  bottom: -40px;
  right: 0;
}

.testimonial-author {
  text-align: right;
  margin-top: 20px;
}

/* Contact Page Styles */
.contact-content {
  padding: 60px 0;
}

.contact-info-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-info {
  background-color: #283e2f;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.info-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 20px;
  flex-shrink: 0;
}

.info-text h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.info-text p {
  color: var(--gray-color);
  margin-bottom: 10px;
}

.social-links-contact h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.contact-map .image-frame {
  height: 100%;
  min-height: 300px;
}

.contact-map .image-frame img {
  height: 100%;
  object-fit: cover;
}

.contact-form-wrapper {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 60px;
}

.contact-form-wrapper h2 {
  margin-top: 0;
  margin-bottom: 20px;
}

.contact-form-wrapper p {
  color: var(--gray-color);
  margin-bottom: 30px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

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

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

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

.required {
  color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

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

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

.form-submit {
  margin-top: 20px;
}

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

.modal.show {
  display: flex;
}

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: modalFadeIn 0.3s forwards;
}

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

.thank-you-icon {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: 20px;
}

.modal-content h2 {
  margin-bottom: 15px;
}

.modal-content p {
  color: var(--gray-color);
  margin-bottom: 25px;
}

/* Animations */
@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

/* Icons */
.icon-home::before {
  content: "🏠";
}
.icon-blog::before {
  content: "📝";
}
.icon-info::before {
  content: "ℹ️";
}
.icon-contacts::before {
  content: "📞";
}
.icon-natural::before {
  content: "🌿";
}
.icon-taste::before {
  content: "🍹";
}
.icon-delivery::before {
  content: "🚚";
}
.icon-quality::before {
  content: "⭐";
}
.icon-location::before {
  content: "📍";
}
.icon-phone::before {
  content: "📱";
}
.icon-email::before {
  content: "✉️";
}
.icon-clock::before {
  content: "🕒";
}
.icon-back::before {
  content: "←";
}
.icon-arrow-left::before {
  content: "←";
}
.icon-arrow-right::before {
  content: "→";
}
.icon-check::before {
  content: "✓";
}
.icon-innovation::before {
  content: "💡";
}
.icon-environment::before {
  content: "🌎";
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-intro,
  .contact-info-wrapper {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }

  nav {
    margin-top: 20px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 5px 10px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    margin-top: 15px;
  }

  .footer-links a {
    margin: 0 10px;
  }

  .post-image .image-frame {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
    margin: 5px 0;
  }
}
