:root{
  --sf-radius: 18px;
  
  /* Bold & Vibrant Color Palette */
  --sf-primary-start: #6366f1;
  --sf-primary-end: #8b5cf6;
  --sf-accent-start: #f59e0b;
  --sf-accent-end: #fbbf24;
  --sf-success: #10b981;
  --sf-success-dark: #059669;
  --sf-text: #0f172a;
  --sf-text-muted: #64748b;
  --sf-surface: #ffffff;
  --sf-bg: #ffffff;
  --sf-border: #e2e8f0;
  
  /* Gradient definitions */
  --sf-gradient-primary: linear-gradient(135deg, var(--sf-primary-start), var(--sf-primary-end));
  --sf-gradient-accent: linear-gradient(135deg, var(--sf-accent-start), var(--sf-accent-end));
  --sf-gradient-hero: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
}

/* Modern Typography */
body{
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--sf-text);
}

h1, h2, h3, h4, h5, h6{
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1{ font-size: clamp(2rem, 4vw, 3rem); }
h2{ font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3{ font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4{ font-size: clamp(1.25rem, 2vw, 1.75rem); }
h5{ font-size: clamp(1.1rem, 1.5vw, 1.5rem); }
h6{ font-size: clamp(1rem, 1.2vw, 1.25rem); }

.sf-header{
  background: color-mix(in srgb, var(--sf-bg) 92%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid color-mix(in srgb, var(--sf-primary-start) 8%, transparent);
  z-index: 1000;
}

.sf-header.sf-header--scrolled{
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.15);
  background: color-mix(in srgb, var(--sf-bg) 98%, transparent);
  border-bottom-color: color-mix(in srgb, var(--sf-primary-start) 12%, transparent);
}

.sf-header .container{
  position: relative;
}

.sf-header::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sf-gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sf-header.sf-header--scrolled::before{
  opacity: 0.6;
}

.sf-logo{
  max-height: 32px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.2));
}

.sf-header a:hover .sf-logo{
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.4));
}

.sf-mark{
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-block;
  background: var(--sf-gradient-primary);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sf-header a:hover .sf-mark{
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.sf-brand{
  font-weight: 650;
  color: var(--app-text, #0f172a);
  letter-spacing: -0.01em;
}

.sf-nav__link{
  color: var(--sf-text-muted);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
}

.sf-nav__link::before{
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sf-gradient-primary);
  opacity: 0;
  border-radius: 8px;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.sf-nav__link::after{
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--sf-gradient-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
}

.sf-nav__link:hover{
  color: white;
  transform: translateY(-2px);
}

.sf-nav__link:hover::before{
  opacity: 1;
}

.sf-nav__link:hover::after{
  width: 60%;
  opacity: 0;
}

.sf-nav__link:active{
  transform: translateY(0);
}

/* Header Buttons */
.sf-header .btn-outline-secondary{
  border: 1.5px solid color-mix(in srgb, var(--sf-primary-start) 20%, transparent);
  color: var(--sf-text);
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.sf-header .btn-outline-secondary::before{
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sf-gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.sf-header .btn-outline-secondary:hover{
  border-color: var(--sf-primary-start);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.sf-header .btn-outline-secondary:hover::before{
  opacity: 1;
}

.sf-header .btn-outline-secondary:active{
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(99, 102, 241, 0.2);
}

.sf-header .btn-outline-secondary i{
  transition: transform 0.3s ease;
}

.sf-header .btn-outline-secondary:hover i{
  transform: scale(1.1);
}

.sf-hero{
  padding: 1.25rem 0 0;
}

.sf-hero-carousel{
  position: relative;
}

.sf-hero-carousel .carousel-item{
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sf-hero__card{
  border-radius: calc(var(--sf-radius) + 6px);
  border: 1px solid color-mix(in srgb, var(--sf-primary-start) 15%, #e2e8f0);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 5% 5%, rgba(99, 102, 241, 0.15), transparent 65%),
    radial-gradient(900px 500px at 95% 10%, rgba(139, 92, 246, 0.12), transparent 65%),
    radial-gradient(800px 400px at 50% 90%, rgba(245, 158, 11, 0.08), transparent 70%),
    var(--sf-surface);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.08);
  min-height: 400px;
}

.sf-hero-carousel .carousel-indicators{
  bottom: 20px;
  margin-bottom: 0;
}

.sf-hero-carousel .carousel-indicators button{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(99, 102, 241, 0.4);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.sf-hero-carousel .carousel-indicators button.active{
  background-color: var(--sf-primary-start);
  border-color: white;
  transform: scale(1.2);
}

.sf-hero-carousel .carousel-control-prev,
.sf-hero-carousel .carousel-control-next{
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.sf-hero-carousel .carousel-control-prev{
  left: 20px;
}

.sf-hero-carousel .carousel-control-next{
  right: 20px;
}

.sf-hero-carousel .carousel-control-prev:hover,
.sf-hero-carousel .carousel-control-next:hover{
  opacity: 1;
  background-color: white;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.sf-hero-carousel .carousel-control-prev-icon,
.sf-hero-carousel .carousel-control-next-icon{
  filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(234deg) brightness(104%) contrast(97%);
  width: 24px;
  height: 24px;
}

.sf-kicker{
  font-size: .875rem;
}

.sf-hero__title{
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  letter-spacing: -0.03em;
  margin: .5rem 0 .75rem;
  font-weight: 800;
  background: var(--sf-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sf-hero__subtitle{
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.6;
  color: var(--sf-text-muted);
  font-weight: 400;
}

.sf-hero__media img{
  width: 100%;
  height: auto;
  border-radius: var(--sf-radius);
  display: block;
}

.sf-hero__placeholder{
  border-radius: var(--sf-radius);
  background: linear-gradient(135deg, color-mix(in srgb, var(--app-primary, #0d6efd) 18%, transparent), color-mix(in srgb, var(--app-primary, #0d6efd) 8%, transparent));
  border: 1px dashed color-mix(in srgb, var(--app-primary, #0d6efd) 25%, #dee2e6);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.sf-hero__placeholder-inner{
  text-align: center;
}

.sf-hero__placeholder-badge{
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--app-primary, #0d6efd) 16%, transparent);
  color: var(--app-text, #0f172a);
  margin-bottom: .5rem;
}

.sf-hero__placeholder-title{
  font-weight: 650;
  letter-spacing: -0.01em;
}

.sf-hero__placeholder-text{
  font-size: .9rem;
  color: var(--app-muted, #64748b);
}

.sf-hero--animated .sf-hero__content{
  animation: sf-fade-in-up 0.6s ease-out;
}

.sf-hero--animated .sf-hero__media--animate{
  animation: sf-fade-in-up 0.6s ease-out 0.15s both;
}

@keyframes sf-fade-in-up{
  from{ opacity: 0; transform: translateY(20px); }
  to{ opacity: 1; transform: translateY(0); }
}

.sf-hero__icons .sf-hero__icon{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--app-primary, #0d6efd) 14%, transparent);
  color: var(--app-primary, #0d6efd);
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.sf-hero__icons .sf-hero__icon:hover{
  transform: scale(1.08);
}

.sf-hero__placeholder-icon{
  font-size: 2.5rem;
  color: color-mix(in srgb, var(--app-primary, #0d6efd) 50%, #fff);
  margin-bottom: 0.5rem;
}

.sf-hero__btn{
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sf-hero__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
}

.sf-section{
  padding: 2.25rem 0 0;
}

.sf-section__head{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .9rem;
}

.sf-section__title{
  font-size: 1.25rem;
  margin: 0;
  letter-spacing: -0.01em;
}

.sf-link{
  color: var(--app-muted, #64748b);
  text-decoration: none;
  font-weight: 500;
}

.sf-link:hover{
  color: var(--app-text, #0f172a);
  text-decoration: underline;
}

.sf-empty{
  border-radius: var(--sf-radius);
}

.sf-collection-tile{
  border-radius: var(--sf-radius);
  border: 1px solid #dee2e6;
  background: var(--app-surface, #fff);
  overflow: hidden;
  height: 100%;
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.sf-collection-tile:hover{
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--app-primary, #0d6efd) 25%, #dee2e6);
  box-shadow: 0 18px 35px rgba(0,0,0,.06);
}

.sf-collection-tile__media img{
  width: 100%;
  height: 96px;
  object-fit: cover;
  display: block;
}

.sf-collection-tile__placeholder{
  height: 96px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--app-primary, #0d6efd) 12%, transparent), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sf-collection-tile__placeholder.tone-default{
  background: linear-gradient(135deg, color-mix(in srgb, var(--app-primary, #0d6efd) 12%, transparent), transparent);
}
.sf-collection-tile__placeholder.tone-blue{
  background: linear-gradient(135deg, rgba(13,110,253,.18), transparent);
}
.sf-collection-tile__placeholder.tone-green{
  background: linear-gradient(135deg, rgba(25,135,84,.18), transparent);
}
.sf-collection-tile__placeholder.tone-warm{
  background: linear-gradient(135deg, rgba(255,193,7,.22), transparent);
}
.sf-collection-tile__placeholder.tone-purple{
  background: linear-gradient(135deg, rgba(111,66,193,.20), transparent);
}
.sf-collection-tile__placeholder.tone-pink{
  background: linear-gradient(135deg, rgba(214,51,132,.18), transparent);
}

.sf-collection-tile__icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--app-primary, #0d6efd) 14%, #fff);
  border: 1px solid color-mix(in srgb, var(--app-primary, #0d6efd) 18%, #dee2e6);
  color: var(--app-text, #0f172a);
  font-size: 1.2rem;
}

.sf-collection-tile__body{
  padding: .75rem .9rem;
}

.sf-collection-tile__title{
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--app-text, #0f172a);
  font-size: .95rem;
}

.sf-product-card{
  border-radius: calc(var(--sf-radius) + 4px);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid color-mix(in srgb, var(--sf-primary-start) 10%, #e2e8f0);
  background: var(--sf-surface);
}

.sf-product-card:hover{
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(99, 102, 241, 0.15);
  border-color: color-mix(in srgb, var(--sf-primary-start) 30%, #e2e8f0);
}

.sf-product-card__media{
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.03));
  min-height: 0;
  transition: background 0.3s ease;
}

.sf-product-card:hover .sf-product-card__media{
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
}

.sf-product-card__thumb{
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, color-mix(in srgb, var(--app-primary, #0d6efd) 12%, transparent), transparent);
}

.sf-product-card__img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: rgba(255,255,255,.65);
  padding: 0.5rem;
}

.sf-badge{
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .35rem .65rem;
  font-size: .75rem;
  font-weight: 700;
  border-radius: 8px;
  background: var(--sf-gradient-accent);
  border: none;
  color: white;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  z-index: 2;
  animation: sf-badge-pulse 2s ease-in-out infinite;
}

@keyframes sf-badge-pulse{
  0%, 100%{ transform: scale(1); }
  50%{ transform: scale(1.05); }
}

.sf-product-card .card-body{
  padding: 0.75rem 0.85rem;
}

.sf-product-card .card-body h3{
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.sf-product-card__desc{
  line-height: 1.35;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.sf-product-card .card-footer{
  padding: 0.65rem 0.85rem;
}

.sf-product-card .card-footer .btn{
  font-size: 0.8rem;
  padding: 0.35rem 0.6rem;
}

.sf-amazon-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sf-amazon-btn-rectangular{
  border-radius: 8px;
  padding: 0.875rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.01em;
  background: var(--sf-gradient-primary);
  border: none;
  color: white;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary{
  background: var(--sf-gradient-primary);
  border: none;
}

.btn-primary:hover{
  background: linear-gradient(135deg, #5855eb, #7c3aed);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.sf-amazon-btn-rectangular::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.sf-amazon-btn-rectangular:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.sf-amazon-btn-rectangular:hover::before{
  left: 100%;
}

.sf-amazon-btn-rectangular:active{
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.sf-amazon-icon{
  font-size: 1.1em;
}

.sf-guide-card{
  border-radius: var(--sf-radius);
  border: 1px solid #dee2e6;
  background: var(--app-surface, #fff);
  overflow: hidden;
  height: 100%;
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.sf-guide-card:hover{
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--app-primary, #0d6efd) 25%, #dee2e6);
  box-shadow: 0 18px 35px rgba(0,0,0,.06);
}

.sf-guide-card__body{
  padding: 1rem 1rem .75rem;
}

.sf-guide-card__badge{
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--app-primary, #0d6efd) 12%, transparent);
  color: var(--app-text, #0f172a);
  margin-bottom: .6rem;
}

.sf-guide-card__title{
  font-weight: 650;
  letter-spacing: -0.01em;
  margin-bottom: .35rem;
  color: var(--app-text, #0f172a);
}

.sf-guide-card__desc{
  font-size: .95rem;
}

.sf-guide-card__footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem 1rem;
  border-top: 1px solid #dee2e6;
  color: var(--app-muted, #64748b);
  font-weight: 500;
}

.sf-trust{
  border-radius: var(--sf-radius);
}

.sf-trust__icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--app-primary, #0d6efd) 12%, transparent);
  margin-bottom: .5rem;
}

.sf-pagehead{
  margin-bottom: 1rem;
}

.sf-divider{
  height: 1px;
  background: #dee2e6;
}

.sf-list{
  padding-left: 1.1rem;
}

.sf-content{
  border-radius: var(--sf-radius);
}

.sf-richtext p{
  margin-bottom: 1rem;
}

/* Affiliate / legal disclosure at end of policy pages */
.sf-disclosure-8{
  font-size: 8px;
  line-height: 1.3;
  color: var(--app-muted, #64748b);
}

.sf-disclosure-enhanced{
  font-size: 14px;
  line-height: 1.6;
  color: var(--sf-text);
}

.sf-newsletter{
  border-radius: calc(var(--sf-radius) + 6px);
  background: color-mix(in srgb, var(--app-primary, #0d6efd) 6%, var(--app-surface, #fff));
}

/* 5 Products Per Row Grid */
.sf-products-grid-5{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.sf-product-col{
  min-width: 0;
}

@media (max-width: 1400px){
  .sf-products-grid-5{
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px){
  .sf-products-grid-5{
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 576px){
  .sf-products-grid-5{
    grid-template-columns: 1fr;
  }
}

/* Responsive Products Grid (Shop Page) */
.sf-products-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

@media (max-width: 1400px){
  .sf-products-grid{
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 992px){
  .sf-products-grid{
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

@media (max-width: 768px){
  .sf-products-grid{
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

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

/* Category Slideshow Styles */
.sf-category-slideshow{
  padding: 3rem 0;
}

.sf-category-carousel-wrapper{
  position: relative;
  padding: 0 3rem;
}

.sf-category-slide-item{
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--sf-radius);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.02));
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sf-category-slide-item:hover{
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--sf-primary-start) 30%, transparent);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.sf-category-icon{
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--sf-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.sf-category-icon i{
  font-size: 2rem;
  color: white;
}

.sf-category-slide-item:hover .sf-category-icon{
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.sf-category-label{
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--sf-text);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.sf-category-count{
  font-size: 0.75rem;
  color: var(--sf-text-muted);
  font-weight: 500;
}

.sf-category-carousel-wrapper .carousel-control-prev,
.sf-category-carousel-wrapper .carousel-control-next{
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  opacity: 0.9;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sf-category-carousel-wrapper .carousel-control-prev{
  left: -1.5rem;
}

.sf-category-carousel-wrapper .carousel-control-next{
  right: -1.5rem;
}

.sf-category-carousel-wrapper .carousel-control-prev:hover,
.sf-category-carousel-wrapper .carousel-control-next:hover{
  opacity: 1;
  background-color: white;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.sf-category-carousel-wrapper .carousel-control-prev-icon,
.sf-category-carousel-wrapper .carousel-control-next-icon{
  filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(234deg) brightness(104%) contrast(97%);
  width: 24px;
  height: 24px;
}

.sf-category-carousel-wrapper .carousel-indicators{
  margin-bottom: -2rem;
}

.sf-category-carousel-wrapper .carousel-indicators button{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--sf-primary-start) 40%, transparent);
  border: none;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.sf-category-carousel-wrapper .carousel-indicators button.active{
  opacity: 1;
  background-color: var(--sf-primary-start);
  transform: scale(1.2);
}

@media (max-width: 992px){
  .sf-category-carousel-wrapper{
    padding: 0 2rem;
  }
  
  .sf-category-carousel-wrapper .carousel-control-prev{
    left: -1rem;
  }
  
  .sf-category-carousel-wrapper .carousel-control-next{
    right: -1rem;
  }
}

@media (max-width: 768px){
  .sf-category-carousel-wrapper{
    padding: 0 1rem;
  }
  
  .sf-category-carousel-wrapper .carousel-control-prev,
  .sf-category-carousel-wrapper .carousel-control-next{
    display: none;
  }
  
  .sf-category-icon{
    width: 56px;
    height: 56px;
  }
  
  .sf-category-icon i{
    font-size: 1.75rem;
  }
  
  .sf-category-slide-item{
    padding: 1.25rem 0.75rem;
  }
}

/* Responsive Improvements */
@media (max-width: 991.98px){
  .sf-hero__card{ 
    padding: 1.5rem; 
  }
  
  .sf-amazon-btn-rectangular{
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .sf-product-card:hover{
    transform: translateY(-4px) scale(1.01);
  }
}

@media (max-width: 576px){
  .sf-hero__card{ 
    padding: 1.25rem; 
  }
  
  .sf-hero__title{
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
  
  .sf-amazon-btn-rectangular{
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .sf-product-card .card-footer{
    padding: 0.5rem 0.75rem;
  }
  
  .sf-affiliate-disclosure-enhanced{
    font-size: 13px;
  }
  
  .sf-hero__disclosure{
    padding-top: 0.5rem;
  }
}

.sf-animate-on-scroll{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sf-animate-on-scroll.sf-in-view{
  opacity: 1;
  transform: translateY(0);
}

.sf-animate-on-scroll.sf-delay-1{ transition-delay: 0.1s; }
.sf-animate-on-scroll.sf-delay-2{ transition-delay: 0.2s; }
.sf-animate-on-scroll.sf-delay-3{ transition-delay: 0.3s; }
.sf-animate-on-scroll.sf-delay-4{ transition-delay: 0.4s; }

.sf-affiliate-disclosure-bar{
  animation: sf-fade-in-up 0.4s ease-out;
  border-radius: var(--sf-radius);
  padding: 1rem 1.25rem;
}

.sf-affiliate-disclosure-enhanced{
  font-size: 14px;
  line-height: 1.6;
  color: var(--app-text, #0f172a);
}

.sf-hero__disclosure{
  padding-top: 0.75rem;
  border-top: 1px solid color-mix(in srgb, var(--app-primary, #0d6efd) 15%, transparent);
}

.sf-hero__disclosure p{
  margin: 0;
}
