/* vCard43 - Fresh Market Premium Design System */
/* Updated with vibrant organic grocery theme */

/* Custom Properties - Fresh Organic Market Theme */
:root {
  /* Primary - Vibrant Fresh Green */
  --primary: #22c55e;
  --primary-hover: #16a34a;
  --primary-light: #dcfce7;
  --primary-lighter: #f0fdf4;
  --primary-dark: #15803d;
  
  /* Secondary - Warm Earth Tones */
  --secondary: #fefce8;
  --secondary-dark: #fef08a;
  
  /* Accent - Fresh Orange/Coral */
  --accent: #f97316;
  --accent-light: #fff7ed;
  --accent-dark: #ea580c;
  
  /* Warm Brown for organic feel */
  --earth: #78716c;
  --earth-light: #f5f5f4;
  
  /* Text Colors */
  --text-primary: #1a1a1a;
  --text-secondary: #525252;
  --text-muted: #a3a3a3;
  
  /* Borders & Backgrounds */
  --border: #e5e5e5;
  --border-light: #f5f5f5;
  --background: #ffffff;
  --background-alt: #fafafa;
  --background-warm: #fffbeb;
  --card-bg: #ffffff;
  
  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.03);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.05), 0 1px 2px -1px rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.07);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.08);
  --shadow-green: 0 4px 14px 0 rgba(34, 197, 94, 0.25);
  --shadow-green-lg: 0 8px 25px -5px rgba(34, 197, 94, 0.35);
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

/* Base Styles */
.vcard43 * {
  box-sizing: border-box;
}

/* Chat Colors */
.chat-toggle, .chat-header, .send-btn, .default-prompt-btn-disabled{
  background: var(--primary) !important;
}

/* Page Loader Start */
#template-page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--background, #ffffff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
#template-page-loader.template-loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.template-loader-spinner {
    width: 52px;
    height: 52px;
    border: 4px solid var(--primary-light, #dcfce7);
    border-top-color: var(--primary-dark, #15803d);
    border-radius: 50%;
    animation: template-spin 0.75s linear infinite;
}
.template-loader-text {
    font-family: 'Poppins', Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-dark, #15803d);
    letter-spacing: 0.02em;
}
@keyframes template-spin {
    to { transform: rotate(360deg); }
}
/* Page Loader End */

.vcard43 {
  font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--background);
}

/* Typography */
.vcard43 .font-heading {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.vcard43 .font-display {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Container */
.vcard43 .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .vcard43 .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .vcard43 .container {
    padding: 0 2rem;
  }
}

/* Section Spacing */
.vcard43 section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .vcard43 section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .vcard43 section {
    padding: 6rem 0;
  }
}

/* Section Headers - Fresh Style */
.vcard43 .section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .vcard43 .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
}

.vcard43 .section-header-content {
  flex: 1;
}

.vcard43 .section-overline {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
}

.vcard43 .section-overline svg {
  width: 1rem;
  height: 1rem;
}

.vcard43 .section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .vcard43 .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .vcard43 .section-title {
    font-size: 3rem;
  }
}

.vcard43 .section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .vcard43 .section-subtitle {
    font-size: 1.125rem;
  }
}

/* ================================ */
/* HEADER - Fresh Navigation */
/* ================================ */

.vcard43 .header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

.vcard43 .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 1rem;
}

@media (min-width: 768px) {
  .vcard43 .header-container {
    height: 4.5rem;
  }
}

.vcard43 .header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.vcard43 .header-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #10b981 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.125rem;
  box-shadow: var(--shadow-green);
}

.vcard43 .header-logo-text {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.vcard43 .header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .vcard43 .header-nav {
    display: flex;
  }
}

.vcard43 .header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

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

.vcard43 .header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.vcard43 .header-nav a:hover::after {
  width: 100%;
}

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

/* ================================ */
/* HERO SECTION - Fresh Market Style */
/* ================================ */

.vcard43 .hero-section {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #fef9c3 100%);
}

@media (min-width: 768px) {
  .vcard43 .hero-section {
    min-height: 560px;
  }
}

@media (min-width: 1024px) {
  .vcard43 .hero-section {
    min-height: 640px;
  }
}

.vcard43 .hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vcard43 .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.5) 100%);
}

.vcard43 .hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .vcard43 .hero-content {
    padding: 5rem 0;
  }
}

.vcard43 .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
}

.vcard43 .hero-badge svg {
  width: 1rem;
  height: 1rem;
  color: #fbbf24;
}

.vcard43 .hero-title {
  font-size: clamp(2.25rem, 7vw, 1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 1.25rem;
}

.vcard43 .hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .vcard43 .hero-subtitle {
    font-size: 1.25rem;
  }
}

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

.vcard43 .hero-cta-primary {
  background: var(--background);
  color: var(--text-primary);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  transition: all 0.25s ease;
}

.vcard43 .hero-cta-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.vcard43 .hero-cta-icon {
  color: var(--primary);
}

.vcard43 .hero-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.vcard43 .hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.vcard43 .hero-scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ================================ */
/* VERIFIED BADGE & STATUS INDICATORS */
/* ================================ */

.vcard43 .verified-badge-icon {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  display: inline;
  margin-left: 0.25rem;
  vertical-align: middle;
}

.vcard43 .status-indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--radius-full);
}

.vcard43 .status-open {
  background-color: var(--primary);
  animation: pulse 2s infinite;
  margin-right: 5px;
}

.vcard43 .status-closed {
  background-color: #dc2626;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ================================ */
/* PROFILE SECTION - Store Info Card */
/* ================================ */

.vcard43 .profile-section {
  position: relative;
  z-index: 10;
  margin-top: -4rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .vcard43 .profile-section {
    margin-top: -5rem;
  }
}

.vcard43 .profile-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

@media (min-width: 768px) {
  .vcard43 .profile-card {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .vcard43 .profile-card {
    padding: 3rem;
  }
}

.vcard43 .profile-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .vcard43 .profile-header {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}

.vcard43 .profile-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  box-shadow: var(--shadow-md);
  border: 3px solid white;
}

@media (min-width: 768px) {
  .vcard43 .profile-avatar {
    width: 6rem;
    height: 6rem;
  }
}

.vcard43 .profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vcard43 .profile-info h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .vcard43 .profile-info h1 {
    font-size: 1.75rem;
  }
}

.vcard43 .profile-info .occupation {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.vcard43 .profile-info .description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* Stats Bar - Fresh Gradient */
.vcard43 .stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: linear-gradient(135deg, var(--primary-lighter) 0%, #d1fae5 50%, #fef9c3 100%);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

@media (min-width: 640px) {
  .vcard43 .stats-bar {
    grid-template-columns: repeat(4, 1fr);
    padding: 2rem 2.5rem;
  }
}

.vcard43 .stat-item {
  text-align: center;
  padding: 0.75rem;
  position: relative;
}

.vcard43 .stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: rgba(34, 197, 94, 0.25);
  display: none;
}

@media (min-width: 640px) {
  .vcard43 .stat-item:not(:last-child)::after {
    display: block;
  }
}

.vcard43 .stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (min-width: 768px) {
  .vcard43 .stat-value {
    font-size: 2.25rem;
  }
}

.vcard43 .stat-label {
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 0.375rem;
}

/* ================================ */
/* PRODUCT CARDS - Fresh Design */
/* ================================ */

.vcard43 .products-section {
  background: var(--background-alt);
}

.vcard43 .product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .vcard43 .product-grid {
    gap: 1.25rem;
  }
}

@media (min-width: 768px) {
  .vcard43 .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .vcard43 .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vcard43 .product-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vcard43 .product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--primary);
}

.vcard43 .product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background-alt) 0%, #f0f0f0 100%);
}

.vcard43 .product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vcard43 .product-card:hover .product-card-image img {
  transform: scale(1.1);
}

.vcard43 .product-card-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.vcard43 .product-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (min-width: 640px) {
  .vcard43 .product-card-body {
    padding: 1.25rem;
  }
}

.vcard43 .product-category {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.vcard43 .product-name {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.4;
  margin-bottom: 0.625rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6rem;
  color: var(--text-primary);
}

@media (min-width: 640px) {
  .vcard43 .product-name {
    font-size: 1rem;
    min-height: 2.8rem;
  }
}

.vcard43 .product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.vcard43 .product-rating-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-left: 0.375rem;
}

.vcard43 .product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.vcard43 .product-price-current {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (min-width: 640px) {
  .vcard43 .product-price-current {
    font-size: 1.375rem;
  }
}

.vcard43 .product-price-original {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.vcard43 .product-unit {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ================================ */
/* BADGES - Fresh Style */
/* ================================ */

.vcard43 .badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
}

@media (min-width: 640px) {
  .vcard43 .badge {
    font-size: 0.75rem;
    padding: 0.4375rem 0.875rem;
  }
}

.vcard43 .badge-discount {
  background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%);
  color: white;
}

.vcard43 .badge-category {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.vcard43 .badge-fresh {
  background: linear-gradient(135deg, var(--primary) 0%, #10b981 100%);
  color: white;
}

.vcard43 .badge-organic {
  background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
  color: white;
}

.vcard43 .badge-open {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.vcard43 .badge-closed {
  background-color: #fee2e2;
  color: #dc2626;
}

/* ================================ */
/* BUTTONS - Fresh Style */
/* ================================ */

.vcard43 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  border-radius: var(--radius);
}

.vcard43 .btn-sm {
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
}

.vcard43 .btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.vcard43 .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #10b981 100%);
  color: white;
  box-shadow: var(--shadow-green);
}

.vcard43 .btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green-lg);
}

.vcard43 .btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  width: 100%;
  box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.3);
}

.vcard43 .btn-whatsapp:hover {
  background: linear-gradient(135deg, #22c35e 0%, #0f7a6c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(37, 211, 102, 0.4);
}

.vcard43 .btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-primary);
}

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

.vcard43 .btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 0.5rem;
}

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

.vcard43 .btn-link {
  background: none;
  border: none;
  color: var(--primary);
  padding: 0;
  font-weight: 600;
  gap: 0.375rem;
}

.vcard43 .btn-link:hover {
  color: var(--primary-hover);
}

.vcard43 .btn-link svg {
  transition: transform 0.2s ease;
}

.vcard43 .btn-link:hover svg {
  transform: translateX(4px);
}

/* ================================ */
/* SERVICE CARDS */
/* ================================ */

.vcard43 .service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .vcard43 .service-grid {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .vcard43 .service-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.vcard43 .service-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.vcard43 .service-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background-alt) 0%, #f0f0f0 100%);
}

.vcard43 .service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.vcard43 .service-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (min-width: 640px) {
  .vcard43 .service-card-body {
    padding: 1.25rem;
  }
}

.vcard43 .service-name {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6rem;
  color: var(--text-primary);
}

@media (min-width: 640px) {
  .vcard43 .service-name {
    font-size: 1rem;
  }
}

.vcard43 .service-description {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vcard43 .service-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.875rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ================================ */
/* OFFERS SECTION */
/* ================================ */

.vcard43 .offers-section {
  background: linear-gradient(180deg, var(--background) 0%, var(--background-warm) 100%);
}

.vcard43 .offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .vcard43 .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.vcard43 .offer-card {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  border: 2px dashed var(--accent);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .vcard43 .offer-card {
    padding: 2rem;
  }
}

.vcard43 .offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.vcard43 .offer-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.vcard43 .offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.vcard43 .offer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .vcard43 .offer-title {
    font-size: 1.5rem;
  }
}

.vcard43 .offer-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.vcard43 .offer-code {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  border: 2px dashed var(--accent);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  font-family: monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.vcard43 .offer-code:hover {
  background: var(--accent-light);
}

/* ================================ */
/* GALLERY SECTION */
/* ================================ */

.vcard43 .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .vcard43 .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .vcard43 .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vcard43 .gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.vcard43 .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 639px) {
  .vcard43 .gallery-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.vcard43 .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.vcard43 .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.7) 0%, rgba(16, 185, 129, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vcard43 .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.vcard43 .gallery-overlay svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

/* ================================ */
/* BLOG SECTION */
/* ================================ */

.vcard43 .blog-section {
  background: var(--background-alt);
}

.vcard43 .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .vcard43 .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vcard43 .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vcard43 .blog-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.vcard43 .blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.vcard43 .blog-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

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

.vcard43 .blog-card-body {
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .vcard43 .blog-card-body {
    padding: 1.5rem;
  }
}

.vcard43 .blog-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.vcard43 .blog-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.625rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 640px) {
  .vcard43 .blog-title {
    font-size: 1.125rem;
  }
}

.vcard43 .blog-excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

/* ================================ */
/* TESTIMONIALS SECTION */
/* ================================ */

.vcard43 .testimonials-section {
  background: linear-gradient(180deg, var(--primary-lighter) 0%, white 100%);
}

.vcard43 .testimonials-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.vcard43 .testimonial-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .vcard43 .testimonial-card {
    padding: 3rem 4rem;
  }
}

.vcard43 .testimonial-quote {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

@media (min-width: 768px) {
  .vcard43 .testimonial-quote {
    font-size: 1.25rem;
  }
}

.vcard43 .testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.vcard43 .testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #10b981 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.vcard43 .testimonial-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1rem;
}

.vcard43 .testimonial-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ================================ */
/* CERTIFICATES SECTION */
/* ================================ */

.vcard43 .certificate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .vcard43 .certificate-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .vcard43 .certificate-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vcard43 .certificate-card {
  background: linear-gradient(135deg, var(--background-alt) 0%, #f5f5f4 100%);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.vcard43 .certificate-card:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.vcard43 .certificate-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, #10b981 100%);
  border-radius: var(--radius);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.vcard43 .certificate-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.vcard43 .certificate-issuer {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ================================ */
/* CONTACT SECTION */
/* ================================ */

.vcard43 .contact-section {
  background: var(--background);
}

.vcard43 .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .vcard43 .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.vcard43 .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vcard43 .contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--background-alt);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
}

.vcard43 .contact-info-card:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  transform: translateX(8px);
}

.vcard43 .contact-info-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, #10b981 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.vcard43 .contact-info-content h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.125rem;
}

.vcard43 .contact-info-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Form Styles */
.vcard43 .form-card {
  background: var(--background-alt);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border-light);
}

@media (min-width: 768px) {
  .vcard43 .form-card {
    padding: 2.5rem;
  }
}

.vcard43 .form-group {
  margin-bottom: 1.25rem;
}

.vcard43 .form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.vcard43 .form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  background: var(--background);
}

.vcard43 .form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.vcard43 .form-input::placeholder {
  color: var(--text-muted);
}

.vcard43 textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

/* ================================ */
/* HOURS & MAP SECTION */
/* ================================ */

.vcard43 .hours-section {
  background: var(--background-alt);
}

.vcard43 .hours-map-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .vcard43 .hours-map-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.vcard43 .hours-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border);
  height: 100%;
}

.vcard43 .hours-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vcard43 .hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.vcard43 .hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.vcard43 .hours-item:last-child {
  border-bottom: none;
}

.vcard43 .hours-day {
  font-weight: 500;
  color: var(--text-primary);
}

.vcard43 .hours-time {
  font-weight: 600;
  color: var(--primary);
}

.vcard43 .hours-closed {
  color: #dc2626;
}

.vcard43 .map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
  min-height: 300px;
  background: var(--background-alt);
}

.vcard43 .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ================================ */
/* FOOTER */
/* ================================ */

.vcard43 .footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  color: white;
  padding: 4rem 0 2rem;
}

.vcard43 .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .vcard43 .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
}

.vcard43 .footer-brand {
  max-width: 320px;
}

.vcard43 .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.vcard43 .footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #10b981 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1rem;
}

.vcard43 .footer-logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}

.vcard43 .footer-description {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.vcard43 .footer-social {
  display: flex;
  gap: 0.75rem;
}

.vcard43 .footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.25s ease;
}

.vcard43 .footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.vcard43 .footer-column h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vcard43 .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vcard43 .footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.vcard43 .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

.vcard43 .footer-contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.vcard43 .footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .vcard43 .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.vcard43 .footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.vcard43 .footer-legal {
  display: flex;
  gap: 1.5rem;
}

.vcard43 .footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* ================================ */
/* FLOATING WHATSAPP BUTTON */
/* ================================ */

.vcard43 .floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px -5px rgba(37, 211, 102, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

@media (min-width: 768px) {
  .vcard43 .floating-whatsapp {
    width: 4rem;
    height: 4rem;
    bottom: 2rem;
    right: 2rem;
  }
}

.vcard43 .floating-whatsapp:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 30px -5px rgba(37, 211, 102, 0.6);
}

.vcard43 .floating-whatsapp svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

@media (min-width: 768px) {
  .vcard43 .floating-whatsapp svg {
    width: 2rem;
    height: 2rem;
  }
}

/* ================================ */
/* STAR RATINGS */
/* ================================ */

.vcard43 .star-filled {
  color: #fbbf24;
  fill: #fbbf24;
}

.vcard43 .star-empty {
  color: #e5e7eb;
  fill: #e5e7eb;
}

/* ================================ */
/* LIGHTBOX MODAL */
/* ================================ */

.vcard43 .lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.vcard43 .lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.vcard43 .lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.vcard43 .lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--radius-full);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.vcard43 .lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ================================ */
/* UTILITY CLASSES */
/* ================================ */

.vcard43 .text-center {
  text-align: center;
}

.vcard43 .mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.vcard43 .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus states for accessibility */
.vcard43 a:focus-visible,
.vcard43 button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Scroll behavior */
@media (prefers-reduced-motion: no-preference) {
  .vcard43 {
    scroll-behavior: smooth;
  }
}

/* ================================ */
/* GROCERY REDESIGN OVERRIDES */
/* ================================ */

.vcard43 .header-container {
  height: 4.35rem;
}

.vcard43 .header-logo-text {
  line-height: 1.05;
}

.vcard43 .header-nav {
  gap: 1.1rem;
}

@media (min-width: 1200px) {
  .vcard43 .header-nav {
    gap: 1.55rem;
  }
}

.vcard43 .header-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.vcard43 .hero-section {
  min-height: clamp(480px, 70vh, 700px);
  isolation: isolate;
}

.vcard43 .hero-slider {
  position: relative;
  min-height: inherit;
}

.vcard43 .hero-slide {
  position: absolute;
  inset: 0;
  min-height: inherit;
}

.vcard43 .hero-shell {
  min-height: inherit;
  display: grid;
  align-items: center;
}

.vcard43 .hero-content {
  max-width: 640px;
  text-align: left;
  padding: 5rem 0 4.5rem;
}

.vcard43 .hero-description {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.1rem;
  line-height: 1.65;
}

.vcard43 .hero-meta-chip {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(16, 24, 40, 0.3);
  color: #fff;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(6px);
}

.vcard43 .hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(15, 23, 42, 0.42);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all 0.2s ease;
}

.vcard43 .hero-arrow:hover {
  background: rgba(34, 197, 94, 0.75);
  border-color: transparent;
}

.vcard43 .hero-arrow-left {
  left: 0.8rem;
}

.vcard43 .hero-arrow-right {
  right: 0.8rem;
}

.vcard43 .hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 20;
}

.vcard43 .hero-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
  transition: all 0.2s ease;
}

.vcard43 .hero-dot.is-active {
  width: 1.45rem;
  background: #fff;
}

@media (max-width: 1023px) {
  .vcard43 .header-nav {
    display: none;
  }
}

@media (max-width: 767px) {
  .vcard43 .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 5.25rem 0 5.5rem;
  }

  .vcard43 .hero-actions {
    justify-content: center;
  }

  .vcard43 .hero-meta-chip {
    justify-content: center;
  }

  .vcard43 .hero-arrow {
    display: none;
  }
}

/* ================================ */
/* LAYOUT + MOBILE MENU FIXES */
/* ================================ */

.vcard43 .hero-section {
  padding: 0 !important;
  margin: 0;
  background: linear-gradient(135deg, #effaf2 0%, #f2faec 100%);
  min-height: auto;
}

.vcard43 .hero-slider-wrap {
  position: relative;
  min-height: 560px;
}

.vcard43 .hero-slide-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.vcard43 .hero-content-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 1.6rem;
  min-height: 560px;
  padding-top: 1.6rem;
  padding-bottom: 3.2rem;
}

.vcard43 .hero-copy {
  max-width: 620px;
}

.vcard43 .hero-pill {
  display: inline-flex;
  background: #dcfce7;
  color: #166534;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.95rem;
}

.vcard43 .hero-title {
  color: #0f172a;
  text-shadow: none;
  margin-bottom: 0.75rem;
}

.vcard43 .hero-subtitle,
.vcard43 .hero-description {
  color: #475569;
  margin-bottom: 0.8rem;
}

.vcard43 .hero-offer-banner {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  border-radius: 0.75rem;
  padding: 0.55rem 0.8rem;
  margin: 0.5rem 0 0.95rem;
  font-size: 0.86rem;
}

.vcard43 .hero-offer-code {
  background: #fb923c;
  color: #fff;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-weight: 700;
  font-size: 0.78rem;
}

.vcard43 .hero-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.vcard43 .hero-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: #166534;
}

.vcard43 .hero-price-old {
  font-size: 1rem;
  color: #64748b;
  text-decoration: line-through;
}

.vcard43 .hero-media {
  display: grid;
  place-items: center;
}

.vcard43 .hero-product-image {
  width: 100%;
  max-width: 520px;
  max-height: 430px;
  object-fit: contain;
  border-radius: 1.2rem;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 24px 60px -35px rgba(15, 23, 42, 0.42);
}

.vcard43 .hero-arrow {
  top: auto;
  bottom: 1.1rem;
  transform: none;
  background: #334155;
}

.vcard43 .hero-arrow-left {
  left: calc(50% - 3.4rem);
}

.vcard43 .hero-arrow-right {
  right: calc(50% - 3.4rem);
}

.vcard43 .hero-dots {
  bottom: 1.2rem;
}

.vcard43 .mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.9rem;
  display: flex;
  justify-content: flex-end;
}

.vcard43 .mobile-nav-content {
  width: min(360px, 100%);
  height: 100%;
  background: #fff;
  border-radius: 1rem;
  padding: 1.2rem;
  overflow-y: auto;
  box-shadow: 0 25px 50px -20px rgba(15, 23, 42, 0.45);
}

.vcard43 .mobile-nav-content nav a {
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  font-weight: 600;
}

.vcard43 .profile-section {
  margin-top: 0;
  padding-top: 3rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.vcard43 .product-card-image {
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, #f8fafc 0%, #eef7f0 100%);
}

.vcard43 .product-card-image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  padding: 0.65rem;
}

.vcard43 .product-card:hover .product-card-image img {
  transform: scale(1.04);
}

.vcard43 .service-card .aspect-square,
.vcard43 .service-card .sm\:aspect-\[4\/3\] {
  aspect-ratio: 4 / 3;
}

.vcard43 .service-card img {
  object-fit: cover;
}

.vcard43 .gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 170px;
  gap: 0.8rem;
}

.vcard43 .gallery-item {
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
}

.vcard43 .gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.vcard43 .gallery-item:nth-child(4),
.vcard43 .gallery-item:nth-child(7) {
  grid-row: span 2;
}

.vcard43 .gallery-item img {
  object-fit: cover;
}

.vcard43 .offer-card,
.vcard43 .blog-card,
.vcard43 .service-card {
  height: 100%;
}

@media (max-width: 1023px) {
  .vcard43 .header-nav {
    display: none;
  }

  .vcard43 .hero-content-wrap {
    grid-template-columns: 1fr;
    min-height: 620px;
    padding-top: 2rem;
    gap: 0.9rem;
  }

  .vcard43 .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .vcard43 .hero-actions,
  .vcard43 .hero-price-row,
  .vcard43 .hero-offer-banner {
    justify-content: center;
  }

  .vcard43 .hero-product-image {
    max-height: 290px;
  }
}

@media (max-width: 767px) {
  .vcard43 .hero-slider-wrap {
    min-height: 640px;
  }

  .vcard43 .hero-content-wrap {
    min-height: 640px;
    padding-bottom: 4.2rem;
  }

  .vcard43 .hero-media, .header-logo-text{
    display: none;
  }

  .vcard43 .hero-title {
    font-size: clamp(1.85rem, 8.4vw, 2.45rem);
  }

  .vcard43 .hero-arrow {
    display: none;
  }

  .vcard43 .gallery-grid {
    grid-auto-rows: 140px;
  }

  .vcard43 .gallery-item:nth-child(4),
  .vcard43 .gallery-item:nth-child(7) {
    grid-row: span 1;
  }
}

/* ================================ */
/* REQUESTED FIXES - MARCH 2026 */
/* ================================ */

.vcard43 .hero-dots {
  display: none !important;
}

.vcard43 .offer-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.vcard43 .offer-card-modern {
  position: relative;
  border: 1px solid #fed7aa;
  background: linear-gradient(135deg, #fffaf3 0%, #ffedd5 100%);
  border-radius: 1rem;
  padding: 1rem;
  overflow: hidden;
}

.vcard43 .offer-bg-gif {
  position: absolute;
  right: -8px;
  top: -8px;
  width: 84px;
  height: 84px;
  object-fit: cover;
  opacity: 0.18;
  border-radius: 999px;
  pointer-events: none;
}

.vcard43 .offer-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.vcard43 .offer-valid-chip {
  font-size: 0.72rem;
  font-weight: 700;
  color: #9a3412;
  background: #ffedd5;
  border: 1px solid #fdba74;
  border-radius: 999px;
  padding: 0.24rem 0.5rem;
}

.vcard43 .offer-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.vcard43 .offer-code-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px dashed #fb923c;
  background: #fff;
  border-radius: 0.6rem;
  padding: 0.45rem 0.65rem;
  font-size: 0.78rem;
}

.vcard43 .offer-code-pill strong {
  color: #166534;
}

.vcard43 .offer-shop-link {
  font-weight: 700;
  color: #166534;
  text-decoration: none;
}

.vcard43 .offer-no-code {
  font-size: 0.8rem;
  color: #57534e;
  font-weight: 600;
}

.vcard43 .gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 0.8rem;
  align-items: stretch;
}

.vcard43 .gallery-item {
  aspect-ratio: auto;
  min-height: 180px;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.vcard43 .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vcard43 .blog-section {
  clear: both;
  position: relative;
  z-index: 2;
}

.vcard43 .mobile-wa-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  padding: 0.75rem 0.9rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  border: 1px solid #86efac;
}

.vcard43 .mobile-wa-icon {
  width: 1.9rem;
  height: 1.9rem;
  object-fit: contain;
  flex-shrink: 0;
}

.vcard43 .mobile-wa-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #166534;
}

.vcard43 .mobile-wa-sub {
  display: block;
  font-size: 0.74rem;
  color: #15803d;
}

.vcard43 .directPurchaseBtn,
.vcard43 .fallback-buy-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  border: 0;
  border-radius: 0.7rem;
  padding: 0.62rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  box-shadow: 0 7px 18px -12px rgba(249, 115, 22, 0.75);
}

.vcard43 .directPurchaseBtn .buyNowIconList {
  margin: 0;
  padding: 0;
  list-style: none;
}

#directPurchaseModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(2, 6, 23, 0.62);
  overflow-y: auto;
}

#directPurchaseModal.show {
  display: block;
}

#directPurchaseModal .modal-dialog {
  margin: 1.25rem auto;
}

@media (max-width: 991px) {
  .vcard43 .offer-grid-enhanced {
    grid-template-columns: 1fr;
  }

  .vcard43 .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }
}

@media (max-width: 575px) {
  .vcard43 .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .vcard43 .offer-footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.d-none{
  display:none;
}
/* ================================ */
/* STABILITY FIXES - MARCH 2026 */
/* ================================ */

.vcard43 .directPurchaseBtn,
.vcard43 .fallback-buy-now {
  background: linear-gradient(135deg, var(--primary) 0%, #10b981 100%);
  box-shadow: 0 7px 18px -12px rgba(34, 197, 94, 0.8);
  color: #ffffff;
}

.vcard43 .directPurchaseBtn:hover,
.vcard43 .fallback-buy-now:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
}

.vcard43 .header-logo-icon {
  overflow: hidden;
}

.vcard43 .header-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .vcard43 .header-nav {
    display: flex !important;
  }

  .vcard43 [data-testid="button-mobile-menu"] {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .vcard43 .header-nav {
    display: none !important;
  }

  .vcard43 [data-testid="button-mobile-menu"] {
    display: inline-flex !important;
  }
}

.vcard43.has-chatbot .floating-whatsapp {
  bottom: 6.5rem;
  z-index: 45;
}

@media (min-width: 768px) {
  .vcard43.has-chatbot .floating-whatsapp {
    bottom: 7.5rem;
  }
}
.vcard43 .directPurchaseBtn svg path {
  fill: #ffffff !important;
}

/* ================================ */
/* HERO READABILITY + COMPACT GALLERY + MODAL UI */
/* ================================ */

.vcard43 .hero-copy {
  background: linear-gradient(165deg, rgba(2, 6, 23, 0.76) 0%, rgba(15, 23, 42, 0.68) 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 1rem;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  padding: 1.1rem 1.1rem 1.2rem;
  box-shadow: 0 18px 45px -30px rgba(2, 6, 23, 0.95);
}

.vcard43 .hero-copy .hero-title,
.vcard43 .hero-copy .hero-subtitle,
.vcard43 .hero-copy .hero-description {
  color: #ffffff !important;
  text-shadow: 0 1px 8px rgba(2, 6, 23, 0.45);
}

.vcard43 .hero-copy .hero-pill {
  background: rgba(220, 252, 231, 0.92);
  color: #14532d;
}

.vcard43 .hero-copy .hero-price {
  color: #86efac;
}

.vcard43 .hero-copy .hero-price-old {
  color: rgba(255, 255, 255, 0.78);
}

.vcard43 .hero-copy .hero-offer-banner {
  background: rgba(255, 247, 237, 0.94);
}

.vcard43 .gallery-section-compact .section-header {
  margin-bottom: 1.25rem;
}

.vcard43 .gallery-section-compact .gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 120px;
  gap: 0.55rem;
}

.vcard43 .gallery-section-compact .gallery-item:nth-child(1),
.vcard43 .gallery-section-compact .gallery-item:nth-child(4),
.vcard43 .gallery-section-compact .gallery-item:nth-child(7) {
  grid-column: span 1;
  grid-row: span 1;
}

.vcard43 .gallery-section-compact .gallery-item {
  min-height: 120px;
  border-radius: 0.75rem;
}

@media (max-width: 640px) {
  .vcard43 .gallery-section-compact .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 108px;
  }

  .vcard43 .hero-copy {
    padding: 0.95rem 0.95rem 1.05rem;
  }
}

/* Tailwind-friendly restyle for Bootstrap buy-now modal */
#directPurchaseModal .modal-dialog {
  max-width: 620px !important;
  margin: 1.5rem auto !important;
}

#directPurchaseModal .modal-content {
  border: 1px solid #d1fae5 !important;
  border-radius: 1rem !important;
  background: #ffffff !important;
  box-shadow: 0 35px 70px -35px rgba(15, 23, 42, 0.6) !important;
}

#directPurchaseModal .modal-header {
  padding: 0.9rem 1rem !important;
  border-bottom: 1px solid #e2e8f0 !important;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfeff 100%) !important;
}

#directPurchaseModal .modal-title {
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
}

#directPurchaseModal .btn-close {
  width: 2rem !important;
  height: 2rem !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #334155 !important;
  border: 1px solid #e2e8f0 !important;
}

#directPurchaseModal .modal-body {
  padding: 0.95rem 1rem 1rem !important;
  background: #ffffff !important;
}

#directPurchaseModal .product-info,
#directPurchaseModal .pricing-container,
#directPurchaseModal .copoun_code_dive {
  border-radius: 0.75rem !important;
}

/* #directPurchaseModal .pricing-container {
  border: 1px solid #bbf7d0 !important;
  background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%) !important;
} */

#directPurchaseModal .new-price,
#directPurchaseModal .regular-price {
  color: #15803d !important;
  -webkit-text-fill-color: #15803d !important;
}

#directPurchaseModal .form-control {
  border: 1px solid #cbd5e1 !important;
  border-radius: 0.68rem !important;
  background: #f8fafc !important;
  box-shadow: none !important;
}

#directPurchaseModal .form-control:focus {
  border-color: #22c55e !important;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.14) !important;
  background: #ffffff !important;
}

#directPurchaseModal .apply_coupon_code,
#directPurchaseModal .clear_coupon_code,
#directPurchaseModal .buy-now {
  border-radius: 0.65rem !important;
}

#directPurchaseModal .apply_coupon_code,
#directPurchaseModal .buy-now {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  width: 30%;
}

#directPurchaseModal .clear_coupon_code {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  width: 30%;
}

#directPurchaseModal .buy-now {
  font-weight: 700 !important;
  margin-top: 0.75rem !important;
}

#directPurchaseModal .buy-now:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -12px rgba(22, 163, 74, 0.55) !important;
}

/* vcard43 native buy-now modal */
#directPurchaseModal.v43-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow-y: auto;
}

#directPurchaseModal.v43-modal-overlay.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

#directPurchaseModal .v43-modal-shell {
  width: min(100%, 760px);
  margin: auto;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.14), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 35px 80px -34px rgba(15, 23, 42, 0.6);
  padding: 1.1rem;
  position: relative;
}

#directPurchaseModal .v43-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.4rem !important;
  height: 2.4rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #dbe4ea !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #334155 !important;
  opacity: 1 !important;
  box-shadow: 0 10px 24px -18px rgba(15, 23, 42, 0.55);
}

#directPurchaseModal .v43-modal-close svg {
  width: 1rem;
  height: 1rem;
}

#directPurchaseModal .v43-modal-head {
  padding: 0.35rem 0 1rem;
}

#directPurchaseModal .v43-modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#directPurchaseModal .v43-modal-title {
  margin: 0.8rem 0 0.2rem;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
}

#directPurchaseModal .v43-modal-note {
  margin: 0;
  color: #64748b;
  font-size: 0.96rem;
}

#directPurchaseModal .v43-modal-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #dceefc;
  border-radius: 1rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfeff 100%);
}

#directPurchaseModal .v43-modal-summary-label {
  display: block;
  margin-bottom: 0.32rem;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#directPurchaseModal .v43-modal-product-name {
  margin: 0;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.35;
}

#directPurchaseModal .v43-modal-price {
  display: inline-block;
  color: #15803d;
  font-size: 1.6rem;
  font-weight: 900;
  white-space: nowrap;
}

#directPurchaseModal .v43-buy-form {
  display: grid;
  gap: 1rem;
}

#directPurchaseModal .v43-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

#directPurchaseModal .v43-form-grid-tight {
  grid-template-columns: 0.8fr 1.2fr;
}

#directPurchaseModal .v43-field {
  display: grid;
  gap: 0.42rem;
}

#directPurchaseModal .v43-field-full {
  grid-column: 1 / -1;
}

#directPurchaseModal .v43-label {
  color: #334155;
  font-size: 0.84rem;
  font-weight: 700;
}

#directPurchaseModal .v43-input {
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid #d7dee7 !important;
  border-radius: 0.85rem !important;
  background: #fff !important;
  color: #0f172a !important;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: none !important;
  outline: none;
}

#directPurchaseModal .v43-input::placeholder {
  color: #94a3b8;
}

#directPurchaseModal .v43-input:focus {
  border-color: #22c55e !important;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12) !important;
}

#directPurchaseModal .v43-textarea {
  min-height: 6.5rem;
  resize: vertical;
}

#directPurchaseModal .v43-buy-submit {
  width: 100%;
  min-height: 3.35rem;
  border: 0;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%) !important;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 20px 30px -20px rgba(22, 163, 74, 0.7);
}

#directPurchaseModal .v43-buy-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 34px -22px rgba(22, 163, 74, 0.72);
}

#directPurchaseModal .v43-buy-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 767px) {
  #directPurchaseModal.v43-modal-overlay {
    padding: 0.7rem;
  }

  #directPurchaseModal .v43-modal-shell {
    width: 100%;
    padding: 0.95rem;
    border-radius: 1.1rem;
  }

  #directPurchaseModal .v43-modal-summary,
  #directPurchaseModal .v43-form-grid,
  #directPurchaseModal .v43-form-grid-tight {
    grid-template-columns: 1fr;
  }

  #directPurchaseModal .v43-modal-summary {
    padding: 0.9rem;
  }

  #directPurchaseModal .v43-modal-price {
    font-size: 1.35rem;
  }
}
