/* One Stop Luxurs — shared styles */

:root {
  --maroon: #7a1f3d;
  --maroon-dark: #5c1730;
  --gold: #c8a23a;
  --gold-light: #e8cf8a;
  --cream: #fdf8ee;
  --cream-dark: #f4ead4;
  --text: #2b1810;
  --text-soft: #6b5a4e;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 6px 20px rgba(43, 24, 16, 0.12);
  --max-width: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4, .brand-name {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--maroon);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--maroon-dark); }

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

.btn-gold {
  background: var(--gold);
  color: var(--maroon-dark);
}
.btn-gold:hover { background: var(--gold-light); }

/* Top announcement bar */
.announce {
  background: var(--maroon-dark);
  color: var(--gold-light);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  padding: 7px 12px;
}

/* Header */
header.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-name {
  font-size: 1.25rem;
  color: var(--maroon);
  line-height: 1.1;
}
.brand-name span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--text-soft);
  text-transform: uppercase;
  margin-top: 2px;
}

nav.main-nav ul {
  display: flex;
  gap: 30px;
}

nav.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--maroon);
}
nav.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

.nav-actions { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--maroon);
  display: block;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--white);
  padding: 90px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(200,162,58,0.18) 0, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(200,162,58,0.15) 0, transparent 40%);
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.hero-eyebrow {
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  max-width: 800px;
  margin: 0 auto 20px;
}
.hero p {
  max-width: 560px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page header (non-home pages) */
.page-header {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--white);
  padding: 64px 24px;
  text-align: center;
}
.page-header h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto; }
.breadcrumb { font-size: 0.85rem; color: var(--gold-light); margin-bottom: 14px; letter-spacing: 0.5px; }

/* Section titles */
.section-head { text-align: center; max-width: 620px; margin: 0 auto 46px; }
.section-eyebrow {
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--text); margin-bottom: 12px; }
.section-head p { color: var(--text-soft); }

section { padding: 80px 0; }
section.alt { background: var(--cream-dark); }

/* Category cards (home) */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.category-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
  display: block;
}
.category-card:hover { transform: translateY(-6px); }
.category-media {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.category-media svg { width: 64px; height: 64px; }
.category-media img { width: 100%; height: 100%; object-fit: cover; }
.category-body { padding: 24px; text-align: center; }
.category-body h3 { font-size: 1.2rem; margin-bottom: 6px; color: var(--text); }
.category-body p { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 14px; }
.category-link { color: var(--maroon); font-weight: 600; font-size: 0.88rem; }
.category-link::after { content: " \2192"; }

.media-jewelry { background: linear-gradient(135deg, #f3dfa0, #c8a23a); }
.media-cosmetics { background: linear-gradient(135deg, #f2c6d0, #b23a5b); }
.media-clothing { background: linear-gradient(135deg, #e3b8c9, #7a1f3d); }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-media {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255,0.92);
  text-align: center;
  padding: 20px;
  overflow: hidden;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media svg { width: 46px; height: 46px; }
.product-media small {
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.85;
}
.product-info { padding: 20px; }
.product-info h3 { font-size: 1.05rem; margin-bottom: 6px; }
.product-info .price { color: var(--maroon); font-weight: 700; margin-bottom: 12px; }
.product-tag {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--maroon);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* Why us / features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card { text-align: center; padding: 10px; }
.feature-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--maroon);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-soft); font-size: 0.88rem; }

/* About page */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-story .media-block {
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-light), var(--maroon));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.about-story .media-block svg { width: 90px; height: 90px; color: var(--white); }
.about-story h2 { margin-bottom: 16px; }
.about-story p { color: var(--text-soft); margin-bottom: 14px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
}
.value-card h3 { color: var(--maroon); margin-bottom: 10px; font-size: 1.05rem; }
.value-card p { color: var(--text-soft); font-size: 0.9rem; }

/* Contact page */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info-card {
  background: var(--maroon);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-info-card h3 { margin-bottom: 20px; }
.contact-info-card ul li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 0.94rem;
  color: rgba(255,255,255,0.9);
}
.contact-info-card ul li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold-light); }
.social-row { display: flex; gap: 12px; margin-top: 26px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: rgba(255,255,255,0.15); }
.social-row svg { width: 17px; height: 17px; }

form.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.94rem;
  background: var(--cream);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-note { font-size: 0.8rem; color: var(--text-soft); margin-top: 10px; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 200;
}
.whatsapp-float svg { width: 28px; height: 28px; color: white; }
.whatsapp-float:hover { transform: scale(1.06); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--gold), #d9b95a);
  text-align: center;
  padding: 60px 24px;
}
.cta-band h2 { color: var(--maroon-dark); margin-bottom: 14px; }
.cta-band p { color: var(--maroon-dark); opacity: 0.85; margin-bottom: 26px; }

/* Footer */
footer.site-footer {
  background: var(--maroon-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 24px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; font-family: 'Poppins', sans-serif; }
.footer-grid p { font-size: 0.88rem; line-height: 1.7; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a { font-size: 0.88rem; }
.footer-grid ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 960px) {
  nav.main-nav { display: none; }
  .hamburger { display: flex; }
  .brand-name { font-size: 1.1rem; }
  nav.main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--cream-dark);
  }
  nav.main-nav.open ul { flex-direction: column; gap: 16px; }
}

@media (max-width: 900px) {
  .category-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story, .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .category-grid, .product-grid, .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 20px 70px; }
}
