/* ==========================================================================
   GOENJOY - INDEX.CSS FINAL
   Tema: Modern White • Responsive • Fast • Clean
   ========================================================================== */

/* ===== 1. RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  /* ===== Color Palette (White Theme) ===== */
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #3b82f6;
  
  --color-secondary: #64748b;
  --color-secondary-dark: #475569;
  --color-secondary-light: #94a3b1;
  
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-info: #06b6d4;
  
  /* ===== Background Colors ===== */
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-muted: #f8f9fa;
  
  /* ===== Text Colors ===== */
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b1;
  --color-text-inverted: #ffffff;
  
  /* ===== Border Colors ===== */
  --color-border-primary: #e2e8f0;
  --color-border-secondary: #cbd5e1;
  --color-border-muted: #f1f5f9;
  
  /* ===== Shadow Colors ===== */
  --color-shadow-sm: rgba(0, 0, 0, 0.04);
  --color-shadow-md: rgba(0, 0, 0, 0.08);
  --color-shadow-lg: rgba(0, 0, 0, 0.12);
  --color-shadow-xl: rgba(0, 0, 0, 0.16);
  
  /* ===== Spacing Scale ===== */
  --space-xs: 0.25rem;  /* 4px */
  --space-sm: 0.5rem;   /* 8px */
  --space-md: 1rem;     /* 16px */
  --space-lg: 1.5rem;   /* 24px */
  --space-xl: 2rem;     /* 32px */
  --space-2xl: 3rem;    /* 48px */
  
  /* ===== Border Radius ===== */
  --radius-sm: 0.375rem;    /* 6px */
  --radius-md: 0.5rem;      /* 8px */
  --radius-lg: 0.75rem;     /* 12px */
  --radius-xl: 1rem;        /* 16px */
  --radius-2xl: 1.5rem;     /* 24px */
  --radius-full: 9999px;
  
  /* ===== Typography ===== */
  --font-family-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-family-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-lg: 1.125rem;  /* 18px */
  --font-size-xl: 1.25rem;   /* 20px */
  --font-size-2xl: 1.5rem;   /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem;  /* 36px */
  
  /* ===== Z-Index ===== */
  --z-toast: 1000;
  --z-dropdown: 1000;
  --z-sticky: 100;
  --z-modal: 1000;
  --z-overlay: 999;
  --z-chat: 1000;
}

/* ===== Base Styles ===== */
html {
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  min-height: calc(100vh - 200px);
  position: relative;
}

/* ===== 2. CONTAINER & LAYOUT ===== */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-md);
  max-width: 1200px;
}

@media (min-width: 480px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0 var(--space-2xl);
  }
}

/* ===== Grid Systems ===== */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.grid-cols-6 { grid-template-columns: repeat(6, 1fr); }

@media (min-width: 768px) {
  .grid-cols-2-md { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3-md { grid-template-columns: repeat(3, 1fr); }
  .grid-cols-4-md { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .grid-cols-2-lg { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3-lg { grid-template-columns: repeat(3, 1fr); }
  .grid-cols-4-lg { grid-template-columns: repeat(4, 1fr); }
  .grid-cols-5-lg { grid-template-columns: repeat(5, 1fr); }
}

/* ===== 3. TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: var(--space-md);
}

h1 { font-size: var(--font-size-4xl); line-height: 1.2; }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

.section-head {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-border-secondary);
}

.section-head h2 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-head h2::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
}

/* ===== 4. BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverted);
  border-color: var(--color-primary);
}

.btn--primary:hover:not(:disabled) {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover:not(:disabled) {
  background: var(--color-primary);
  color: var(--color-text-inverted);
}

.btn--outline {
  background: transparent;
  color: var(--color-text-primary);
  border-color: var(--color-border-primary);
}

.btn--outline:hover:not(:disabled) {
  background: var(--color-bg-secondary);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-secondary);
  padding: var(--space-xs) var(--space-md);
  border: none;
  border-radius: var(--radius-sm);
}

.btn--ghost:hover:not(:disabled) {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
}

.btn--small { padding: var(--space-xs) var(--space-md); font-size: var(--font-size-xs); }
.btn--large { padding: var(--space-md) var(--space-xl); font-size: var(--font-size-base); }

/* ===== 5. FORMS ===== */
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--color-border-primary);
  border-radius: var(--radius-md);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  transition: all 0.2s ease;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
}

.searchbar {
  display: flex;
  gap: var(--space-md);
  background: var(--color-bg-secondary);
  padding: var(--space-md);
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.searchbar:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.searchbar input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0;
  font-size: var(--font-size-lg);
}

.searchbar input:focus {
  box-shadow: none;
}

.searchbar .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== 6. CARDS ===== */
.card {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--color-shadow-sm);
  transition: all 0.2s ease;
}

.card:hover {
  box-shadow: var(--color-shadow-md);
  transform: translateY(-2px);
  border-color: var(--color-border-secondary);
}

.card--elevated {
  box-shadow: var(--color-shadow-md);
}

.card--flat {
  box-shadow: none;
  border-color: transparent;
}

/* ===== 7. SEARCH UNDER ===== */
.search-under {
  background: var(--color-bg-secondary);
  padding: var(--space-xl) 0;
  margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
  .search-under {
    padding: var(--space-lg) 0;
    margin-bottom: var(--space-xl);
  }
}

/* ===== 8. HERO SECTION ===== */
.hero-1 {
  margin-bottom: var(--space-2xl);
}

.side-card {
  display: flex;
  background: var(--color-bg-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--color-shadow-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.side-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--color-shadow-xl);
}

.side-card--hero {
  height: 280px;
}

@media (min-width: 768px) {
  .side-card--hero {
    height: 360px;
  }
}

.side-card .thumb {
  flex-shrink: 0;
  width: 60%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

@media (max-width: 768px) {
  .side-card .thumb {
    width: 100%;
    height: 200px;
  }
  
  .side-card--hero .thumb {
    height: 180px;
  }
}

.side-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.side-card:hover .thumb img {
  transform: scale(1.05);
}

.side-card .info {
  flex: 1;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,1) 100%);
}

.side-card .title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.side-card .sub {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ===== 9. CATEGORY CARDS ===== */
.grid-cat {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
  .grid-cat {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: var(--space-md);
  }
}

.cat-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-primary);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  box-shadow: var(--color-shadow-sm);
  min-height: 56px;
}

.cat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--color-shadow-md);
  border-color: var(--color-primary);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, transparent 100%);
}

.cat-card .ico,
.cat-card .ico-img {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: var(--color-bg-secondary);
  color: var(--color-primary);
}

.cat-card .ico-img {
  object-fit: cover;
  background: none;
}

.cat-card .label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== 10. PRODUCT CARDS ===== */
.grid-prod {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
  .grid-prod {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .grid-prod {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--space-sm);
  }
}

.prod-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-primary);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--color-shadow-sm);
  height: 100%;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--color-shadow-lg);
  border-color: var(--color-primary);
}

.prod-card .thumb {
  display: block;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.prod-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.prod-card:hover .thumb img {
  transform: scale(1.05);
}

.prod-card .name {
  padding: var(--space-md);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.prod-card .meta {
  padding: 0 var(--space-md) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: auto;
}

.prod-card .price {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-weight: var(--font-weight-semibold);
}

.prod-card .price b {
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  line-height: 1.2;
}

.prod-card .price s {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-normal);
}

.prod-card .sold {
  font-size: var(--font-size-xs);
  color: var(--color-success);
  font-weight: var(--font-weight-medium);
  white-space: nowrap;
}

/* ===== 11. NOTICES & EMPTY STATES ===== */
.notice {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  border-left: 4px solid;
}

.notice.muted {
  background: var(--color-bg-secondary);
  border-color: var(--color-border-secondary);
  color: var(--color-text-secondary);
}

.empty-note {
  text-align: center;
  padding: var(--space-2xl);
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
  background: var(--color-bg-muted);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--color-border-muted);
}

/* ===== 12. FOOTER ===== */
.site-footer {
  background: var(--color-bg-secondary);
  color: var(--color-text-secondary);
  padding: var(--space-xl) 0;
  margin-top: var(--space-2xl);
  border-top: 1px solid var(--color-border-primary);
}

.site-footer .inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
  font-size: var(--font-size-sm);
}

@media (min-width: 768px) {
  .site-footer .inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===== 13. UTILITY CLASSES ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0 !important; }
.mb-sm { margin-bottom: var(--space-sm) !important; }
.mb-md { margin-bottom: var(--space-md) !important; }
.mb-lg { margin-bottom: var(--space-lg) !important; }
.mb-xl { margin-bottom: var(--space-xl) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-sm { margin-top: var(--space-sm) !important; }
.mt-md { margin-top: var(--space-md) !important; }
.mt-lg { margin-top: var(--space-lg) !important; }
.mt-xl { margin-top: var(--space-xl) !important; }

.hidden { display: none !important; }
.block { display: block !important; }
.inline-block { display: inline-block !important; }
.flex { display: flex !important; }
.grid { display: grid !important; }

.w-full { width: 100% !important; }
.h-full { height: 100% !important; }

/* ===== 14. RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 480px) {
  :root {
    --space-lg: 1.25rem;
    --space-xl: 1.5rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  h1 { font-size: var(--font-size-3xl); }
  h2 { font-size: var(--font-size-xl); }
  h3 { font-size: var(--font-size-lg); }
}

@media (max-width: 768px) {
  .grid-prod {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  .grid-cat {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }
  
  .search-under {
    padding: var(--space-lg) 0;
  }
}

/* ===== 15. ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===== 16. PRINT STYLES ===== */
@media print {
  .no-print,
  .search-under,
  .site-footer,
  .btn,
  .chat-fab,
  #chatPanel {
    display: none !important;
  }
  
  .container {
    max-width: none;
    padding: 0;
  }
  
  .grid-prod {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

/* ===== 17. DARK MODE SUPPORT (Optional) ===== */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --color-bg-primary: #0f172a;
    --color-bg-secondary: #1e293b;
    --color-bg-tertiary: #334155;
    --color-bg-muted: #1e293b;
    
    --color-text-primary: #f8fafc;
    --color-text-secondary: #cbd5e1;
    --color-text-muted: #94a3b1;
    --color-text-light: #64748b;
    
    --color-border-primary: #334155;
    --color-border-secondary: #475569;
    --color-border-muted: #475569;
    
    --color-shadow-sm: rgba(0, 0, 0, 0.4);
    --color-shadow-md: rgba(0, 0, 0, 0.5);
    --color-shadow-lg: rgba(0, 0, 0, 0.6);
    --color-shadow-xl: rgba(0, 0, 0, 0.7);
  }
}

/* ===== 18. CUSTOM OVERRIDES FOR INDEX.PHP ===== */
.only-desktop { display: block; }
.only-mobile { display: none; }

@media (max-width: 768px) {
  .only-desktop { display: none; }
  .only-mobile { display: block; }
}

/* Ensure chat widget doesn't interfere with main content */
.chat-fab,
#chatPanel {
  z-index: var(--z-chat);
}

/* Loading states */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.side-card--hero {
  height: 180px; /* Reduced from 280px */
}

@media (min-width: 768px) {
  .side-card--hero {
    height: 240px; /* Reduced from 360px */
  }
}

.side-card .info {
  padding: var(--space-md); /* Reduced from var(--space-xl) */
}

/* Tambahkan class untuk teks promosi */
.promotion-text {
  font-size: var(--font-size-sm); /* Ukuran teks kecil untuk mobile */
  font-weight: var(--font-weight-bold);
  color: var(--color-danger); /* Warna merah untuk menarik perhatian */
  background-color: rgba(255, 255, 255, 0.9); /* Latar belakang semi-transparan */
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-top: var(--space-xs);
}

.promotion-text {
  font-size: var(--font-size-sm); /* Ukuran teks kecil untuk mobile */
  font-weight: var(--font-weight-bold);
  color: var(--color-danger); /* Warna merah untuk menarik perhatian */
  background-color: rgba(255, 255, 255, 0.9); /* Latar belakang semi-transparan */
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-top: var(--space-xs);
}

/* Sembunyikan di desktop, tampilkan di mobile */
@media (min-width: 768px) {
  .promotion-text {
    display: none;
  }
}

@media (max-width: 768px) {
  .side-card .info {
    padding: var(--space-md); /* Pastikan padding cukup */
  }
  
  .promotion-text {
    display: inline-block;
    font-size: var(--font-size-base); /* Sedikit lebih besar di mobile jika perlu */
  }
}

/* Pastikan teks tidak tumpang tindih dengan konten lain */
.side-card .title {
  margin-bottom: var(--space-xs); /* Kurangi jarak agar teks promosi muat */
}

/* ==========================================================================
   END OF FILE - GOENJOY INDEX.CSS FINAL
   ========================================================================== */