/* ============================================================
   Ironcross Automotives — Main Stylesheet
   Premium automotive ecommerce · Pink accent theme
   ============================================================ */

:root {
  --pink: #E91E63;
  --pink-light: #FF4DA6;
  --pink-dark: #C2185B;
  --pink-soft: rgba(233, 30, 99, 0.12);
  --pink-glow: rgba(233, 30, 99, 0.35);
  --dark: #0b0b0d;
  --dark-2: #141417;
  --dark-3: #1c1c21;
  --dark-4: #2a2a32;
  --gray: #8b8b97;
  --gray-light: #b8b8c4;
  --light: #f5f5f8;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --border-dark: rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 50px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.1);
  --font: 'Outfit', system-ui, sans-serif;
  --font-display: 'Syne', 'Outfit', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 90px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a45;
  background: var(--white);
  overflow-x: hidden;
  margin: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin: 0 0 0.75rem;
}
p { margin: 0 0 1rem; color: var(--gray); }
.container { max-width: 1200px; }

/* ---- Utilities ---- */
.text-pink { color: var(--pink) !important; }
.bg-pink { background: var(--pink) !important; }
.bg-dark { background: var(--dark) !important; }
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 70px 0; }

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

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

.section-desc {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Buttons ---- */
.btn {
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  border: 2px solid transparent;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  line-height: 1.2;
}

.btn-pink {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn-pink:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--pink-glow);
}

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

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

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

.btn-sm { padding: 10px 22px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }
.btn-icon-round {
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  transition: all var(--transition);
  padding: 18px 0;
}

.site-header.scrolled {
  background: rgba(11, 11, 13, 0.95);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(20, 20, 23, 0.75);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  border: 1px solid var(--border);
}

.site-header.scrolled .header-inner {
  background: transparent;
  border-color: transparent;
  padding: 4px 8px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img, .logo svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.2px;
}
.logo-text strong {
  display: block;
  font-weight: 700;
  color: var(--pink-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
}
.main-nav a:hover,
.main-nav a.active { color: var(--pink); }

.main-nav .dropdown {
  position: relative;
}
.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 0;
  box-shadow: var(--shadow);
  z-index: 100;
}
.main-nav .dropdown:hover .dropdown-menu,
.main-nav .dropdown:focus-within .dropdown-menu {
  display: block;
}
.main-nav .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--gray-light);
  font-size: 13px;
}
.main-nav .dropdown-menu a:hover {
  color: var(--pink);
  background: var(--pink-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-actions .social-links {
  display: flex;
  gap: 6px;
}
.header-actions .social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
}
.header-actions .social-links a:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.cart-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cart-btn:hover { background: var(--pink); border-color: var(--pink); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: var(--pink);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink);
  border: none;
  color: white;
  font-size: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--dark);
  z-index: 1100;
  padding: 80px 30px 40px;
  transition: right var(--transition);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}
.mobile-nav a {
  display: block;
  color: white;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.mobile-nav a:hover { color: var(--pink); }
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1090;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.nav-overlay.show { opacity: 1; visibility: visible; }

@media (max-width: 1199px) {
  .main-nav, .header-actions .social-links { display: none; }
  .menu-toggle { display: flex; }
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background: var(--dark);
  overflow: hidden;
  border-radius: 0 0 40% 0 / 0 0 80px 0;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, var(--pink-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(233,30,99,0.15) 0%, transparent 40%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  color: white;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-light);
  font-size: 14px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray-light); }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb .sep { color: var(--pink); }
.page-hero-img {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: min(480px, 40vw);
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
@media (max-width: 991px) {
  .page-hero-img { display: none; }
  .page-hero { border-radius: 0 0 60px 0; padding: 150px 0 80px; }
}

/* ---- Home Hero ---- */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding: 140px 0 80px;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, var(--pink-glow) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 80%, rgba(233,30,99,0.2) 0%, transparent 40%);
}
.home-hero .container { position: relative; z-index: 2; }
.hero-content h1 {
  color: white;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  margin-bottom: 1.25rem;
}
.hero-content h1 span { color: var(--pink); }
.hero-content p {
  color: var(--gray-light);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.hero-play {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px var(--pink-glow);
  transition: transform var(--transition);
}
.hero-play:hover { transform: scale(1.08); }

/* ---- Stats Bar ---- */
.stats-bar {
  position: relative;
  z-index: 10;
  margin-top: -50px;
}
.stats-inner {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
  padding: 10px;
  border-right: 1px solid var(--border-dark);
}
.stat-item:last-child { border-right: none; }
.stat-item .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
}
.stat-item h3 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.stat-item p { margin: 0; font-size: 14px; }
@media (max-width: 767px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid var(--border-dark); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
}

/* ---- Feature Cards ---- */
.feature-card {
  background: white;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition);
  height: 100%;
}
.feature-card:hover {
  border-color: var(--pink);
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}
.feature-card .icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 22px;
  transition: transform var(--transition);
}
.feature-card:hover .icon { transform: rotateY(180deg); }
.feature-card h4 { font-size: 1.25rem; margin-bottom: 12px; }

/* ---- About ---- */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--dark);
  font-weight: 500;
}
.check-list li i {
  color: var(--pink);
  margin-top: 4px;
  flex-shrink: 0;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--dark);
  color: white;
  padding: 24px;
  border-radius: var(--radius-sm);
  max-width: 200px;
  border-left: 4px solid var(--pink);
}
.about-badge h5 { color: white; margin-bottom: 6px; font-size: 1rem; }
.about-badge p { margin: 0; font-size: 13px; color: var(--gray-light); }
.about-features-strip {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 30px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-features-strip .item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
}
.about-features-strip .item i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-features-strip .item h6 { color: white; margin: 0 0 2px; font-size: 15px; }
.about-features-strip .item span { font-size: 12px; color: var(--gray); }
@media (max-width: 767px) {
  .about-features-strip { grid-template-columns: 1fr; }
  .about-badge { left: 12px; right: 12px; max-width: none; }
}

/* ---- Service Cards ---- */
.service-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  background: var(--dark);
  transform: translateY(-6px);
}
.service-card:hover h4,
.service-card:hover p,
.service-card:hover .read-more { color: white; }
.service-card:hover .read-more { color: var(--pink-light); }
.service-card .icon {
  font-size: 40px;
  color: var(--pink);
  margin-bottom: 20px;
}
.service-card h4 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 16px;
}
.service-img-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 320px;
}
.service-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.service-img-card:hover img { transform: scale(1.08); }
.service-img-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,13,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.service-img-card h4 { color: white; }
.service-img-card .read-more { color: var(--pink-light); }

/* ---- Product Cards ---- */
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #eee;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
  border-color: transparent;
}
.product-card .img-box {
  background: var(--light);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.product-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform var(--transition);
}
.product-card:hover .img-box img { transform: scale(1.05); }
.product-card .body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card .rating {
  color: var(--pink);
  font-size: 13px;
  margin-bottom: 8px;
}
.product-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.product-card h4 a:hover { color: var(--pink); }
.product-card .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pink);
  font-family: var(--font-display);
  margin-bottom: 16px;
}
.product-card .btn { margin-top: auto; }

/* ---- Process ---- */
.process-step {
  text-align: center;
  position: relative;
  padding: 20px;
}
.process-step .num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.process-step h4 { font-size: 1.15rem; margin-bottom: 10px; }

/* ---- FAQ Accordion ---- */
.faq-acc .accordion-item {
  background: var(--light);
  border: none;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-acc .accordion-button {
  background: var(--light);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  box-shadow: none !important;
  padding: 20px 24px;
}
.faq-acc .accordion-button:not(.collapsed) {
  background: var(--light);
  color: var(--pink);
}
.faq-acc .accordion-button::after {
  background-image: none;
  content: '+';
  font-size: 22px;
  font-weight: 400;
  width: auto;
  height: auto;
  color: var(--pink);
  transform: none;
}
.faq-acc .accordion-button:not(.collapsed)::after {
  content: '−';
  transform: none;
}
.faq-acc .accordion-body {
  padding: 0 24px 20px;
  color: var(--gray);
}

/* ---- Testimonials ---- */
.testimonial-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, var(--pink-glow) 0%, transparent 50%);
}
.testimonial-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  height: 100%;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
}
.testimonial-card .stars { color: var(--pink); margin-bottom: 16px; }
.testimonial-card p {
  color: var(--gray-light);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card .author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink);
}
.testimonial-card .author h5 {
  color: white;
  margin: 0 0 2px;
  font-size: 1rem;
}
.testimonial-card .author span {
  font-size: 13px;
  color: var(--gray);
}

/* ---- Team ---- */
.team-card {
  text-align: center;
}
.team-card .img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.team-card .img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition), transform var(--transition);
}
.team-card:hover .img-wrap img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.team-card h4 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card span { color: var(--pink); font-size: 14px; font-weight: 500; }

/* ---- Pricing ---- */
.pricing-toggle {
  display: inline-flex;
  background: var(--light);
  border-radius: var(--radius-pill);
  padding: 6px;
  margin-bottom: 40px;
}
.pricing-toggle button {
  border: none;
  background: transparent;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--gray);
}
.pricing-toggle button.active {
  background: var(--pink);
  color: white;
}
.pricing-card {
  background: white;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 40px 32px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--pink);
  box-shadow: 0 20px 50px var(--pink-glow);
  transform: scale(1.04);
}
.pricing-card .plan-name {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.pricing-card .price-tag {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  margin: 20px 0;
}
.pricing-card .price-tag span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
}
.pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-size: 14px;
}
.pricing-card ul li i { color: var(--pink); }
.pricing-card .btn { margin-top: 28px; width: 100%; justify-content: center; }
@media (max-width: 991px) {
  .pricing-card.featured { transform: none; }
}

/* ---- Blog Cards ---- */
.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--transition);
}
.blog-card:hover { transform: translateY(-6px); }
.blog-card .img-wrap {
  position: relative;
  overflow: hidden;
}
.blog-card .img-wrap img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s;
}
.blog-card:hover .img-wrap img { transform: scale(1.06); }
.blog-card .date-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}
.blog-card .date-badge strong {
  font-size: 18px;
  display: block;
}
.blog-card .body { padding: 28px; }
.blog-card .meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
}
.blog-card .meta i { color: var(--pink); margin-right: 4px; }
.blog-card h4 {
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.blog-card h4 a:hover { color: var(--pink); }
.blog-card .read-more {
  color: var(--pink);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---- CTA / Newsletter Banner ---- */
.cta-banner {
  position: relative;
  background: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 60px 50px;
  margin-top: -80px;
  z-index: 5;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink-glow) 0%, transparent 50%, rgba(30,30,60,0.4) 100%);
}
.cta-banner .row { position: relative; z-index: 2; align-items: center; }
.cta-banner h2 {
  color: white;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 24px;
}
.cta-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 480px;
}
.cta-form input {
  flex: 1;
  min-width: 200px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  color: white;
  outline: none;
  font-size: 14px;
}
.cta-form input::placeholder { color: var(--gray); }
.cta-form input:focus { border-color: var(--pink); }
.cta-person {
  position: relative;
  text-align: center;
}
.cta-person img {
  max-height: 320px;
  margin: -80px auto 0;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
}
@media (max-width: 991px) {
  .cta-banner { padding: 40px 28px; margin-top: -40px; }
  .cta-person img { max-height: 240px; margin-top: 20px; }
}

/* ---- Footer ---- */
.site-footer {
  background: var(--dark);
  padding: 140px 0 0;
  color: var(--gray-light);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-logo img {
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.footer-logo .logo-text {
  font-size: 1.15rem;
}
.footer-about p { font-size: 14px; margin-bottom: 20px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-contact li i {
  color: var(--pink);
  margin-top: 3px;
}
.footer-widget h5 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--gray-light);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '»';
  color: var(--pink);
}
.footer-links a:hover { color: var(--pink); }
.footer-post {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-post img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.footer-post .info span {
  font-size: 12px;
  color: var(--pink);
  display: block;
  margin-bottom: 4px;
}
.footer-post .info a {
  color: white;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.footer-post .info a:hover { color: var(--pink); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}
.footer-social a:hover {
  background: var(--pink);
  border-color: var(--pink);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom-links a { color: var(--gray-light); }
.footer-bottom-links a:hover { color: var(--pink); }

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-control, .form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e8;
  border-radius: var(--radius-sm);
  background: var(--light);
  font-family: var(--font);
  font-size: 15px;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--pink);
  background: white;
  box-shadow: 0 0 0 3px var(--pink-soft);
}
.form-control.is-invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.invalid-feedback {
  display: none;
  color: #dc3545;
  font-size: 13px;
  margin-top: 6px;
}
.form-control.is-invalid ~ .invalid-feedback,
.form-select.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-feedback {
  display: block;
}
.form-check-input.is-invalid {
  border-color: #dc3545;
}
.form-success {
  display: none;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 500;
}
.form-success.show { display: block; }
textarea.form-control { min-height: 140px; resize: vertical; }

/* ---- Contact ---- */
.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 40px;
  height: 100%;
  color: white;
}
.contact-info-card h3 { color: white; margin-bottom: 16px; }
.contact-info-card p { color: var(--gray-light); }
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-item .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item h6 { color: white; margin: 0 0 4px; }
.contact-info-item span, .contact-info-item a {
  color: var(--gray-light);
  font-size: 14px;
}
.contact-info-item a:hover { color: var(--pink); }

/* ---- Cart ---- */
.cart-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}
.cart-table th {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}
.cart-table td {
  background: var(--light);
  padding: 16px;
  vertical-align: middle;
}
.cart-table tr td:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.cart-table tr td:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.cart-product {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-product img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}
.cart-product h5 { font-size: 1rem; margin: 0; }
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e0e0e8;
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.qty-control button {
  width: 36px;
  height: 36px;
  border: none;
  background: white;
  cursor: pointer;
  font-size: 16px;
  color: var(--dark);
}
.qty-control button:hover { color: var(--pink); }
.qty-control input {
  width: 48px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 600;
  outline: none;
}
.cart-summary {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 36px;
  color: white;
  position: sticky;
  top: 120px;
}
.cart-summary h4 { color: white; margin-bottom: 24px; }
.cart-summary .row-line {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.cart-summary .row-line.total {
  border: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pink);
  margin-top: 8px;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
}
.cart-empty i {
  font-size: 64px;
  color: var(--pink);
  margin-bottom: 20px;
}
.remove-btn {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  font-size: 18px;
}
.remove-btn:hover { color: var(--pink-dark); }

/* ---- Shop Sidebar ---- */
.shop-sidebar .widget {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}
.shop-sidebar .widget h5 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink);
  display: inline-block;
}
.shop-sidebar .search-box {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius-pill);
  border: 1px solid #e0e0e8;
  background: white;
}
.shop-sidebar .search-box input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 12px 16px;
  outline: none;
  background: transparent;
  font-size: 14px;
}
.shop-sidebar .search-box button {
  flex: 0 0 48px;
  width: 48px;
  border: none;
  border-radius: 0;
  background: var(--pink);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.shop-sidebar .search-box button:hover {
  background: var(--pink-dark);
}
.cat-list li { margin-bottom: 10px; }
.cat-list a {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--dark);
}
.cat-list a:hover { color: var(--pink); }
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-cloud a {
  padding: 6px 14px;
  background: white;
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--dark);
  border: 1px solid #e0e0e8;
}
.tag-cloud a:hover {
  background: var(--pink);
  color: white;
  border-color: var(--pink);
}

/* ---- Product Detail ---- */
.product-gallery img {
  width: 100%;
  border-radius: var(--radius);
  background: var(--light);
  aspect-ratio: 1;
  object-fit: cover;
}
.product-info .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink);
  font-family: var(--font-display);
  margin: 12px 0;
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
  font-size: 14px;
}
.product-meta strong { color: var(--dark); }
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 28px 0;
}
.share-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
.share-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e0e0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}
.share-links a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: white;
}
.product-tabs {
  margin-top: 60px;
}
.product-tabs .nav-tabs {
  border-bottom: 2px solid #eee;
  gap: 8px;
}
.product-tabs .nav-link {
  border: none;
  color: var(--gray);
  font-weight: 600;
  font-family: var(--font-display);
  padding: 14px 24px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.product-tabs .nav-link.active {
  color: var(--pink);
  background: transparent;
  border-bottom: 3px solid var(--pink);
}
.review-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}
.review-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.review-item .stars { color: var(--pink); font-size: 13px; }

/* ---- Gallery ---- */
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ---- Promo Boxes ---- */
.promo-box {
  border-radius: var(--radius);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-box.dark {
  background: var(--dark);
  color: white;
}
.promo-box.dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, var(--pink-glow), transparent 60%);
}
.promo-box.light {
  background: var(--light);
}
.promo-box h3 { position: relative; z-index: 1; }
.promo-box.dark h3 { color: white; }
.promo-box p { position: relative; z-index: 1; }
.promo-box .btn { position: relative; z-index: 1; align-self: flex-start; margin-top: 16px; }

/* ---- Legal Pages ---- */
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.legal-content p, .legal-content li {
  color: var(--gray);
  margin-bottom: 1rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.legal-content ul li { margin-bottom: 0.5rem; }
.legal-content a { color: var(--pink); }

/* ---- Toast ---- */
.ica-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--dark);
  color: white;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--pink);
  box-shadow: var(--shadow);
  z-index: 9999;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.4s;
  max-width: 360px;
}
.ica-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ---- Benefits list ---- */
.benefits-grid .benefit-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.benefits-grid .benefit-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.benefits-grid .benefit-item h5 { font-size: 1rem; margin-bottom: 4px; }

/* ---- Related ---- */
.related-section { background: var(--light); }

/* ---- Back to top ---- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 8px 24px var(--pink-glow);
  transition: transform var(--transition);
}
.back-to-top:hover { transform: translateY(-4px); }
.back-to-top.show { display: flex; }

/* ---- Checkout success ---- */
.checkout-success {
  display: none;
  text-align: center;
  padding: 60px 30px;
  background: var(--light);
  border-radius: var(--radius);
}
.checkout-success.show { display: block; }
.checkout-success i {
  font-size: 72px;
  color: var(--pink);
  margin-bottom: 24px;
}
.checkout-success h2 { margin-bottom: 16px; }

/* ---- Accessibility ---- */
:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ---- Partners strip ---- */
.partners-strip {
  background: var(--dark);
  padding: 40px 0;
}
.partners-strip .partner {
  opacity: 0.4;
  filter: grayscale(1);
  transition: all var(--transition);
  text-align: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
}
.partners-strip .partner:hover {
  opacity: 1;
  filter: none;
  color: var(--pink);
}

/* ---- Misc ---- */
.img-rounded { border-radius: var(--radius); }
.text-white-50 { color: rgba(255,255,255,0.6) !important; }

@media (max-width: 575px) {
  .section-padding { padding: 60px 0; }
  .btn { padding: 12px 24px; font-size: 13px; }
  .logo-text { font-size: 0.9rem; }
  .logo img { width: 40px; height: 40px; }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td {
    display: block;
    width: 100%;
  }
  .cart-table tr {
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    overflow: hidden;
  }
  .cart-table td {
    border-radius: 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cart-table td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--gray);
  }
}
