@charset "UTF-8";
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.section {
  padding: 4rem 0;
}
.section--small {
  padding: 2rem 0;
}
.section--large {
  padding: 6rem 0;
}

.flex {
  display: flex;
}
.flex--center {
  justify-content: center;
  align-items: center;
}
.flex--between {
  justify-content: space-between;
  align-items: center;
}
.flex--column {
  flex-direction: column;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-3 {
  padding-left: 3rem;
  padding-right: 3rem;
}

@media (max-width: 768px) {
  .hide-tablet {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .hide-mobile {
    display: none !important;
  }
  .section {
    padding: 3rem 0;
  }
  .section--large {
    padding: 4rem 0;
  }
}
header {
  padding: 1rem 0;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
}

footer {
  text-align: center;
  padding: 2rem 0;
}
footer .social-links {
  margin-bottom: 1rem;
}
footer .social-links a {
  margin: 0 0.5rem;
  font-size: 1.5rem;
}

h1, h2, h3, h4 {
  font-family: "Raleway", sans-serif;
  color: #663333;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

p {
  font-family: "Open Sans", sans-serif;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #ffe658;
  color: #663333;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
}
.cta-button:hover {
  background-color: rgb(255, 226.1826347305, 62.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.top-bar {
  background-color: #663333;
  color: #ffffff;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 101;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}
.top-bar .contact-info .phone {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
  font-weight: 500;
}
.top-bar .contact-info .phone:hover {
  color: #ffe658;
}
.top-bar .contact-info .phone i {
  font-size: 1rem;
}
.top-bar .social-icons {
  display: flex;
  gap: 1.5rem;
}
.top-bar .social-icons .social-icon {
  color: #ffffff;
  text-decoration: none;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.top-bar .social-icons .social-icon:hover {
  color: #ffe658;
  transform: translateY(-2px);
}
.top-bar .social-icons .social-icon i {
  font-size: 1.1rem;
}

header {
  background-color: #ffe658;
  position: fixed;
  top: 35px;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0;
  margin: 0;
  transition: all 0.3s ease;
}
header.scrolled {
  top: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
header .logo img {
  max-height: 45px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}
header nav .cta-button {
  padding: 0.6rem 1.8rem;
  font-size: 1rem;
  background-color: #663333;
  color: #ffffff;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}
header nav .cta-button:hover {
  background-color: rgb(85, 42.5, 42.5);
  transform: translateY(-2px);
}

.hero {
  background-color: #663333;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  width: 100%;
  margin-top: 95px;
  padding: 0;
  margin-bottom: 0;
}
.hero .hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 80vh;
  margin: 0;
  padding: 0;
}
.hero .hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 80vh;
  opacity: 0;
  margin: 0;
  padding: 0;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  filter: brightness(0.9);
}
.hero .hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
  filter: brightness(1);
}
.hero .hero-slider .slide .container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 2rem 2rem 0;
}
.hero .hero-slider .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(102, 51, 51, 0.98) 0%, rgba(102, 51, 51, 0.9) 25%, rgba(102, 51, 51, 0.6) 100%);
  z-index: 1;
}
.hero .hero-slider .slider-controls {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
  padding-bottom: 20px;
}
.hero .hero-slider .slider-controls .slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero .hero-slider .slider-controls .slider-dot.active {
  background-color: #ffe658;
  border-color: #ffe658;
  transform: scale(1.2);
}
.hero .hero-slider .slider-controls .slider-dot:hover {
  background-color: #ffffff;
  transform: scale(1.2);
}
.hero .hero-content {
  text-align: left;
  max-width: 750px;
  margin-left: 8%;
  padding: 3.5rem;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  background: rgba(102, 51, 51, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.hero .hero-content .welcome-text {
  color: #ffe658;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s ease forwards;
}
.hero .hero-content h2 {
  color: #ffffff;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s ease forwards 0.2s;
  letter-spacing: -0.02em;
}
.hero .hero-content h2 span {
  color: #ffe658;
}
.hero .hero-content .tagline {
  color: rgb(255, 241.4520958084, 164.5);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s ease forwards 0.3s;
}
.hero .hero-content p {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s ease forwards 0.4s;
  font-weight: 400;
  max-width: 90%;
}
.hero .hero-content .features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s ease forwards 0.5s;
}
.hero .hero-content .features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
}
.hero .hero-content .features .feature i {
  color: #ffe658;
  font-size: 1.2rem;
}
.hero .hero-content .cta-group {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s ease forwards 0.6s;
}
.hero .hero-content .cta-group .cta-button {
  background-color: #ffe658;
  color: #663333;
  padding: 1.2rem 2.8rem;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero .hero-content .cta-group .cta-button i {
  font-size: 1.2rem;
}
.hero .hero-content .cta-group .cta-button:hover {
  background-color: rgb(255, 226.1826347305, 62.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.hero .hero-content .cta-group .secondary-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.hero .hero-content .cta-group .secondary-link i {
  transition: transform 0.3s ease;
}
.hero .hero-content .cta-group .secondary-link:hover {
  color: #ffe658;
}
.hero .hero-content .cta-group .secondary-link:hover i {
  transform: translateX(4px);
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.local {
  background-color: #663333;
  color: #ffffff;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.local::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/paw-pattern.png") repeat;
  opacity: 0.05;
  z-index: 1;
}
.local .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.local h2 {
  color: #ffe658;
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: relative;
}
.local h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 230, 88, 0.2), rgba(255, 230, 88, 0.8), rgba(255, 230, 88, 0.2));
  border-radius: 2px;
}
.local .service-areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}
.local .service-areas .area-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}
.local .service-areas .area-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}
.local .service-areas .area-card:hover i {
  transform: translateY(-5px);
  color: #ffe658;
}
.local .service-areas .area-card i {
  font-size: 3rem;
  color: rgba(255, 230, 88, 0.9);
  margin-bottom: 1.5rem;
  display: block;
  transition: all 0.3s ease;
}
.local .service-areas .area-card h3 {
  color: #ffe658;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.local .service-areas .area-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.local .service-areas .area-card .delivery-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 12px;
  margin-top: 1.5rem;
}
.local .service-areas .area-card .delivery-info span {
  display: block;
  color: #ffe658;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.local .service-areas .area-card .delivery-info p {
  font-size: 0.95rem;
  margin: 0;
}
.local .coverage-map {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 3rem;
  margin-top: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.local .coverage-map h3 {
  color: #ffe658;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}
.local .coverage-map .map-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.local .coverage-map .map-content .map-info {
  text-align: left;
}
.local .coverage-map .map-content .map-info h4 {
  color: #ffe658;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.local .coverage-map .map-content .map-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.local .coverage-map .map-content .map-info ul li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.local .coverage-map .map-content .map-info ul li i {
  color: #ffe658;
  font-size: 1rem;
}
.local .coverage-map .map-content .map-info .delivery-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 230, 88, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 230, 88, 0.2);
}
.local .coverage-map .map-content .map-info .delivery-note p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}
.local .coverage-map .map-content .map-info .delivery-note p strong {
  color: #ffe658;
  font-weight: 600;
}
.local .coverage-map .map-content .map-image {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.local .coverage-map .map-content .map-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.local .coverage-map .map-content .map-image #delivery-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .local {
    padding: 6rem 0;
  }
  .local h2 {
    font-size: 3rem;
  }
  .local .service-areas {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .local .coverage-map .map-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .local .coverage-map .map-content .map-info {
    order: 2;
  }
  .local .coverage-map .map-content .map-image {
    order: 1;
  }
}
@media (max-width: 768px) {
  .local {
    padding: 5rem 0;
  }
  .local h2 {
    font-size: 2.5rem;
  }
  .local .service-areas {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .local .coverage-map {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .local {
    padding: 4rem 0;
  }
  .local h2 {
    font-size: 2rem;
  }
  .local .coverage-map {
    padding: 1.5rem;
  }
  .local .coverage-map h3 {
    font-size: 1.6rem;
  }
}

.reviews {
  background: linear-gradient(135deg, #663333 0%, #7a3e3e 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/paw-pattern.png") repeat;
  opacity: 0.03;
  pointer-events: none;
}
.reviews .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.reviews h2 {
  color: #ffe658;
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.reviews .subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 4rem;
}
.reviews .subtitle::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 230, 88, 0.2), rgba(255, 230, 88, 0.8), rgba(255, 230, 88, 0.2));
  margin: 1.5rem auto 0;
  border-radius: 2px;
}
.reviews .reviews-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}
.reviews .reviews-carousel {
  overflow: hidden;
  position: relative;
}
.reviews .reviews-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 2.5rem;
  align-items: stretch;
}
.reviews .review-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
  flex: 0 0 calc(50% - 1.25rem);
  min-width: 0;
  max-width: calc(50% - 1.25rem);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}
.reviews .review-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}
.reviews .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 230, 88, 0.2);
  border: 2px solid rgba(255, 230, 88, 0.5);
  color: #ffe658;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 10;
  transition: all 0.3s ease;
}
.reviews .carousel-btn:hover {
  background: rgba(255, 230, 88, 0.3);
  border-color: #ffe658;
  transform: translateY(-50%) scale(1.1);
}
.reviews .carousel-btn-prev {
  left: 0;
}
.reviews .carousel-btn-next {
  right: 0;
}
.reviews .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
.reviews .carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 230, 88, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.reviews .carousel-dot.active {
  background: #ffe658;
  border-color: #ffe658;
  transform: scale(1.2);
}
.reviews .review-card .review-header {
  margin-bottom: 1.5rem;
}
.reviews .review-card .review-header .reviewer-info h3 {
  color: #ffe658;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.reviews .review-card .review-header .reviewer-info .rating {
  color: #ffe658;
  font-size: 1rem;
}
.reviews .review-card .review-header .reviewer-info .rating i {
  margin-right: 0.2rem;
}
.reviews .review-card .review-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.reviews .review-card .owner-response {
  background: rgba(255, 230, 88, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: auto;
  border: 1px solid rgba(255, 230, 88, 0.2);
}
.reviews .review-card .owner-response .response-header {
  margin-bottom: 1rem;
}
.reviews .review-card .owner-response .response-header h4 {
  color: #ffe658;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}
.reviews .review-card .owner-response p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 992px) {
  .reviews .review-card {
    flex: 0 0 calc(50% - 1.25rem);
  }
  .reviews .reviews-carousel-wrapper {
    padding: 0 3rem;
  }
}
@media (max-width: 768px) {
  .reviews .review-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .reviews .reviews-carousel-wrapper {
    padding: 0 3.5rem;
  }
  .reviews .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .reviews .reviews-carousel-wrapper {
    padding: 0 2.5rem;
  }
  .reviews .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}
@media (max-width: 992px) {
  .reviews {
    padding: 6rem 0;
  }
  .reviews h2 {
    font-size: 3rem;
  }
  .reviews .subtitle {
    font-size: 1.2rem;
  }
  .reviews .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .reviews {
    padding: 5rem 0;
  }
  .reviews h2 {
    font-size: 2.5rem;
  }
  .reviews .review-card {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .reviews {
    padding: 4rem 0;
  }
  .reviews h2 {
    font-size: 2rem;
  }
  .reviews .subtitle {
    font-size: 1.1rem;
  }
  .reviews .review-card {
    padding: 1.5rem;
  }
}

.cta {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  background-image: url("../images/pexels-photo-1108099.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 51, 51, 0.92) 0%, rgba(122, 62, 62, 0.92) 100%);
  z-index: 1;
}
.cta .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cta h2 {
  color: #ffe658;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.cta h2 span {
  display: block;
  font-size: 0.45em;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: rgba(255, 230, 88, 0.9);
}
.cta .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 4rem auto;
}
.cta .features-grid .feature-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
  text-align: left;
}
.cta .features-grid .feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}
.cta .features-grid .feature-item i {
  font-size: 2.5rem;
  color: #ffe658;
  margin-bottom: 1.5rem;
  display: block;
}
.cta .features-grid .feature-item h4 {
  color: #ffe658;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.cta .features-grid .feature-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}
.cta .features-grid .feature-item ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.cta .features-grid .feature-item ul li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.cta .features-grid .feature-item ul li:last-child {
  margin-bottom: 0;
}
.cta .features-grid .feature-item ul li i {
  font-size: 1rem;
  margin: 0;
  color: #ffe658;
}
.cta .cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}
.cta .cta-buttons .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: #ffe658;
  color: #663333;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 1.6rem 3.5rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  text-decoration: none;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 250px;
}
.cta .cta-buttons .cta-button i {
  font-size: 1.3rem;
  transition: transform 0.4s ease;
}
.cta .cta-buttons .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background: #ffd700;
}
.cta .cta-buttons .cta-button:hover i {
  transform: translateX(5px);
}
.cta .cta-buttons .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #ffe658;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.6rem 3rem;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid rgba(255, 230, 88, 0.3);
  transition: all 0.3s ease;
  min-width: 250px;
  backdrop-filter: blur(5px);
}
.cta .cta-buttons .cta-secondary i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.cta .cta-buttons .cta-secondary:hover {
  background: rgba(255, 230, 88, 0.1);
  border-color: #ffe658;
  transform: translateY(-2px);
}
.cta .cta-buttons .cta-secondary:hover i {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .cta {
    padding: 8rem 0;
  }
  .cta h2 {
    font-size: 3.2rem;
  }
  .cta .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  .cta .cta-buttons {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }
}
@media (max-width: 480px) {
  .cta {
    padding: 6rem 0;
  }
  .cta h2 {
    font-size: 2.5rem;
  }
  .cta .feature-item {
    padding: 2rem;
  }
}

.main-content {
  margin-top: 0;
  background: linear-gradient(135deg, #663333 0%, #7a3e3e 100%);
  position: relative;
  padding: 8rem 0;
}
.main-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/paw-pattern.png") repeat;
  opacity: 0.03;
  pointer-events: none;
}
.main-content .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 3rem;
}
.main-content .welcome-section {
  text-align: center;
  position: relative;
}
.main-content .welcome-section .section-header {
  position: relative;
  margin-bottom: 5rem;
  animation: fadeInUp 0.8s ease forwards;
}
.main-content .welcome-section .section-header::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 230, 88, 0.2), rgba(255, 230, 88, 0.8), rgba(255, 230, 88, 0.2));
  border-radius: 2px;
}
.main-content .welcome-section .section-header .pre-title {
  color: #ffe658;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 1rem;
  font-weight: 600;
  display: block;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.2s;
}
.main-content .welcome-section .section-header h1 {
  color: #ffffff;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.4s;
}
.main-content .welcome-section .section-header h1 .highlight {
  color: #ffe658;
  position: relative;
  display: inline-block;
}
.main-content .welcome-section .section-header h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: -5px;
  width: calc(100% + 10px);
  height: 15px;
  background: rgba(255, 230, 88, 0.15);
  z-index: -1;
  transform: skewX(-15deg);
}
.main-content .welcome-section .section-header .subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.6s;
}
.main-content .welcome-section .welcome-text {
  margin-bottom: 5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.8s;
}
.main-content .welcome-section .welcome-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.main-content .welcome-section .welcome-text p strong {
  color: #ffe658;
  font-weight: 700;
}
.main-content .welcome-section .welcome-text p:last-child {
  margin-bottom: 0;
}
.main-content .welcome-section .shop-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 4rem;
  border-radius: 24px;
  margin-bottom: 4rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1s;
  transform: translateY(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.main-content .welcome-section .shop-info h3 {
  color: #ffe658;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.main-content .welcome-section .shop-info h3 i {
  font-size: 2rem;
}
.main-content .welcome-section .shop-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.main-content .welcome-section .shop-info .opening-hours {
  list-style: none;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.main-content .welcome-section .shop-info .opening-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}
.main-content .welcome-section .shop-info .opening-hours li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.main-content .welcome-section .shop-info .opening-hours li .day {
  font-weight: 600;
  color: #ffe658;
  font-size: 1.1rem;
}
.main-content .welcome-section .shop-info .opening-hours li .hours {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}
.main-content .welcome-section .shop-info .features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.main-content .welcome-section .shop-info .features-list .feature {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.main-content .welcome-section .shop-info .features-list .feature:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
}
.main-content .welcome-section .shop-info .features-list .feature:hover i {
  background: rgba(255, 230, 88, 0.2);
  transform: scale(1.1);
}
.main-content .welcome-section .shop-info .features-list .feature i {
  width: 50px;
  height: 50px;
  background: rgba(255, 230, 88, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffe658;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}
.main-content .welcome-section .shop-info .features-list .feature span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 500;
}
.main-content .welcome-section .announcement {
  background: rgba(255, 230, 88, 0.1);
  padding: 3.5rem;
  border-radius: 24px;
  margin-bottom: 4rem;
  text-align: center;
  border: 2px solid rgba(255, 230, 88, 0.2);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1.2s;
  transform: translateY(20px);
}
.main-content .welcome-section .announcement h3 {
  color: #ffe658;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.main-content .welcome-section .announcement p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  line-height: 1.7;
  margin: 0;
}
.main-content .welcome-section .announcement p strong {
  color: #ffe658;
  font-weight: 700;
}
.main-content .welcome-section .cta-group {
  display: flex;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1.4s;
  transform: translateY(20px);
}
.main-content .welcome-section .cta-group .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: #ffe658;
  color: #663333;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1.4rem 3rem;
  border-radius: 100px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.main-content .welcome-section .cta-group .cta-button i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.main-content .welcome-section .cta-group .cta-button:hover {
  background: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.main-content .welcome-section .cta-group .cta-button:hover i {
  transform: translateX(5px);
}
.main-content .welcome-section .cta-group .secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #ffe658;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 1.4rem 2rem;
  border-radius: 100px;
  border: 2px solid rgba(255, 230, 88, 0.3);
  transition: all 0.3s ease;
}
.main-content .welcome-section .cta-group .secondary-link i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.main-content .welcome-section .cta-group .secondary-link:hover {
  background: rgba(255, 230, 88, 0.1);
  border-color: #ffe658;
  transform: translateY(-2px);
}
.main-content .welcome-section .cta-group .secondary-link:hover i {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .main-content {
    padding: 4rem 0;
  }
  .main-content .container {
    padding: 0 2rem;
  }
  .main-content .welcome-section .section-header h1 {
    font-size: 3.5rem;
  }
  .main-content .welcome-section .section-header .pre-title {
    font-size: 1rem;
  }
  .main-content .welcome-section .section-header .subtitle {
    font-size: 1.4rem;
  }
  .main-content .welcome-section .welcome-text p {
    font-size: 1.2rem;
  }
  .main-content .welcome-section .shop-info {
    padding: 2.5rem;
  }
  .main-content .welcome-section .shop-info .features-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .main-content .welcome-section .announcement {
    padding: 2.5rem;
  }
  .main-content .welcome-section .cta-group {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1.5rem 2rem;
  }
  .main-content .welcome-section .cta-group .cta-button,
  .main-content .welcome-section .cta-group .secondary-link {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 1.6rem 2rem;
  }
  .main-content .welcome-section .cta-group::before {
    width: 60px;
  }
}
@media (max-width: 480px) {
  .main-content {
    padding: 3rem 0;
  }
  .main-content .container {
    padding: 0 1.5rem;
  }
  .main-content .welcome-section .section-header h1 {
    font-size: 2.8rem;
  }
  .main-content .welcome-section .section-header .pre-title {
    font-size: 0.9rem;
  }
  .main-content .welcome-section .section-header .subtitle {
    font-size: 1.2rem;
  }
  .main-content .welcome-section .welcome-text p {
    font-size: 1.1rem;
  }
  .main-content .welcome-section .shop-info,
  .main-content .welcome-section .announcement {
    padding: 2rem;
  }
}

@keyframes glowPulse {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
@keyframes titleGlow {
  0% {
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2), 4px 4px 15px rgba(255, 230, 88, 0.3);
  }
  50% {
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2), 4px 4px 25px rgba(255, 230, 88, 0.5);
  }
  100% {
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2), 4px 4px 15px rgba(255, 230, 88, 0.3);
  }
}
.categories {
  background-color: white;
  padding: 4rem 0;
}
.categories .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.categories h2 {
  text-align: center;
  margin-bottom: 3rem;
}
.categories .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.categories .category-grid .category-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.categories .category-grid .category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.categories .category-grid .category-card .category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.categories .category-grid .category-card .category-content {
  padding: 1.5rem;
}
.categories .category-grid .category-card .category-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #663333;
}
.categories .category-grid .category-card .category-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.categories .category-grid .category-card .category-content ul li {
  margin-bottom: 0.5rem;
}
.categories .category-grid .category-card .category-content ul li a {
  color: rgb(153, 76.5, 76.5);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.categories .category-grid .category-card .category-content ul li a:hover {
  color: #ffe658;
}
.categories .category-grid .category-card .category-content ul li a i {
  font-size: 0.8rem;
  color: #ffe658;
}

.faq-section {
  padding: 4rem 0;
  background-color: #ffffff;
}
.faq-section .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-section .faq-grid {
  display: grid;
  gap: 2rem;
}
.faq-section .faq-grid .faq-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.faq-section .faq-grid .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.faq-section .faq-grid .faq-item h3 {
  color: #663333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.faq-section .faq-grid .faq-item p {
  color: rgb(153, 76.5, 76.5);
  margin: 0;
}

footer {
  background-color: #ffe658;
  color: #663333;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(102, 51, 51, 0.1);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/images/paw-pattern.png") repeat;
  opacity: 0.02;
  pointer-events: none;
}
footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
footer .footer-column.about-us .footer-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 2rem;
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: none;
}
footer .footer-column.about-us .footer-logo:hover {
  opacity: 1;
  transform: scale(1.02);
}
footer .footer-column.about-us p {
  color: #663333;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
footer .footer-column.quick-links h4::before {
  content: "🦴";
  margin-right: 0.5rem;
}
footer .footer-column.contact-info h4::before {
  content: "📍";
  margin-right: 0.5rem;
}
footer .footer-column.contact-info .contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-column.contact-info .contact-details li {
  color: #663333;
  opacity: 0.9;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
footer .footer-column.contact-info .contact-details li i {
  width: 30px;
  height: 30px;
  background: rgba(102, 51, 51, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #663333;
}
footer .footer-column.contact-info .contact-details li a {
  color: #663333;
  text-decoration: none;
  transition: all 0.3s ease;
}
footer .footer-column.contact-info .contact-details li a:hover {
  opacity: 1;
  text-decoration: underline;
}
footer .footer-column.business-hours h4::before {
  content: "⏰";
  margin-right: 0.5rem;
}
footer .footer-column.business-hours .hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-column.business-hours .hours-list li {
  color: #663333;
  opacity: 0.9;
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(102, 51, 51, 0.1);
}
footer .footer-column.business-hours .hours-list li:last-child {
  border-bottom: none;
}
footer .footer-column.business-hours .hours-list li span.day {
  font-weight: 600;
}
footer .footer-column h4 {
  color: #663333;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
}
footer .footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ffe658, rgba(255, 230, 88, 0.1));
}
footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-column ul li {
  margin-bottom: 1rem;
}
footer .footer-column ul li a {
  color: #663333;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
footer .footer-column ul li a i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: #663333;
}
footer .footer-column ul li a:hover {
  opacity: 1;
  transform: translateX(5px);
}
footer .footer-column ul li a:hover i {
  transform: translateX(3px);
}
footer .social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}
footer .social-links a {
  color: #663333;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  opacity: 0.9;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 51, 51, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(102, 51, 51, 0.2);
}
footer .social-links a:hover {
  transform: translateY(-3px);
  opacity: 1;
  background: rgba(102, 51, 51, 0.15);
  border-color: rgba(102, 51, 51, 0.3);
}
footer .footer-bottom {
  grid-column: 1/-1;
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(102, 51, 51, 0.1);
}
footer .footer-bottom .payment-methods {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
footer .footer-bottom .payment-methods img {
  height: 30px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
footer .footer-bottom .payment-methods img:hover {
  opacity: 1;
}
footer .footer-bottom .copyright {
  color: #663333;
  font-size: 0.9rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
footer .footer-bottom .copyright i {
  font-size: 1rem;
}
footer .footer-bottom .copyright a {
  color: #ffe658;
  text-decoration: none;
  transition: all 0.3s ease;
}
footer .footer-bottom .copyright a:hover {
  opacity: 1;
  text-decoration: underline;
}
@media (max-width: 768px) {
  footer {
    padding: 3rem 0 2rem;
  }
  footer .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  footer .footer-column h4 {
    font-size: 1.1rem;
  }
  footer .social-links {
    justify-content: center;
  }
  footer .social-links a {
    font-size: 1.4rem;
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 2rem 0;
  }
  footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  footer .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  footer .footer-column ul li a {
    justify-content: center;
  }
  footer .footer-column .contact-details li,
  footer .footer-column .hours-list li {
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  footer .social-links {
    justify-content: center;
  }
  footer .footer-bottom {
    margin-top: 2rem;
  }
  footer .footer-bottom .payment-methods {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    margin-left: 5% !important;
    margin-right: 5% !important;
    padding: 2rem !important;
  }
  .hero-content h2 {
    font-size: 2.5rem !important;
  }
  .hero-content .tagline {
    font-size: 1.2rem !important;
  }
  .hero-content p {
    font-size: 1rem !important;
  }
  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .welcome-section {
    padding: 3rem 1.5rem !important;
  }
  .welcome-section .section-header h1 {
    font-size: 3.5rem;
  }
  .welcome-section .section-header .pre-title {
    font-size: 1rem;
  }
  .welcome-section .section-header .subtitle {
    font-size: 1.4rem;
  }
  .welcome-section .shop-info,
  .welcome-section .announcement {
    padding: 2rem;
    margin-bottom: 3rem;
  }
  .welcome-section .cta-group {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1.5rem 2rem;
  }
  .welcome-section .cta-group .cta-button,
  .welcome-section .cta-group .secondary-link {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 1.6rem 2rem;
  }
  .welcome-section .cta-group::before {
    width: 60px;
  }
  .cta {
    padding: 6rem 0;
  }
  .cta h2 {
    font-size: 3.5rem;
  }
  .cta .features {
    flex-direction: column;
    gap: 3rem;
  }
  .cta .features .feature i {
    font-size: 2rem;
  }
  .cta .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .cta .cta-buttons .cta-button {
    width: 100%;
    padding: 1.6rem 2rem;
    font-size: 1.2rem;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero-content {
    margin: 1rem !important;
  }
  .hero-content h2 {
    font-size: 2rem !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .welcome-section {
    padding: 2rem 1rem !important;
  }
  .welcome-section .section-header h1 {
    font-size: 2.8rem;
  }
  .welcome-section .section-header .pre-title {
    font-size: 0.9rem;
  }
  .welcome-section .section-header .subtitle {
    font-size: 1.2rem;
  }
  .welcome-section .welcome-text p {
    font-size: 1.1rem;
  }
  .welcome-section .shop-info,
  .welcome-section .announcement {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  .cta {
    padding: 4rem 0;
  }
  .cta h2 {
    font-size: 2.8rem;
  }
  .cta h2 span {
    font-size: 0.6em;
  }
  .cta .cta-button {
    padding: 1.4rem 2rem;
    font-size: 1.1rem;
  }
}
.featured-products {
  background: linear-gradient(135deg, #663333 0%, #7a3e3e 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.featured-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/paw-pattern.png") repeat;
  opacity: 0.03;
  pointer-events: none;
}
.featured-products .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.featured-products h2 {
  color: #ffe658;
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: relative;
}
.featured-products h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 230, 88, 0.2), rgba(255, 230, 88, 0.8), rgba(255, 230, 88, 0.2));
  border-radius: 2px;
}
.featured-products .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}
.loading-products,
.loading-supplements {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}
.loading-products p,
.loading-supplements p {
  margin: 0;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
.featured-products .product-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.featured-products .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.featured-products .product-card:hover .product-image img {
  transform: scale(1.05);
}
.featured-products .product-card:hover .product-button {
  background: #ffd700;
  transform: translateY(-2px);
}
.featured-products .product-card .product-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.featured-products .product-card .product-image {
  background-color: rgba(139, 69, 19, 0.2);
  background-image: linear-gradient(45deg, rgba(139, 69, 19, 0.1) 25%, transparent 25%), 
                    linear-gradient(-45deg, rgba(139, 69, 19, 0.1) 25%, transparent 25%), 
                    linear-gradient(45deg, transparent 75%, rgba(139, 69, 19, 0.1) 75%), 
                    linear-gradient(-45deg, transparent 75%, rgba(139, 69, 19, 0.1) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}
.featured-products .product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
  opacity: 0;
  background-color: transparent;
  display: block;
}
.featured-products .product-card .product-image img[src*="data:image"],
.featured-products .product-card .product-image img[style*="opacity:1"],
.featured-products .product-card .product-image img.complete {
  opacity: 1;
}
.featured-products .product-card .product-image .product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 230, 88, 0.9);
  color: #663333;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.featured-products .product-card .product-content {
  padding: 2rem;
}
.featured-products .product-card .product-content h3 {
  color: #ffe658;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.featured-products .product-card .product-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  min-height: 50px;
}
.featured-products .product-card .product-content .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.featured-products .product-card .product-content .product-meta .price {
  color: #ffe658;
  font-size: 1.2rem;
  font-weight: 700;
}
.featured-products .product-card .product-content .product-meta .weight {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.featured-products .product-card .product-content .product-button {
  display: block;
  width: 100%;
  padding: 1rem;
  background: #ffe658;
  color: #663333;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}
.featured-products .product-card .product-content .product-button:hover {
  background: #ffd700;
  transform: translateY(-2px);
}
.featured-products .view-all-products {
  text-align: center;
  margin-top: 4rem;
}
.featured-products .view-all-products .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #ffe658;
  color: #663333;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1.4rem 3rem;
  border-radius: 100px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.featured-products .view-all-products .cta-button i {
  transition: transform 0.3s ease;
}
.featured-products .view-all-products .cta-button:hover {
  background: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.featured-products .view-all-products .cta-button:hover i {
  transform: translateX(5px);
}
@media (max-width: 1200px) {
  .featured-products .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .featured-products {
    padding: 6rem 0;
  }
  .featured-products h2 {
    font-size: 3rem;
  }
  .featured-products .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .featured-products {
    padding: 5rem 0;
  }
  .featured-products h2 {
    font-size: 2.5rem;
  }
  .featured-products .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .featured-products .product-card .product-content {
    padding: 1.5rem;
  }
}
@media (max-width: 480px) {
  .featured-products {
    padding: 4rem 0;
  }
  .featured-products h2 {
    font-size: 2rem;
  }
  .featured-products .container {
    padding: 0 1.5rem;
  }
  .featured-products .product-card .product-image {
    height: 220px;
  }
}

.supplements {
  background: linear-gradient(135deg, #663333 0%, #7a3e3e 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.supplements::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/paw-pattern.png") repeat;
  opacity: 0.03;
  pointer-events: none;
}
.supplements .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.supplements .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.supplements .section-header h2 {
  color: #ffe658;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: relative;
}
.supplements .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 230, 88, 0.2), rgba(255, 230, 88, 0.8), rgba(255, 230, 88, 0.2));
  border-radius: 2px;
}
.supplements .section-header .subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
  max-width: 800px;
  margin: 2rem auto 0;
  line-height: 1.6;
}
.supplements .supplements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}
.supplements .supplement-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.supplements .supplement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.supplements .supplement-card:hover .supplement-image img {
  transform: scale(1.05);
}
.supplements .supplement-card:hover .supplement-button {
  background: #ffd700;
  transform: translateY(-2px);
}
.supplements .supplement-card .supplement-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.supplements .supplement-card .supplement-image {
  background-color: rgba(139, 69, 19, 0.2);
  background-image: linear-gradient(45deg, rgba(139, 69, 19, 0.1) 25%, transparent 25%), 
                    linear-gradient(-45deg, rgba(139, 69, 19, 0.1) 25%, transparent 25%), 
                    linear-gradient(45deg, transparent 75%, rgba(139, 69, 19, 0.1) 75%), 
                    linear-gradient(-45deg, transparent 75%, rgba(139, 69, 19, 0.1) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}
.supplements .supplement-card .supplement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
  opacity: 0;
  background-color: transparent;
}
.supplements .supplement-card .supplement-image img[src*="data:image"],
.supplements .supplement-card .supplement-image img[style*="opacity:1"] {
  opacity: 1;
}
.supplements .supplement-card .supplement-image .brand-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 230, 88, 0.9);
  color: #663333;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.supplements .supplement-card .supplement-content {
  padding: 2rem;
}
.supplements .supplement-card .supplement-content h3 {
  color: #ffe658;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}
.supplements .supplement-card .supplement-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  min-height: 50px;
}
.supplements .supplement-card .supplement-content .price {
  color: #ffe658;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.supplements .supplement-card .supplement-content .supplement-button {
  display: block;
  width: 100%;
  padding: 1rem;
  background: #ffe658;
  color: #663333;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}
.supplements .supplement-card .supplement-content .supplement-button:hover {
  background: #ffd700;
  transform: translateY(-2px);
}
.supplements .supplements-brands {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 3rem;
  margin: 4rem 0;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}
.supplements .supplements-brands h3 {
  color: #ffe658;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.supplements .supplements-brands .brand-list-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
}
.supplements .supplements-brands .brand-list-container::before, .supplements .supplements-brands .brand-list-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.supplements .supplements-brands .brand-list-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(102, 51, 51, 0.95), transparent);
}
.supplements .supplements-brands .brand-list-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(102, 51, 51, 0.95), transparent);
}
.supplements .supplements-brands .brand-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4rem;
  animation: slideLogos 30s linear infinite;
  width: max-content;
  padding: 0 2rem;
}
.supplements .supplements-brands .brand-list:hover {
  animation-play-state: paused;
}
.supplements .supplements-brands .brand-list .brand-item {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  min-width: 120px;
}
.supplements .supplements-brands .brand-list .brand-item img {
  height: 60px;
  width: auto;
  filter: brightness(0.9);
  transition: all 0.3s ease;
  object-fit: contain;
  opacity: 0.9;
}
.supplements .supplements-brands .brand-list .brand-item img:hover {
  filter: brightness(1);
  transform: scale(1.05);
  opacity: 1;
}
.supplements .view-all-supplements {
  text-align: center;
  margin-top: 4rem;
}
.supplements .view-all-supplements .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #ffe658;
  color: #663333;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1.4rem 3rem;
  border-radius: 100px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.supplements .view-all-supplements .cta-button i {
  transition: transform 0.3s ease;
}
.supplements .view-all-supplements .cta-button:hover {
  background: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.supplements .view-all-supplements .cta-button:hover i {
  transform: translateX(5px);
}
@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 2rem));
  }
}
@media (max-width: 992px) {
  .supplements {
    padding: 6rem 0;
  }
  .supplements .section-header h2 {
    font-size: 3rem;
  }
  .supplements .section-header .subtitle {
    font-size: 1.2rem;
  }
  .supplements .supplements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .supplements .supplements-brands {
    padding: 2rem;
  }
  .supplements .supplements-brands .brand-list {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .supplements {
    padding: 5rem 0;
  }
  .supplements .section-header h2 {
    font-size: 2.5rem;
  }
  .supplements .supplements-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .supplements .supplement-card .supplement-content {
    padding: 1.5rem;
  }
}
@media (max-width: 480px) {
  .supplements {
    padding: 4rem 0;
  }
  .supplements .section-header h2 {
    font-size: 2rem;
  }
  .supplements .container {
    padding: 0 1.5rem;
  }
  .supplements .supplements-brands {
    padding: 1.5rem;
  }
  .supplements .supplements-brands h3 {
    font-size: 1.6rem;
  }
  .supplements .supplements-brands .brand-list .brand-item img {
    height: 45px;
  }
}

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

html {
  font-size: 16px;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #663333;
  overflow-x: hidden;
}

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

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

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

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

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

.main-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.main-wrapper main {
  flex: 1;
}

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