/* ==========================================================================
   Pillar Culture — Converty Streetwear & Sneaker Commerce Theme (Template 7)
   High-Converting COD Layout + Arabic RTL Precision
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Dynamic & Brand Colors */
  --primary-color: #101010;
  --primary-hover: #000000;
  --accent-color: #c8a84e;
  --accent-hover: #b3933b;
  --accent-soft: rgba(200, 168, 78, 0.12);
  --accent-glow: rgba(200, 168, 78, 0.25);

  /* Backgrounds & Surfaces (Converty Theme 7) */
  --bg-page: #ffffff;
  --bg-surface: #f9fafb;
  --bg-card: #ffffff;
  --bg-dark: #0a0a0a;

  /* Typography Colors */
  --text-main: #111827;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --text-white: #ffffff;

  /* Borders & Hairlines */
  --border-light: #e5e7eb;
  --border-medium: #d1d5db;
  --border-focus: #111827;

  /* Commerce Highlights */
  --discount-red: #ef4444;
  --discount-bg: rgba(239, 68, 68, 0.1);
  --stock-green: #10b981;
  --stock-bg: rgba(16, 185, 129, 0.1);

  /* Shapes & Radii */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-cta: 0 8px 24px rgba(16, 16, 16, 0.2);

  --font-family: 'Tajawal', 'Inter', -apple-system, sans-serif;
  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-page);
  color: var(--text-main);
  direction: rtl;
  text-align: right;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Top Announcement Banner (Converty Style) ---------- */
.announcement-bar {
  background: var(--primary-color);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.65rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.announcement-bar .badge-glow {
  background: var(--accent-color);
  color: #000;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 900;
}

/* ---------- Header / Navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  height: 72px;
  display: flex;
  align-items: center;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.header-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.header-badge {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.header-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--stock-green);
  border-radius: 50%;
}

/* ---------- Hero Banner (Converty Drops Style) ---------- */
.hero-converty {
  background: linear-gradient(180deg, #0a0a0a 0%, #171717 100%);
  color: #ffffff;
  padding: 4.5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--accent-color);
}

.hero-converty::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.hero-converty__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.hero-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 168, 78, 0.15);
  border: 1px solid rgba(200, 168, 78, 0.35);
  color: var(--accent-color);
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.hero-converty__title {
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.15rem;
  letter-spacing: -1px;
}

.hero-converty__title .accent-text {
  color: var(--accent-color);
  background: linear-gradient(90deg, #dfc067 0%, #c8a84e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-converty__desc {
  font-size: 1.15rem;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

.hero-converty__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--accent-color);
  color: #000000;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-pill);
  font-size: 1.05rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 20px var(--accent-glow);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  color: #fff;
}

/* ---------- Products Catalog Section ---------- */
.catalog-section {
  padding: 4.5rem 0;
  background: var(--bg-surface);
}

.catalog-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.catalog-head__tag {
  color: var(--accent-color);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
}

.catalog-head h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.catalog-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.25rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* ---------- Converty Product Card ---------- */
.converty-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.converty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-medium);
}

.converty-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: var(--discount-red);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.converty-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f3f4f6;
  overflow: hidden;
}

.converty-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.converty-card:hover .converty-card__img {
  transform: scale(1.05);
}

.converty-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.converty-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.45rem;
  line-height: 1.35;
}

.converty-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

.converty-card__price-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border-light);
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.price-current {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--primary-color);
  font-feature-settings: "tnum";
}

.price-compare {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: line-through;
}

.btn-card-order {
  background: var(--primary-color);
  color: #ffffff;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.btn-card-order:hover {
  background: var(--accent-color);
  color: #000000;
  transform: scale(1.04);
}

/* ==========================================================================
   Converty Product Detail & High-Converting Express Checkout (Template 7)
   ========================================================================== */
.product-detail-view {
  padding: 3rem 0 5rem;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Gallery (Converty Style) */
.gallery-wrapper {
  position: sticky;
  top: 92px;
}

.gallery-main-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  aspect-ratio: 1 / 1;
}

.gallery-main-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-thumbs-rail {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.thumb-card {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-light);
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  flex-shrink: 0;
  transition: var(--transition);
}

.thumb-card.active, .thumb-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info & Offer Card */
.product-sidebar-flow {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.product-meta-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}

.product-meta-title {
  font-size: 2.15rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.pricing-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.35rem;
  margin-bottom: 1.5rem;
}

.pricing-banner__left {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.main-price-val {
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--primary-color);
  font-feature-settings: "tnum";
}

.compare-price-val {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: line-through;
}

.discount-badge-pill {
  background: var(--discount-bg);
  color: var(--discount-red);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.product-description-text {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

/* Option: Size Pills (Converty Selector) */
.option-wrapper {
  margin-bottom: 1.5rem;
}

.option-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.option-heading label {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--text-main);
}

.option-heading .guide-link {
  font-size: 0.82rem;
  color: var(--accent-color);
  font-weight: 700;
}

.size-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.size-option-pill {
  min-width: 56px;
  height: 50px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  background: #ffffff;
  color: var(--text-main);
  font-weight: 900;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  padding: 0 0.85rem;
}

.size-option-pill:hover {
  border-color: var(--primary-color);
}

.size-option-pill.active {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Quantity Control */
.quantity-control-group {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: #ffffff;
}

.qty-stepper-btn {
  width: 46px;
  height: 46px;
  border: none;
  background: var(--bg-surface);
  color: var(--text-main);
  font-size: 1.35rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-stepper-btn:hover {
  background: var(--border-light);
}

.qty-display-val {
  width: 58px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  border-left: 1.5px solid var(--border-light);
  border-right: 1.5px solid var(--border-light);
  font-feature-settings: "tnum";
}

/* Express COD Checkout Card (Converty Box) */
.express-checkout-card {
  background: #ffffff;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-cta);
}

.checkout-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.checkout-card-title {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cod-badge {
  background: var(--stock-bg);
  color: var(--stock-green);
  font-weight: 900;
  font-size: 0.82rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

/* Form Inputs */
.form-input-group {
  margin-bottom: 1.25rem;
}

.form-input-group label {
  display: block;
  font-size: 0.92rem;
  font-weight: 900;
  margin-bottom: 0.45rem;
  color: var(--text-main);
}

.form-input-group label .req {
  color: var(--discount-red);
}

.custom-input {
  width: 100%;
  height: 52px;
  padding: 0 1.25rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #ffffff;
  font-size: 1rem;
  color: var(--text-main);
  transition: var(--transition);
}

textarea.custom-input {
  height: auto;
  padding: 0.85rem 1.25rem;
  resize: vertical;
  min-height: 80px;
}

.custom-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(16, 16, 16, 0.08);
}

select.custom-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-5-5h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1.15rem center;
  padding-left: 2.75rem;
  cursor: pointer;
}

/* Order Live Summary Box */
.order-summary-box {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  border: 1px solid var(--border-light);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  font-feature-settings: "tnum";
}

.summary-row.total-row {
  border-top: 1.5px solid var(--border-light);
  margin-top: 0.65rem;
  padding-top: 0.75rem;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--primary-color);
}

.total-row .grand-total {
  color: var(--primary-color);
}

/* High-Converting Main Order Button */
.btn-converty-submit {
  width: 100%;
  height: 64px;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1.3rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  transition: var(--transition);
}

.btn-converty-submit:hover {
  background: var(--accent-color);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--accent-glow);
}

.btn-converty-submit small {
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.92;
}

.btn-converty-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Trust Badges Bar (Converty Value Props) */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-light);
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.trust-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  border: 1px solid var(--border-light);
}

.trust-badge-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.trust-badge-item h4 {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--text-main);
}

.trust-badge-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* FAQ Accordion (Converty Style) */
.faq-section {
  margin-top: 2rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.faq-title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  color: var(--text-main);
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  line-height: 1.6;
}

/* Sticky Mobile Order Bar */
.sticky-mobile-order-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-light);
  padding: 0.85rem 1.25rem;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.sticky-mobile-order-bar .btn-sticky-buy {
  width: 100%;
  height: 52px;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1.15rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ---------- Order Success Confirmation Receipt ---------- */
.success-box {
  max-width: 620px;
  margin: 4.5rem auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 3.5rem 2.25rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.success-icon-badge {
  width: 88px;
  height: 88px;
  background: var(--stock-bg);
  color: var(--stock-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
}

.success-icon-badge svg {
  width: 46px;
  height: 46px;
}

.success-box h1 {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.success-box p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.order-pill-code {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-surface);
  border: 1.5px dashed var(--border-medium);
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-pill);
  font-family: monospace;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 2.5rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #111827;
  color: #ffffff;
  padding: 4rem 0 2.5rem;
  margin-top: auto;
  border-top: 1px solid #1f2937;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #1f2937;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-brand span {
  font-size: 1.35rem;
  font-weight: 900;
}

.social-bar {
  display: flex;
  gap: 0.85rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1f2937;
  border: 1px solid #374151;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--accent-color);
  color: #000;
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.92rem;
  color: #9ca3af;
}

/* Floating WhatsApp Button */
.wa-floating-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 99;
  width: 62px;
  height: 62px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.wa-floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.wa-floating-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Responsive */
@media (max-width: 900px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .gallery-wrapper {
    position: static;
  }
  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .sticky-mobile-order-bar {
    display: block;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .express-checkout-card {
    padding: 1.5rem;
  }
  .wa-floating-btn {
    bottom: 4.75rem;
    left: 1.25rem;
    width: 52px;
    height: 52px;
  }
}
