:root {
  /* ===== Brand Colors ===== */
  --color-primary: #FF6B6B;   
  --color-secondary: #219653;
  --bg-lightgreen: #F1FAF5; 
  --bg-lightcoral: #FFF8F6; 
  --bg-lightcyan: #FFFCF7;   
  --color-bg: #ffffff;            
  --color-text: #333333;         
  --color-heading: #333333;     
  --color-muted: #828282;         

  /* ===== Semantic Colors ===== */
  --color-success: #28a745;
  --color-error: #dc3545;
  --color-warning: #ffc107;
  --color-info: #17a2b8;

  /* ===== Font Sizes ===== */
  --fs-small: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.75rem;
  
  /* ===== Font Weights ===== */
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-thick: 900;

  /* ===== Border Radius ===== */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --header-size: 1.8rem;
  --text-size: 1.6rem; 

  /* ===== Shadows ===== */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);

  /* ===== Font Families ===== */
  --font-primary: normal 1rem "Inter", sans-serif;
  --font-secondary: normal 1rem "Nunito", sans-serif;
}

/* ===== BASE RESET ===== */
html {
  font-size: 62.5%;
}

/* ===== TYPOGRAPHY ===== */
.nunito {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* Font Weight Utilities */
.light {
  font-weight: var(--fw-light);
}

.normal {
  font-weight: var(--fw-normal);
}

.medium {
  font-weight: var(--fw-medium);
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: var(--fw-bold);
}

.thick {
  font-weight: var(--fw-thick);
}

/* Heading Styles */
.heading {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--color-heading);
}

.h1 {
  font-size: 4.0rem;
  font-weight: var(--fw-thick);
  line-height: 40px;
}

.h2 {
  font-size: 3.2rem;
  font-weight: var(--fw-thick);
  line-height: 40px;
}

.h3 {
  font-size: 2.8rem;
  font-weight: var(--fw-bold);
  line-height: normal;
}

.h4 {
  font-size: 2.2rem;
  font-weight: var(--fw-bold);
  line-height: normal;
}

.h5 {
  font-size: 1.8rem;
  font-weight: var(--fw-bold);
  line-height: 24px;
}

.h6 {
  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  line-height: normal;
}

/* Text Styles */
.text {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--color-text);
}

.text-lg {
  font-size: 2.4rem;
  font-weight: var(--fw-medium);
  line-height: normal;
}

.text-md {
  font-size: 2.0rem;
  font-weight: var(--fw-normal);
  line-height: 32px;
}

.text-x {
  font-size: 1.8rem;
  font-weight: var(--fw-medium);
  line-height: 27px;
}

.text-sm {
  font-size: 1.6rem;
  font-weight: var(--fw-normal);
  line-height: 24px;
}

.text-xs {
  font-size: 1.4rem;
  font-weight: var(--fw-light);
  line-height: 24px;
}

.text-hover-orange:hover {
  color: var(--color-primary);
}

/* ===== BACKGROUND UTILITIES ===== */
.bg-orange {
  background-color: var(--color-primary);
}

.bg-green {
  background-color: var(--color-secondary);
}

.bg-lightgreen {
  background-color: var(--bg-lightgreen);
}

.bg-warm {
  background-color: var(--bg-lightcyan);
}

.bg-lightcoral {
  background-color: var(--bg-lightcoral);
}

/* ===== GLOBAL DEFAULTS ===== */
* {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

#main {
  width: 100%;
  overflow-x: hidden;
  padding: 20px;
}

/* ===== PAGE NAVIGATION ===== */
.page-location {
  margin-bottom: 10px;
}

.page-location a {
  font-size: 1.3rem;
  color: #333333;
  text-decoration: underline;
}

/* ===== PUPPY DETAIL SECTION ===== */
.puppy-detail {
  padding: 40px 0;
}

.puppy-detail p,
.puppy-detail span,
.puppy-detail div {
  font-size: 1.6rem;
  font-weight: 500;
}

.puppy-detail h1,
.puppy-detail h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ===== PUPPY DETAIL: TOP SECTION ===== */
.pd-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ===== PUPPY DETAIL: GALLERY ===== */
.pd-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pd-main-image {
  position: relative;
}

.pd-main-image img {
  width: 100%;
  padding: 0;
  margin: 0;
  object-fit: cover;
  border-radius: 12px;
}

.pd-image-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
}

/* Navigation Arrows */
.pd-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.pd-arrow.left {
  left: 10px;
}

.pd-arrow.right {
  right: 10px;
}

/* Thumbnails */
.pd-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.pd-thumbnails img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  opacity: 0.6;
  cursor: pointer;
  transition: 0.3s ease;
}

.pd-thumbnails img.active {
  opacity: 1;
  border: 2px solid #e5e5e5;
}

/* ===== PUPPY DETAIL: INFO SECTION ===== */
.pd-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.pd-badge {
  background: #e6f4ea;
  padding: 6px 12px;
  border-radius: 10px;
  margin: 15px 0;
  color: #219653;
  font-size: 14px;
  font-weight: 700;
  width: fit-content;
}

.pd-meta div {
  margin-bottom: 8px;
}

.pd-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 20px 0;
}

/* Action Buttons */
.pd-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 20px;
}

.btn-primary {
  background: #3b5bdb;
  color: #fff;
  border: 2px solid #3b5bdb;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
  width: 45%;
  transition: all 0.1s ease;
}

.btn-primary:hover {
  background: #fff;
  color: #3b5bdb;
}

.btn-outline {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  font-weight: 600;
  padding: 15px 20px;
  width: 45%;
}

/* ===== PUPPY DETAIL: LOWER SECTION ===== */
.pd-lower {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 30px 0;
}

/* Breeder Info */
.pd-breeder {
  display: flex;
  gap: 15px;
  align-items: center;
}

.pd-breeder img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* ===== PUPPY DETAIL: INCLUDED SECTION ===== */
.pd-included {
  margin-top: 0;
}

.pd-collapse-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 50px;
}

.pd-collapse-header h2 {
  font-size: 18px;
  width: 90%;
}

.pd-collapse-icon {
  font-size: 24px;
  font-weight: 900;
}

.pd-included-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.pd-include-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pd-include-item p {
  font-size: 1.65rem;
  font-weight: 600;
  border-bottom: 2px dashed #219653;
}

/* ===== PUPPY DETAIL: HEALTH SECTION ===== */
.pd-health {
  margin-top: 0 !important;
}

.pd-health-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.pd-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #fff;
  flex-shrink: 0;
}

.pd-icon img {
  width: 25px;
  height: auto;
}

/* ===== PUPPY DETAIL: CONTACT CARD ===== */
.pd-contact-card {
  background: #F1FAF5;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
}

.pd-avatars {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}

.pd-avatars img {
  width: auto;
  height: 50px;
  border-radius: 50%;
}

/* ===== GENERAL LAYOUT ===== */
.container {
  padding: 20px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  font-weight: 800;
}

h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.bringing-puppy p,
.breed-info p {
  font-size: 1.65rem;
  font-weight: 500;
}

/* ===== IMAGES ===== */
.image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ===== TOP CONTENT ===== */
.top-content {
  display: flex;
  flex-direction: column;
}

/* ===== DELIVERY OPTIONS / ACCORDION ===== */
.delivery-options .option {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 15px;
}

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

.option p {
  margin-top: 10px;
}

.toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
}

.option-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}

.option.active .option-content {
  max-height: 300px;
  opacity: 1;
  margin-top: 10px;
}

/* ===== WHEN READY SECTION ===== */
.when-ready {
  margin-top: 30px;
}

/* ===== BREED INFORMATION SECTION ===== */
.breed-info {
  margin-top: 60px;
}

.breed-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  display: inline-block;
  margin-bottom: 10px;
}

/* Breed Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.tags span {
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 16px;
  font-weight: 500;
}

/* Breed Stats */
.stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.stats .stats-item {
  border-radius: 10px;
}

.stats h4 {
  font-weight: 600;
  font-size: 20px;
}

.stats p {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 16px;
  padding: 0 !important;
  margin: 0;
}

.learn-more {
  display: inline-block;
  margin-top: 10px;
  text-decoration: underline;
  font-weight: 500;
}



/* ===== IMAGE WITH SHAPE BACKGROUND ===== */
.image-with-shape {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.image-with-shape img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}

.bg-shape {
  position: absolute;
  width: 85%;
  height: 85%;
  background: #dff5ec;
  border-radius: 24px;
  top: -15px;
  left: -15px;
  z-index: 1;
}



/* ===== MORE INFO / ASK SECTION ===== */
.more-info {
  background: #A9E2C1;
  padding: 60px 20px;
}

.ask-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.more-info p,
.more-info li,
.more-info label,
.more-info input,
.more-info textarea,
.more-info span {
  font-size: 1.7rem;
  font-weight: 500;
}

.more-info h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

/* Left Side Content */
.ask-sub {
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 20px;
}

.ask-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.ask-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.ask-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
}

/* Support Card */
.ask-support-card {
  background: #f3f3f3;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}

.ask-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.ask-avatars img {
  width: auto;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -10px;
  border: 3px solid #f3f3f3;
}

.ask-avatars img:first-child {
  margin-left: 0;
}

.ask-phone {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  padding: 12px 30px;
  border-radius: 40px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
}

/* Form Card */
.ask-form-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
}

.form-title {
  font-size: 17px;
  font-weight: 800 !important;
  margin-bottom: 25px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ask-form-card input,
.ask-form-card textarea {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  background: #fff;
}

.ask-form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.ask-submit {
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  padding: 16px;
  border-radius: 40px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  margin-bottom: 20px;
}

.form-terms {
  font-size: 1.4rem;
}

/* ===== CARD COMPONENT ===== */
.card-container {
  width: 300px;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  padding: 2px;
}

.card-wrapper {
  width: 100%;
  height: fit-content;
}

.card-image .img {
  width: 100%;
  height: 270px;
  border-radius: 10px 10px 6px 6px;
  object-fit: cover;
  object-position: center center;
}

.card-devider {
  width: 100%;
  margin: 2px 0 15px;
  border-top: 2px solid transparent;
  border-image: repeating-linear-gradient(
    to right,
    #f1f1f1 0 5px,
    transparent 5px 10px
  ) 1;
}

.card-details {
  width: 95%;
  margin: 0 auto;
  margin-bottom: 15px;
  position: relative;
}

.card-details .breed {
  width: 70%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* Wishlist Button */
.wishlist {
  position: absolute;
  bottom: 10px;
  right: 5px;
  width: fit-content;
  height: fit-content;
}

.wishlist .wishlist-btn {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-primary);
  border-radius: 50%;
  background-color: transparent;
}

.wishlist .wishlist-btn svg {
  fill: none;
  stroke-width: 2px;
  stroke: var(--color-primary);
}

.wishlist .wishlist-btn.active svg {
  fill: var(--color-primary);
  stroke-width: 2px;
  stroke: var(--color-primary);
}

.wishlist .wishlist-btn svg:hover {
  fill: var(--color-primary);
  stroke-width: 2px;
  stroke: var(--color-primary);
}

/* ===== SWIPER / CAROUSEL ===== */
.swiper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.similar-breeds-swiper .swiper-wrapper {
  width: fit-content;
  margin: 0 auto;
  padding-left: 20px;
  margin-top: 40px;
}

.similar-breeds-swiper .swiper-button-next,
.similar-breeds-swiper .swiper-button-prev {
  border-radius: 50%;
  background-color: rgba(0,0,0,0.2);
  width: 50px;
  height: 50px;
}

.similar-breeds-swiper .swiper-button-next::after,
.similar-breeds-swiper .swiper-button-prev::after {
  color: #fff;
  font-size: 3.2rem !important;
  font-weight: 900;
}

#section-2 {
  padding: 0 20px;
  overflow-x: hidden;
}

.badge-swiper {
  height: 230px;
}

#section-2 .swiper-pagination-bullet-active {
  background-color: #000 !important;
}

/* ===== MEDIA QUERIES: DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {

  #main {
    width: 65%;
    margin: 0 auto;
  }

  .puppy-detail {
    padding: 0;
  }

  .puppy-detail h1,
  .puppy-detail h2 {
    font-weight: 800;
  }

  .pd-top {
    flex-direction: row;
    gap: 60px;
  }

  .pd-gallery {
    flex: 1.1;
    flex-direction: row;
  }

  .pd-thumbnails {
    flex-direction: column;
    overflow: hidden;
  }

  .pd-main-image {
    flex: 1;
  }

  .pd-info {
    flex: 0.9;
  }

    /* Wishlist Button */
    .wishlist-icon {
      width: fit-content;
      height: fit-content;
    }
  
    .wishlist-icon .wishlist-btn {
      height: 40px;
      width: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid var(--color-primary);
      border-radius: 50%;
      background-color: transparent;
    }
  
    .wishlist-icon .wishlist-btn svg {
      fill: none;
      stroke-width: 2px;
      stroke: var(--color-primary);
    }

    .wishlist-icon .wishlist-btn.active svg {
      fill: var(--color-primary);
      stroke-width: 2px;
      stroke: var(--color-primary);
    }
  
    .wishlist-icon .wishlist-btn svg:hover {
      fill: var(--color-primary);
      stroke-width: 2px;
      stroke: var(--color-primary);
    }

  .pd-lower {
    flex-direction: row;
    align-items: flex-start;
  }

  .pd-about {
    flex: 1.2;
  }

  .pd-contact-card {
    flex: 0.8;
    padding-top: 50px;
    padding-bottom: 50px;
    position: sticky;
    top: 40px;
  }

  .pd-included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 40px;
  }

  .top-content {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }

  /* breed section info */

  .breed-content {
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }

  .image-wrapper {
    max-width: 500px;
  }

  .stats {
    flex-direction: row;
    gap: 30px;
  }

  .image-with-shape {
    max-width: 500px;
  }

  .bg-shape {
    top: -20px;
    left: -20px;
  }

  .breed-info .image-wrapper img {
    width: 450px;
  }


  /* ask container */
  .ask-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
    width: 75%;
    margin: 0 auto;
  }

  .ask-left {
    flex: 1;
  }

  .ask-form-card {
    flex: 1;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row input {
    flex: 1;
  }

  .swiper {
    width: 75%;
    display: flex;
    margin: 0 auto;
    justify-content: center;
  }

  .similar-breeds-swiper .swiper-wrapper {
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    margin-top: 40px;
  }

}
