/* =====================================================
   SHOP HERO
===================================================== */

.shop-hero {
  background: #f8f5f2;

  padding:
    110px
    20px;

  text-align: center;

  position: relative;
  overflow: hidden;
}

.shop-hero h1 {
  font-family: 'Cormorant Garamond', serif;

  font-size: 82px;
  font-weight: 600;

  color: #111;

  margin-bottom: 20px;
}

.shop-hero p {
  font-size: 18px;
  color: #555;
}

/* GRADIENT LINE */
.gradient-line {
  width: 90px;
  height: 3px;

  margin:
    25px auto;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    #4facfe,
    #8e6cff,
    #ff4e8d
  );
}

/* =====================================================
   FILTER BAR
===================================================== */

.shop-filter-section {
  padding:
    40px
    40px
    10px;

  background: white;
}

.shop-filter-wrapper {
  max-width: 1400px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;
}

/* FILTERS */
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* BUTTON */
.filter-btn {
  padding:
    12px
    22px;

  border: none;
  border-radius: 999px;

  background: transparent;

  cursor: pointer;

  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;

  transition: 0.25s ease;
}

.filter-btn:hover {
  background: #f3f3f3;
}

/* ACTIVE */
.active-filter {
  background: black;
  color: white;
}

/* SORT */
.shop-sort select {
  padding:
    12px
    18px;

  border:
    1px solid #ddd;

  border-radius: 10px;

  background: white;

  cursor: pointer;

  font-family: 'Poppins', sans-serif;
  font-size: 14px;

  outline: none;
}

/* =====================================================
   PRODUCTS
===================================================== */

.shop-products {
  padding:
    30px
    40px
    90px;
}

/* GRID */
.products-grid {
  max-width: 1400px;
  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 28px;
}

/* =====================================================
   PRODUCT CARD
===================================================== */

.product-card {
  background: white;

  border-radius: 20px;
  overflow: hidden;

  border:
    1px solid #ececec;

  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 12px 30px rgba(0,0,0,0.06);
}

/* IMAGE */
.product-image {
  width: 100%;
  height: 280px;

  overflow: hidden;

  background: #ffffff;
}

.product-image {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* INFO */
.product-info {
  padding: 22px;
}

/* TITLE */
.product-info h3 {
  font-size: 22px;
  font-weight: 500;

  color: #111;

  margin-bottom: 10px;
}

/* PRICE */
.product-price {
  font-size: 17px;
  color: #666;

  margin-bottom: 22px;
}

/* ACTIONS */
.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BUTTON */
.add-cart-btn {
  height: 46px;

  padding:
    0 24px;

  border-radius: 10px;
}

.product-info h3 {
  min-height: 90px;
}

/* =====================================================
   SHOP BENEFITS
===================================================== */

.shop-benefits {
  padding: 30px 0 80px;
}

/* GRID */

.shop-benefits-grid {
  background: #f8f6f2;

  border-radius: 28px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  overflow: hidden;
}

/* ITEM */

.shop-benefit-item {
  padding: 50px 35px;

  text-align: center;

  position: relative;
}

/* DIVIDER */

.shop-benefit-item:not(:last-child)::after {

  content: "";

  position: absolute;

  top: 50%;
  right: 0;

  transform: translateY(-50%);

  width: 1px;
  height: 120px;

  background: rgba(0,0,0,0.08);
}

/* ICON */

.shop-benefit-item svg {
  width: 34px;
  height: 34px;

  margin-bottom: 20px;

  stroke-width: 1.7;

  stroke: url(#iconGradient);

  fill: none;
}

/* TITLE */

.shop-benefit-item h4 {
  font-size: 17px;
  font-weight: 600;

  margin-bottom: 10px;

  color: #111;
}

/* TEXT */

.shop-benefit-item p {
  font-size: 15px;
  line-height: 1.7;

  color: #666;
}

/* RESPONSIVE */

@media (max-width: 1000px) {

  .shop-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 600px) {

  .shop-benefits-grid {
    grid-template-columns: 1fr;
  }

  .shop-benefit-item:not(:last-child)::after {
    display: none;
  }

}/* =========================
   NEWSLETTER SECTION
========================= */

.newsletter {
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;

  background: linear-gradient(135deg, #000000, #0a0a0a);
}

.newsletter {
  position: relative;
  overflow: hidden;
}

/* ENVELOPE BACKGROUND */

.newsletter::after {

  content: "";

  position: absolute;

  right: -60px;
  bottom: -60px;

  width: 340px;
  height: 340px;

  background:
    url("images/envelope.png")
    no-repeat
    center;

  background-size: contain;

  opacity: 0.06;

  pointer-events: none;
}

/* BACKGROUND ICON */
.newsletter-bg-icon {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  opacity: 0.06;
  pointer-events: none;
}

.newsletter-bg-icon svg {
  width: 100%;
  height: 100%;
  stroke: white;
  stroke-width: 1.5;
  fill: none;
}

/* BACKGROUND ICON */
.newsletter::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;

  width: 350px;
  height: 350px;

  background: url("../images/envelope.png") no-repeat center;
  background-size: contain;

  opacity: 0.08;   /* 🔥 subtle like reference */
  pointer-events: none;
}

.newsletter-content {
  max-width: 1400px;

  margin: auto;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 80px;
}

/* LEFT TEXT */
.newsletter-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 1.2;
  max-width: 700px;
}

/* LEFT TEXT */

.newsletter-left h2 {
  font-family: 'Cormorant Garamond', serif;

  font-size: 72px;

  line-height: 1.05;

  max-width: 720px;

  font-weight: 500;
}

/* GRADIENT WORD */

.newsletter-left span {

  background: linear-gradient(
    90deg,
    #4facfe,
    #8e6cff,
    #ff4e8d
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* FORM */
/* FORM WRAPPER */

.newsletter-form-wrapper {
  width: 100%;
  max-width: 540px;
}

/* FORM */

.newsletter-form {
  display: flex;

  width: 100%;

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.12);

  border-radius: 18px;

  overflow: hidden;
}

/* INPUT */

.newsletter-form input {
  flex: 1;

  height: 76px;

  padding: 0 28px;

  border: none;
  outline: none;

  background: transparent;

  color: white;

  font-size: 16px;
}

/* PLACEHOLDER */

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.45);
}

/* BUTTON */

.newsletter-form button {
  width: 210px;

  border: none;

  font-size: 16px;
  font-weight: 600;

  color: white;

  cursor: pointer;

  background: linear-gradient(
    90deg,
    #4facfe,
    #8e6cff,
    #ff4e8d
  );
}

/* NOTE */

.newsletter-note {
  margin-top: 18px;

  font-size: 15px;

  color: rgba(255,255,255,0.75);
}

/* =====================================================
   FOOTER FIX
===================================================== */

.footer-socials img {
  width: 22px !important;
  height: 22px !important;

  object-fit: contain !important;

  display: block;

  opacity: 0.9;

  transition: 0.3s ease;
}

.footer-socials img:hover {
  opacity: 0.6;
  transform: translateY(-2px);
}
/* FIX FOOTER SOCIALS LAYOUT */
.footer-socials {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 18px;
}

.footer-socials a {
  display: inline-flex !important;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-actions {
  margin-top: auto;
}

/* ===================================
   QUANTITY MODAL
=================================== */

.qty-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}

.qty-modal-content {
  background: white;
  width: 380px;
  padding: 35px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

.qty-modal-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  margin-bottom: 10px;
}

.qty-label {
  color: #777;
  margin-bottom: 25px;
}

.qty-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.qty-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  background: linear-gradient(
    135deg,
    #4facfe,
    #8e6cff,
    #ff4e8d
  );
  color: white;
  transition: .3s;
}

.qty-btn:hover {
  transform: scale(1.1);
}

#modal-qty {
  font-size: 30px;
  font-weight: 700;
  min-width: 50px;
}

.qty-add-btn {
  width: 100%;
  border: none;
  padding: 15px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  color: white;
  background: linear-gradient(
    135deg,
    #4facfe,
    #8e6cff,
    #ff4e8d
  );
  transition: .3s;
}

.qty-add-btn:hover {
  transform: translateY(-2px);
}

.qty-close {
  position: absolute;
  top: 15px;
  right: 18px;
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
  color: #777;
}

.qty-close:hover {
  color: #ff4e8d;
}

/* QUICK VIEW */

.quick-view-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.quick-view-content {
  background: white;
  width: 500px;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
}

.quick-view-content img {
  width: 100%;
  max-height: 350px;
  object-fit: contain;
}

.quick-close {
  position: absolute;
  top: 15px;
  right: 20px;
  border: none;
  background: none;
  font-size: 30px;
  cursor: pointer;
}

#quick-name {
  margin-top: 20px;
}

#quick-price {
  font-size: 24px;
  font-weight: bold;
}

/* CONTACT ICONS */

.footer-contact p{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.footer-contact svg{
    display:inline-block !important;
    width:20px !important;
    height:20px !important;
    min-width:20px;
    flex-shrink:0;

    color:#c86cff !important;
    stroke:#c86cff !important;

    opacity:1 !important;
    visibility:visible !important;
}