/*
Theme Name:   Rawaja
Template:     astra
Description:  Rawaja Child Theme - Toko Buku Online
Version:      1.0.0
Author:       Rawaja
Text Domain:  rawaja
*/

/* =========================================
   CSS VARIABLES
========================================= */
:root {
  --rawaja-primary:    #2D6A4F;
  --rawaja-secondary:  #52B788;
  --rawaja-accent:     #F4845F;
  --rawaja-bg:         #F9F7F4;
  --rawaja-surface:    #FFFFFF;
  --rawaja-text:       #1A1A2E;
  --rawaja-muted:      #6B7280;
  --rawaja-border:     #E5E7EB;
  --rawaja-radius:     8px;
  --rawaja-radius-lg:  16px;
  --rawaja-shadow:     0 2px 12px rgba(0,0,0,0.08);
  --rawaja-shadow-hover: 0 6px 24px rgba(0,0,0,0.14);
}

/* =========================================
   GLOBAL
========================================= */
body {
  background-color: var(--rawaja-bg);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: var(--rawaja-text);
}

a {
  color: var(--rawaja-primary);
  text-decoration: none;
}

a:hover {
  color: var(--rawaja-secondary);
}

/* =========================================
   HEADER / NAVIGATION
========================================= */
.site-header,
.ast-primary-header-bar {
  background-color: var(--rawaja-surface);
  border-bottom: 1px solid var(--rawaja-border);
  box-shadow: var(--rawaja-shadow);
}

.ast-site-title a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rawaja-primary) !important;
  letter-spacing: -0.5px;
}

.main-header-menu .menu-item a {
  color: var(--rawaja-text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: var(--rawaja-radius);
  transition: background 0.2s, color 0.2s;
}

.main-header-menu .menu-item a:hover {
  background-color: rgba(45, 106, 79, 0.08);
  color: var(--rawaja-primary);
}

/* =========================================
   HERO SECTION
========================================= */
.rawaja-hero {
  background: linear-gradient(135deg, var(--rawaja-primary) 0%, #40916C 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rawaja-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.rawaja-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.rawaja-hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 32px;
}

.rawaja-hero .hero-search {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  background: white;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.rawaja-hero .hero-search input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-size: 1rem;
  outline: none;
  color: var(--rawaja-text);
}

.rawaja-hero .hero-search button {
  background: var(--rawaja-accent);
  color: white;
  border: none;
  padding: 14px 24px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.rawaja-hero .hero-search button:hover {
  background: #e05a35;
}

/* =========================================
   SECTION HEADINGS
========================================= */
.rawaja-section {
  padding: 60px 0;
}

.rawaja-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.rawaja-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rawaja-text);
  position: relative;
  padding-left: 16px;
}

.rawaja-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: var(--rawaja-primary);
  border-radius: 4px;
}

.rawaja-view-all {
  color: var(--rawaja-primary);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--rawaja-primary);
  padding: 7px 16px;
  border-radius: 20px;
  transition: all 0.2s;
}

.rawaja-view-all:hover {
  background: var(--rawaja-primary);
  color: white;
}

/* =========================================
   PRODUCT CARD
========================================= */
.rawaja-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(152px, 1fr));
  gap: 14px;
}

.rawaja-product-card {
  background: var(--rawaja-surface);
  border-radius: var(--rawaja-radius-lg);
  overflow: hidden;
  box-shadow: var(--rawaja-shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.rawaja-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rawaja-shadow-hover);
}

.rawaja-product-card .product-thumb {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--rawaja-bg);
}

.rawaja-product-card .product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

/* Stock badge */
.rawaja-badge-out-of-stock {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.65);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.rawaja-badge-category {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--rawaja-primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.rawaja-badge-preloved {
  background: #6B4C2A;
}

.rawaja-badge-preorder {
  background: #1D3557;
}

.rawaja-badge-discount {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--rawaja-accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Wishlist button on card */
.rawaja-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: all 0.2s;
  z-index: 2;
}

.rawaja-wishlist-btn:hover,
.rawaja-wishlist-btn.active {
  background: var(--rawaja-accent);
  color: white;
}

.rawaja-wishlist-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: fill 0.2s, stroke 0.2s;
}

.rawaja-wishlist-btn.active svg {
  fill: white;
  stroke: white;
}

/* Card body */
.rawaja-product-card .product-info {
  padding: 14px;
}

.rawaja-product-card .product-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rawaja-text);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}

.rawaja-product-card .product-author {
  font-size: 0.78rem;
  color: var(--rawaja-muted);
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rawaja-product-card .product-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.rawaja-product-card .price-final {
  font-size: 1rem;
  font-weight: 700;
  color: var(--rawaja-primary);
}

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

.rawaja-product-card .product-reading-age {
  font-size: 0.72rem;
  color: var(--rawaja-muted);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* =========================================
   PROMO BANNER
========================================= */
.rawaja-promo-banner {
  background: linear-gradient(135deg, #F4845F 0%, #e05a35 100%);
  border-radius: var(--rawaja-radius-lg);
  padding: 40px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.rawaja-promo-banner h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.rawaja-promo-banner p {
  opacity: 0.9;
  font-size: 1rem;
}

.rawaja-promo-banner .promo-cta {
  background: white;
  color: var(--rawaja-accent);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s;
}

.rawaja-promo-banner .promo-cta:hover {
  transform: scale(1.04);
  color: var(--rawaja-accent);
}

/* =========================================
   CATEGORY PILLS
========================================= */
.rawaja-category-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.rawaja-pill {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid var(--rawaja-border);
  color: var(--rawaja-muted);
  background: var(--rawaja-surface);
  cursor: pointer;
  transition: all 0.2s;
}

.rawaja-pill:hover,
.rawaja-pill.active {
  border-color: var(--rawaja-primary);
  color: var(--rawaja-primary);
  background: rgba(45, 106, 79, 0.06);
}

/* =========================================
   PRODUCT DETAIL PAGE
========================================= */
.rawaja-product-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  padding: 40px 0;
}

.rawaja-product-detail .detail-gallery img {
  width: 100%;
  border-radius: var(--rawaja-radius-lg);
  box-shadow: var(--rawaja-shadow);
}

.rawaja-product-detail .detail-info h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.25;
}

.rawaja-product-detail .detail-author {
  color: var(--rawaja-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.rawaja-product-detail .detail-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.rawaja-meta-tag {
  background: var(--rawaja-bg);
  border: 1px solid var(--rawaja-border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.8rem;
  color: var(--rawaja-muted);
  font-weight: 500;
}

/* Book type selector */
.rawaja-book-type-selector {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.rawaja-book-type-btn {
  padding: 10px 20px;
  border: 2px solid var(--rawaja-border);
  border-radius: var(--rawaja-radius);
  background: var(--rawaja-surface);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  text-align: center;
}

.rawaja-book-type-btn .type-name {
  display: block;
  color: var(--rawaja-text);
  font-size: 0.9rem;
}

.rawaja-book-type-btn .type-price {
  display: block;
  color: var(--rawaja-primary);
  font-size: 0.85rem;
  margin-top: 2px;
}

.rawaja-book-type-btn.active,
.rawaja-book-type-btn:hover {
  border-color: var(--rawaja-primary);
  background: rgba(45, 106, 79, 0.06);
}

/* Price display */
.rawaja-price-block {
  margin: 20px 0;
}

.rawaja-price-block .price-main {
  font-size: 2rem;
  font-weight: 800;
  color: var(--rawaja-primary);
}

.rawaja-price-block .price-crossed {
  font-size: 1rem;
  color: var(--rawaja-muted);
  text-decoration: line-through;
  margin-left: 8px;
}

.rawaja-price-block .price-discount-pct {
  display: inline-block;
  background: var(--rawaja-accent);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
}

/* Action buttons on detail */
.rawaja-detail-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.rawaja-btn-primary {
  flex: 1;
  background: var(--rawaja-primary);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: var(--rawaja-radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-align: center;
  min-width: 140px;
}

.rawaja-btn-primary:hover {
  background: #1e4d38;
  color: white;
}

.rawaja-btn-primary:active {
  transform: scale(0.98);
}

.rawaja-btn-primary:disabled {
  background: var(--rawaja-border);
  color: var(--rawaja-muted);
  cursor: not-allowed;
  transform: none;
}

.rawaja-btn-whatsapp {
  flex: 1;
  background: #25D366;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: var(--rawaja-radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 140px;
}

.rawaja-btn-whatsapp:hover {
  background: #1aab52;
  color: white;
}

.rawaja-btn-wishlist-detail {
  width: 50px;
  height: 50px;
  border: 2px solid var(--rawaja-border);
  background: var(--rawaja-surface);
  border-radius: var(--rawaja-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.rawaja-btn-wishlist-detail.active,
.rawaja-btn-wishlist-detail:hover {
  border-color: var(--rawaja-accent);
  background: #fff4f0;
  color: var(--rawaja-accent);
}

/* =========================================
   CART / CHECKOUT
========================================= */
.rawaja-cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rawaja-border);
  align-items: flex-start;
}

.rawaja-cart-item img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  border-radius: var(--rawaja-radius);
  background: var(--rawaja-bg);
  flex-shrink: 0;
}

.rawaja-cart-item .item-details {
  flex: 1;
}

.rawaja-cart-item .item-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.rawaja-cart-item .item-type {
  font-size: 0.8rem;
  color: var(--rawaja-muted);
  margin-bottom: 10px;
}

.rawaja-qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--rawaja-border);
  border-radius: var(--rawaja-radius);
  overflow: hidden;
  width: fit-content;
}

.rawaja-qty-control button {
  width: 32px;
  height: 32px;
  background: var(--rawaja-bg);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
  color: var(--rawaja-text);
}

.rawaja-qty-control button:hover {
  background: var(--rawaja-border);
}

.rawaja-qty-control input {
  width: 40px;
  height: 32px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--rawaja-border);
  border-right: 1.5px solid var(--rawaja-border);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Checkout options */
.rawaja-checkout-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.rawaja-checkout-option {
  border: 2px solid var(--rawaja-border);
  border-radius: var(--rawaja-radius-lg);
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.rawaja-checkout-option:hover,
.rawaja-checkout-option.active {
  border-color: var(--rawaja-primary);
  background: rgba(45, 106, 79, 0.04);
}

.rawaja-checkout-option .option-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.rawaja-checkout-option .option-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--rawaja-text);
}

.rawaja-checkout-option .option-desc {
  font-size: 0.78rem;
  color: var(--rawaja-muted);
  margin-top: 4px;
}

/* =========================================
   PROFILE PAGE
========================================= */
.rawaja-profile-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 40px 0;
}

.rawaja-profile-sidebar {
  background: var(--rawaja-surface);
  border-radius: var(--rawaja-radius-lg);
  padding: 24px;
  box-shadow: var(--rawaja-shadow);
  height: fit-content;
}

.rawaja-profile-sidebar .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--rawaja-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.rawaja-profile-sidebar .user-name {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.rawaja-profile-sidebar .user-email {
  text-align: center;
  font-size: 0.8rem;
  color: var(--rawaja-muted);
  margin-bottom: 24px;
}

.rawaja-sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rawaja-sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--rawaja-radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--rawaja-text);
  transition: all 0.2s;
}

.rawaja-sidebar-nav li a:hover,
.rawaja-sidebar-nav li.active a {
  background: rgba(45, 106, 79, 0.08);
  color: var(--rawaja-primary);
}

.rawaja-profile-content {
  background: var(--rawaja-surface);
  border-radius: var(--rawaja-radius-lg);
  padding: 32px;
  box-shadow: var(--rawaja-shadow);
}

/* =========================================
   ORDER STATUS BADGES
========================================= */
.rawaja-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

.rawaja-status.waiting {
  background: #FEF3C7;
  color: #92400E;
}

.rawaja-status.ongoing {
  background: #DBEAFE;
  color: #1E40AF;
}

.rawaja-status.completed {
  background: #D1FAE5;
  color: #065F46;
}

.rawaja-status.packing {
  background: #EDE9FE;
  color: #4C1D95;
}

.rawaja-status.in-delivery {
  background: #DBEAFE;
  color: #1E40AF;
}

.rawaja-status.delivered {
  background: #D1FAE5;
  color: #065F46;
}

/* =========================================
   FOOTER
========================================= */
.rawaja-footer {
  background: var(--rawaja-text);
  color: #E5E7EB;
  padding: 60px 0 32px;
}

.rawaja-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.rawaja-footer h3 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.rawaja-footer ul li {
  margin-bottom: 8px;
}

.rawaja-footer ul li a {
  color: #9CA3AF;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.rawaja-footer ul li a:hover {
  color: white;
}

.rawaja-footer-brand p {
  font-size: 0.88rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin-top: 10px;
}

.rawaja-footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #6B7280;
}

.rawaja-whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.2s, box-shadow 0.2s;
}

.rawaja-whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: white;
}

.rawaja-whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* =========================================
   FILTER SIDEBAR
========================================= */
.rawaja-shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 40px 0;
}

.rawaja-filter-sidebar {
  background: var(--rawaja-surface);
  border-radius: var(--rawaja-radius-lg);
  padding: 24px;
  box-shadow: var(--rawaja-shadow);
  height: fit-content;
  position: sticky;
  top: 80px;
}

.rawaja-filter-group {
  margin-bottom: 28px;
}

.rawaja-filter-group h4 {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--rawaja-muted);
  margin-bottom: 12px;
}

.rawaja-price-range {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.rawaja-price-range input[type="range"] {
  flex: 1;
  accent-color: var(--rawaja-primary);
}

/* =========================================
   ONBOARDING GUIDE OVERLAY
========================================= */
.rawaja-onboarding-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  display: none;
}

.rawaja-onboarding-overlay.active {
  display: block;
}

.rawaja-guide-popup {
  position: fixed;
  z-index: 9999;
  background: white;
  border-radius: var(--rawaja-radius-lg);
  padding: 20px 24px;
  max-width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  font-size: 0.88rem;
  line-height: 1.5;
}

.rawaja-guide-popup .guide-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--rawaja-primary);
}

.rawaja-guide-popup .guide-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  gap: 8px;
}

.rawaja-guide-popup .guide-btn-skip {
  color: var(--rawaja-muted);
  font-size: 0.82rem;
  cursor: pointer;
}

.rawaja-guide-popup .guide-btn-next {
  background: var(--rawaja-primary);
  color: white;
  border: none;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .rawaja-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .rawaja-hero h1 {
    font-size: 1.9rem;
  }

  .rawaja-product-detail {
    grid-template-columns: 1fr;
  }

  .rawaja-shop-layout {
    grid-template-columns: 1fr;
  }

  .rawaja-profile-layout {
    grid-template-columns: 1fr;
  }

  .rawaja-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rawaja-checkout-options {
    grid-template-columns: 1fr;
  }

  .rawaja-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .rawaja-filter-sidebar {
    position: static;
  }
}

@media (max-width: 480px) {
  .rawaja-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .rawaja-hero {
    padding: 50px 20px;
  }

  .rawaja-hero h1 {
    font-size: 1.6rem;
  }

  .rawaja-detail-actions {
    flex-direction: column;
  }

  .rawaja-btn-wishlist-detail {
    width: 100%;
  }
}
