/* ============================================
   Feline Flow — Design System
   ============================================ */

:root {
  --color-primary: #3d6b8e;
  --color-primary-dark: #2f5572;
  --color-accent: #e07a5f;
  --color-accent-dark: #c96850;
  --color-primary-light: #d6e8f2;
  --color-green: #2a9d6e;
  --color-bg: #f7f3ee;
  --color-bg-alt: #eef4f8;
  --color-bg-warm: #f5ebe3;
  --color-text: #2c3440;
  --color-text-dark: #1a2f3d;
  --color-text-muted: #5c6b7a;
  --color-text-light: #2c3440;
  --color-white: #ffffff;
  --color-border: #d8e2ea;
  --color-star: #f4b942;

  --font-family: 'DM Sans', system-ui, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  --letter-spacing: 0.025em;

  --max-width: 1300px;
  --header-height: 72px;
  --radius-pill: 500px;
  --radius-card: 24px;
  --radius-product: 20px;
  --shadow-card: 0 10px 12px -4px rgba(0, 0, 0, 0.1);
  --shadow-btn: 0 12px 16px -4px rgba(0, 0, 0, 0.1);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing);
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

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

/* ============================================
   Announcement Bar
   ============================================ */

.announcement-bar {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============================================
   Header
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text-dark);
  flex-shrink: 0;
}

.logo-mark {
  color: var(--color-primary);
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list a {
  font-weight: 500;
  font-size: 15px;
  transition: color var(--transition);
}

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

.nav-item {
  position: relative;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 12px 0;
  margin-top: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
}

.dropdown a:hover {
  background: var(--color-primary-light);
}

.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

.badge-gold {
  background: var(--color-accent);
  color: var(--color-white);
}

.badge-green {
  background: var(--color-green);
  color: var(--color-white);
}

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

.nav-secondary a {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

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

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   Marquee
   ============================================ */

.marquee-section {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--color-text-dark);
}

.marquee-icon {
  font-size: 16px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  background: var(--color-bg);
  padding: 106px 0;
  color: var(--color-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26, 47, 61, 0.82) 0%, rgba(61, 107, 142, 0.72) 55%, rgba(26, 47, 61, 0.55) 100%),
    url('images/pet-fountain-hero.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-text {
  width: 53%;
  max-width: 743px;
  padding-left: 56px;
}

.trust-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
}

.trust-rating:hover {
  color: var(--color-white);
  opacity: 0.9;
}

.stars {
  color: var(--color-star);
  letter-spacing: 1px;
}

.trustpilot {
  font-weight: 700;
}

.hero-title {
  font-weight: 600;
  font-size: 63px;
  line-height: 77px;
  letter-spacing: 0;
  margin-bottom: 19px;
}

.hero-subtitle {
  font-weight: 600;
  font-size: 20px;
  line-height: 31px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 24px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 31px;
  border-radius: var(--radius-pill);
  padding: 12px 23px;
  transition: all var(--transition);
}

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

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-usps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 38px;
  flex-wrap: wrap;
  gap: 12px;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.usp-icon {
  font-size: 20px;
}

/* Hero review swiper */
.hero-review-swiper {
  width: 100%;
  padding-bottom: 56px;
}

.hero-review-slide {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  border-bottom: 1px solid var(--color-border);
  padding: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 76%;
  flex-shrink: 0;
}

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

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-text-light);
  text-transform: capitalize;
  margin-bottom: 4px;
}

.review-role {
  font-size: 11px;
  line-height: 15px;
  color: var(--color-text-muted);
}

.review-quote {
  font-size: 15px;
  line-height: 21.5px;
  color: var(--color-text-dark);
  font-style: italic;
  flex: 1;
}

.hero-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: var(--color-primary-light);
  opacity: 1;
  border-radius: 100px;
}

.hero-pagination .swiper-pagination-bullet-active {
  width: 36px;
  background: var(--color-primary);
}

/* ============================================
   Section Titles
   ============================================ */

.section-title {
  font-weight: 700;
  font-size: 42px;
  line-height: 54px;
  text-align: center;
  text-transform: capitalize;
  color: var(--color-text-dark);
  margin-bottom: 44px;
}

.section-subtitle {
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: var(--color-text);
  margin-top: -36px;
  margin-bottom: 30px;
}

.stars-sm {
  color: var(--color-star);
  font-size: 14px;
  letter-spacing: 1px;
}

/* ============================================
   Products
   ============================================ */

.products-section {
  background: var(--color-bg-alt);
  padding: 68px 0;
}

.products-swiper {
  padding: 12px 0;
  position: relative;
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-primary-light);
  border-radius: var(--radius-product);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
  height: auto;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 10px;
  color: var(--color-white);
}

.product-badge.sale {
  background: var(--color-green);
}

.product-badge.bestseller {
  background: var(--color-primary);
}

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

.product-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-top-left-radius: 21px;
  border-top-right-radius: 21px;
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px;
}

.product-name {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--color-text-dark);
}

.product-name:hover {
  color: var(--color-primary);
}

.product-desc {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
}

.product-prices {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.price-sale {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-green);
}

.price-compare {
  font-size: 12px;
  text-decoration: line-through;
  color: var(--color-text);
}

.price-save {
  font-weight: 600;
  font-size: 9px;
  padding: 4px 8px;
  background: var(--color-green);
  color: var(--color-white);
  border-radius: 20px;
}

.btn-atc {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--color-white);
  background: var(--color-primary);
  height: 55px;
  border-radius: 50px;
  box-shadow: var(--shadow-btn);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.btn-atc:hover {
  background: var(--color-primary-dark);
}

.btn-atc.added {
  background: var(--color-green) !important;
}

.btn-atc-large {
  font-size: 17px;
  height: 58px;
}

.btn-atc:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.products-prev,
.products-next {
  color: var(--color-primary);
}

.products-prev::after,
.products-next::after {
  font-size: 24px;
  font-weight: 700;
}

/* ============================================
   Video Section
   ============================================ */

.video-section {
  padding: 55px 0;
  background: var(--color-white);
}

.video-swiper {
  padding: 8px 0;
}

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

.video-thumb {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 380px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-card p {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* ============================================
   Features / Blog Blocks
   ============================================ */

.features-section {
  padding: 36px 0;
}

.feature-block {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}

.feature-block.reverse {
  flex-direction: row-reverse;
}

.feature-image {
  flex: 1;
}

.feature-image img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.feature-content {
  flex: 1;
}

.feature-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.feature-content h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-text-dark);
}

.feature-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 20px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ============================================
   Collections
   ============================================ */

.collections-section {
  background: var(--color-bg-alt);
  padding: 41px 0 50px;
}

.collections-header {
  text-align: center;
  margin-bottom: 30px;
}

.collections-header .section-title {
  font-size: 46px;
  line-height: 50px;
  margin-bottom: 17px;
}

.collections-header .section-subtitle {
  font-size: 16px;
  line-height: 48px;
  margin: 0;
}

.collections-grid {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 24px;
}

.collection-item {
  text-align: center;
  transition: transform var(--transition);
}

.collection-item:hover {
  transform: translateY(-4px);
}

.collection-image {
  position: relative;
}

.collection-image img,
.collection-render {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-render .product-render {
  border-radius: 50%;
}

.collection-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text-dark);
  background: var(--color-primary-light);
  border-radius: var(--radius-pill);
  height: 40px;
  width: 258px;
  margin: -33px auto 0;
  position: relative;
  z-index: 1;
}

.collection-item:hover .arrow {
  transform: translateX(8px);
}

.arrow {
  transition: transform 0.4s ease;
}

/* ============================================
   Feature Surround Grid
   ============================================ */

.feature-surround {
  padding: 60px 0;
  background: var(--color-white);
}

.feature-surround-header {
  text-align: center;
  margin-bottom: 48px;
}

.feature-surround-header h2 {
  font-weight: 600;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--color-text-dark);
}

.feature-surround-header p {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text-muted);
}

.feature-surround-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 24px 32px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.surround-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
}

.surround-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
}

.surround-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--color-text-dark);
}

.surround-item p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.surround-product {
  grid-column: 2;
  grid-row: 1 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.surround-product img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials-section {
  background: var(--color-bg-warm);
  padding: 65px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 20px;
}

.testimonials-eyebrow {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.testimonials-header .section-title {
  margin-bottom: 8px;
}

.testimonials-header .section-subtitle {
  margin: 0 0 20px;
}

.testimonials-swiper {
  padding: 46px 60px 64px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 45px 15px;
  text-align: center;
  height: auto;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
}

.testimonial-product {
  font-weight: 600;
  color: var(--color-primary);
}

.testimonial-stars {
  color: var(--color-star);
  letter-spacing: 1px;
}

.testimonial-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  text-align: left;
  padding: 0 8px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-author .review-avatar {
  width: 48px;
  height: 48px;
  font-size: 15px;
}

.author-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-text-light);
  text-align: left;
}

.author-date {
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-text-muted);
  text-align: left;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 56px;
  height: 5px;
  border-radius: 5px;
  background: rgba(61, 107, 142, 0.35);
  opacity: 1;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

/* ============================================
   FAQ
   ============================================ */

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

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

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  color: var(--color-text-dark);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ============================================
   Newsletter
   ============================================ */

.newsletter-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.newsletter-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(61, 107, 142, 0.88), rgba(214, 232, 242, 0.95)),
    url('images/pet-fountain-ragdoll.jpg') center/cover;
  z-index: 0;
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter-cat {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-white);
}

.newsletter-content h2 {
  font-weight: 700;
  font-size: 32px;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}

.newsletter-content p {
  font-size: 16px;
  color: var(--color-text-muted);
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 24px;
  box-shadow: var(--shadow-card);
  min-width: 360px;
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  padding: 12px 0;
  background: transparent;
}

.newsletter-form button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}

.newsletter-form button:hover {
  background: var(--color-accent-dark);
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--color-text-dark);
  color: var(--color-white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 16px 0 20px;
  max-width: 280px;
}

.footer-brand .logo {
  color: var(--color-white);
}

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

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

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

.footer-links h4 {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

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

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

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.payment-icons {
  display: flex;
  gap: 12px;
}

.payment-icons span {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1200px) {
  .nav-secondary {
    display: none;
  }

  .collection-image img {
    width: 268px;
    height: 268px;
  }

  .collection-label {
    width: 247px;
  }
}

@media (max-width: 989px) {
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 40px;
    gap: 24px;
    transform: translateX(-100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-secondary {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .menu-toggle {
    display: flex;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 16px;
    margin-top: 8px;
  }

  .hero {
    padding: 35px 0;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }

  .hero-title {
    font-size: 41px;
    line-height: 47px;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    margin-top: 16px;
  }

  .trust-rating {
    justify-content: center;
    font-size: 11px;
    margin-bottom: 12px;
  }

  .hero-buttons {
    flex-direction: column;
    margin: 20px 0;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .btn-outline {
    display: none;
  }

  .hero-usps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 0;
    margin: 21px 0;
  }

  .usp-item {
    width: 47%;
    justify-content: center;
  }

  .hero-review-slide {
    flex-direction: column;
    background: rgba(255, 255, 255, 0.7);
    padding: 18px;
  }

  .review-author {
    width: 100%;
  }

  .review-quote {
    width: 100%;
    font-size: 12px;
    line-height: 18px;
  }

  .section-title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 24px;
  }

  .feature-block,
  .feature-block.reverse {
    flex-direction: column;
    gap: 24px;
  }

  .feature-content h2 {
    font-size: 28px;
  }

  .feature-surround-grid {
    grid-template-columns: 1fr 1fr;
  }

  .surround-product {
    grid-column: 1 / -1;
    grid-row: auto;
    order: -1;
  }

  .surround-product img {
    max-width: 240px;
  }

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

  .testimonials-swiper {
    padding: 24px 20px 48px;
  }
}

@media (max-width: 600px) {
  .page-width {
    padding: 0 17px;
  }

  .collections-grid {
    justify-content: space-between;
  }

  .collection-item {
    width: 48%;
  }

  .collection-image img {
    width: 169px;
    height: 169px;
  }

  .collection-label {
    width: 100%;
    font-size: 14px;
    height: 36px;
  }

  .collections-header .section-title {
    font-size: 32px;
    max-width: 300px;
    margin: 0 auto 9px;
  }

  .feature-surround-grid {
    grid-template-columns: 1fr;
  }

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

  .newsletter-form {
    min-width: 100%;
  }

  .hero-title {
    font-size: 35px;
  }

  .shop-customizer {
    flex-direction: column;
    padding: 24px;
  }

  .fountain-preview {
    transform: scale(0.85);
  }

  .checkout-modal {
    padding: 24px 20px;
    margin: 12px;
  }
}

/* ============================================
   Shop / Customizer
   ============================================ */

.shop-section {
  padding: 72px 0;
  background: var(--color-white);
}

.shop-header {
  text-align: center;
  margin-bottom: 48px;
}

.shop-title {
  margin-bottom: 8px;
}

.shop-subtitle {
  margin: 0;
}

.shop-customizer {
  display: flex;
  align-items: center;
  gap: 64px;
  background: var(--color-bg-alt);
  border-radius: 28px;
  padding: 48px;
  border: 1px solid var(--color-border);
}

.shop-preview-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.fountain-preview {
  --fountain-color: #3d6b8e;
  position: relative;
  width: 180px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: --fountain-color 0.4s ease;
}

.fountain-spout {
  width: 48px;
  height: 72px;
  background: linear-gradient(180deg, var(--fountain-color), color-mix(in srgb, var(--fountain-color) 75%, #000));
  border-radius: 12px 12px 4px 4px;
  position: relative;
  z-index: 2;
}

.fountain-spout::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 8px;
  background: color-mix(in srgb, var(--fountain-color) 80%, #fff);
  border-radius: 0 0 8px 8px;
}

.fountain-stream {
  width: 4px;
  height: 36px;
  background: linear-gradient(180deg, rgba(100, 180, 220, 0.8), rgba(100, 180, 220, 0.3));
  border-radius: 2px;
  margin-top: -4px;
  animation: streamPulse 1.5s ease-in-out infinite;
}

@keyframes streamPulse {
  0%, 100% { opacity: 0.7; height: 36px; }
  50% { opacity: 1; height: 42px; }
}

.fountain-bowl {
  width: 160px;
  height: 56px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--fountain-color) 90%, #fff), var(--fountain-color));
  border-radius: 0 0 80px 80px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -8px 16px rgba(0, 0, 0, 0.1);
}

.fountain-water {
  position: absolute;
  bottom: 8px;
  left: 12px;
  right: 12px;
  height: 20px;
  background: linear-gradient(180deg, rgba(120, 200, 240, 0.5), rgba(80, 160, 220, 0.7));
  border-radius: 0 0 60px 60px;
  animation: waterShimmer 2s ease-in-out infinite;
}

@keyframes waterShimmer {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.fountain-base {
  width: 140px;
  height: 24px;
  background: color-mix(in srgb, var(--fountain-color) 60%, #333);
  border-radius: 8px;
  margin-top: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.preview-color-label {
  margin-top: 24px;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text-muted);
}

.shop-config {
  flex: 1;
  max-width: 420px;
}

.shop-product-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.shop-product-tagline {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.shop-prices {
  margin: 16px 0 24px;
}

.color-picker {
  margin-bottom: 20px;
}

.color-picker-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.color-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.color-swatch:hover {
  transform: scale(1.1);
}

.color-swatch.active {
  border-color: var(--color-text-dark);
  transform: scale(1.1);
}

.color-swatch:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.qty-picker {
  margin-bottom: 24px;
}

.qty-picker label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--color-white);
}

.qty-btn {
  width: 44px;
  height: 44px;
  font-size: 20px;
  color: var(--color-primary);
  transition: background var(--transition);
}

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

.qty-controls input {
  width: 52px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  -moz-appearance: textfield;
}

.qty-controls input::-webkit-outer-spin-button,
.qty-controls input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.shop-guarantee {
  margin-top: 14px;
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
}

/* ============================================
   Product Grid
   ============================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-grid .product-card {
  display: flex;
  flex-direction: column;
}

.product-visual {
  position: relative;
  aspect-ratio: 1;
  background: var(--color-bg-alt);
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-visual .mini-fountain {
  transform: scale(0.55);
  margin-top: 20px;
}

.product-card .product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.product-card .color-swatches {
  padding: 0 15px 4px;
}

.product-card .color-swatch {
  width: 28px;
  height: 28px;
}

.product-card-actions {
  display: flex;
  gap: 8px;
  padding: 0 15px 15px;
}

.product-card-actions .btn-atc {
  flex: 1;
  height: 48px;
  font-size: 14px;
}

/* ============================================
   Cart Drawer
   ============================================ */

.cart-overlay,
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 47, 61, 0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.cart-overlay.open,
.checkout-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: var(--color-white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer-header h2 {
  font-size: 22px;
  font-weight: 700;
}

.cart-close,
.checkout-close {
  font-size: 28px;
  line-height: 1;
  color: var(--color-text-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.cart-close:hover,
.checkout-close:hover {
  background: var(--color-bg-alt);
}

.cart-guarantee {
  padding: 12px 24px;
  font-size: 13px;
  color: var(--color-text-muted);
  background: var(--color-bg-warm);
  border-bottom: 1px solid var(--color-border);
}

.cart-shipping-bar {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 500;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.cart-shipping-bar.qualified {
  background: color-mix(in srgb, var(--color-green) 15%, white);
  color: var(--color-green);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item-visual {
  width: 72px;
  height: 72px;
  background: var(--color-bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-visual .mini-fountain {
  transform: scale(0.35);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.cart-item-meta {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-price {
  font-weight: 700;
  color: var(--color-green);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  font-size: 16px;
  color: var(--color-primary);
}

.cart-item-qty span {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.cart-item-remove {
  font-size: 12px;
  color: var(--color-accent);
  margin-top: 6px;
  text-decoration: underline;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  gap: 16px;
}

.cart-empty p {
  font-size: 16px;
  color: var(--color-text-muted);
}

.cart-empty.hidden,
.cart-footer.hidden,
.cart-items.hidden {
  display: none;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--color-text-muted);
}

.cart-summary-row.cart-total {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 12px 0 16px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.btn-checkout {
  background: var(--color-accent);
}

.btn-checkout:hover {
  background: var(--color-accent-dark);
}

body.cart-open,
body.checkout-open {
  overflow: hidden;
}

/* ============================================
   Checkout Modal
   ============================================ */

.checkout-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.checkout-modal {
  position: relative;
  background: var(--color-white);
  border-radius: 24px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.checkout-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.checkout-modal h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.checkout-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

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

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text-dark);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color var(--transition);
}

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

.checkout-order-summary {
  background: var(--color-bg-alt);
  border-radius: 16px;
  padding: 16px;
  margin: 20px 0;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
  color: var(--color-text-muted);
}

.checkout-line.total {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text-dark);
  border-top: 1px solid var(--color-border);
  margin-top: 8px;
  padding-top: 12px;
}

.checkout-note {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 12px;
}

.checkout-success {
  text-align: center;
  padding: 20px 0;
}

.checkout-success .success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-green);
  color: white;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.checkout-success h2 {
  margin-bottom: 12px;
}

.checkout-success .order-id {
  font-size: 18px;
  margin-bottom: 16px;
}

.checkout-success p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Mini fountain for cards/cart */
.mini-fountain {
  --fountain-color: #3d6b8e;
  position: relative;
  width: 100px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mini-fountain .fountain-spout {
  width: 28px;
  height: 42px;
}

.mini-fountain .fountain-stream {
  height: 20px;
}

.mini-fountain .fountain-bowl {
  width: 88px;
  height: 32px;
}

.mini-fountain .fountain-base {
  width: 76px;
  height: 14px;
}

/* Star ratings */
.star-rating {
  display: inline-flex;
  gap: 1px;
  letter-spacing: 0;
}

.star-rating .star {
  font-size: 14px;
  line-height: 1;
}

.star-full { color: var(--color-star); }
.star-half { color: var(--color-star); opacity: 0.55; }
.star-empty { color: #d8e2ea; }

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}

.spec-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.product-visual-hero {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--color-bg-alt);
}

.product-visual-hero img,
.product-visual-hero #customizerPhoto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.customizer-finish-swatch {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.preview-sku {
  margin-top: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  font-family: ui-monospace, monospace;
}

.product-visual {
  position: relative;
  padding: 0;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.finish-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--finish-color, var(--color-primary));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cart-item-visual img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
}

/* Community photos */
.community-section {
  padding: 55px 0;
  background: var(--color-white);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.community-card {
  margin: 0;
}

.community-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 10px;
}

.community-card figcaption {
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.4;
}

.checkout-delivery {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

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

@media (max-width: 600px) {
  .community-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .community-card figcaption {
    font-size: 11px;
  }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-text-dark);
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}