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

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

body {
  font-family: "Raleway", sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #fff;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul,
ol {
  list-style: none;
}

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

.section {
  padding: 80px 0;
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  border-radius: 12px;
  z-index: 1000;
  padding: 15px 30px;
}
@media (max-width: 1240px) {
  .header {
    width: calc(100% - 40px);
    margin: 0 20px;
    left: 0;
    transform: none;
  }
}
.header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  width: 85px;
  height: 85px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 100%;
}
.header .logo a {
  display: block;
  line-height: 0;
}
.header .logo .logo-image {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}
.header .logo .logo-image:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .header .logo .logo-image {
    height: 32px;
  }
}
.header .nav {
  height: 65px;
  display: flex;
  align-items: center;
  padding: 0 60px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
.header .nav .nav-list {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .header .nav .nav-list {
    display: none;
  }
}
.header .nav .nav-item a {
  color: #000000;
  font-family: "Ranchers", cursive;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.header .nav .nav-item a:hover {
  background-color: #2c3e50;
  color: white;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #2c3e50;
  cursor: pointer;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.hero {
  padding-top: 120px;
  text-align: center;
  background: linear-gradient(to bottom, #ffc120, #ffba29);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 60px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../../assets/images/section_bg.svg");
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}
.hero > * {
  position: relative;
  z-index: 2;
}
.hero .hero-image {
  width: 100%;
  height: 600px;
  object-fit: contain;
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  .hero .hero-image {
    height: 300px;
    margin-bottom: 30px;
  }
}
.hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero .hero-title {
  font-size: 48px;
  font-weight: bold;
  font-family: "Ranchers", cursive;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero .hero-title {
    font-size: 32px;
  }
}
.hero .hero-description {
  font-size: 18px;
  color: #000000;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero .hero-description {
    font-size: 16px;
  }
}

.full-width-image {
  margin: 0;
}
.full-width-image.big img {
  height: 800px;
}
.full-width-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .full-width-image img {
    height: 250px;
  }
}

.secondary {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}
.secondary .hero-secondary-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.secondary .hero-title {
  margin-bottom: 40px;
}
.secondary .content-box {
  background: #ffee89;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .secondary .content-box {
    padding: 30px 20px;
    border-radius: 10px;
  }
}
.secondary .hero-list {
  list-style: none;
  text-align: left;
}
.secondary .hero-list .hero-list-item {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #000000;
  position: relative;
  padding-left: 60px;
}
.secondary .hero-list .hero-list-item::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #fed804;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  font-family: Arial, sans-serif;
  z-index: 10;
}
.secondary .hero-list .hero-list-item:nth-child(1)::before {
  content: "1";
}
.secondary .hero-list .hero-list-item:nth-child(2)::before {
  content: "2";
}
.secondary .hero-list .hero-list-item:nth-child(3)::before {
  content: "3";
}
.secondary .hero-list .hero-list-item:last-child {
  margin-bottom: 0;
}
.secondary .hero-list .hero-list-item strong {
  color: #2c3e50;
  font-weight: 600;
}
@media (max-width: 768px) {
  .secondary .hero-list .hero-list-item {
    font-size: 16px;
    margin-bottom: 20px;
    padding-left: 50px;
  }
  .secondary .hero-list .hero-list-item::before {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

.footer {
  background-color: white;
  border-top: 1px solid #eee;
  padding: 40px 0;
}
.footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 1024px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
}
.footer .footer-column h3 {
  font-family: "Ranchers", cursive;
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 15px;
}
.footer .footer-column p {
  color: #000000;
  line-height: 1.6;
  margin: 0;
}
.footer .footer-address {
  text-align: left;
}
@media (max-width: 1024px) {
  .footer .footer-address {
    text-align: center;
  }
}
.footer .footer-logo {
  display: inline-flex;
  justify-content: center;
  text-align: center;
}
.footer .footer-logo .footer-logo-image {
  height: 100px;
  width: auto;
}
@media (max-width: 768px) {
  .footer .footer-logo .footer-logo-image {
    height: 50px;
  }
}
.footer .footer-social {
  text-align: right;
}
@media (max-width: 1024px) {
  .footer .footer-social {
    text-align: center;
  }
}
.footer .footer-social p {
  margin-bottom: 5px;
}
.footer .footer-social .social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer .footer-social .social-link:hover {
  color: #2c3e50;
}
.footer .footer-social .social-link svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.footer .footer-social .social-link:hover svg {
  transform: scale(1.1);
}

.products-page {
  padding-top: 40px;
}
.products-page .page-title {
  text-align: center;
  font-size: 48px;
  font-family: "Ranchers", cursive;
  color: #2c3e50;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .products-page .page-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

.product-section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}
.product-section:last-child {
  border-bottom: none;
}
.product-section .product-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .product-section .product-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
.product-section:nth-child(even) .product-content .product-image {
  order: 2;
}
@media (max-width: 1024px) {
  .product-section:nth-child(even) .product-content .product-image {
    order: 1;
  }
}
.product-section:nth-child(even) .product-content .product-info {
  order: 1;
}
@media (max-width: 1024px) {
  .product-section:nth-child(even) .product-content .product-info {
    order: 2;
  }
}
.product-section .product-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .product-section .product-image img {
    height: 250px;
  }
}
.product-section .product-info .product-name {
  font-size: 36px;
  font-weight: bold;
  font-family: "Ranchers", cursive;
  color: #2c3e50;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .product-section .product-info .product-name {
    font-size: 28px;
  }
}
.product-section .product-info .product-type {
  font-size: 18px;
  color: #e74c3c;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-section .product-info .product-description {
  font-size: 16px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 30px;
}
.product-section .product-info .product-details .detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #ddd;
}
@media (max-width: 1024px) {
  .product-section .product-info .product-details .detail-item {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
}
.product-section .product-info .product-details .detail-item .detail-label {
  font-weight: 600;
  color: #2c3e50;
}
.product-section .product-info .product-details .detail-item .detail-value {
  color: #777;
}

/*# sourceMappingURL=main.css.map */
