@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Outfit:wght@300;400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #8b6b5c;
  --secondary: #d4a574;
  --accent: #e8ddd4;
  --dark: #2c2420;
  --light: #faf8f6;
  --text: #4a4340;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(44, 36, 32, 0.08);
  --transition: all 0.3s ease;
}
html {
  scroll-behavior: smooth;
  font-size: 15px;
}
body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
header.scrolled {
  position: fixed;
  background: rgba(250, 248, 246, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
header.hidden {
  transform: translateY(-100%);
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.logo i {
  color: var(--secondary);
  font-size: 1.2rem;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
nav ul {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
nav a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
  position: relative;
}
nav a:hover {
  color: var(--primary);
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition);
}
nav a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 280px;
    height: 100vh;
    background: var(--light);
    padding: 5rem 2rem 2rem;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  }
  nav.active {
    right: 0;
  }
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  nav a {
    font-size: 1rem;
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(212, 165, 116, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--dark);
}
.hero-text p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.hero-image {
  position: relative;
}
.hero-image img {
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--white);
  padding: 1rem;
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
}
.hero-badge i {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.hero-badge span {
  display: block;
  font-size: 0.75rem;
  color: var(--text);
}
@media (max-width: 768px) {
  .hero {
    padding: 7rem 0 3rem;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-image {
    order: -1;
  }
  .hero-badge {
    bottom: auto;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
section {
  padding: 4rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.section-header h2 {
  font-size: 2rem;
}
.section-header p {
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0.8rem auto 0;
}
.features {
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.8rem;
  transition: var(--transition);
}
.feature-card:hover {
  background: var(--accent);
  transform: translateY(-5px);
}
.feature-card i {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 0.8rem;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.about-preview {
  background: var(--light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-image img {
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
}
.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.about-text p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}
.stat {
  text-align: center;
}
.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--primary);
  font-weight: 600;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text);
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-image {
    order: -1;
  }
  .about-stats {
    justify-content: center;
  }
}
.products {
  background: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--light);
  border-radius: 0.8rem;
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.product-icon {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
}
.product-icon i {
  font-size: 3rem;
  color: var(--primary);
}
.product-info {
  padding: 1.2rem;
}
.product-info h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.product-info p {
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}
.product-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 600;
}
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
.testimonials {
  background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
}
.testimonial-card i {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.testimonial-card p {
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial-author {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--dark);
}
.testimonial-location {
  font-size: 0.75rem;
  color: var(--text);
}
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.cta {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 3rem 0;
}
.cta h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.cta p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.cta .btn-primary {
  background: var(--secondary);
}
.cta .btn-primary:hover {
  background: var(--white);
  color: var(--dark);
}
footer {
  background: var(--dark);
  color: var(--white);
  padding: 2rem 0 1rem;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.75rem;
  opacity: 0.8;
  transition: var(--transition);
}
.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.7rem;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}
.page-hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}
.page-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}
.page-hero p {
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
}
.breadcrumb a {
  color: var(--primary);
}
.breadcrumb span {
  opacity: 0.6;
}
.about-section {
  background: var(--white);
  padding: 4rem 0;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-content img {
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
}
.about-content h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.about-content p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}
.values-section {
  background: var(--light);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 0.8rem;
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.value-card i {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 0.8rem;
}
.value-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
.team-section {
  background: var(--white);
}
.team-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.team-intro p {
  font-size: 0.9rem;
}
.services-section {
  background: var(--light);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.8rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-card i {
  font-size: 1.5rem;
  color: var(--secondary);
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.service-card p {
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.contact-section {
  background: var(--white);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.contact-info p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.contact-item i {
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 0.2rem;
}
.contact-item span {
  font-size: 0.85rem;
}
.contact-form {
  background: var(--light);
  padding: 2rem;
  border-radius: 0.8rem;
}
.contact-form h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--accent);
  border-radius: 0.4rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.checkbox-group input {
  width: auto;
  margin-top: 0.2rem;
}
.checkbox-group label {
  font-size: 0.75rem;
}
.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
.map-section {
  background: var(--light);
  padding: 3rem 0;
}
.map-container {
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  text-align: center;
  padding: 2rem;
}
.error-content h1 {
  font-size: 5rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.error-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.error-content p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
  text-align: center;
  padding: 2rem;
}
.thankyou-content i {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.thankyou-content h1 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.thankyou-content p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 400px;
}
.policy-section {
  background: var(--white);
  padding: 4rem 0;
}
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}
.policy-content h2 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  color: var(--dark);
}
.policy-content h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.8rem;
  color: var(--primary);
}
.policy-content p {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.policy-content ul {
  margin: 1rem 0 1rem 1.5rem;
}
.policy-content li {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}
.policy-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 4px;
  height: 4px;
  background: var(--secondary);
  border-radius: 50%;
}
.class-section {
  background: var(--white);
}
.class-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.class-card {
  background: var(--light);
  border-radius: 0.8rem;
  overflow: hidden;
  transition: var(--transition);
}
.class-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.class-icon {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
}
.class-icon i {
  font-size: 2.5rem;
  color: var(--primary);
}
.class-info {
  padding: 1.2rem;
}
.class-info h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.class-info p {
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}
.class-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--primary);
}
@media (max-width: 768px) {
  .class-grid {
    grid-template-columns: 1fr;
  }
}
.schedule-section {
  background: var(--light);
}
.schedule-table {
  background: var(--white);
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.schedule-table table {
  width: 100%;
  border-collapse: collapse;
}
.schedule-table th,
.schedule-table td {
  padding: 1rem;
  text-align: left;
  font-size: 0.85rem;
}
.schedule-table th {
  background: var(--primary);
  color: var(--white);
}
.schedule-table tr:nth-child(even) {
  background: var(--accent);
}
.bouquet-section {
  background: var(--white);
}
.bouquet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bouquet-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--light);
  border-radius: 0.8rem;
  transition: var(--transition);
}
.bouquet-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.bouquet-card i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.bouquet-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.bouquet-card p {
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .bouquet-grid {
    grid-template-columns: 1fr;
  }
}
.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 1rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: var(--transition);
}
.privacy-popup.show {
  transform: translateY(0);
}
.popup-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: 0 auto;
}
.popup-content p {
  font-size: 0.8rem;
  flex: 1;
}
.popup-content a {
  color: var(--secondary);
  text-decoration: underline;
}
.popup-buttons {
  display: flex;
  gap: 0.5rem;
}
.popup-buttons .btn {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  .popup-content {
    flex-direction: column;
    text-align: center;
  }
}
.seasonal-highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
}
.highlight-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.highlight-content img {
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
}
.highlight-text h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.highlight-text p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.highlight-list {
  margin-top: 1rem;
}
.highlight-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.highlight-list i {
  color: var(--secondary);
}
@media (max-width: 768px) {
  .highlight-content {
    grid-template-columns: 1fr;
  }
}
.faq-section {
  background: var(--light);
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  margin-bottom: 0.8rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.faq-question {
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question i {
  transition: var(--transition);
}
.faq-answer {
  padding: 0 1rem 1rem;
  font-size: 0.85rem;
  display: none;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-item.active .faq-answer {
  display: block;
}
@media (max-width: 320px) {
  html {
    font-size: 13px;
  }
  .container {
    padding: 0 0.8rem;
  }
  .hero-text h1 {
    font-size: 1.6rem;
  }
  nav {
    width: 85%;
  }
  .products-grid,
  .features-grid,
  .values-grid,
  .class-grid,
  .bouquet-grid {
    grid-template-columns: 1fr;
  }
}
