/* =========================================================
   Abilene Auto Trader — Main Stylesheet
   Premium pink-themed automotive ecommerce
   Inspired by Fuzze layout patterns (original implementation)
   ========================================================= */

:root {
  --aat-pink: #E11D48;
  --aat-pink-dark: #BE123C;
  --aat-pink-light: #FB7185;
  --aat-pink-soft: #FFF1F2;
  --aat-pink-mid: #FECDD3;
  --aat-navy: #0B0D17;
  --aat-navy-2: #14161F;
  --aat-charcoal: #1C1C24;
  --aat-gray: #6B7280;
  --aat-gray-light: #9CA3AF;
  --aat-border: #E5E7EB;
  --aat-bg: #F8F8FA;
  --aat-white: #FFFFFF;
  --aat-success: #059669;
  --aat-error: #DC2626;
  --aat-font-heading: "Outfit", system-ui, sans-serif;
  --aat-font-body: "DM Sans", system-ui, sans-serif;
  --aat-radius: 4px;
  --aat-shadow: 0 10px 40px rgba(11, 13, 23, 0.08);
  --aat-shadow-lg: 0 20px 60px rgba(11, 13, 23, 0.12);
  --aat-transition: 0.35s ease;
  --aat-header-h: 90px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--aat-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--aat-gray);
  background: var(--aat-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--aat-font-heading);
  color: var(--aat-navy);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

a {
  color: var(--aat-pink);
  text-decoration: none;
  transition: color var(--aat-transition);
}

a:hover {
  color: var(--aat-pink-dark);
}

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

ul, ol {
  padding-left: 1.25rem;
}

.container {
  max-width: 1200px;
}

/* ---------- Utility ---------- */
.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 70px 0;
}

.bg-soft {
  background: var(--aat-bg);
}

.bg-pink-soft {
  background: var(--aat-pink-soft);
}

.bg-navy {
  background: var(--aat-navy);
  color: #fff;
}

.text-pink {
  color: var(--aat-pink) !important;
}

.text-navy {
  color: var(--aat-navy) !important;
}

.sub-title {
  display: inline-block;
  font-family: var(--aat-font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--aat-pink);
  margin-bottom: 12px;
}

.sub-title i {
  margin-right: 6px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-desc {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  color: var(--aat-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* ---------- Buttons ---------- */
.btn-aat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--aat-font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--aat-radius);
  border: 2px solid transparent;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
  transition: all var(--aat-transition);
  cursor: pointer;
  line-height: 1.2;
}

.btn-aat-primary {
  background: var(--aat-pink);
  color: #fff;
  border-color: var(--aat-pink);
}

.btn-aat-primary:hover {
  background: var(--aat-pink-dark);
  border-color: var(--aat-pink-dark);
  color: #fff;
}

.btn-aat-outline {
  background: transparent;
  color: var(--aat-pink);
  border-color: var(--aat-pink);
}

.btn-aat-outline:hover {
  background: var(--aat-pink);
  color: #fff;
}

.btn-aat-white {
  background: #fff;
  color: var(--aat-navy);
  border-color: #fff;
}

.btn-aat-white:hover {
  background: var(--aat-navy);
  border-color: var(--aat-navy);
  color: #fff;
}

.btn-aat-dark {
  background: var(--aat-navy);
  color: #fff;
  border-color: var(--aat-navy);
}

.btn-aat-dark:hover {
  background: var(--aat-pink);
  border-color: var(--aat-pink);
  color: #fff;
}

.btn-aat-sm {
  padding: 10px 22px;
  font-size: 12px;
}

.btn-aat-block {
  width: 100%;
  clip-path: none;
  border-radius: var(--aat-radius);
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--aat-navy);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  padding: 10px 0;
}

.topbar a {
  color: rgba(255, 255, 255, 0.75);
}

.topbar a:hover {
  color: var(--aat-pink-light);
}

.topbar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.topbar-list i {
  color: var(--aat-pink);
  margin-right: 6px;
}

.topbar-social {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: flex-end;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
}

.topbar-social a:hover {
  background: var(--aat-pink);
  color: #fff;
}

/* ---------- Header / Navbar ---------- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: #fff;
  box-shadow: 0 2px 20px rgba(11, 13, 23, 0.06);
}

.navbar-aat {
  padding: 12px 0;
  min-height: var(--aat-header-h);
}

.navbar-brand {
  padding: 0;
  margin-right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  height: 56px;
  width: auto;
  flex-shrink: 0;
}

.navbar-brand .brand-text {
  font-family: var(--aat-font-heading);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  color: var(--aat-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 11ch;
}

.navbar-brand:hover .brand-text {
  color: var(--aat-pink);
}

.navbar-aat .nav-link {
  font-family: var(--aat-font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--aat-navy) !important;
  padding: 0.75rem 1rem !important;
  position: relative;
}

.navbar-aat .nav-link:hover,
.navbar-aat .nav-link.active {
  color: var(--aat-pink) !important;
}

.navbar-aat .dropdown-menu {
  border: none;
  box-shadow: var(--aat-shadow);
  border-radius: var(--aat-radius);
  padding: 10px 0;
  min-width: 220px;
}

.navbar-aat .dropdown-item {
  font-size: 14px;
  padding: 10px 20px;
  color: var(--aat-navy);
  font-weight: 500;
}

.navbar-aat .dropdown-item:hover,
.navbar-aat .dropdown-item:focus {
  background: var(--aat-pink-soft);
  color: var(--aat-pink);
}

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

.cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aat-pink-soft);
  color: var(--aat-pink);
  font-size: 16px;
  border: none;
}

.cart-btn:hover {
  background: var(--aat-pink);
  color: #fff;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--aat-navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
}

.navbar-toggler {
  border: none;
  padding: 0.4rem;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  width: 24px;
  height: 2px;
  background: var(--aat-navy);
  display: block;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--aat-navy);
}

.navbar-toggler-icon::before { top: -7px; }
.navbar-toggler-icon::after { top: 7px; }

/* ---------- Page Banner ---------- */
.page-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 13, 23, 0.88), rgba(190, 18, 60, 0.45));
}

.page-banner-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.page-banner h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.breadcrumb-aat {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.breadcrumb-aat a {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-aat a:hover {
  color: #fff;
}

.breadcrumb-aat .sep {
  color: var(--aat-pink-light);
}

.breadcrumb-aat .current {
  color: #fff;
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11, 13, 23, 0.92) 0%, rgba(11, 13, 23, 0.7) 48%, rgba(225, 29, 72, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 640px;
  padding: 80px 0;
}

.hero-content .sub-title {
  color: var(--aat-pink-light);
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 1.25rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(225, 29, 72, 0.2));
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
  pointer-events: none;
}

/* ---------- Feature Cards (2x2) ---------- */
.feature-mini-card {
  background: #fff;
  padding: 28px 24px;
  box-shadow: var(--aat-shadow);
  height: 100%;
  transition: transform var(--aat-transition), box-shadow var(--aat-transition);
  border-left: 3px solid transparent;
}

.feature-mini-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--aat-shadow-lg);
  border-left-color: var(--aat-pink);
}

.feature-mini-card .icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--aat-pink-soft);
  color: var(--aat-pink);
  font-size: 22px;
  margin-bottom: 16px;
  border-radius: var(--aat-radius);
}

.feature-mini-card h5 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-mini-card p {
  margin: 0;
  font-size: 14px;
}

/* ---------- About Image Frame ---------- */
.about-image-wrap {
  position: relative;
  padding: 20px 0 20px 20px;
}

.about-image-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 80%;
  background: var(--aat-pink);
  z-index: 0;
}

.about-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--aat-shadow-lg);
}

.experience-badge {
  position: absolute;
  right: 10px;
  bottom: 40px;
  z-index: 2;
  background: var(--aat-navy);
  color: #fff;
  padding: 22px 20px;
  text-align: center;
  min-width: 120px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.experience-badge strong {
  display: block;
  font-family: var(--aat-font-heading);
  font-size: 2rem;
  color: var(--aat-pink-light);
  line-height: 1;
}

.experience-badge span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--aat-navy);
  font-weight: 500;
}

.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--aat-pink);
  font-size: 13px;
}

.feature-block {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.feature-block .icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--aat-pink);
  color: #fff;
  font-size: 22px;
  border-radius: var(--aat-radius);
}

.feature-block h5 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.feature-block p {
  margin: 0;
  font-size: 14px;
}

/* ---------- Service Cards ---------- */
.service-card {
  position: relative;
  margin-bottom: 30px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--aat-shadow);
  transition: transform var(--aat-transition);
  height: calc(100% - 30px);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card .thumb {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.service-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .thumb img {
  transform: scale(1.08);
}

.service-card .content {
  position: relative;
  margin: -40px 20px 20px;
  background: #fff;
  padding: 28px 22px 24px;
  box-shadow: var(--aat-shadow);
  text-align: center;
  z-index: 1;
}

.service-card .content .icon {
  width: 60px;
  height: 60px;
  margin: -48px auto 16px;
  display: grid;
  place-items: center;
  background: var(--aat-pink);
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.35);
}

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card h4 a {
  color: var(--aat-navy);
}

.service-card h4 a:hover {
  color: var(--aat-pink);
}

.service-card p {
  font-size: 14px;
  margin-bottom: 16px;
}

/* ---------- Product Cards ---------- */
.product-card {
  background: #fff;
  border: 1px solid var(--aat-border);
  padding: 16px;
  height: 100%;
  transition: box-shadow var(--aat-transition), border-color var(--aat-transition);
  position: relative;
}

.product-card:hover {
  box-shadow: var(--aat-shadow);
  border-color: transparent;
}

.product-card .thumb {
  background: var(--aat-bg);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}

.product-card .thumb img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .thumb img {
  transform: scale(1.06);
}

.product-card .rating {
  color: var(--aat-pink);
  font-size: 12px;
  margin-bottom: 6px;
}

.product-card h5 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.product-card h5 a {
  color: var(--aat-navy);
}

.product-card h5 a:hover {
  color: var(--aat-pink);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-price {
  font-family: var(--aat-font-heading);
  font-weight: 700;
  color: var(--aat-pink);
  font-size: 1.1rem;
}

.product-card .add-cart-btn {
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--aat-transition);
}

.product-card:hover .add-cart-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--aat-pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}

/* ---------- Process ---------- */
.process-item {
  text-align: center;
  position: relative;
  padding: 20px;
}

.process-item .number {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  background: var(--aat-pink-soft);
  color: var(--aat-pink);
  font-family: var(--aat-font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  border-radius: 50%;
  border: 2px dashed var(--aat-pink-mid);
}

.process-item h5 {
  margin-bottom: 10px;
}

/* ---------- Stats ---------- */
.stats-bar {
  background: var(--aat-pink);
  padding: 50px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  pointer-events: none;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.stat-item .icon {
  font-size: 2.2rem;
  opacity: 0.9;
}

.stat-item .count {
  font-family: var(--aat-font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.stat-item .label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.cta-banner {
  background: var(--aat-navy);
  padding: 55px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 35%;
  height: 100%;
  background: var(--aat-pink);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.95;
}

.cta-banner .row {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: #fff;
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

/* ---------- Testimonials ---------- */
.testimonial-box {
  background: #fff;
  padding: 40px;
  box-shadow: var(--aat-shadow);
  position: relative;
  height: 100%;
}

.testimonial-box .quote-icon {
  font-size: 2.5rem;
  color: var(--aat-pink);
  opacity: 0.3;
  margin-bottom: 16px;
}

.testimonial-box p {
  font-size: 1.05rem;
  color: var(--aat-navy);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--aat-pink);
}

.testimonial-author h6 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--aat-pink);
}

.testimonial-circle {
  width: min(360px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--aat-pink);
  margin: 0 auto;
  box-shadow: var(--aat-shadow-lg);
}

.testimonial-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- FAQ ---------- */
.faq-item {
  background: #fff;
  border: 1px solid var(--aat-border);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-item .faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 18px 50px 18px 20px;
  font-family: var(--aat-font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--aat-navy);
  position: relative;
  cursor: pointer;
}

.faq-item .faq-q::after {
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--aat-pink);
  font-size: 13px;
}

.faq-item.active .faq-q::after {
  content: "\f068";
}

.faq-item.active .faq-q {
  background: var(--aat-pink-soft);
  color: var(--aat-pink);
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 15px;
}

.faq-item.active .faq-a {
  display: block;
}

/* ---------- Blog Cards ---------- */
.blog-card {
  background: #fff;
  box-shadow: var(--aat-shadow);
  overflow: hidden;
  height: 100%;
  transition: transform var(--aat-transition);
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card .thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .thumb img {
  transform: scale(1.08);
}

.blog-date {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--aat-pink);
  color: #fff;
  padding: 8px 12px;
  text-align: center;
  font-family: var(--aat-font-heading);
  line-height: 1.1;
  min-width: 54px;
}

.blog-date .day {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
}

.blog-date .mon {
  font-size: 11px;
  text-transform: uppercase;
}

.blog-card .content {
  padding: 24px;
}

.blog-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--aat-gray-light);
}

.blog-card .meta i {
  color: var(--aat-pink);
  margin-right: 4px;
}

.blog-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.blog-card h4 a {
  color: var(--aat-navy);
}

.blog-card h4 a:hover {
  color: var(--aat-pink);
}

/* ---------- Gallery ---------- */
.gallery-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(225, 29, 72, 0.45);
  opacity: 0;
  transition: opacity var(--aat-transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ---------- Contact ---------- */
.contact-info-card {
  background: #fff;
  border: 1px solid var(--aat-border);
  padding: 28px 24px;
  height: 100%;
  transition: border-color var(--aat-transition), box-shadow var(--aat-transition);
}

.contact-info-card:hover {
  border-color: var(--aat-pink);
  box-shadow: var(--aat-shadow);
}

.contact-info-card .icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--aat-pink);
  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
  border-radius: var(--aat-radius);
}

.contact-info-card h5 {
  margin-bottom: 8px;
}

.contact-form-card {
  background: #fff;
  box-shadow: var(--aat-shadow-lg);
  padding: 40px 36px 50px;
  position: relative;
  margin-top: -80px;
  z-index: 2;
}

.form-control-aat,
.form-select-aat {
  width: 100%;
  border: 1px solid var(--aat-border);
  border-radius: var(--aat-radius);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--aat-navy);
  background: #fff;
  transition: border-color var(--aat-transition), box-shadow var(--aat-transition);
}

.form-control-aat:focus,
.form-select-aat:focus {
  outline: none;
  border-color: var(--aat-pink);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
}

.form-control-aat.is-invalid,
.form-select-aat.is-invalid {
  border-color: var(--aat-error);
}

.form-group-aat {
  margin-bottom: 18px;
  position: relative;
}

.form-group-aat label {
  display: block;
  font-weight: 600;
  color: var(--aat-navy);
  font-size: 14px;
  margin-bottom: 8px;
}

.invalid-feedback-aat {
  display: none;
  color: var(--aat-error);
  font-size: 13px;
  margin-top: 6px;
}

.form-group-aat.has-error .invalid-feedback-aat {
  display: block;
}

.form-success {
  display: none;
  background: #ECFDF5;
  color: var(--aat-success);
  border: 1px solid #A7F3D0;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-weight: 500;
}

.form-success.show {
  display: block;
}

.social-circle {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.social-circle a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aat-pink-soft);
  color: var(--aat-pink);
  font-size: 15px;
}

.social-circle a:hover {
  background: var(--aat-pink);
  color: #fff;
}

.map-wrap {
  height: 420px;
  background: var(--aat-bg);
  position: relative;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(30%);
}

/* ---------- Shop Sidebar ---------- */
.shop-widget {
  background: #fff;
  border: 1px solid var(--aat-border);
  padding: 24px;
  margin-bottom: 24px;
}

.shop-widget h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--aat-pink);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  border-bottom: 1px solid var(--aat-border);
}

.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: var(--aat-navy);
  font-weight: 500;
  font-size: 14px;
}

.category-list a:hover {
  color: var(--aat-pink);
}

.category-list a i {
  font-size: 11px;
  color: var(--aat-pink);
}

.popular-product {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.popular-product img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  background: var(--aat-bg);
}

.popular-product h6 {
  font-size: 14px;
  margin: 4px 0;
}

.popular-product .price {
  color: var(--aat-pink);
  font-weight: 700;
  font-size: 14px;
}

.shop-promo {
  position: relative;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}

.shop-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(11, 13, 23, 0.85));
}

.shop-promo-inner {
  position: relative;
  z-index: 1;
  color: #fff;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--aat-border);
}

.pagination-aat {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
  list-style: none;
  padding: 0;
}

.pagination-aat a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aat-bg);
  color: var(--aat-navy);
  font-weight: 600;
}

.pagination-aat a.active,
.pagination-aat a:hover {
  background: var(--aat-navy);
  color: #fff;
}

/* ---------- Product Detail ---------- */
.product-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
}

.product-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-thumbs button {
  border: 2px solid transparent;
  background: var(--aat-bg);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}

.product-thumbs button.active,
.product-thumbs button:hover {
  border-color: var(--aat-pink);
}

.product-thumbs img {
  width: 100%;
  height: 70px;
  object-fit: cover;
}

.product-main-img {
  background: var(--aat-bg);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 24px;
}

.product-main-img img {
  max-height: 100%;
  object-fit: contain;
}

.product-detail-info .price {
  font-family: var(--aat-font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--aat-pink);
  margin: 12px 0 18px;
}

.qty-wrap {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--aat-border);
  margin-right: 12px;
}

.qty-wrap button {
  width: 40px;
  height: 44px;
  border: none;
  background: var(--aat-bg);
  font-size: 16px;
  cursor: pointer;
  color: var(--aat-navy);
}

.qty-wrap input {
  width: 54px;
  height: 44px;
  border: none;
  text-align: center;
  font-weight: 600;
  color: var(--aat-navy);
}

.color-swatches {
  display: flex;
  gap: 10px;
  margin: 12px 0 20px;
}

.color-swatches button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--aat-border);
  cursor: pointer;
  padding: 0;
}

.color-swatches button.active {
  box-shadow: 0 0 0 2px var(--aat-pink);
}

.product-tabs {
  margin-top: 60px;
}

.product-tabs .nav-tabs {
  border-bottom: 2px solid var(--aat-border);
  gap: 8px;
}

.product-tabs .nav-link {
  border: none;
  color: var(--aat-gray);
  font-family: var(--aat-font-heading);
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 0;
  position: relative;
}

.product-tabs .nav-link.active {
  color: var(--aat-pink);
  background: transparent;
}

.product-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--aat-pink);
}

.product-tabs .tab-content {
  padding: 30px 0;
}

/* ---------- Cart ---------- */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  background: var(--aat-navy);
  color: #fff;
  padding: 14px 16px;
  font-family: var(--aat-font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--aat-border);
  vertical-align: middle;
  color: var(--aat-navy);
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-product img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  background: var(--aat-bg);
}

.cart-remove {
  color: var(--aat-error);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.cart-summary {
  background: var(--aat-bg);
  padding: 28px;
}

.cart-summary h4 {
  margin-bottom: 20px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--aat-border);
  color: var(--aat-navy);
}

.cart-summary-row.total {
  font-weight: 800;
  font-size: 1.15rem;
  border-bottom: none;
  color: var(--aat-pink);
  margin-top: 8px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.checkout-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: var(--aat-success);
  margin-bottom: 30px;
}

.checkout-success.show {
  display: block;
}

/* ---------- Team ---------- */
.team-card {
  text-align: center;
  margin-bottom: 30px;
}

.team-card .thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
}

.team-card .thumb img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.team-social {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: all var(--aat-transition);
  margin: 0;
  padding: 8px 12px;
  list-style: none;
  background: #fff;
  box-shadow: var(--aat-shadow);
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.team-social a {
  color: var(--aat-navy);
  font-size: 14px;
}

.team-social a:hover {
  color: var(--aat-pink);
}

.team-card h5 {
  margin-bottom: 4px;
}

.team-card span {
  color: var(--aat-pink);
  font-size: 14px;
}

/* ---------- Icon Feature Grid ---------- */
.icon-feature-card {
  background: #fff;
  text-align: center;
  padding: 40px 28px;
  box-shadow: var(--aat-shadow);
  height: 100%;
  transition: all var(--aat-transition);
}

.icon-feature-card:hover {
  background: var(--aat-pink);
  color: #fff;
  transform: translateY(-8px);
}

.icon-feature-card:hover h5,
.icon-feature-card:hover p {
  color: #fff;
}

.icon-feature-card .icon {
  font-size: 2.5rem;
  color: var(--aat-pink);
  margin-bottom: 18px;
  transition: color var(--aat-transition);
}

.icon-feature-card:hover .icon {
  color: #fff;
}

.icon-feature-card h5 {
  font-size: 1.15rem;
}

/* ---------- Newsletter ---------- */
.newsletter-section {
  background: linear-gradient(120deg, var(--aat-navy) 0%, #2a0a14 100%);
  padding: 70px 0;
  color: #fff;
}

.newsletter-section h2 {
  color: #fff;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 520px;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border: none;
  border-radius: var(--aat-radius);
}

/* ---------- Legal Content ---------- */
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
}

.legal-content p,
.legal-content li {
  margin-bottom: 0.85rem;
}

/* ---------- Video Section ---------- */
.video-section {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 23, 0.55);
}

.play-btn {
  position: relative;
  z-index: 1;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--aat-pink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  border: none;
  animation: pulse-pink 2s infinite;
  cursor: pointer;
}

@keyframes pulse-pink {
  0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.55); }
  70% { box-shadow: 0 0 0 22px rgba(225, 29, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

/* ---------- Footer ---------- */
.footer-contact-bar {
  background: var(--aat-pink);
  padding: 30px 0;
  color: #fff;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-contact-item .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 18px;
}

.footer-contact-item h6 {
  color: #fff;
  margin: 0 0 2px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.main-footer {
  background: var(--aat-navy);
  padding: 80px 0 40px;
  color: rgba(255, 255, 255, 0.7);
}

.main-footer h4 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.main-footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--aat-pink);
}

.footer-logo {
  height: 56px;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.footer-links a:hover {
  color: var(--aat-pink-light);
  padding-left: 4px;
}

.footer-news-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-news-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-news-item h6 {
  color: #fff;
  font-size: 14px;
  margin: 0 0 6px;
  line-height: 1.4;
}

.footer-news-item h6 a {
  color: #fff;
}

.footer-news-item h6 a:hover {
  color: var(--aat-pink-light);
}

.footer-news-item span {
  font-size: 12px;
  color: var(--aat-pink-light);
}

.footer-bottom {
  background: #05060b;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  margin-left: 16px;
}

.footer-bottom a:hover {
  color: var(--aat-pink-light);
}

.footer-social {
  display: flex;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
}

.footer-social a:hover {
  background: var(--aat-pink);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  background: var(--aat-pink);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 1030;
  opacity: 0;
  visibility: hidden;
  transition: all var(--aat-transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--aat-navy);
  color: #fff;
}

/* ---------- Why Choose Split ---------- */
.why-image {
  position: relative;
}

.why-image::before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 70%;
  height: 70%;
  background: var(--aat-pink);
  z-index: 0;
}

.why-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--aat-shadow-lg);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .section-padding { padding: 70px 0; }
  .navbar-aat .navbar-collapse {
    background: #fff;
    padding: 16px;
    box-shadow: var(--aat-shadow);
    margin-top: 12px;
  }
  .header-actions {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--aat-border);
  }
  .hero-section { min-height: auto; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-thumbs { flex-direction: row; }
  .product-thumbs img { height: 80px; width: 80px; }
  .cta-banner::after { display: none; }
  .contact-form-card { margin-top: 30px; }
  .product-card .add-cart-btn { opacity: 1; transform: none; }
  .stat-item { margin-bottom: 24px; justify-content: center; }
}

@media (max-width: 767.98px) {
  .section-padding { padding: 55px 0; }
  .topbar { display: none; }
  .navbar-brand img { height: 48px; }
  .navbar-brand .brand-text { font-size: 0.95rem; max-width: 10ch; }
  .page-banner { min-height: 240px; }
  .about-image-wrap { padding: 10px; }
  .experience-badge { right: 0; bottom: 10px; padding: 14px; }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td {
    display: block;
    width: 100%;
  }
  .cart-table tr {
    border: 1px solid var(--aat-border);
    margin-bottom: 16px;
    padding: 10px;
  }
  .cart-table td {
    border: none;
    padding: 8px 0;
    text-align: left !important;
  }
  .footer-contact-item { margin-bottom: 18px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn-aat { width: 100%; clip-path: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
