/* =========================================================
   GIFTORY.CO — CLEAN MASTER STYLESHEET
   Safe cleanup: duplicate exact rules removed; existing design preserved.
   ========================================================= */

/* =========================
   GIFTORY.CO - PREMIUM STYLE
   ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f8f4ec;
  color: #17342d;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}


/* =========================
   COMMON
   ========================= */

.section {
  padding: 95px 8%;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.section-heading p,
.section-label {
  color: #b28a4a;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-heading h2,
.corporate-content h2,
.about-content h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1.15;
  color: #113c32;
  margin-bottom: 18px;
}

.section-heading span {
  color: #6f766f;
  font-size: 16px;
}


/* =========================
   HEADER
   ========================= */

.header {
  width: 100%;
  padding: 20px 7%;
  background: rgba(248, 244, 236, 0.95);

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: sticky;
  top: 0;
  z-index: 1000;

  border-bottom: 1px solid rgba(17, 60, 50, 0.08);

  backdrop-filter: blur(12px);
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #113c32;
}

.logo span {
  color: #b28a4a;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar a {
  font-size: 14px;
  font-weight: 500;
  color: #29473f;
  position: relative;
  transition: 0.3s;
}

.navbar a::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: #b28a4a;

  transition: 0.3s;
}

.navbar a:hover {
  color: #b28a4a;
}

.navbar a:hover::after {
  width: 100%;
}

.nav-btn {
  background: #113c32;
  color: white;

  padding: 11px 21px;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 600;

  transition: 0.3s;
}

.nav-btn:hover {
  background: #b28a4a;
  transform: translateY(-2px);
}


/* =========================
   HERO
   ========================= */

.hero {
  min-height: 88vh;

  padding: 70px 8%;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;
  gap: 70px;

  background:
    radial-gradient(
      circle at 85% 30%,
      rgba(178, 138, 74, 0.11),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #f8f4ec 0%,
      #f6f0e5 60%,
      #efe5d3 100%
    );
}

.hero-small {
  font-size: 12px;
  letter-spacing: 3px;

  color: #b28a4a;
  font-weight: 700;

  margin-bottom: 18px;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;

  font-size: 67px;
  line-height: 1.06;

  color: #113c32;

  margin-bottom: 24px;
}

.hero h1 span {
  color: #b28a4a;
  font-style: italic;
}

.hero-text {
  max-width: 580px;

  font-size: 18px;
  color: #68736d;

  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;

  padding: 14px 27px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;

  transition: all 0.3s ease;
}

.btn-primary {
  background: #113c32;
  color: white;
}

.btn-primary:hover {
  background: #b28a4a;
  transform: translateY(-2px);
}

.btn-secondary {
  color: #113c32;

  border: 1px solid #113c32;

  background: transparent;
}

.btn-secondary:hover {
  background: #113c32;
  color: white;
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: "";

  position: absolute;

  width: 85%;
  height: 85%;

  border: 1px solid rgba(178, 138, 74, 0.35);

  top: -18px;
  right: -18px;

  border-radius: 36px;

  z-index: 0;
}

.image-placeholder {
  position: relative;

  min-height: 470px;

  background:
    linear-gradient(
      145deg,
      #ede5d7,
      #dfd0b9
    );

  border-radius: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #997a48;
  font-family: Georgia, serif;

  box-shadow:
    0 25px 60px rgba(33, 46, 39, 0.13);

  overflow: hidden;

  z-index: 1;
}


/* =========================
   CATEGORY
   ========================= */

.categories {
  background: #fffdf8;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

.category-card {
  background: #f8f4ec;

  padding: 17px;

  border-radius: 23px;

  transition: 0.35s;

  border: 1px solid rgba(17, 60, 50, 0.06);
}

.category-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 20px 45px rgba(23, 52, 45, 0.10);
}

.category-image {
  height: 235px;

  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      #e9dfcf,
      #d9c4a2
    );

  display: flex;
  align-items: center;
  justify-content: center;

  color: #9a7c4a;

  margin-bottom: 19px;
}

.category-card h3 {
  font-family: Georgia, serif;

  font-size: 23px;

  color: #113c32;

  margin-bottom: 7px;
}

.category-card p {
  font-size: 14px;

  color: #737b75;

  margin-bottom: 13px;
}

.category-card a {
  color: #b28a4a;

  font-size: 14px;
  font-weight: 700;
}


/* =========================
   PRODUCTS
   ========================= */

.featured {
  background: #f8f4ec;
}

.product-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;
}

.product-card {
  background: #fff;

  border-radius: 24px;

  padding: 16px;

  box-shadow:
    0 10px 35px rgba(17, 60, 50, 0.07);

  transition: 0.35s;
}

.product-card:hover {
  transform: translateY(-7px);
}

.product-image {
  height: 320px;

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      #e9e0d1,
      #d9c5a6
    );

  display: flex;
  align-items: center;
  justify-content: center;

  color: #9b7a47;

  margin-bottom: 19px;
}

.product-category {
  font-size: 11px;

  letter-spacing: 2px;

  color: #b28a4a;

  font-weight: 700;
}

.product-card h3 {
  font-family: Georgia, serif;

  font-size: 24px;

  color: #113c32;

  margin: 7px 0;
}

.price {
  color: #596a64;

  font-weight: 600;

  margin-bottom: 14px;
}

.product-card button {
  width: 100%;

  padding: 13px;

  background: #113c32;
  color: white;

  border: none;

  border-radius: 999px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.3s;
}

.product-card button:hover {
  background: #b28a4a;
}


/* =========================
   CORPORATE
   ========================= */

.corporate {
  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 75px;

  background: #113c32;
}

.corporate .image-placeholder {
  background:
    linear-gradient(
      145deg,
      #e9dfcf,
      #cdb184
    );

  min-height: 530px;
}

.corporate-content h2 {
  color: white;
}

.corporate-content > p:not(.section-label) {
  color: #d6dfdb;

  margin-bottom: 30px;

  max-width: 600px;
}

.benefits {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-bottom: 32px;
}

.benefits div {
  padding: 19px;

  background: rgba(255, 255, 255, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 15px;
}

.benefits strong {
  color: #dfc58e;

  display: block;

  margin-bottom: 6px;
}

.benefits span {
  font-size: 13px;

  color: #ced9d4;
}

.corporate .btn-primary {
  background: #dfc58e;
  color: #113c32;
}

.corporate .btn-primary:hover {
  background: white;
}


/* =========================
   CUSTOM HAMPER
   ========================= */

.custom {
  text-align: center;

  background:
    linear-gradient(
      135deg,
      #f0e6d4,
      #fbf7ef
    );
}

.custom .btn-primary {
  margin-top: -10px;
}


/* =========================
   WHY GIFTORY
   ========================= */

.why {
  background: #fffdf8;
}

.why-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 22px;
}

.why-grid div {
  padding: 30px 24px;

  text-align: center;

  background: #f8f4ec;

  border-radius: 20px;

  border: 1px solid rgba(17, 60, 50, 0.06);

  transition: 0.3s;
}

.why-grid div:hover {
  transform: translateY(-6px);
}

.why-grid h3 {
  font-family: Georgia, serif;

  color: #113c32;

  font-size: 21px;

  margin-bottom: 9px;
}

.why-grid p {
  font-size: 14px;

  color: #747c77;
}


/* =========================
   ABOUT
   ========================= */

.about {
  background:
    linear-gradient(
      135deg,
      #ede4d5,
      #f8f4ec
    );
}

.about-content {
  max-width: 760px;

  margin: auto;

  text-align: center;
}

.about-content p:not(.section-label) {
  color: #6d7771;

  font-size: 17px;
}


/* =========================
   CONTACT FORM
   ========================= */

.contact {
  background: #fffdf8;
}

.contact-form {
  max-width: 850px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 15px 17px;

  border: 1px solid #ded6c8;

  background: #f9f6f0;

  border-radius: 12px;

  outline: none;

  color: #17342d;

  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #b28a4a;

  box-shadow:
    0 0 0 3px rgba(178, 138, 74, 0.08);
}

.contact-form textarea {
  grid-column: span 2;

  resize: vertical;
}

.contact-form button {
  grid-column: span 2;

  padding: 15px;

  border: none;

  border-radius: 999px;

  background: #113c32;
  color: white;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

.contact-form button:hover {
  background: #b28a4a;
}


/* =========================
   FOOTER
   ========================= */

.footer {
  background: #0d3028;

  color: white;

  padding: 55px 8% 30px;

  text-align: center;
}

.footer-logo {
  font-family: Georgia, serif;

  font-size: 28px;

  font-weight: 700;

  margin-bottom: 10px;
}

.footer-logo span {
  color: #d9b977;
}

.footer > p {
  color: #bdc9c4;
}

.footer-links {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 27px;

  margin: 27px 0;
}

.footer-links a {
  font-size: 14px;

  color: #e3ebe7;

  transition: 0.3s;
}

.footer-links a:hover {
  color: #d9b977;
}

.copyright {
  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  font-size: 12px;
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1100px) {

  .navbar {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding-top: 35px;
  }

  .hero h1 {
    font-size: 57px;
  }

  .category-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .corporate {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 750px) {

  .section {
    padding: 70px 6%;
  }

  .header {
    padding: 16px 6%;
  }

  .logo {
    font-size: 22px;
  }

  .nav-btn {
    padding: 9px 15px;
    font-size: 12px;
  }

  .hero {
    padding: 45px 6% 65px;
    gap: 45px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-text {
    font-size: 16px;
  }

  .image-placeholder {
    min-height: 340px;
  }

  .section-heading h2,
  .corporate-content h2,
  .about-content h2 {
    font-size: 36px;
  }

  .category-grid,
  .product-grid,
  .why-grid,
  .benefits {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 270px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form textarea,
  .contact-form button {
    grid-column: span 1;
  }

}


@media (max-width: 480px) {

  .hero h1 {
    font-size: 37px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
    width: 100%;
  }

  .section-heading h2,
  .corporate-content h2,
  .about-content h2 {
    font-size: 32px;
  }

}
/* =========================
   HERO ACTUAL IMAGE
   ========================= */



.hero-image img {
  position: relative;
  z-index: 1;
}


/* MOBILE */
@media (max-width: 750px) {

  .hero-image img {
    height: 380px;
    border-radius: 22px;
  } 

}
/* =========================
   HERO IMAGE - FINAL
   ========================= */

.hero-image {
  position: relative;
  width: 100%;
  height: 490px;
  overflow: hidden;
  border-radius: 30px;

  box-shadow:
    0 25px 60px rgba(17, 60, 50, 0.15);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
}

.hero-image::before {
  content: "";
  position: absolute;

  top: 8px;
  left: 8px;

  width: calc(100% - 16px);
  height: calc(100% - 16px);

  border: 1px solid rgba(178, 138, 74, 0.35);
  border-radius: 24px;

  z-index: 2;
  pointer-events: none;
}
/* HERO FINAL TUNING */

.hero {
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
}

.hero-image {
  height: 440px;
  border-radius: 28px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  border-radius: 28px;
}
/* HERO - SLIGHTLY BIGGER IMAGE */

.hero {
  grid-template-columns: 0.95fr 1.1fr;
  gap: 45px;
}

.hero-image {
  height: 460px;
  width: 105%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
/* =========================
   CORPORATE IMAGE - FINAL
   ========================= */

.corporate-image {
  width: 100%;
  height: 560px;
  overflow: hidden;
  border-radius: 28px;

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.22);

  border: 1px solid rgba(217, 185, 119, 0.28);
}

.corporate-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  /* Portrait image ko nicely frame karega */
  object-position: center;

  display: block;

  transition: transform 0.6s ease;
}

.corporate-image:hover img {
  transform: scale(1.025);
}
/* =========================
   CUSTOM HAMPER BUILDER
   ========================= */

.builder-hero {
  text-align: center;
  padding: 95px 8% 55px;
  background:
    linear-gradient(
      135deg,
      #f8f4ec,
      #f1e6d3
    );
}

.builder-small {
  color: #b28a4a;
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 12px;
}

.builder-hero h1 {
  font-family: Georgia, serif;
  font-size: 58px;
  color: #113c32;
  margin-bottom: 18px;
}

.builder-hero > p:last-child {
  max-width: 700px;
  margin: auto;
  color: #67746e;
  font-size: 17px;
}


.hamper-builder {
  padding: 65px 8% 100px;
  background: #fffdf8;
}


.builder-step {
  max-width: 1050px;
  margin: 0 auto 28px;

  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 25px;

  background: #f8f4ec;

  border:
    1px solid rgba(17, 60, 50, 0.08);

  border-radius: 24px;

  padding: 28px;

  box-shadow:
    0 12px 35px rgba(17, 60, 50, 0.06);
}


.step-number {
  width: 60px;
  height: 60px;

  border-radius: 50%;

  background: #113c32;
  color: #d9b977;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 18px;
}


.step-content h2 {
  font-family: Georgia, serif;
  font-size: 29px;
  color: #113c32;
  margin-bottom: 5px;
}

.step-content > p {
  color: #747d77;
  margin-bottom: 20px;
}


.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


.builder-option input {
  display: none;
}


.builder-option span {
  display: inline-block;

  padding: 11px 18px;

  border-radius: 999px;

  border: 1px solid #dbd1c0;

  background: white;

  color: #314b44;

  font-size: 14px;

  cursor: pointer;

  transition: 0.25s ease;
}


.builder-option span:hover {
  border-color: #b28a4a;
  color: #b28a4a;
}


.builder-option input:checked + span {
  background: #113c32;
  border-color: #113c32;
  color: white;

  box-shadow:
    0 7px 18px rgba(17, 60, 50, 0.16);
}


.builder-fields {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 15px;
}


.builder-fields input,
.builder-fields select,
.builder-fields textarea {
  width: 100%;

  padding: 15px 17px;

  border:
    1px solid #ddd3c3;

  border-radius: 12px;

  background: white;

  outline: none;

  color: #17342d;
}


.builder-fields input:focus,
.builder-fields select:focus,
.builder-fields textarea:focus {
  border-color: #b28a4a;

  box-shadow:
    0 0 0 3px rgba(178, 138, 74, 0.08);
}


.builder-contact {
  max-width: 1050px;

  margin: 55px auto 0;

  padding: 45px;

  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      #113c32,
      #0c3028
    );

  box-shadow:
    0 25px 60px rgba(17, 60, 50, 0.18);
}


.builder-contact-heading {
  text-align: center;
  margin-bottom: 32px;
}


.builder-contact-heading p {
  color: #d8b66f;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
}


.builder-contact-heading h2 {
  font-family: Georgia, serif;

  font-size: 40px;

  color: white;

  margin: 8px 0;
}


.builder-contact-heading span {
  color: #cdd8d3;
}


.contact-fields input,
.contact-fields textarea {
  background:
    rgba(255, 255, 255, 0.08);

  border:
    1px solid rgba(255, 255, 255, 0.15);

  color: white;
}


.contact-fields input::placeholder,
.contact-fields textarea::placeholder {
  color:
    rgba(255, 255, 255, 0.65);
}


.contact-fields textarea {
  grid-column: span 2;
  resize: vertical;
}


.builder-submit {
  width: 100%;

  margin-top: 18px;

  padding: 16px;

  border: none;

  border-radius: 999px;

  background: #d9b977;

  color: #113c32;

  font-weight: 700;
  font-size: 15px;

  cursor: pointer;

  transition: 0.3s;
}


.builder-submit:hover {
  background: white;
  transform: translateY(-2px);
}


@media (max-width: 750px) {

  .builder-hero {
    padding: 70px 6% 40px;
  }

  .builder-hero h1 {
    font-size: 40px;
  }

  .hamper-builder {
    padding:
      45px 6% 70px;
  }

  .builder-step {
    grid-template-columns: 1fr;
  }

  .step-number {
    width: 50px;
    height: 50px;
  }

  .builder-fields {
    grid-template-columns: 1fr;
  }

  .contact-fields textarea {
    grid-column: span 1;
  }

  .builder-contact {
    padding: 30px 20px;
  }

}
/* ==========================================================
   GIFTORY.CO — CUSTOM HAMPER PAGE
   ========================================================== */


/* =========================
   HAMPER HERO IMAGE
   ========================= */

.hamper-hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #f5ede0;
  line-height: 0;
}

.hamper-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}


/* =========================
   BUILDER MAIN BACKGROUND
   ========================= */

.hamper-builder {
  position: relative;

  padding: 90px 8% 110px;

  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(190, 148, 78, 0.07),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 60%,
      rgba(13, 66, 54, 0.05),
      transparent 28%
    ),
    #fffdf8;
}


/* =========================
   EACH BUILDER STEP
   ========================= */

.builder-step {
  position: relative;

  max-width: 1120px;

  margin: 0 auto 32px;

  padding: 40px 42px;

  display: grid;

  grid-template-columns: 85px 1fr;

  gap: 28px;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #faf6ee 100%
    );

  border:
    1px solid rgba(178, 138, 74, 0.20);

  border-radius: 26px;

  box-shadow:
    0 15px 45px rgba(14, 59, 49, 0.07);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.builder-step:hover {
  transform: translateY(-4px);

  box-shadow:
    0 22px 55px rgba(14, 59, 49, 0.11);
}


/* GOLD LINE */

.builder-step::before {
  content: "";

  position: absolute;

  left: 0;
  top: 30px;
  bottom: 30px;

  width: 4px;

  border-radius: 0 5px 5px 0;

  background:
    linear-gradient(
      180deg,
      #e2c078,
      #a97c36
    );
}


/* =========================
   STEP NUMBER
   ========================= */

.step-number {
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #154c40,
      #0a342b
    );

  color: #e4bd70;

  font-size: 18px;
  font-weight: 700;

  border:
    1px solid rgba(226, 192, 120, 0.40);

  box-shadow:
    0 10px 25px rgba(10, 52, 43, 0.18);
}


/* =========================
   STEP CONTENT
   ========================= */

.step-content {
  width: 100%;
}


.step-label {
  margin: 0 0 7px;

  color: #b5823d;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 3px;
}


.step-content h2 {
  margin: 0 0 8px;

  font-family: Georgia, "Times New Roman", serif;

  color: #0e4438;

  font-size: 32px;

  line-height: 1.2;
}


.step-description {
  margin: 0 0 24px;

  color: #6e7873;

  font-size: 15px;

  line-height: 1.6;
}


/* =========================
   OPTION GRID
   ========================= */


/* HIDE ORIGINAL CHECKBOX */


/* OPTION BUTTON */

.builder-option span {
  min-width: 115px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 13px 18px;

  background: #fff;

  color: #29483f;

  border:
    1px solid #e4dac8;

  border-radius: 12px;

  font-size: 14px;

  font-weight: 600;

  cursor: pointer;

  box-shadow:
    0 6px 16px rgba(20, 55, 47, 0.04);

  transition:
    all 0.25s ease;
}


.builder-option span:hover {
  transform: translateY(-2px);

  color: #a97938;

  border-color: #c49a5a;

  box-shadow:
    0 10px 22px rgba(20, 55, 47, 0.08);
}


/* SELECTED OPTION */

.builder-option input:checked + span {
  color: #fff;

  background:
    linear-gradient(
      145deg,
      #154c40,
      #0b352d
    );

  border-color: #b98b49;

  box-shadow:
    0 10px 25px rgba(13, 65, 54, 0.18);

  transform: translateY(-2px);
}


/* =========================
   INPUT FIELDS
   ========================= */

.builder-fields {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 15px;
}


.builder-fields input,
.builder-fields select,
.builder-fields textarea {
  width: 100%;

  box-sizing: border-box;

  padding: 16px 17px;

  font-family: inherit;

  font-size: 14px;

  color: #183c33;

  background: #fff;

  border:
    1px solid #ded4c4;

  border-radius: 12px;

  outline: none;

  transition:
    border 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}


.builder-fields input::placeholder,
.builder-fields textarea::placeholder {
  color: #8a918e;
}


.builder-fields input:focus,
.builder-fields select:focus,
.builder-fields textarea:focus {
  border-color: #b98b49;

  box-shadow:
    0 0 0 4px rgba(185, 139, 73, 0.08);

  transform: translateY(-1px);
}


/* =========================
   FINAL CONTACT BOX
   ========================= */

.builder-contact {
  position: relative;

  overflow: hidden;

  max-width: 1120px;

  box-sizing: border-box;

  margin: 65px auto 0;

  padding: 55px;

  border-radius: 28px;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(218, 180, 106, 0.15),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #10483b 0%,
      #082f27 100%
    );

  border:
    1px solid rgba(220, 184, 112, 0.25);

  box-shadow:
    0 30px 70px rgba(8, 47, 39, 0.20);
}


/* DECORATIVE GOLD CIRCLE */

.builder-contact::before {
  content: "";

  position: absolute;

  width: 250px;
  height: 250px;

  top: -120px;
  right: -100px;

  border-radius: 50%;

  border:
    1px solid rgba(225, 188, 113, 0.16);

  pointer-events: none;
}


/* =========================
   CONTACT HEADING
   ========================= */

.builder-contact-heading {
  position: relative;

  z-index: 2;

  text-align: center;

  margin-bottom: 35px;
}


.builder-contact-heading p {
  margin: 0;

  color: #dbb66c;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 4px;
}


.builder-contact-heading h2 {
  margin: 10px 0 10px;

  color: #fff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 42px;
}


.builder-contact-heading span {
  color: rgba(255, 255, 255, 0.72);

  font-size: 15px;

  line-height: 1.6;
}


/* =========================
   DARK FORM INPUTS
   ========================= */

.builder-contact .builder-fields input,
.builder-contact .builder-fields textarea {
  color: #fff;

  background:
    rgba(255, 255, 255, 0.075);

  border:
    1px solid rgba(255, 255, 255, 0.15);
}


.builder-contact .builder-fields input::placeholder,
.builder-contact .builder-fields textarea::placeholder {
  color:
    rgba(255, 255, 255, 0.60);
}


.builder-contact .builder-fields input:focus,
.builder-contact .builder-fields textarea:focus {
  border-color: #d7b36c;

  box-shadow:
    0 0 0 4px rgba(215, 179, 108, 0.10);
}


.contact-fields textarea {
  grid-column: 1 / -1;

  resize: vertical;

  min-height: 130px;
}


/* =========================
   GET QUOTE BUTTON
   ========================= */

.builder-submit {
  width: 100%;

  margin-top: 20px;

  padding: 17px 25px;

  border: none;

  border-radius: 50px;

  cursor: pointer;

  color: #103c32;

  background:
    linear-gradient(
      90deg,
      #e3c27d,
      #c79a51
    );

  font-size: 15px;

  font-weight: 700;

  box-shadow:
    0 12px 28px rgba(203, 157, 82, 0.20);

  transition:
    all 0.3s ease;
}


.builder-submit:hover {
  transform: translateY(-3px);

  background: #fff;

  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.20);
}


/* =========================
   CUSTOM PAGE FOOTER
   ========================= */

.footer {
  max-width: 1135px;

  margin: 0 auto 60px;

  padding: 55px 7% 35px;

  box-sizing: border-box;

  text-align: center;

  background: #0b382f;

  color: #fff;
}


.footer-logo {
  margin-bottom: 15px;

  color: #fff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 30px;

  font-weight: 700;

  letter-spacing: 1px;
}


.footer-logo span {
  color: #d4a85e;
}


.footer > p {
  color:
    rgba(255, 255, 255, 0.75);
}


.footer-links {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 30px;

  margin: 30px 0;
}


.footer-links a {
  color: #fff;

  text-decoration: none;

  font-size: 14px;

  transition: 0.25s;
}


.footer-links a:hover {
  color: #d7b36c;
}


.footer .copyright {
  padding-top: 25px;

  border-top:
    1px solid rgba(255, 255, 255, 0.12);

  font-size: 12px;
}


/* =========================
   SMOOTH SCROLL
   ========================= */


/* =========================
   TABLET
   ========================= */

@media (max-width: 950px) {

  .hamper-builder {
    padding:
      65px 5% 90px;
  }

  .builder-step {
    padding:
      32px 30px;

    grid-template-columns:
      70px 1fr;
  }

}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {

  .hamper-hero-image {
    width: 100%;
    height: auto;
  }


  .hamper-builder {
    padding:
      45px 5% 70px;
  }


  .builder-step {
    grid-template-columns: 1fr;

    gap: 18px;

    padding:
      28px 22px;

    border-radius: 20px;
  }


  .builder-step::before {
    display: none;
  }


  .step-number {
    width: 52px;
    height: 52px;

    font-size: 15px;
  }


  .step-content h2 {
    font-size: 27px;
  }


  .option-grid {
    gap: 9px;
  }


  .builder-option span {
    min-width: auto;

    padding:
      11px 14px;

    font-size: 13px;
  }


  .builder-fields {
    grid-template-columns: 1fr;
  }


  .contact-fields textarea {
    grid-column: auto;
  }


  .builder-contact {
    padding:
      38px 22px;

    border-radius: 22px;
  }


  .builder-contact-heading h2 {
    font-size: 32px;
  }


  .footer {
    margin-bottom: 0;
  }

}
/* CLICKABLE AREA ON HERO IMAGE BUTTON */

.hamper-hero {
  position: relative;
}

.hamper-image-button {
  position: absolute;

  /* image ke printed button ke upar */
  left: 7.5%;
  top: 62%;

  width: 19%;
  height: 9%;

  z-index: 10;

  cursor: pointer;

  /* invisible */
  background: transparent;
}


/* smooth scrolling */


/* =========================================
   HOMEPAGE CUSTOM HAMPER CTA
========================================= */

.custom {
  padding: 90px 7%;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(193, 149, 77, 0.12),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #f7f0e4,
      #fffdf8
    );
}


.custom-wrap {
  max-width: 1135px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  gap: 70px;

  padding: 65px;

  border-radius: 30px;

  background:
    linear-gradient(
      135deg,
      #0e4438,
      #082f27
    );

  box-shadow:
    0 28px 70px rgba(12, 59, 49, 0.17);

  position: relative;

  overflow: hidden;
}


.custom-wrap::before {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  border-radius: 50%;

  top: -180px;
  right: -120px;

  border:
    1px solid rgba(215, 179, 108, 0.18);
}


.custom-content {
  position: relative;
  z-index: 2;
}


.custom-eyebrow {
  margin: 0 0 12px;

  color: #d6ad65;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 4px;
}


.custom-content h2 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 48px;

  line-height: 1.08;
}


.custom-text {
  max-width: 520px;

  margin: 20px 0 25px;

  color:
    rgba(255, 255, 255, 0.72);

  font-size: 16px;

  line-height: 1.7;
}


.custom-features {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 12px 20px;

  margin-bottom: 30px;
}


.custom-features span {
  color: #f5e6c8;

  font-size: 13px;

  font-weight: 600;
}


.custom-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 15px 28px;

  border-radius: 50px;

  text-decoration: none;

  color: #103d33;

  background:
    linear-gradient(
      90deg,
      #e2bd70,
      #c4934d
    );

  font-size: 14px;

  font-weight: 700;

  box-shadow:
    0 12px 28px rgba(201, 154, 80, 0.20);

  transition: 0.3s ease;
}


.custom-btn:hover {
  transform: translateY(-3px);

  background: #ffffff;

  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.20);
}


/* RIGHT SIDE */

.custom-visual {
  position: relative;

  min-height: 360px;
}


.custom-card {
  position: absolute;

  width: 270px;

  padding: 22px;

  box-sizing: border-box;

  border-radius: 18px;

  background:
    rgba(255, 255, 255, 0.96);

  border:
    1px solid rgba(216, 179, 108, 0.30);

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.15);

  transition:
    transform 0.3s ease;
}


.custom-card:hover {
  transform: translateY(-5px);
}


.custom-card span {
  display: block;

  margin-bottom: 9px;

  color: #b37e36;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 2px;
}


.custom-card strong {
  display: block;

  color: #103d33;

  font-family: Georgia, serif;

  font-size: 20px;

  margin-bottom: 7px;
}


.custom-card p {
  margin: 0;

  color: #777;

  font-size: 12px;

  line-height: 1.5;
}


.custom-card-one {
  top: 10px;
  left: 10px;
}


.custom-card-two {
  top: 120px;
  right: 0;
}


.custom-card-three {
  bottom: 0;
  left: 45px;
}


/* MOBILE */

@media (max-width: 850px) {

  .custom {
    padding: 60px 5%;
  }


  .custom-wrap {
    grid-template-columns: 1fr;

    gap: 45px;

    padding: 40px 25px;
  }


  .custom-content h2 {
    font-size: 38px;
  }


  .custom-visual {
    min-height: auto;

    display: grid;

    gap: 15px;
  }


  .custom-card {
    position: static;

    width: 100%;
  }


  .custom-features {
    grid-template-columns: 1fr;
  }

}
/* =========================================
   WHY GIFTORY - PREMIUM SECTION
========================================= */

.why-giftory {
  position: relative;

  padding: 100px 7%;

  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(184, 139, 67, 0.08),
      transparent 25%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(17, 68, 56, 0.05),
      transparent 28%
    ),
    #fffdf8;

  overflow: hidden;
}


/* HEADING */

.why-heading {
  max-width: 760px;

  margin: 0 auto 55px;

  text-align: center;
}


.why-heading p {
  margin: 0 0 10px;

  color: #b9853d;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 4px;
}


.why-heading h2 {
  margin: 0;

  color: #0e4438;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 48px;

  line-height: 1.15;
}


.why-heading span {
  display: block;

  max-width: 620px;

  margin: 18px auto 0;

  color: #6f7874;

  font-size: 15px;

  line-height: 1.7;
}


/* GRID */

.why-grid {
  max-width: 1135px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 20px;
}


/* CARD */

.why-card {
  position: relative;

  min-height: 250px;

  box-sizing: border-box;

  padding: 32px 25px;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f8f2e8
    );

  border:
    1px solid rgba(184, 139, 67, 0.18);

  box-shadow:
    0 14px 35px rgba(19, 58, 50, 0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;

  overflow: hidden;
}


.why-card::before {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  top: 0;

  height: 4px;

  background:
    linear-gradient(
      90deg,
      #d8b36b,
      #a97b39
    );

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.35s ease;
}


.why-card:hover {
  transform: translateY(-8px);

  border-color:
    rgba(184, 139, 67, 0.45);

  box-shadow:
    0 24px 50px rgba(19, 58, 50, 0.12);
}


.why-card:hover::before {
  transform: scaleX(1);
}


/* ICON */

.why-icon {
  width: 55px;
  height: 55px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 24px;

  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      #154c40,
      #0b352d
    );

  color: #dfb86d;

  font-size: 24px;

  box-shadow:
    0 10px 25px rgba(14, 68, 56, 0.16);
}


/* TEXT */

.why-card h3 {
  margin: 0 0 12px;

  color: #103e34;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 22px;

  line-height: 1.3;
}


.why-card p {
  margin: 0;

  color: #737b77;

  font-size: 14px;

  line-height: 1.7;
}


/* MOBILE */

@media (max-width: 950px) {

  .why-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 600px) {

  .why-giftory {
    padding: 70px 5%;
  }


  .why-heading h2 {
    font-size: 36px;
  }


  .why-grid {
    grid-template-columns: 1fr;
  }


  .why-card {
    min-height: auto;
  }

}
/* =========================================
   ABOUT GIFTORY - GREEN & GOLD
========================================= */

.about {
  position: relative;
  overflow: hidden;

  max-width: 1135px;
  margin: 0 auto;

  padding: 95px 8%;

  box-sizing: border-box;

  text-align: center;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(214, 174, 96, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(214, 174, 96, 0.08),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #123f35 0%,
      #0b342c 55%,
      #082a24 100%
    );

  border:
    1px solid rgba(215, 179, 108, 0.30);

  border-radius: 0;
}


/* GOLD DECORATION */

.about::before {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  top: -170px;
  right: -100px;

  border-radius: 50%;

  border:
    1px solid rgba(218, 181, 108, 0.20);
}


.about::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 45px;

  width: 70px;
  height: 2px;

  transform: translateX(-50%);

  background:
    linear-gradient(
      90deg,
      transparent,
      #d5ad63,
      transparent
    );
}


/* SMALL ABOUT GIFTORY TEXT */

.about .section-heading > p {
  color: #d8ae62;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 4px;

  margin-bottom: 16px;
}


/* MAIN HEADING */

.about .section-heading h2 {
  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 48px;

  margin-bottom: 22px;
}


/* DESCRIPTION */

.about .section-heading span {
  display: block;

  max-width: 760px;

  margin: 0 auto;

  color: rgba(255, 255, 255, 0.76);

  font-size: 16px;

  line-height: 1.8;
}


/* MOBILE */

@media (max-width: 700px) {

  .about {
    padding: 70px 7%;
  }

  .about .section-heading h2 {
    font-size: 36px;
  }

  .about .section-heading span {
    font-size: 14px;
  }

}
/* =========================================
   ABOUT SECTION TEXT VISIBILITY FIX
========================================= */

.about .section-heading p {
  color: #d9ad5b !important;
}

.about .section-heading h2 {
  color: #f8f1e4 !important;
  opacity: 1 !important;
}

.about .section-heading span {
  color: #e8dfd0 !important;
  opacity: 1 !important;
}


/* extra protection */

.about h2 {
  color: #f8f1e4 !important;
}

.about p,
.about span {
  opacity: 1 !important;
}
/* =========================================
   CORPORATE ENQUIRY - PREMIUM
========================================= */

.corporate-enquiry {
  padding: 100px 7%;

  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(192, 145, 73, 0.08),
      transparent 28%
    ),
    #fffdf8;
}


.enquiry-wrap {
  position: relative;

  max-width: 1135px;

  margin: auto;

  padding: 60px;

  border-radius: 30px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(220, 181, 108, 0.15),
      transparent 26%
    ),
    linear-gradient(
      135deg,
      #123f35,
      #0b322a
    );

  border:
    1px solid rgba(214, 176, 103, 0.28);

  box-shadow:
    0 30px 70px rgba(11, 52, 43, 0.18);
}


.enquiry-wrap::before {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  right: -160px;
  top: -150px;

  border:
    1px solid rgba(219, 180, 105, 0.18);
}


/* TOP AREA */

.enquiry-top {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1.3fr 0.7fr;

  gap: 45px;

  align-items: end;

  margin-bottom: 40px;
}


.enquiry-eyebrow {
  margin: 0 0 10px;

  color: #d8ad62;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 4px;
}


.enquiry-copy h2 {
  margin: 0;

  color: #fff8e9;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 48px;

  line-height: 1.1;
}


.enquiry-subtext {
  max-width: 620px;

  margin: 17px 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 15px;

  line-height: 1.7;
}


/* TRUST STRIP */

.enquiry-trust {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 10px;
}


.trust-item {
  padding: 15px 10px;

  text-align: center;

  border-radius: 14px;

  background:
    rgba(255, 255, 255, 0.06);

  border:
    1px solid rgba(255, 255, 255, 0.10);

  backdrop-filter: blur(8px);
}


.trust-item strong {
  display: block;

  color: #dfb96f;

  font-size: 14px;

  margin-bottom: 3px;
}


.trust-item span {
  color:
    rgba(255, 255, 255, 0.70);

  font-size: 11px;
}


/* FORM */

.enquiry-form {
  position: relative;
  z-index: 2;

  padding: 35px;

  border-radius: 22px;

  background:
    rgba(255, 255, 255, 0.055);

  border:
    1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(10px);
}


.form-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}


.form-group {
  display: flex;

  flex-direction: column;

  gap: 8px;
}


.form-group label {
  color: #e4c580;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 0.5px;
}


.form-group input,
.form-group textarea {
  width: 100%;

  box-sizing: border-box;

  padding: 15px 16px;

  border-radius: 12px;

  border:
    1px solid rgba(255, 255, 255, 0.15);

  outline: none;

  background:
    rgba(255, 255, 255, 0.075);

  color: #fff;

  font-family: inherit;

  font-size: 14px;

  transition:
    border 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
  color:
    rgba(255, 255, 255, 0.48);
}


.form-group input:focus,
.form-group textarea:focus {
  border-color: #d9b266;

  background:
    rgba(255, 255, 255, 0.10);

  box-shadow:
    0 0 0 4px rgba(217, 178, 102, 0.08);
}


.full-width {
  margin-top: 18px;
}


.form-group textarea {
  resize: vertical;

  min-height: 130px;
}


/* BUTTON */

.enquiry-submit {
  width: 100%;

  margin-top: 22px;

  padding: 16px 25px;

  border: none;

  border-radius: 50px;

  cursor: pointer;

  background:
    linear-gradient(
      90deg,
      #e1bf78,
      #c5964f
    );

  color: #103d33;

  font-size: 15px;

  font-weight: 700;

  box-shadow:
    0 14px 30px rgba(196, 148, 75, 0.22);

  transition:
    all 0.3s ease;
}


.enquiry-submit:hover {
  transform: translateY(-3px);

  background: #fff;

  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.18);
}


/* TABLET */

@media (max-width: 900px) {

  .enquiry-top {
    grid-template-columns: 1fr;
  }

}


/* MOBILE */

@media (max-width: 650px) {

  .corporate-enquiry {
    padding: 70px 5%;
  }


  .enquiry-wrap {
    padding: 35px 20px;
  }


  .enquiry-copy h2 {
    font-size: 36px;
  }


  .enquiry-trust {
    grid-template-columns: 1fr;
  }


  .form-grid {
    grid-template-columns: 1fr;
  }


  .enquiry-form {
    padding: 24px 18px;
  }

}
/* CORPORATE ENQUIRY MINI VISUAL */

.enquiry-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.enquiry-mini-visual {
  flex-shrink: 0;

  width: 88px;
  height: 88px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.10),
      rgba(255,255,255,0.04)
    );

  border:
    1px solid rgba(218, 181, 108, 0.28);

  box-shadow:
    0 12px 30px rgba(0,0,0,0.18);
}

.mini-gift {
  font-size: 42px;
  line-height: 1;
}

@media (max-width: 700px) {

  .enquiry-title-row {
    align-items: flex-start;
  }

  .enquiry-mini-visual {
    width: 68px;
    height: 68px;
  }

  .mini-gift {
    font-size: 32px;
  }

}
/* =========================================
   CORPORATE ENQUIRY - FINAL COLOR FIX
========================================= */

.corporate-enquiry {
  padding: 90px 7% !important;
  background: #fffdf8 !important;
}

.corporate-enquiry .enquiry-wrap {
  max-width: 1135px !important;
  margin: 0 auto !important;
  padding: 60px !important;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(218, 180, 105, 0.14),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #123f35 0%,
      #0d3a31 55%,
      #082f28 100%
    ) !important;

  border-radius: 30px !important;
  border: 1px solid rgba(216, 178, 104, 0.28) !important;

  box-shadow:
    0 30px 70px rgba(10, 50, 42, 0.18) !important;
}


/* HEADING COLORS */

.corporate-enquiry .enquiry-eyebrow {
  color: #d7ad62 !important;
}

.corporate-enquiry .enquiry-heading h2,
.corporate-enquiry .enquiry-copy h2 {
  color: #fff8ea !important;
  opacity: 1 !important;
}

.corporate-enquiry .enquiry-subtext {
  color: rgba(255, 255, 255, 0.75) !important;
}


/* TRUST BOXES */

.corporate-enquiry .enquiry-trust {
  gap: 12px !important;
}

.corporate-enquiry .trust-item {
  background: rgba(255, 255, 255, 0.07) !important;

  border:
    1px solid rgba(255, 255, 255, 0.13) !important;

  border-radius: 14px !important;
}

.corporate-enquiry .trust-item strong {
  color: #e1bb72 !important;
}

.corporate-enquiry .trust-item span {
  color: rgba(255, 255, 255, 0.72) !important;
}


/* FORM CONTAINER */

.corporate-enquiry .enquiry-form {
  margin-top: 35px !important;

  padding: 35px !important;

  background:
    rgba(255, 255, 255, 0.065) !important;

  border:
    1px solid rgba(255, 255, 255, 0.12) !important;

  border-radius: 22px !important;

  backdrop-filter: blur(10px);
}


/* LABELS */

.corporate-enquiry .form-group label {
  color: #e0bd77 !important;

  font-size: 12px !important;

  font-weight: 600 !important;
}


/* INPUTS */

.corporate-enquiry .form-group input,
.corporate-enquiry .form-group textarea {
  width: 100% !important;

  box-sizing: border-box !important;

  padding: 15px 16px !important;

  background:
    rgba(255, 255, 255, 0.075) !important;

  color: #ffffff !important;

  border:
    1px solid rgba(255, 255, 255, 0.16) !important;

  border-radius: 12px !important;

  outline: none !important;

  box-shadow: none !important;
}


/* PLACEHOLDERS */

.corporate-enquiry .form-group input::placeholder,
.corporate-enquiry .form-group textarea::placeholder {
  color:
    rgba(255, 255, 255, 0.47) !important;
}


/* INPUT FOCUS */

.corporate-enquiry .form-group input:focus,
.corporate-enquiry .form-group textarea:focus {
  border-color: #d9b267 !important;

  background:
    rgba(255, 255, 255, 0.10) !important;

  box-shadow:
    0 0 0 4px rgba(217, 178, 103, 0.09) !important;
}


/* BUTTON */

.corporate-enquiry .enquiry-submit {
  width: 100% !important;

  margin-top: 22px !important;

  padding: 16px 25px !important;

  border: none !important;

  border-radius: 50px !important;

  background:
    linear-gradient(
      90deg,
      #e1bf78,
      #c4934b
    ) !important;

  color: #103d33 !important;

  font-weight: 700 !important;

  cursor: pointer !important;
}

.corporate-enquiry .enquiry-submit:hover {
  background: #ffffff !important;

  transform: translateY(-3px);
}


/* MOBILE */

@media (max-width: 700px) {

  .corporate-enquiry .enquiry-wrap {
    padding: 35px 20px !important;
  }

  .corporate-enquiry .enquiry-form {
    padding: 24px 18px !important;
  }

}
/* ==========================================================
   GIFTORY CORPORATE ENQUIRY - CLEAN FINAL VERSION
========================================================== */

.giftory-corp-section {
  width: 100%;
  box-sizing: border-box;

  padding: 90px 7%;

  background: #fffdf8;
}


.giftory-corp-box {
  width: 100%;
  max-width: 1135px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: 60px;

  border-radius: 30px;

  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(216, 176, 99, 0.17),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #123f35 0%,
      #0d3a31 55%,
      #082e27 100%
    );

  border:
    1px solid rgba(215, 177, 102, 0.30);

  box-shadow:
    0 30px 70px rgba(11, 52, 43, 0.18);
}


/* =========================
   HEADER
========================= */

.giftory-corp-header {
  display: grid;

  grid-template-columns:
    1.2fr 0.8fr;

  gap: 50px;

  align-items: end;

  margin-bottom: 40px;
}


.giftory-corp-tag {
  margin: 0 0 12px;

  color: #d8ad62;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 4px;
}


.giftory-corp-title h2 {
  margin: 0;

  color: #fff7e8;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 48px;

  line-height: 1.1;
}


.giftory-corp-description {
  max-width: 610px;

  margin: 18px 0 0;

  color:
    rgba(255, 255, 255, 0.74);

  font-size: 15px;

  line-height: 1.7;

  letter-spacing: 0;
}


/* =========================
   BENEFIT CARDS
========================= */

.giftory-corp-benefits {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 10px;
}


.giftory-corp-benefits > div {
  padding: 17px 10px;

  text-align: center;

  border-radius: 14px;

  background:
    rgba(255, 255, 255, 0.07);

  border:
    1px solid rgba(255, 255, 255, 0.13);
}


.giftory-corp-benefits strong {
  display: block;

  margin-bottom: 5px;

  color: #e0b96d;

  font-size: 14px;
}


.giftory-corp-benefits span {
  display: block;

  color:
    rgba(255, 255, 255, 0.72);

  font-size: 11px;
}


/* =========================
   FORM CONTAINER
========================= */

.giftory-corp-form {
  width: 100%;

  box-sizing: border-box;

  padding: 35px;

  border-radius: 22px;

  background:
    rgba(255, 255, 255, 0.065);

  border:
    1px solid rgba(255, 255, 255, 0.13);
}


/* =========================
   GRID
========================= */

.giftory-corp-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 20px;
}


/* =========================
   FIELD
========================= */

.giftory-corp-field {
  display: flex;

  flex-direction: column;

  gap: 8px;
}


.giftory-corp-field label {
  display: block;

  margin: 0;

  padding: 0;

  color: #e0bd76;

  font-size: 12px;

  font-weight: 600;

  line-height: 1.3;

  letter-spacing: 0.3px;
}


.giftory-corp-field input,
.giftory-corp-field textarea {
  display: block;

  width: 100%;
  min-height: 52px;

  box-sizing: border-box;

  margin: 0;

  padding: 15px 16px;

  background:
    rgba(255, 255, 255, 0.085);

  color: #ffffff;

  border:
    1px solid rgba(255, 255, 255, 0.17);

  border-radius: 12px;

  outline: none;

  font-family: inherit;

  font-size: 14px;

  letter-spacing: 0;

  opacity: 1;
}


.giftory-corp-field input::placeholder,
.giftory-corp-field textarea::placeholder {
  color:
    rgba(255, 255, 255, 0.48);
}


.giftory-corp-field input:focus,
.giftory-corp-field textarea:focus {
  border-color: #dab369;

  background:
    rgba(255, 255, 255, 0.11);

  box-shadow:
    0 0 0 4px rgba(218, 179, 105, 0.08);
}


.giftory-corp-message {
  margin-top: 20px;
}


.giftory-corp-field textarea {
  min-height: 130px;

  resize: vertical;
}


/* =========================
   BUTTON
========================= */

.giftory-corp-submit {
  width: 100%;

  margin-top: 22px;

  padding: 16px 25px;

  border: none;

  border-radius: 50px;

  cursor: pointer;

  background:
    linear-gradient(
      90deg,
      #e2bf76,
      #c4944b
    );

  color: #103d33;

  font-size: 15px;

  font-weight: 700;

  transition: 0.3s ease;
}


.giftory-corp-submit:hover {
  transform: translateY(-3px);

  background: #ffffff;

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.20);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .giftory-corp-header {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 650px) {

  .giftory-corp-section {
    padding: 65px 5%;
  }


  .giftory-corp-box {
    padding: 35px 20px;
  }


  .giftory-corp-title h2 {
    font-size: 36px;
  }


  .giftory-corp-benefits {
    grid-template-columns: 1fr;
  }


  .giftory-corp-form {
    padding: 25px 18px;
  }


  .giftory-corp-grid {
    grid-template-columns: 1fr;
  }

}
/* =========================================
   GIFTORY FOOTER - FULL WIDTH FIX
========================================= */

.footer {
  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;

  box-sizing: border-box;

  padding: 65px 7% 30px !important;

  background:
    linear-gradient(
      135deg,
      #0d4035,
      #082f28
    ) !important;

  color: #ffffff;

  text-align: center;
}


/* LOGO */

.footer-logo {
  margin-bottom: 15px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 30px;

  font-weight: 700;

  color: #ffffff;
}

.footer-logo span {
  color: #d7aa5d;
}


/* TAGLINE */

.footer > p {
  color: rgba(255, 255, 255, 0.75) !important;
}


/* LINKS */

.footer-links {
  display: flex;

  justify-content: center;

  align-items: center;

  flex-wrap: wrap;

  gap: 32px;

  margin: 30px 0;
}

.footer-links a {
  color: #ffffff !important;

  text-decoration: none;

  font-size: 14px;

  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #d9b369 !important;
}


/* COPYRIGHT */

.footer .copyright {
  max-width: 1100px;

  margin: 30px auto 0;

  padding-top: 25px;

  border-top:
    1px solid rgba(255, 255, 255, 0.14);

  color:
    rgba(255, 255, 255, 0.60) !important;

  font-size: 12px;
}


/* MOBILE */

@media (max-width: 600px) {

  .footer {
    padding:
      50px 5% 25px !important;
  }

  .footer-links {
    gap: 18px;
  }

}
/* =========================================
   FOOTER - TRUE FULL WIDTH / FULL BOTTOM
========================================= */

body {
  margin: 0;
  padding: 0;
}

.footer {
  width: 100vw !important;
  max-width: none !important;

  margin: 0 !important;
  margin-left: calc(50% - 50vw) !important;

  padding: 70px 7% 35px !important;

  box-sizing: border-box;

  background:
    linear-gradient(
      135deg,
      #0d4035,
      #082f28
    ) !important;

  border-radius: 0 !important;
}


/* REMOVE BOTTOM GAP */

html,
body {
  min-height: 100%;
  background: #082f28;
}


/* KEEP FOOTER CONTENT CENTERED */

.footer-logo,
.footer > p,
.footer-links,
.footer .copyright {
  position: relative;
  z-index: 2;
}


/* COPYRIGHT AREA */

.footer .copyright {
  max-width: 1100px;

  margin: 30px auto 0;

  padding-top: 25px;

  border-top:
    1px solid rgba(255,255,255,0.14);
}
/* =========================================
   HEADER + HAMBURGER MENU FIX
========================================= */

.header {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 7%;

  background: #fffdf8;

  z-index: 1000;
}


/* LOGO */

.logo {
  text-decoration: none;

  color: #123f35;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 30px;

  font-weight: 700;

  letter-spacing: 1px;

  white-space: nowrap;
}

.logo span {
  color: #b98a43;
}


/* DESKTOP NAV */



.navbar a {
  color: #23463d;

  text-decoration: none;

  font-size: 14px;

  white-space: nowrap;
}


/* QUOTE BUTTON */

.nav-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 13px 22px;

  border-radius: 50px;

  background: #103f34;

  color: #fff;

  text-decoration: none;

  font-size: 13px;

  font-weight: 700;

  white-space: nowrap;
}


/* HAMBURGER - HIDDEN ON DESKTOP */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 0;

  border: none;

  background: transparent;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 24px;
  height: 2px;

  margin: 5px auto;

  background: #123f35;

  transition: 0.3s ease;
}


/* MOBILE MENU - HIDDEN BY DEFAULT */

.mobile-menu {
  display: none;
}


/* =========================================
   MOBILE / TABLET
========================================= */

@media (max-width: 900px) {

  .header {
    padding: 16px 5%;
  }


  .navbar {
    display: none;
  }


  .nav-btn {
    display: none;
  }


  .menu-toggle {
    display: block;
  }


  .mobile-menu {
    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    box-sizing: border-box;

    padding: 22px 5% 28px;

    background:
      linear-gradient(
        135deg,
        #123f35,
        #082f28
      );

    border-top:
      1px solid rgba(216, 176, 102, 0.25);

    box-shadow:
      0 18px 35px rgba(0, 0, 0, 0.14);

    flex-direction: column;

    gap: 6px;
  }


  .mobile-menu.active {
    display: flex;
  }


  .mobile-menu a {
    display: block;

    padding: 14px 5px;

    color: #fff;

    text-decoration: none;

    font-size: 15px;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.09);
  }


  .mobile-menu a:hover {
    color: #dfb96e;
  }


  .mobile-quote-btn {
    margin-top: 10px;

    text-align: center;

    border-radius: 50px;

    background:
      linear-gradient(
        90deg,
        #e0bb71,
        #c3934a
      );

    color: #103d33 !important;

    font-weight: 700;
  }

}


/* SMALL MOBILE */

@media (max-width: 500px) {

  .logo {
    font-size: 24px;
  }

}
/* =========================================
   HAMBURGER - DESKTOP + MOBILE
========================================= */

.menu-toggle {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  margin-left: 12px;

  padding: 0;

  border: 1px solid rgba(16, 63, 52, 0.18);
  border-radius: 50%;

  background: #f7f1e6;

  cursor: pointer;

  transition: 0.3s ease;
}

.menu-toggle:hover {
  background: #103f34;
  border-color: #103f34;
}


/* THREE LINES */

.menu-toggle span {
  display: block;

  width: 20px;
  height: 2px;

  margin: 2.5px 0;

  border-radius: 5px;

  background: #103f34;

  transition: 0.3s ease;
}

.menu-toggle:hover span {
  background: #dcb56a;
}


/* =========================================
   DROPDOWN MENU
========================================= */

.mobile-menu {
  display: none;

  position: absolute;

  top: calc(100% + 10px);
  right: 7%;
  left: auto;

  width: 290px;

  box-sizing: border-box;

  padding: 15px;

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      #123f35,
      #082f28
    );

  border:
    1px solid rgba(218, 180, 105, 0.25);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.20);

  z-index: 9999;
}


/* JS ADDS THIS CLASS */

.mobile-menu.active {
  display: flex !important;

  flex-direction: column;

  gap: 3px;
}


.mobile-menu a {
  display: block;

  padding: 13px 15px;

  border-radius: 10px;

  color: #ffffff;

  text-decoration: none;

  font-size: 14px;

  transition: 0.25s ease;
}


.mobile-menu a:hover {
  padding-left: 20px;

  color: #e1bb70;

  background: rgba(255, 255, 255, 0.07);
}


/* GET QUOTE INSIDE MENU */

.mobile-menu .mobile-quote-btn {
  margin-top: 8px;

  text-align: center;

  color: #103f34 !important;

  background:
    linear-gradient(
      90deg,
      #e2bf76,
      #c5944c
    );

  font-weight: 700;
}


.mobile-menu .mobile-quote-btn:hover {
  padding-left: 15px;

  background: #ffffff;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

  /* normal navigation hidden on mobile */
  .navbar,
  .nav-btn {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .mobile-menu {
    top: 100%;
    right: 5%;

    width: 90%;
  }

}
/* =========================================
   GIFTORY FINAL NAVIGATION
========================================= */

.header {
  position: sticky !important;
  top: 0;

  width: 100%;

  box-sizing: border-box;

  display: flex;
  align-items: center;

  padding: 18px 7%;

  background: rgba(255, 253, 248, 0.97);

  border-bottom:
    1px solid rgba(16, 63, 52, 0.07);

  z-index: 9999;
}


/* LOGO */

.header .logo {
  flex-shrink: 0;

  text-decoration: none;

  color: #103f34;

  font-family: Georgia, serif;

  font-size: 30px;

  font-weight: 700;

  white-space: nowrap;
}

.header .logo span {
  color: #b88a45;
}


/* DESKTOP NAV */

.header .navbar {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 28px;

  margin-left: auto;
}

.header .navbar a {
  position: relative;

  color: #24463d;

  text-decoration: none;

  font-size: 14px;

  white-space: nowrap;

  transition: 0.25s ease;
}

.header .navbar a:hover {
  color: #b7833d;
}


/* GOLD HOVER LINE */

.header .navbar a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 0;
  height: 2px;

  background: #c4934b;

  transition: width 0.25s ease;
}

.header .navbar a:hover::after {
  width: 100%;
}


/* RIGHT SIDE */

.header-actions {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-left: 35px;
}


/* GET QUOTE */

.header .nav-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 13px 22px;

  border-radius: 50px;

  background: #103f34;

  color: #ffffff;

  text-decoration: none;

  font-size: 13px;

  font-weight: 700;

  white-space: nowrap;
}


/* HAMBURGER */

.header .menu-toggle {
  display: flex !important;

  width: 46px;
  height: 46px;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  padding: 0;

  border-radius: 50%;

  border:
    1px solid rgba(16, 63, 52, 0.18);

  background: #f6efe3;

  cursor: pointer;

  transition: 0.3s ease;
}


.header .menu-toggle span {
  display: block;

  width: 20px;
  height: 2px;

  margin: 2.5px 0;

  border-radius: 5px;

  background: #103f34;

  transition: 0.3s ease;
}


.header .menu-toggle:hover {
  background: #103f34;
}

.header .menu-toggle:hover span {
  background: #dcb46a;
}


/* X ANIMATION */

.header .menu-toggle.active span:nth-child(1) {
  transform:
    translateY(7px)
    rotate(45deg);
}

.header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header .menu-toggle.active span:nth-child(3) {
  transform:
    translateY(-7px)
    rotate(-45deg);
}


/* =========================================
   DROPDOWN
========================================= */

.header .mobile-menu {
  display: none;

  position: absolute;

  top: calc(100% + 10px);
  right: 7%;

  width: 310px;

  box-sizing: border-box;

  padding: 14px;

  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      #123f35,
      #082f28
    );

  border:
    1px solid rgba(218, 180, 105, 0.25);

  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.22);

  z-index: 10000;
}


.header .mobile-menu.active {
  display: flex !important;

  flex-direction: column;

  gap: 3px;
}


.header .mobile-menu a {
  display: block;

  padding: 12px 15px;

  border-radius: 10px;

  color: #ffffff;

  text-decoration: none;

  font-size: 14px;

  transition: 0.25s ease;
}


.header .mobile-menu a:hover {
  padding-left: 20px;

  color: #dfb96e;

  background:
    rgba(255, 255, 255, 0.07);
}


.header .mobile-menu .mobile-quote-btn {
  margin-top: 8px;

  text-align: center;

  background:
    linear-gradient(
      90deg,
      #e1bd73,
      #c4934b
    );

  color: #103f34 !important;

  font-weight: 700;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

  .header {
    padding: 15px 5%;
  }


  .header .navbar {
    display: none !important;
  }


  .header .nav-btn {
    display: none !important;
  }


  .header-actions {
    margin-left: auto;
  }


  .header .mobile-menu {
    right: 5%;

    width: 90%;

    max-height: 75vh;

    overflow-y: auto;
  }

}


@media (max-width: 500px) {

  .header .logo {
    font-size: 24px;
  }


  .header .menu-toggle {
    width: 42px;
    height: 42px;
  }

}


/* CORRECT SCROLL POSITION WITH STICKY HEADER */

#home,
#categories,
#featured,
#corporate,
#why-giftory,
#about,
#contact {
  scroll-margin-top: 100px;
}



/* =========================================
   GIFTORY HEADER LOGO
========================================= */

.brand-logo {
  display: flex !important;
  align-items: center;
  gap: 11px;

  text-decoration: none;
  flex-shrink: 0;
}


/* ROUND LOGO IMAGE */

.header-logo-img {
  width: 52px;
  height: 52px;

  object-fit: cover;

  border-radius: 50%;

  border: 2px solid #c99b50;

  box-shadow:
    0 5px 15px rgba(15, 63, 52, 0.15);

  flex-shrink: 0;
}


/* GIFTORY.CO TEXT */

.brand-name {
  font-family: Georgia, "Times New Roman", serif;

  font-size: 29px;
  font-weight: 700;

  letter-spacing: 1px;

  color: #103f34 !important;

  white-space: nowrap;
}

.brand-name > span {
  color: #b98a43 !important;
}


/* MOBILE */

@media (max-width: 600px) {

  .header-logo-img {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 22px;
  }

}
/* =========================================
   WHY GIFTORY - PREMIUM CARD UPGRADE
========================================= */

.why-giftory {
  padding: 110px 7%;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(199, 153, 79, 0.10),
      transparent 25%
    ),
    radial-gradient(
      circle at 88% 75%,
      rgba(16, 63, 52, 0.06),
      transparent 28%
    ),
    #fffdf8;
}


/* GRID */

.why-grid {
  max-width: 1140px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 24px;
}


/* CARD */

.why-card {
  position: relative;

  min-height: 310px;

  padding: 34px 28px 30px;

  box-sizing: border-box;

  overflow: hidden;

  border-radius: 24px;

  background:
    linear-gradient(
      155deg,
      #ffffff 0%,
      #f8f1e6 100%
    );

  border:
    1px solid rgba(190, 145, 72, 0.22);

  box-shadow:
    0 18px 40px rgba(15, 57, 48, 0.08);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


/* DARK GREEN TOP BAR */

.why-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 7px;

  background:
    linear-gradient(
      90deg,
      #0d3d33,
      #c79b50
    );
}


/* DECORATIVE CIRCLE */

.why-card::after {
  content: "";

  position: absolute;

  width: 150px;
  height: 150px;

  top: -70px;
  right: -70px;

  border-radius: 50%;

  border:
    1px solid rgba(190, 145, 72, 0.16);

  pointer-events: none;
}


/* HOVER */

.why-card:hover {
  transform: translateY(-10px);

  border-color:
    rgba(190, 145, 72, 0.45);

  box-shadow:
    0 28px 55px rgba(15, 57, 48, 0.14);
}


/* ICON */

.why-icon {
  width: 62px;
  height: 62px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 30px;

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      #0f4338,
      #082f28
    );

  color: #e4bd73;

  font-size: 25px;

  border:
    1px solid rgba(228, 189, 115, 0.28);

  box-shadow:
    0 12px 26px rgba(15, 63, 52, 0.17);
}


/* TITLE */

.why-card h3 {
  margin: 0 0 14px;

  color: #0c3e34;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 25px;

  line-height: 1.2;
}


/* DESCRIPTION */

.why-card p {
  margin: 0;

  color: #707975;

  font-size: 14px;

  line-height: 1.75;
}


/* SMALL GOLD DETAIL */

.why-card h3::after {
  content: "";

  display: block;

  width: 34px;
  height: 2px;

  margin-top: 14px;

  background:
    linear-gradient(
      90deg,
      #c3924a,
      transparent
    );
}


/* TABLET */

@media (max-width: 950px) {

  .why-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}


/* MOBILE */

@media (max-width: 600px) {

  .why-giftory {
    padding: 75px 5%;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: auto;
  }

}
/* =========================================
   SHOP GIFTS DROPDOWN
========================================= */

.shop-dropdown {
  position: relative;
}


.shop-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;

  padding: 8px 0;

  border: none;
  background: transparent;

  color: #24463d;

  font-family: inherit;
  font-size: 14px;

  cursor: pointer;
}


.shop-dropdown-btn span {
  color: #b98a43;

  font-size: 16px;

  transition: 0.25s ease;
}


.shop-dropdown.active
.shop-dropdown-btn span {
  transform: rotate(180deg);
}


/* DROPDOWN BOX */

.shop-dropdown-menu {
  display: none;

  position: absolute;

  top: calc(100% + 18px);
  left: 50%;

  transform: translateX(-50%);

  width: 340px;

  padding: 12px;

  box-sizing: border-box;

  border-radius: 18px;

  background: #fffdf8;

  border:
    1px solid rgba(183, 136, 67, 0.22);

  box-shadow:
    0 22px 50px rgba(14, 58, 49, 0.15);

  z-index: 10000;
}


.shop-dropdown.active
.shop-dropdown-menu {
  display: block;
}


.shop-dropdown-menu a {
  display: block;

  padding: 15px 16px;

  border-radius: 12px;

  text-decoration: none;

  transition: 0.25s ease;
}


.shop-dropdown-menu a:hover {
  background: #f4eee3;

  transform: translateX(3px);
}


.shop-dropdown-menu strong {
  display: block;

  color: #103f34;

  font-family: Georgia, serif;

  font-size: 16px;

  margin-bottom: 4px;
}


.shop-dropdown-menu a > span {
  display: block;

  color: #777f7b;

  font-size: 11px;

  line-height: 1.4;
}


/* =========================================
   MOBILE SHOP CATEGORY MENU
========================================= */

.mobile-shop-btn {
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 13px 15px;

  border: none;

  border-radius: 10px;

  background: transparent;

  color: #ffffff;

  font-family: inherit;

  font-size: 14px;

  cursor: pointer;
}


.mobile-shop-btn span {
  color: #dfb96e;

  font-size: 20px;

  transition: 0.25s ease;
}


.mobile-shop-categories.active
.mobile-shop-btn span {
  transform: rotate(45deg);
}


.mobile-shop-menu {
  display: none;

  padding: 5px 0 8px 14px;
}


.mobile-shop-categories.active
.mobile-shop-menu {
  display: block;
}


.mobile-shop-menu a {
  padding: 10px 15px !important;

  font-size: 13px !important;

  color:
    rgba(255,255,255,0.75) !important;
}


.mobile-shop-menu a:hover {
  color: #dfb96e !important;
}
/* =========================================
   CATEGORY PAGE - FESTIVE GIFTS
========================================= */

.category-page-hero {
  max-width: 1135px;
  margin: 40px auto 0;

  padding: 90px 7%;

  box-sizing: border-box;

  text-align: center;

  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(214, 177, 103, 0.15),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #123f35,
      #0a322a
    );

  border-radius: 28px;

  border:
    1px solid rgba(214, 176, 103, 0.25);

  box-shadow:
    0 25px 60px rgba(13, 56, 47, 0.14);
}


.category-page-hero > p {
  margin: 0 0 12px;

  color: #d9ae62;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 4px;
}


.category-page-hero h1 {
  margin: 0;

  color: #fff8e9;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 58px;

  line-height: 1.1;
}


.category-page-hero span {
  display: block;

  max-width: 650px;

  margin: 18px auto 0;

  color: rgba(255, 255, 255, 0.74);

  font-size: 16px;

  line-height: 1.7;
}


/* =========================================
   PRODUCTS SECTION
========================================= */

.category-products {
  padding: 90px 7% 100px;

  background: #fffdf8;
}


.category-heading {
  max-width: 1135px;

  margin: 0 auto 45px;

  text-align: center;
}


.category-heading p {
  margin: 0 0 9px;

  color: #b9853d;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 4px;
}


.category-heading h2 {
  margin: 0;

  color: #103f34;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 44px;
}


/* GRID */

.category-product-grid {
  max-width: 1135px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 28px;
}


/* CARD */

.category-product-card {
  overflow: hidden;

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f8f2e8
    );

  border:
    1px solid rgba(185, 139, 70, 0.20);

  box-shadow:
    0 18px 40px rgba(14, 57, 48, 0.08);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


.category-product-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 28px 55px rgba(14, 57, 48, 0.14);
}


/* IMAGE */

.category-product-image {
  width: 100%;
  height: 310px;

  overflow: hidden;

  background: #f2eadc;
}


.category-product-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.45s ease;
}


.category-product-card:hover
.category-product-image img {
  transform: scale(1.035);
}


/* PLACEHOLDER */

.product-placeholder {
  width: 100%;
  height: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #b58543;

  font-family: Georgia, serif;

  font-size: 28px;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(205, 160, 86, 0.12),
      transparent 45%
    ),
    #f5ede0;
}


/* PRODUCT INFO */

.category-product-info {
  padding: 27px 26px 30px;
}


.product-tag {
  margin: 0 0 9px;

  color: #b8843d;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2.5px;
}


.category-product-info h3 {
  margin: 0 0 12px;

  color: #103f34;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 25px;

  line-height: 1.25;
}


.category-product-info > p:not(.product-tag) {
  min-height: 72px;

  margin: 0 0 20px;

  color: #737b77;

  font-size: 14px;

  line-height: 1.7;
}


.category-product-info strong {
  display: block;

  margin-bottom: 20px;

  color: #103f34;

  font-size: 18px;
}


.category-product-info a {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 12px 20px;

  border-radius: 50px;

  text-decoration: none;

  color: #ffffff;

  background: #103f34;

  font-size: 13px;

  font-weight: 700;

  transition: 0.3s ease;
}


.category-product-info a:hover {
  color: #103f34;

  background:
    linear-gradient(
      90deg,
      #e2bf76,
      #c5964e
    );

  transform: translateY(-2px);
}


/* =========================================
   CUSTOM CTA
========================================= */

.category-custom-cta {
  max-width: 1135px;

  margin: 0 auto 90px;

  padding: 65px 7%;

  box-sizing: border-box;

  text-align: center;

  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      #f3eadb,
      #fffaf1
    );

  border:
    1px solid rgba(185, 139, 70, 0.22);
}


.category-custom-cta p {
  margin: 0 0 10px;

  color: #b9853d;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 4px;
}


.category-custom-cta h2 {
  margin: 0 0 28px;

  color: #103f34;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 38px;
}


.category-custom-cta a {
  display: inline-flex;

  padding: 14px 26px;

  border-radius: 50px;

  text-decoration: none;

  color: #ffffff;

  background: #103f34;

  font-size: 14px;

  font-weight: 700;

  transition: 0.3s ease;
}


.category-custom-cta a:hover {
  color: #103f34;

  background:
    linear-gradient(
      90deg,
      #e1bd73,
      #c4924a
    );

  transform: translateY(-3px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 950px) {

  .category-product-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 650px) {

  .category-page-hero {
    margin: 20px 5% 0;

    padding: 65px 7%;
  }


  .category-page-hero h1 {
    font-size: 42px;
  }


  .category-products {
    padding: 70px 5%;
  }


  .category-heading h2 {
    font-size: 34px;
  }


  .category-product-grid {
    grid-template-columns: 1fr;
  }


  .category-product-image {
    height: 280px;
  }


  .category-custom-cta {
    margin:
      0 5% 70px;

    padding: 50px 7%;
  }


  .category-custom-cta h2 {
    font-size: 30px;
  }

}
/* =========================================
   FINAL SHOP GIFTS DROPDOWN
========================================= */

.shop-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.shop-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;

  border: none;
  background: transparent;

  color: #24463d;

  font-family: inherit;
  font-size: 14px;

  cursor: pointer;
  padding: 8px 0;
}

.shop-arrow {
  color: #b98a43;
  transition: 0.25s ease;
}

.shop-dropdown.active .shop-arrow {
  transform: rotate(180deg);
}

.shop-dropdown-menu {
  display: none;

  position: absolute;

  top: calc(100% + 16px);
  left: 50%;

  transform: translateX(-50%);

  width: 320px;

  padding: 12px;

  background: #fffdf8;

  border:
    1px solid rgba(185, 139, 70, 0.22);

  border-radius: 18px;

  box-shadow:
    0 20px 45px rgba(14, 57, 48, 0.15);

  z-index: 99999;
}

.shop-dropdown.active .shop-dropdown-menu {
  display: block !important;
}

.shop-dropdown-menu a {
  display: block;

  padding: 14px 15px;

  border-radius: 12px;

  text-decoration: none;

  transition: 0.25s ease;
}

.shop-dropdown-menu a:hover {
  background: #f4eee3;
}

.shop-dropdown-menu strong {
  display: block;

  color: #103f34;

  font-family: Georgia, serif;

  font-size: 16px;
}

.shop-dropdown-menu small {
  display: block;

  margin-top: 4px;

  color: #777f7b;

  font-size: 11px;
}
/* =========================================
   GIFTORY PRODUCT CATALOGUE
========================================= */

.catalogue-section {
  padding: 55px 5% 100px;
  background: #fffdf8;
}

.catalogue-layout {
  max-width: 1280px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 35px;
}


/* =========================================
   LEFT SIDEBAR
========================================= */

.catalogue-sidebar {
  align-self: start;

  position: sticky;
  top: 105px;

  padding: 28px 22px;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      #f8f1e5,
      #fffdf8
    );

  border: 1px solid rgba(185, 139, 70, 0.20);

  box-shadow:
    0 14px 35px rgba(15, 63, 52, 0.07);
}


.sidebar-heading {
  margin-bottom: 25px;
}


.sidebar-heading p {
  margin: 0;

  color: #b58542;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 3px;
}


.sidebar-heading h2 {
  margin: 5px 0 0;

  color: #103f34;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 28px;
}


/* CATEGORY GROUP */

.sidebar-category {
  padding: 17px 0;

  border-top:
    1px solid rgba(16, 63, 52, 0.09);
}


.sidebar-category-title {
  width: 100%;

  padding: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: none;
  background: transparent;

  color: #103f34;

  font-family: inherit;
  font-size: 14px;
  font-weight: 700;

  text-align: left;

  cursor: default;
}


.sidebar-category-title strong {
  color: #b58542;

  font-size: 12px;
}


/* SUB CATEGORIES */

.sidebar-subcategories {
  display: flex;
  flex-direction: column;

  gap: 4px;

  margin-top: 10px;
}


.sidebar-subcategories button {
  width: 100%;

  padding: 10px 11px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: none;

  border-radius: 9px;

  background: transparent;

  color: #596d66;

  font-family: inherit;
  font-size: 13px;

  text-align: left;

  cursor: pointer;

  transition: all 0.25s ease;
}


.sidebar-subcategories button small {
  color: #9b7d50;

  font-size: 11px;
}


.sidebar-subcategories button:hover,
.sidebar-subcategories button.active {
  color: #103f34;

  background: #efe3cf;

  transform: translateX(3px);
}


/* VIEW ALL BUTTON */

.sidebar-show-all {
  width: 100%;

  margin-top: 15px;

  padding: 11px 14px;

  border: none;

  border-radius: 30px;

  color: #ffffff;

  background: #103f34;

  font-family: inherit;
  font-size: 12px;
  font-weight: 700;

  cursor: pointer;

  transition: all 0.25s ease;
}


.sidebar-show-all:hover,
.sidebar-show-all.active {
  color: #103f34;

  background:
    linear-gradient(
      90deg,
      #e0bd72,
      #c7964f
    );
}


/* =========================================
   RIGHT PRODUCT AREA
========================================= */

.catalogue-products {
  min-width: 0;
}


.catalogue-topbar {
  margin-bottom: 30px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 20px;
}


.catalogue-topbar p {
  margin: 0;

  color: #b58542;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 3px;
}


.catalogue-topbar h2 {
  margin: 5px 0 0;

  color: #103f34;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 38px;

  line-height: 1.2;
}


.catalogue-topbar > span {
  color: #75807b;

  font-size: 13px;

  white-space: nowrap;
}


/* =========================================
   PRODUCT GRID
========================================= */

.catalogue-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 24px;
}


/* PRODUCT CARD */

.catalogue-card {
  overflow: hidden;

  border-radius: 20px;

  background: #ffffff;

  border:
    1px solid rgba(185, 139, 70, 0.18);

  box-shadow:
    0 12px 30px rgba(16, 63, 52, 0.07);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.catalogue-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 20px 40px rgba(16, 63, 52, 0.13);
}


/* PRODUCT IMAGE */

.catalogue-image {
  width: 100%;
  height: 245px;

  overflow: hidden;

  background: #f3ecdf;
}


.catalogue-image img {
  width: 100%;
  height: 100%;

  padding: 15px;

  object-fit: contain;

  display: block;

  background: #ffffff;
}


/* TEMP PLACEHOLDER */

.catalogue-placeholder {
  width: 100%;
  height: 100%;

  padding: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  color: #b58542;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 23px;

  background:
    radial-gradient(
      circle at center,
      rgba(201, 155, 80, 0.14),
      transparent 52%
    ),
    #f5ede0;
}


/* =========================================
   PRODUCT DETAILS
========================================= */

.catalogue-card-content {
  padding: 22px;
}


.catalogue-tag {
  margin: 0 0 7px;

  color: #b58542;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 2px;
}


.catalogue-card-content h3 {
  min-height: 55px;

  margin: 0 0 10px;

  color: #103f34;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 20px;

  line-height: 1.3;
}


.catalogue-card-content > span {
  display: block;

  padding-top: 10px;

  border-top:
    1px solid rgba(185, 139, 70, 0.25);

  color: #818985;

  font-size: 12px;
}


.catalogue-card-content strong {
  display: block;

  margin: 12px 0 16px;

  color: #103f34;

  font-size: 14px;
}


/* ENQUIRE BUTTON */

.catalogue-card-content a {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 9px 15px;

  border-radius: 30px;

  color: #ffffff;

  background: #103f34;

  font-size: 12px;
  font-weight: 700;

  text-decoration: none;

  transition: all 0.25s ease;
}


.catalogue-card-content a:hover {
  color: #103f34;

  background: #d9b56a;

  transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

  .catalogue-layout {
    grid-template-columns: 220px 1fr;
    gap: 25px;
  }

  .catalogue-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 760px) {

  .catalogue-section {
    padding: 40px 5% 75px;
  }


  .catalogue-layout {
    grid-template-columns: 1fr;
  }


  .catalogue-sidebar {
    position: static;
  }


  .catalogue-grid {
    grid-template-columns: 1fr;
  }


  .catalogue-topbar {
    align-items: flex-start;

    flex-direction: column;
  }


  .catalogue-topbar h2 {
    font-size: 32px;
  }


  .catalogue-image {
    height: 280px;
  }

}
/* =========================================
   GIFTORY PRODUCT CATALOGUE
   Kitchen / Electronics / Corporate
========================================= */



.catalogue-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 38px;
}


/* =========================================
   LEFT SIDEBAR
========================================= */

.catalogue-sidebar {
  align-self: start;
  position: sticky;
  top: 105px;

  max-height: calc(100vh - 125px);
  overflow-y: auto;

  padding: 28px 22px;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      #f8f1e5,
      #fffdf8
    );

  border: 1px solid rgba(185, 139, 70, 0.20);

  box-shadow:
    0 14px 35px rgba(15, 63, 52, 0.07);
}


/* SIDEBAR SCROLLBAR */

.catalogue-sidebar::-webkit-scrollbar {
  width: 5px;
}

.catalogue-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.catalogue-sidebar::-webkit-scrollbar-thumb {
  background: rgba(185, 139, 70, 0.45);
  border-radius: 20px;
}


/* SIDEBAR HEADING */


/* =========================================
   CATEGORY BLOCK
========================================= */


/* CATEGORY TITLE */


/* =========================================
   SUB CATEGORY BUTTONS
========================================= */



.sidebar-subcategories button {
  width: 100%;

  padding: 10px 11px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;

  border: none;
  border-radius: 9px;

  background: transparent;

  color: #596d66;

  font-family: inherit;

  font-size: 13px;

  text-align: left;

  cursor: pointer;

  transition:
    all 0.25s ease;
}

.sidebar-subcategories button span {
  line-height: 1.35;
}

.sidebar-subcategories button small {
  color: #9b7d50;

  font-size: 10px;

  flex-shrink: 0;
}


/* HOVER */

.sidebar-subcategories button:hover {
  color: #103f34;

  background: #efe3cf;

  transform: translateX(3px);
}


/* ACTIVE FILTER */

.sidebar-subcategories button.active {
  color: #103f34;

  background:
    linear-gradient(
      90deg,
      #efe3cf,
      #f7f0e5
    );

  font-weight: 700;
}


/* =========================================
   VIEW ALL BUTTON
========================================= */

.sidebar-show-all {
  width: 100%;

  margin-top: 18px;

  padding: 12px 15px;

  border: none;
  border-radius: 30px;

  color: #ffffff;

  background: #103f34;

  font-family: inherit;

  font-size: 12px;
  font-weight: 700;

  cursor: pointer;

  transition:
    all 0.25s ease;
}

.sidebar-show-all:hover,
.sidebar-show-all.active {
  color: #103f34;

  background:
    linear-gradient(
      90deg,
      #e0bd72,
      #c7964f
    );

  transform: translateY(-2px);
}


/* =========================================
   RIGHT PRODUCT AREA
========================================= */


/* =========================================
   CATALOGUE TOP BAR
========================================= */


/* =========================================
   SELECTED CATALOGUE PRODUCT
========================================= */

.catalogue-card.selected-product {
  border: 2px solid #c99b50;

  box-shadow:
    0 0 0 4px rgba(201, 155, 80, 0.12),
    0 18px 45px rgba(16, 63, 52, 0.15),
    0 0 28px rgba(201, 155, 80, 0.18);

  transform: translateY(-6px);
}


/* GOLDEN LINE ABOVE SELECTED CARD */

.catalogue-card.selected-product::before {
  content: "";

  display: block;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      #a97834,
      #e2bf76,
      #c79449
    );
}


/* SELECTED SIDEBAR ITEM */

.sidebar-subcategories button.active {
  color: #103f34;

  background:
    linear-gradient(
      90deg,
      #ead3a5,
      #f7ead0
    );

  border: 1px solid rgba(185, 139, 70, 0.42);

  box-shadow:
    0 5px 15px rgba(185, 139, 70, 0.12);

  font-weight: 700;

  transform: translateX(4px);
}


/* VIEW ALL ACTIVE */

.sidebar-show-all.active {
  color: #103f34;

  background:
    linear-gradient(
      90deg,
      #e1bd73,
      #c4924a
    );

  box-shadow:
    0 6px 18px rgba(185, 139, 70, 0.20);
}
/* =========================================
   HOMEPAGE CATEGORY LINKS
========================================= */

.category-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.category-card-link .category-image {
  overflow: hidden;
}

.category-card-link .category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.4s ease;
}

.category-card-link:hover .category-image img {
  transform: scale(1.04);
}

.category-explore {
  display: inline-block;

  margin-top: 4px;

  color: #b28a4a;

  font-size: 14px;
  font-weight: 700;

  transition: 0.25s ease;
}

.category-card-link:hover .category-explore {
  color: #113c32;
  transform: translateX(4px);
}
/* =========================================
   CATEGORY IMAGE HERO
   Festive / Corporate / Electronics / Kitchen
========================================= */

.category-image-hero {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: #103f34;
}

.category-image-hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* DESKTOP */

@media (min-width: 1101px) {

  .category-image-hero {
    max-height: 650px;
  }

  .category-image-hero img {
    width: 100%;
    height: auto;
  }

}


/* TABLET */

@media (max-width: 1100px) {

  .category-image-hero {
    margin-top: 0;
  }

}


/* MOBILE */

@media (max-width: 650px) {

  .category-image-hero {
    width: 100%;
    overflow: hidden;
  }

  .category-image-hero img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

}
/* =========================================
GIFTORY FOOTER CONTACT DETAILS
========================================= */

.footer-contact-info {
  margin-top: 24px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 15px;

  font-size: 14px;
}

.footer-contact-info a {
  color: #ffffff;

  text-decoration: none;

  font-weight: 500;

  letter-spacing: 0.5px;

  transition: 0.25s ease;
}

.footer-contact-info a:hover {
  color: #c99b50;
}

.footer-contact-divider {
  color: #c99b50;
}


/* MOBILE */

@media (max-width: 600px) {

  .footer-contact-info {
    flex-direction: column;
    gap: 9px;
  }

  .footer-contact-divider {
    display: none;
  }

}