/* Homepage — pixel-perfect layout (no Tailwind required) */

.patelbella-container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
}

@media (max-width: 768px) {
  .patelbella-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.patelbella-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* ---- Hero ---- */
.patelbella-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.patelbella-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.patelbella-hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.patelbella-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(252, 249, 248, 0.4), transparent);
}

.patelbella-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.patelbella-hero-copy {
  max-width: 42rem;
}

.patelbella-kicker {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #735c00;
  margin: 0 0 1rem;
}

.patelbella-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #001a48;
  margin: 0 0 2rem;
}

.patelbella-hero-text {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #444651;
  margin: 0 0 2.5rem;
  max-width: 32rem;
}

.patelbella-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.patelbella-hero-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 3;
}

@media (max-width: 768px) {
  .patelbella-hero-title { font-size: 40px; }
}

/* ---- Bento grid ---- */
.patelbella-bento-wrap {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.patelbella-bento {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  height: 600px;
}

.patelbella-bento-large,
.patelbella-bento-small {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.patelbella-bento-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

.patelbella-bento-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.patelbella-bento-large:hover .patelbella-bento-bg,
.patelbella-bento-small:hover .patelbella-bento-bg {
  transform: scale(1.05);
}

.patelbella-bento-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.6s ease;
}

.patelbella-bento-large:hover .patelbella-bento-overlay,
.patelbella-bento-small:hover .patelbella-bento-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.patelbella-bento-label {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: #ffffff;
  z-index: 2;
}

.patelbella-bento-label-lg {
  bottom: 2.5rem;
  left: 2.5rem;
}

.patelbella-bento-label h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: #ffffff;
}

.patelbella-bento-label-lg h3 {
  font-size: 40px;
  font-weight: 600;
}

.patelbella-bento-label p {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  display: inline-block;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 0.25rem;
}

@media (max-width: 900px) {
  .patelbella-bento {
    grid-template-columns: 1fr;
    height: auto;
  }
  .patelbella-bento-large { min-height: 320px; }
  .patelbella-bento-small { min-height: 240px; }
}

/* ---- New Arrivals ---- */
.patelbella-arrivals {
  background-color: #f6f3f2;
}

.patelbella-arrivals-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.patelbella-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  color: #001a48;
  margin: 0;
}

.patelbella-title-bar {
  width: 5rem;
  height: 4px;
  background-color: #735c00;
  margin-top: 1rem;
}

.patelbella-link {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #735c00;
  text-decoration: none;
  position: relative;
}

.patelbella-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .patelbella-product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .patelbella-product-grid { grid-template-columns: 1fr; }
}

/* ---- Story section (fixes missing text) ---- */
.patelbella-story {
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.patelbella-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.patelbella-story-media {
  position: relative;
  width: 100%;
}

.patelbella-story-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
}

.patelbella-story-frame {
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(115, 92, 0, 0.2);
  transform: translate(1rem, 1rem);
  z-index: 1;
  pointer-events: none;
}

.patelbella-story-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.patelbella-story-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  color: #001a48;
  margin: 0;
}

.patelbella-body-lg {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #444651;
  margin: 0;
}

.patelbella-body-md {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #444651;
  margin: 0;
}

.patelbella-muted {
  opacity: 0.8;
}

.patelbella-story-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #001a48;
  text-decoration: none;
  margin-top: 0.5rem;
}

.patelbella-story-link .material-symbols-outlined {
  transition: transform 0.3s ease;
}

.patelbella-story-link:hover .material-symbols-outlined {
  transform: translateX(0.5rem);
}

@media (max-width: 900px) {
  .patelbella-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ---- Newsletter ---- */
.patelbella-newsletter {
  background-color: #001a48;
  color: #ffffff;
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.patelbella-newsletter-inner {
  max-width: 48rem;
}

.patelbella-newsletter-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1.5rem;
}

.patelbella-newsletter-text {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #7a97e2;
  margin: 0 0 2.5rem;
}

.patelbella-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.patelbella-newsletter-form input {
  width: 100%;
  max-width: 20rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid #7a97e2;
  padding: 0.75rem 0.25rem;
  color: #ffffff;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 16px;
  outline: none;
}

.patelbella-newsletter-form input::placeholder {
  color: rgba(122, 151, 226, 0.6);
}

.patelbella-newsletter-form input:focus {
  border-bottom-color: #ffffff;
}

.pb-btn-subscribe {
  background-color: #ffe088 !important;
  color: #241a00 !important;
  border-color: #ffe088 !important;
}

.pb-btn-subscribe:hover {
  background-color: #e9c349 !important;
  border-color: #e9c349 !important;
}

@media (max-width: 768px) {
  .patelbella-newsletter-form {
    flex-direction: column;
  }
  .patelbella-newsletter-form input,
  .pb-btn-subscribe {
    width: 100%;
    max-width: 100%;
  }
}
