/* 
    Bonbonmob - Stylesheet
    Versioon: 1.0
    Aasta: 2023
*/

/* ====== RESET & BASE STYLES ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #e84c89;
  --primary-dark: #c83b6f;
  --primary-light: #ffadd1;
  --secondary-color: #6a4c93;
  --accent-color: #f78c36;
  --accent-light: #ffd166;
  --text-color: #333333;
  --text-light: #666666;
  --bg-color: #ffffff;
  --bg-light: #f9f7f9;
  --bg-dark: #eae6ed;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 6px;
  --container-width: 1200px;
  --font-family-base: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-family-heading: "Playfair Display", Georgia, serif;
}

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

body {
  font-family: var(--font-family-base);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
}

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

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

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

ul,
ol {
  list-style: none;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

section {
  padding: 60px 0;
}

.center {
  text-align: center;
}

/* ====== BUTTONS ====== */
.btn,
.btn-small {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-weight: 600;
}

.btn-small {
  padding: 8px 15px;
  font-size: 0.9rem;
}

.btn:hover,
.btn-small:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

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

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

/* ====== HEADER & NAVIGATION ====== */
header {
  background-color: var(--bg-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

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

nav {
  display: flex;
  align-items: center;
}

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

.nav-links li a {
  color: var(--text-color);
  font-weight: 600;
  padding: 8px 15px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary-color);
  background-color: var(--bg-light);
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: var(--transition);
    padding: 0;
  }

  nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .nav-links {
    flex-direction: column;
    padding: 20px;
    gap: 10px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    padding: 10px;
    width: 100%;
  }
}

/* ====== HERO SECTION ====== */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

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

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

/* ====== PAGE HEADER ====== */
.page-header {
  background-color: var(--bg-light);
  padding: 50px 0;
  text-align: center;
}

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

.breadcrumbs {
  margin-top: 10px;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--text-light);
}

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

/* ====== FEATURED PRODUCTS ====== */
.featured-products h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.product-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  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: 250px;
  object-fit: cover;
}

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

.product-card p {
  padding: 0 15px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.product-card .price {
  display: block;
  padding: 0 15px 15px;
  font-weight: bold;
  color: var(--primary-color);
}

.product-card .btn-small {
  margin: 0 15px 15px;
}

/* ====== BLOG PREVIEW ====== */
.blog-preview {
  background-color: var(--bg-light);
}

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

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

.blog-card {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
}

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

.blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-content h3 {
  margin-bottom: 10px;
}

.blog-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.read-more {
  color: var(--primary-color);
  font-weight: bold;
  margin-top: auto;
}

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

.blog-preview .center {
  margin-top: 40px;
}

/* ====== POLL SECTION ====== */
.poll-section {
  background-color: var(--bg-color);
}

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

.poll-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.poll-container h3 {
  text-align: center;
  margin-bottom: 20px;
}

.poll-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.poll-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.poll-option input[type="radio"] {
  margin-right: 10px;
}

.poll-form button {
  margin-top: 20px;
  align-self: center;
}

.poll-results {
  margin-top: 30px;
}

.poll-results h4 {
  margin-bottom: 15px;
}

.result-bar {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.result-label {
  flex: 0 0 150px;
}

.progress-bar {
  flex-grow: 1;
  height: 20px;
  background-color: var(--bg-dark);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 15px;
}

.progress {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 10px;
}

.result-percent {
  flex: 0 0 50px;
  text-align: right;
}

/* ====== TESTIMONIALS ====== */
.testimonials {
  background-color: var(--bg-light);
}

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

.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--bg-light);
}

.testimonial {
  flex: 0 0 auto;
  width: calc(50% - 15px);
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: ""
    ";
    font-size: 2rem;
    position: absolute;
    color: var(--primary-light);
}

.testimonial-content p::before {
    left: 0;
    top: -10px;
}

.testimonial-content p::after {
    content: "
    "";
  right: 0;
  bottom: -20px;
}

.client {
  display: flex;
  align-items: center;
}

.client img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

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

.stars {
  color: var(--accent-light);
}

@media (max-width: 768px) {
  .testimonial {
    width: 100%;
  }
}

/* ====== FOOTER ====== */
footer {
  background-color: #222;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-newsletter h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

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

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

.footer-links ul li a:hover {
  color: var(--primary-light);
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--primary-light);
}

.footer-newsletter form {
  display: flex;
  margin-bottom: 20px;
}

.footer-newsletter input {
  flex-grow: 1;
  padding: 10px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.footer-newsletter button {
  padding: 10px 15px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.footer-newsletter button:hover {
  background-color: var(--primary-dark);
}

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

.social-icons 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-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

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

.footer-policy-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-policy-links a {
  color: #ccc;
}

.footer-policy-links a:hover {
  color: var(--primary-light);
}

/* ====== COOKIE BANNER ====== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.cookie-more {
  margin-left: auto;
  color: var(--primary-light);
  text-decoration: underline;
}

/* ====== BLOG PAGE ====== */
.blog-section {
  padding: 60px 0;
}

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

.blog-post {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
}

.blog-image {
  position: relative;
}

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

.post-meta {
  padding: 15px 20px 0;
  display: flex;
  gap: 15px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.post-meta span {
  display: flex;
  align-items: center;
}

.post-meta i {
  margin-right: 5px;
}

.blog-content {
  padding: 15px 20px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-content h2 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.blog-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.blog-content .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ====== BLOG POST PAGE ====== */
.blog-post-section {
  padding: 60px 0;
}

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

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

.featured-image img {
  width: 100%;
  height: auto;
}

.post-content {
  padding: 30px;
}

.post-content h2 {
  margin-top: 30px;
  margin-bottom: 20px;
}

.post-content h3 {
  margin-top: 25px;
  margin-bottom: 15px;
}

.post-content p,
.post-content ul,
.post-content ol {
  margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
  padding-left: 20px;
}

.post-content ul li,
.post-content ol li {
  margin-bottom: 10px;
  position: relative;
}

.post-content ul {
  list-style: disc;
}

.post-content ol {
  list-style: decimal;
}

.recipe-tips {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: var(--border-radius);
  margin: 30px 0;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 30px;
  border-top: 1px solid var(--border-color);
}

.post-tags a {
  background-color: var(--bg-light);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.post-tags a:hover {
  background-color: var(--primary-light);
  color: white;
}

.post-share {
  padding: 20px 30px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 15px;
}

.post-share a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.post-share a.facebook {
  background-color: #3b5998;
}

.post-share a.twitter {
  background-color: #1da1f2;
}

.post-share a.pinterest {
  background-color: #bd081c;
}

.post-share a.email {
  background-color: #db4437;
}

.post-share a:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  border-top: 1px solid var(--border-color);
}

.post-navigation a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-widget {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 25px;
}

.sidebar-widget h3 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.sidebar-widget h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.about-author .author-bio {
  display: flex;
  gap: 15px;
}

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

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

.author-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.author-social {
  display: flex;
  gap: 10px;
}

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

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

.recent-posts ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recent-posts li a {
  display: flex;
  gap: 15px;
  color: var(--text-color);
}

.recent-posts li a:hover {
  color: var(--primary-color);
}

.recent-posts li img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.recent-posts li h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.recent-posts li span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.categories ul li {
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}

.categories ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-color);
}

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

.categories span {
  font-size: 0.9rem;
  color: var(--text-light);
  background-color: var(--bg-light);
  padding: 2px 8px;
  border-radius: 20px;
}

.newsletter p {
  margin-bottom: 20px;
}

.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter input {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

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

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

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

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

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

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

.related-post h3 {
  padding: 15px 15px 10px;
  font-size: 1.2rem;
}

.related-post .btn-small {
  margin: 0 15px 15px;
}

@media (max-width: 992px) {
  .blog-post-container {
    grid-template-columns: 1fr;
  }
}

/* ====== ABOUT PAGE ====== */
.about-intro {
  padding: 60px 0;
}

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

.about-text h2 {
  margin-bottom: 25px;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.mission-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.mission-text h2 {
  margin-bottom: 25px;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
}

.mission-value {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.mission-value i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.mission-value h3 {
  margin-bottom: 10px;
}

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

.team-section h2,
.team-intro {
  text-align: center;
  margin-bottom: 15px;
}

.team-intro {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

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

.team-member {
  display: flex;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.member-image {
  flex: 0 0 140px;
}

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

.member-info {
  padding: 20px;
}

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

.position {
  display: block;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.member-social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.member-social a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color);
  border-radius: 50%;
  color: var(--text-light);
  transition: var(--transition);
}

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

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

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

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

.achievement {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.achievement-icon i {
  font-size: 1.5rem;
  color: white;
}

.achievement-content h3 {
  margin-bottom: 10px;
}

.process-section {
  padding: 60px 0;
}

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

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50px;
  width: 2px;
  height: calc(100% - 20px);
  background-color: var(--primary-light);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.step-content h3 {
  margin-bottom: 10px;
}

.cta-section {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

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

.cta-content p {
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

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

.cta-section .btn:hover {
  background-color: var(--bg-light);
}

.cta-section .btn-outline {
  background-color: transparent;
  border-color: white;
  color: white;
}

.cta-section .btn-outline:hover {
  background-color: white;
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .about-content,
  .mission-content {
    grid-template-columns: 1fr;
  }

  .mission-content {
    display: flex;
    flex-direction: column-reverse;
  }

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

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

  .member-image {
    flex: 0 0 auto;
    height: 200px;
  }
}

/* ====== PRODUCTS PAGE ====== */
.products-filters {
  margin-bottom: 40px;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-btn {
  padding: 8px 15px;
  background-color: var(--bg-light);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: white;
}

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

.search-box {
  display: flex;
  align-items: center;
}

.search-box input {
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  min-width: 250px;
}

.search-box button {
  padding: 10px 15px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-options select {
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
}

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

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

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

.product-image {
  position: relative;
  height: 200px;
}

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

.product-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tag {
  background-color: var(--primary-color);
  color: white;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 20px;
}

.tag.new {
  background-color: var(--accent-color);
}

.tag.bestseller {
  background-color: var(--success-color);
}

.tag.gluten-free {
  background-color: var(--info-color);
}

.product-details {
  padding: 15px;
}

.product-details h3 {
  margin-bottom: 10px;
}

.product-description {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
  height: 44px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.price {
  font-weight: bold;
  color: var(--primary-color);
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--accent-light);
  font-size: 0.9rem;
}

.rating span {
  color: var(--text-light);
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wishlist-btn {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
  border-radius: 50%;
  color: var(--text-light);
  transition: var(--transition);
}

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

.pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 50px;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  color: var(--text-color);
  transition: var(--transition);
}

.pagination a.active,
.pagination a:hover {
  background-color: var(--primary-color);
  color: white;
}

.pagination a.next {
  width: auto;
  padding: 0 15px;
}

.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

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

.custom-order-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.custom-order-text h2 {
  margin-bottom: 20px;
}

.custom-order-text p {
  margin-bottom: 20px;
}

.custom-order-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.custom-order-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-order-benefits i {
  color: var(--success-color);
}

.custom-order-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 12px 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
  padding: 12px 20px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

@media (max-width: 992px) {
  .custom-order-content {
    grid-template-columns: 1fr;
  }

  .custom-order-benefits {
    grid-template-columns: 1fr;
  }
}

/* ====== CONTACT PAGE ====== */
.contact-section {
  padding: 60px 0;
}

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

.contact-info h2,
.contact-form h2 {
  margin-bottom: 25px;
}

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

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 30px;
}

.info-item h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

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

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

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
  border-radius: 50%;
  color: var(--text-color);
  transition: var(--transition);
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  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(232, 76, 137, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
}

.checkbox-group label {
  margin-bottom: 0;
}

.checkbox-group a {
  color: var(--primary-color);
  text-decoration: underline;
}

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

.map-section {
  padding-top: 0;
}

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

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

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

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

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

.faq-item {
  background-color: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 15px;
  overflow: hidden;
}

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

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

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

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

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

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

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

.modal-content {
  background-color: var(--bg-color);
  margin: 15% auto;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.thank-you-message {
  text-align: center;
}

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

.thank-you-message h2 {
  margin-bottom: 15px;
}

.thank-you-message p {
  margin-bottom: 25px;
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* ====== UTILITY CLASSES ====== */
.hidden {
  display: none !important;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.pb-1 {
  padding-bottom: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 1rem !important;
}

.pb-3 {
  padding-bottom: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 2rem !important;
}

.pt-1 {
  padding-top: 0.5rem !important;
}

.pt-2 {
  padding-top: 1rem !important;
}

.pt-3 {
  padding-top: 1.5rem !important;
}

.pt-4 {
  padding-top: 2rem !important;
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }

  .hero {
    padding: 80px 0;
  }

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

  .testimonial {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .blog-grid,
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }

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

  .search-sort {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box {
    width: 100%;
  }

  .sort-options {
    width: 100%;
  }

  .sort-options select {
    width: 100%;
  }
}
