:root {
  --cream: #f7f2ec;
  --cream-dark: #eee4d9;
  --blue: #6f89a8;
  --blush: #d9b8b0;
  --sage: #b5c0b2;
  --text: #3f3a36;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(63, 58, 54, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.announcement-bar {
  background: var(--blush);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.site-header {
  background: rgba(247, 242, 236, 0.96);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 25px rgba(63, 58, 54, 0.06);
}

.nav-wrapper {
  max-width: 1180px;
  margin: auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-logo img {
  max-width: 145px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-btn,
.cart-link {
  border: none;
  background: var(--white);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(63, 58, 54, 0.08);
  transition: 0.25s ease;
}

.search-btn:hover,
.cart-link:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.cart-link span {
  background: var(--blush);
  color: var(--white);
  min-width: 22px;
  height: 22px;
  padding: 2px 7px;
  margin-left: 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.menu-button {
  display: none;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 10px 24px 24px;
  gap: 14px;
  font-weight: 600;
}

.mobile-nav.active {
  display: flex;
}

.hero {
  position: relative;
  overflow: hidden;
  max-width: 90%;
  margin: auto;
  padding: 90px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("assets/branding/backdrop1.jpeg");
  background-size: 420px;
  background-repeat: repeat;
  opacity: 0.25;
  z-index: -1;
}

.eyebrow {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(46px, 7vw, 76px);
  color: var(--text);
  margin-bottom: 22px;
}

.hero-text {
  font-size: 19px;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.primary-btn {
  background: var(--blue);
  color: var(--white);
}

.primary-btn:hover {
  background: #5f7998;
  transform: translateY(-2px);
}

.secondary-btn {
  border: 2px solid var(--blue);
  color: var(--blue);
}

.secondary-btn:hover {
  background: var(--blue);
  color: var(--white);
}

.hero-image-card {
  background: var(--white);
  padding: 18px;
  border-radius: 220px 220px 28px 28px;
  box-shadow: var(--shadow);
}

.hero-image-card img {
  height: 520px;
  object-fit: cover;
  border-radius: 200px 200px 20px 20px;
  background: var(--cream-dark);
}

.categories,
.featured-products,
.why-section {
  max-width: 1180px;
  margin: auto;
  padding: 80px 24px;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 45px;
}

.script-text {
  font-family: "Sacramento", cursive;
  color: var(--blush);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 8px;
}

.section-heading h2,
.about-content h2 {
  font-size: clamp(36px, 5vw, 54px);
}

.category-grid,
.product-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card,
.product-card,
.why-card {
  background: var(--white);
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 12px 35px rgba(63, 58, 54, 0.08);
  text-align: center;
  transition: 0.25s ease;
}

.category-card:hover,
.product-card:hover,
.why-card:hover {
  transform: translateY(-6px);
}

.category-card img {
  height: 230px;
  object-fit: cover;
  border-radius: 160px 160px 24px 24px;
  background: var(--cream-dark);
  margin-bottom: 18px;
}

.category-card h3,
.product-card h3,
.why-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.about-section {
  max-width: 1180px;
  margin: 40px auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  background: var(--cream-dark);
  border-radius: 40px;
}

.about-image {
  background: var(--white);
  padding: 22px;
  border-radius: 40px;
  box-shadow: var(--shadow);
}

.about-image img {
  border-radius: 30px;
  background: var(--cream);
}

.about-content p {
  font-size: 18px;
  margin-bottom: 18px;
}

.about-content .btn {
  margin-top: 10px;
}

.product-card img {
  height: 250px;
  object-fit: cover;
  border-radius: 24px;
  background: var(--cream-dark);
  margin-bottom: 18px;
}

.product-card p {
  color: #776f68;
  margin-bottom: 8px;
}

.product-card span {
  color: var(--blue);
  font-weight: 800;
  font-size: 18px;
}

.why-card {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-card h3 {
  color: var(--blue);
}

.site-footer {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 70px 24px 34px;
  background: var(--cream-dark);
}

.footer-pattern {
  position: absolute;
  inset: 0;
  background-image: url("assets/branding/backdrop-pattern.png");
  background-size: 360px;
  background-repeat: repeat;
  opacity: 0.08;
}

.footer-logo,
.site-footer p,
.footer-links,
.site-footer small {
  position: relative;
  z-index: 1;
}

.footer-logo {
  max-width: 190px;
  margin: 0 auto 20px;
}

.site-footer p {
  margin-bottom: 24px;
  font-size: 18px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--blue);
}

@media (max-width: 920px) {
  .nav-wrapper {
    grid-template-columns: auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .nav-actions {
    gap: 10px;
  }

  .search-btn {
    display: none;
  }

  .cart-link {
    padding: 9px 13px;
    font-size: 13px;
  }

  .menu-button {
    display: block;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--blue);
    cursor: pointer;
  }

  .hero,
  .about-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-image-card img {
    height: 420px;
  }

  .category-grid,
  .product-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .announcement-bar {
    font-size: 12px;
  }

  .nav-wrapper {
    padding: 14px 18px;
  }

  .brand-logo img {
    max-width: 120px;
  }

  .hero {
    padding: 50px 18px;
    gap: 35px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-image-card img {
    height: 340px;
  }

  .category-grid,
  .product-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .categories,
  .featured-products,
  .why-section {
    padding: 60px 18px;
  }

  .about-section {
    margin: 20px 18px;
    padding: 40px 18px;
    border-radius: 28px;
  }
}

/*Shop*/
.shop-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 90px 24px 70px;
  background: var(--cream-dark);
}

.shop-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("assets/branding/backdrop1.jpeg");
  background-size: 420px;
  background-repeat: repeat;
  opacity: 0.16;
}

.shop-hero h1,
.shop-hero p {
  position: relative;
  z-index: 1;
}

.shop-hero h1 {
  font-size: clamp(46px, 7vw, 72px);
  margin-bottom: 16px;
}

.shop-hero > p:last-child {
  max-width: 620px;
  margin: auto;
  font-size: 18px;
}

.shop-layout {
  max-width: 1180px;
  margin: auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
}

.shop-sidebar {
  background: var(--white);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 12px 35px rgba(63, 58, 54, 0.08);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.shop-sidebar h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.filter-btn {
  width: 100%;
  display: block;
  border: none;
  background: var(--cream);
  color: var(--text);
  padding: 13px 16px;
  border-radius: 999px;
  margin-bottom: 10px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
  text-align: left;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--blue);
  color: var(--white);
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.shop-toolbar p {
  font-weight: 700;
}

.shop-toolbar select {
  border: none;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 8px 22px rgba(63, 58, 54, 0.08);
}

.shop-product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.add-cart-btn {
  margin-top: 16px;
  width: 100%;
  border: none;
  background: var(--blush);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.add-cart-btn:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.product-card.hide {
  display: none;
}

@media (max-width: 920px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }

  .shop-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .shop-product-grid {
    grid-template-columns: 1fr;
  }
}

/*Footer Credit*/
.website-credit {
  margin-top: 12px;
  font-size: 13px;
  color: #8b8178;
}

.website-credit a {
  color: var(--blue);
  text-decoration: none;
}

.website-credit a:hover {
  text-decoration: underline;
}

/* contact page */

.contact-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 90px 24px 70px;
  background: var(--cream-dark);
}

.contact-hero h1,
.contact-hero p {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  font-size: clamp(46px, 7vw, 72px);
  margin-bottom: 16px;
}

.contact-hero > p:last-child {
  max-width: 680px;
  margin: auto;
  font-size: 18px;
}

.contact-section {
  max-width: 1180px;
  margin: auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
}

.contact-card {
  background: var(--white);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 12px 35px rgba(63, 58, 54, 0.08);
}

.contact-info h2,
.contact-form-card h2 {
  font-size: clamp(34px, 5vw, 50px);
  margin-bottom: 18px;
}

.contact-info p {
  font-size: 18px;
  margin-bottom: 24px;
}

.contact-methods {
  display: grid;
  gap: 14px;
}

.contact-method {
  background: var(--cream);
  border-radius: 22px;
  padding: 18px;
  transition: 0.25s ease;
}

.contact-method:hover {
  transform: translateY(-3px);
  background: var(--cream-dark);
}

.contact-method span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-method strong {
  font-size: 17px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-group label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 2px solid transparent;
  background: var(--cream);
  border-radius: 18px;
  padding: 14px 16px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  color: var(--text);
  outline: none;
  transition: 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
}

.form-note {
  margin-top: 18px;
  font-size: 14px;
  color: #8b8178;
}

.website-credit {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  font-size: 13px;
  color: #8b8178;
}

.website-credit a {
  color: var(--blue);
  font-weight: 700;
}

.website-credit a:hover {
  text-decoration: underline;
}

@media (max-width: 920px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}