/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: Tahoma, Arial, sans-serif;
  background: #f8f8f8;
  color: #111827;
}

body {
  direction: rtl;
}

.store-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
}

.store-header {
  background: #0b1e3c;
  color: #fff;
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.store-brand {
  font-size: 28px;
  font-weight: 800;
  color: #c9a66b;
}

.store-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.store-hero {
  margin: 28px 36px 0;
  border-radius: 30px;
  overflow: hidden;
  min-height: 480px;
  background:
    linear-gradient(90deg, rgba(7,16,32,0.82) 0%, rgba(7,16,32,0.52) 42%, rgba(7,16,32,0.16) 100%),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80')
    center/cover no-repeat;
  color: #fff;
  display: grid;
  align-items: center;
  padding: 54px;
}

.store-hero-content {
  max-width: 640px;
}

.store-hero h1 {
  font-size: 64px;
  line-height: 1.1;
  margin: 0 0 14px;
}

.store-hero p {
  font-size: 22px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.hero-btn-primary,
.hero-btn-secondary {
  padding: 16px 24px;
  border-radius: 16px;
  font-weight: 700;
  cursor: pointer;
}

.hero-btn-primary {
  background: #c9a66b;
  color: #111827;
  border: none;
}

.hero-btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
}

.section {
  padding: 28px 36px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: 34px;
}

.category-grid,
.product-grid {
  display: grid;
  grid-gap: 18px;
  gap: 18px;
}

.category-grid {
  grid-template-columns: repeat(5, 1fr);
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.category-card,
.product-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #edf0f4;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.category-image,
.product-image {
  background-size: cover;
  background-position: center;
}

.category-image {
  height: 180px;
}

.product-image {
  height: 230px;
}

.category-body,
.product-body {
  padding: 16px;
}

.category-title {
  font-size: 24px;
  font-weight: 700;
}

.product-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-price {
  font-size: 28px;
  font-weight: 800;
  color: #0b1e3c;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.product-btn-gold,
.product-btn-dark {
  flex: 1 1;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.product-btn-gold {
  background: #c9a66b;
  color: #111827;
}

.product-btn-dark {
  background: #0b1e3c;
  color: #fff;
}

@media (max-width: 1200px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .store-hero h1 { font-size: 42px; }
}

@media (max-width: 700px) {
  .store-header,
  .section,
  .store-hero {
    margin: 0;
    padding: 20px;
  }

  .store-header {
    flex-direction: column;
    gap: 12px;
  }

  .store-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .store-hero {
    min-height: 360px;
    border-radius: 0;
  }

  .store-hero h1 {
    font-size: 34px;
  }

  .store-hero p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

