/*
Theme Name: Creative Flower Crafts
Author: Saloni
Version: 1.0
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* ============================= */
/* HEADER (STICKY + DROPDOWN) */
/* ============================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: #BE1C2D;
  padding: 18px 0;

  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

/* Optional shadow when scrolling (JS can enhance later) */
.site-header.sticky {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ============================= */
/* HEADER CONTAINER */
/* ============================= */

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ============================= */
/* LOGO */
/* ============================= */

.logo a {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
}

/* ============================= */
/* NAV MENU */
/* ============================= */

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;

  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

/* Hover underline effect */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #FF5757;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ============================= */
/* DROPDOWN */
/* ============================= */

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 120%;
  left: 0;

  background: #ffffff;
  min-width: 190px;
  padding: 10px 0;

  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;

  z-index: 999;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown items */
.dropdown li {
  width: 100%;
}

.dropdown li a {
  display: block;
  padding: 12px 18px;

  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.dropdown li a:hover {
  background: #f7f7f7;
  color: #BE1C2D;
}

/* ============================= */
/* RESPONSIVE (MOBILE BASIC) */
/* ============================= */

@media (max-width: 768px) {
  .main-nav {
    display: none; /* mobile menu later with JS */
  }
}

/* ===============================
   HERO SECTION
================================ */
.hero {
  background: #f7f2f4;
  padding: 80px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT CONTENT */
.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #333;
}

/* Highlight words */
.hero-content .highlight {
  color: #d62828;
}

.hero-content p {
  font-size: 16px;
  color: black;
  margin-bottom: 30px;
  max-width: 500px;
}

/* Button */
.hero-btn {
  display: inline-block;
  background: #d62828;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.hero-btn:hover {
  background: #b81f1f;
}

/* RIGHT IMAGE */
.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* ===============================
   HERO RESPONSIVE
================================ */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    text-align: center;
  }
}

/* ===============================
   HERO IMAGE GLOW (ADD ONLY)
================================ */
.hero-image {
  position: relative;
}

.hero-image img {
  position: relative;
  z-index: 2;
}

.glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.35) 20%,
    rgba(230, 57, 70, 0) 100%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(25px);
}

/* ===============================
   HERO TYPOGRAPHY
================================ */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  color: #2b2b2b;
  margin-bottom: 20px;
}

.hero-title .highlight-primary {
  color: #BE1C2D;
}

.hero-title .highlight-accent {
  color: #FF5757;
}


.hero-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #555;
  max-width: 480px;
  margin-bottom: 30px;
}

/* ===============================
   HERO BUTTON (GRADIENT)
================================ */
.hero-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;

  background: linear-gradient(135deg, #BE1C2D, #FF5757);
  box-shadow: 0 8px 20px rgba(190, 28, 45, 0.35);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 87, 87, 0.45);
}

/* ===============================
   USP SECTION
================================ */
.usp-section {
  margin-top: -40px; /* pulls up like Elementor */
  padding: 0 20px 60px;
}

.usp-container {
  max-width: 1100px;
  margin: auto;

  background: #ffffff;
  border-radius: 20px;
  padding: 30px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.usp-item {
  text-align: center;
  flex: 1;
}

.usp-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.usp-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #BE1C2D;
}

.usp-item p {
  font-size: 14px;
  color: black;
}

/* Responsive */
@media (max-width: 768px) {
  .usp-container {
    flex-direction: column;
    gap: 25px;
  }
}

.usp-section {
  margin-top: -90px;
  position: relative;
  z-index: 10;
}

.usp-box {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 30px;

  padding: 22px 36px; /* LESS vertical padding */

  display: flex;
  justify-content: space-between;
  gap: 30px;

  /* Elementor-like soft shadow */
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.14),
    0 12px 35px rgba(0, 0, 0, 0.06);
}

.usp-item {
  flex: 1;
  text-align: center;
}

.usp-item img {
  width: 48px;
  margin-bottom: 10px;
  transform: translateY(-4px);
}

/* ===============================
   EXPLORE CATEGORIES
================================ */
.explore-categories {
  padding: 80px 20px 60px;
  text-align: center;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 50px;
  color: #222;
}

.categories-grid {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.category-card {
  text-decoration: none;
  color: #222;
  width: 180px;
}

.category-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid #FF5757;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.category-circle img {
  width: 75%;
  height: auto;
  object-fit: contain;
}

.category-card h3 {
  margin-top: 15px;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 500;
}

/* Hover effect */
.category-card:hover .category-circle {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 992px) {
  .categories-grid {
    justify-content: center;
  }
}

/* ===============================
   BEST SELLERS SECTION
================================ */
.best-sellers {
  padding: 80px 20px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Section Heading */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: #222;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Product Card */
.product-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

/* Badge */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff4d4d;
  color: #ffffff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 600;
}

/* Wishlist */
.wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
  color: #ff4d4d;
}

/* Product Image */
.product-card img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Title */
.product-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 10px;
}

/* Description */
.product-card p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

/* Price */
.price {
  margin-bottom: 15px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

.new-price {
  font-weight: 700;
  font-size: 18px;
}

/* Button */
.add-to-cart {
  background: linear-gradient(90deg, #BE1C2D, #FF5757);
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* PRODUCT CARD HOVER EFFECT */
.product-card {
  transition: all 0.35s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* IMAGE ZOOM ON HOVER */
.product-card img {
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

/* ADD TO CART HOVER GLOW */
.add-to-cart {
  transition: all 0.3s ease;
}

.product-card:hover .add-to-cart {
  box-shadow: 0 10px 25px rgba(190, 28, 45, 0.4);
  transform: translateY(-2px);
}

/* SMOOTH UI FEEL */
.product-card *,
.add-to-cart {
  -webkit-font-smoothing: antialiased;
}

/* ===============================
   RESPONSIVE – PRODUCT CARDS
================================ */

/* Grid container */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card base (safety) */
.product-card {
  width: 100%;
}

/* Images responsive */
.product-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* -------------------------------
   TABLET (max-width: 1024px)
-------------------------------- */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* -------------------------------
   MOBILE (max-width: 768px)
-------------------------------- */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card {
    padding: 20px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .product-card p {
    font-size: 14px;
  }

  .product-card .price {
    font-size: 18px;
  }

  /* Button full width on mobile */
  .product-card button {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }
}

/* WHY CHOOSE US */
.why-choose {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.why-choose .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 10px;
}

.why-choose .section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.why-card {
  max-width: 260px;
  margin: auto;
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon img {
  width: 80px;
  height: 80px;
}

.why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}

.why-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-choose .section-title {
    font-size: 28px;
  }
}

/* CUSTOMER REVIEWS */
.reviews-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.reviews-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 10px;
}

.section-subtitle {
  font-family: 'Poppins', sans-serif;
  color: #666;
  margin-bottom: 50px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.review-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.stars {
  color: #FFC107;
  font-size: 30px;
  margin-bottom: 15px;
}

.review-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
}

.review-card span {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   MAKE SOMEONE SMILE TODAY – CTA
================================ */

.make-smile-cta {
  background: linear-gradient(
    to bottom,
    #fdebed 0%,
    #fff6f7 50%,
    #ffffff 100%
  );
  padding: 90px 20px 80px;
  text-align: center;
}

.make-smile-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
}

.make-smile-cta p {
  max-width: 650px;
  margin: 0 auto 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* CTA BUTTON WRAPPER */
.make-smile-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.make-smile-cta .btn-primary {
  background: linear-gradient(135deg, #BE1C2D, #FF5757);
  color: #fff;
  padding: 14px 34px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(190, 28, 45, 0.35);
  transition: all 0.3s ease;
}

.make-smile-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(190, 28, 45, 0.45);
}

/* OUTLINE BUTTON */
.make-smile-cta .btn-outline {
  background: #fff;
  color: #BE1C2D;
  padding: 14px 34px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #BE1C2D;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.make-smile-cta .btn-outline:hover {
  background: #BE1C2D;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(190, 28, 45, 0.35);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .make-smile-cta h2 {
    font-size: 28px;
  }

  .make-smile-cta p {
    font-size: 15px;
  }
}

/* ============================= */
/* FOOTER */
/* ============================= */

.site-footer {
  background: linear-gradient(180deg, #111111 0%, #000000 100%);
  color: #ffffff;
  padding: 70px 0 0;
  font-family: 'Poppins', sans-serif;
}

/* ============================= */
/* FOOTER CONTAINER */
/* ============================= */

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* ============================= */
/* FOOTER COLUMNS */
/* ============================= */

.footer-column h3,
.footer-column h4 {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 600;
  color: #ffffff;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.7;
  color: #cccccc;
  max-width: 280px;
}

/* ============================= */
/* FOOTER LINKS */
/* ============================= */

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #cccccc;
  font-size: 14px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-column ul li a:hover {
  color: #FF5757;
  padding-left: 6px;
}

/* ============================= */
/* SOCIAL LINKS */
/* ============================= */

.social-links a {
  display: block;
  text-decoration: none;
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #FF5757;
  transform: translateX(6px);
}

/* ============================= */
/* FOOTER BOTTOM */
/* ============================= */

.footer-bottom {
  margin-top: 60px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #aaaaaa;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column p {
    margin: auto;
  }

  .footer-column ul li a:hover,
  .social-links a:hover {
    padding-left: 0;
    transform: none;
  }
}
