/* ---------- Reset & base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #d9a441;
  --gold-light: #f0c25f;
  --gold-dark: #b9862c;
  --black: #0a0906;
  --black-soft: #100e0a;
  --off-white: #f5f2ec;
  --gray-text: #cfc9bd;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  font-family: 'Poppins', sans-serif;
  color: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

svg {
  width: 1em;
  height: 1em;
}

/* ---------- Header ---------- */

.site-header {
  background: var(--black);
  border-bottom: 1px solid rgba(217, 164, 65, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.logo-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  letter-spacing: 1px;
  color: var(--off-white);
  font-style: italic;
  transform: skew(-6deg);
}

.logo-sub {
  font-family: 'Allura', cursive;
  font-size: 15px;
  color: var(--gold);
  margin-top: -4px;
  margin-left: 4px;
}

.main-nav ul {
  display: flex;
  gap: 34px;
}

.main-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--off-white);
  position: relative;
  padding-bottom: 6px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--gold-light);
}

.main-nav a.active {
  color: var(--gold);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.btn-donate {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 12px 22px;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-donate:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-donate .icon-heart {
  width: 15px;
  height: 15px;
}

.icon-bag {
  width: 20px;
  height: 20px;
  color: var(--off-white);
  transition: color 0.2s ease;
}

.icon-bag:hover {
  color: var(--gold);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(10, 9, 6, 0.97) 0%,
    rgba(10, 9, 6, 0.9) 28%,
    rgba(10, 9, 6, 0.55) 45%,
    rgba(10, 9, 6, 0.05) 62%,
    rgba(10, 9, 6, 0) 75%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 40px 60px 40px;
}

.mission-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: var(--off-white);
  margin-bottom: 14px;
}

.make-music {
  font-family: 'Allura', cursive;
  font-size: 76px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin: 4px 0 10px;
}

.gold-rule {
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 18px;
}

.hero-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: 28px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4px;
  padding: 15px 24px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-donate-lg {
  background: var(--gold);
  color: var(--black);
}

.btn-donate-lg:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(245, 242, 236, 0.5);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.watch-story {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--off-white);
}

.play-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 242, 236, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.play-circle svg {
  width: 13px;
  height: 13px;
  margin-left: 2px;
}

.watch-story:hover .play-circle {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- Stats panel ---------- */

.hero-note {
  position: absolute;
  z-index: 2;
  right: 60px;
  top: 40px;
  width: 230px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55));
}

.hero-note img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1200px) {
  .hero-note {
    position: static;
    margin: 30px auto 0;
    width: 200px;
  }
}

/* ---------- Feature strip ---------- */

.feature-strip {
  background: var(--off-white);
  border-top: 1px solid rgba(10, 9, 6, 0.08);
  border-bottom: 1px solid rgba(10, 9, 6, 0.08);
  padding: 36px 0;
}

.feature-strip-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0 32px;
  border-left: 1px solid rgba(10, 9, 6, 0.12);
}

.feature-item:first-child {
  border-left: none;
  padding-left: 0;
}

.feature-item:last-child {
  padding-right: 0;
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-text h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.3px;
  color: var(--black);
  margin-bottom: 8px;
}

.feature-text p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 12.5px;
  line-height: 1.55;
  color: #6b6660;
  margin-bottom: 10px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--gold-dark);
  transition: gap 0.2s ease, color 0.2s ease;
}

.feature-link:hover {
  color: var(--gold);
  gap: 9px;
}

.feature-link .arrow {
  font-size: 13px;
  line-height: 1;
}

@media (max-width: 1000px) {
  .feature-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }
  .feature-item:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }
  .feature-item:nth-child(odd) {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .feature-strip-inner {
    grid-template-columns: 1fr;
  }
  .feature-item {
    border-left: none !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(10, 9, 6, 0.1);
    padding-bottom: 24px !important;
    margin-bottom: 24px;
  }
  .feature-item:last-child {
    border-bottom: none;
  }
}

/* ---------- Dream section ---------- */

.dream-section {
  background: var(--black);
  padding: 50px 40px;
}

.dream-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.dream-image {
  flex-shrink: 0;
  width: 300px;
  height: 260px;
  border-radius: 150px 150px 0 0;
  overflow: hidden;
  border: 3px solid var(--gold);
  border-bottom: none;
}

.dream-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.dream-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 14px;
}

.dream-text p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  color: var(--gold-light);
  max-width: 1100px;
}

@media (max-width: 900px) {
  .dream-inner {
    flex-direction: column;
    text-align: center;
  }
  .dream-image {
    width: 260px;
    height: 220px;
    border-radius: 130px 130px 0 0;
  }
}

/* ---------- Mission section ---------- */

.mission-section {
  background: #fbe2c0;
  padding: 26px 40px;
}

.mission-inner {
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
}

.mission-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #2a1f14;
  margin-bottom: 8px;
}

.mission-inner p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.7;
  color: #2a1f14;
}

@media (max-width: 700px) {
  .mission-inner p {
    text-align: left;
  }
}

/* ---------- Merch section ---------- */

.merch-section {
  display: flex;
  align-items: stretch;
  background: var(--off-white);
  flex-wrap: wrap;
}

.merch-left {
  flex: 0 0 320px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.merch-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.merch-left h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 14px;
}

.merch-left p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  color: #6b6660;
  margin-bottom: 16px;
}

.merch-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.4px;
  color: var(--gold-dark);
  transition: gap 0.2s ease, color 0.2s ease;
}

.merch-link:hover {
  color: var(--gold);
  gap: 10px;
}

.merch-products {
    display: grid;

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

    gap: 20px;

    flex: 1;
}

.product-card {
    padding: 30px 20px;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    border: 1px solid rgba(10, 9, 6, 0.08);
}

.product-img {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1 / 1;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--black);
  margin-bottom: 6px;
}

.product-card .price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--gold-dark);
}

.merch-cta {
  flex: 0 0 380px;
  background: var(--black);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-note {
  width: 26px;
  height: 26px;
  color: var(--gold);
  margin-bottom: 14px;
}

.merch-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: var(--gold);
  margin-bottom: 12px;
}

.merch-cta p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: 22px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.cta-buttons .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1100px) {
  .merch-products {
    border-left: none;
  }
}

@media (max-width: 900px) {
  .merch-section {
    flex-direction: column;
  }
  .merch-left, .merch-products, .merch-cta {
    flex: 1 1 auto;
  }
  .merch-products {
    flex-wrap: wrap;
  }
  .product-card {
    flex: 1 1 33%;
  }
}

@media (max-width: 600px) {
  .merch-products {
    flex-direction: column;
  }
  .product-card {
    border-right: none;
    border-bottom: 1px solid rgba(10, 9, 6, 0.08);
  }
  .cta-buttons .btn {
    width: 100%;
  }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(217, 164, 65, 0.2);
  padding-top: 50px;
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-text);
  margin: 14px 0 18px;
  max-width: 320px;
}

.footer-brand .logo {
  margin-bottom: 4px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(245, 242, 236, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-socials a svg {
  width: 15px;
  height: 15px;
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.8px;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--gray-text);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-contact li {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--gray-text);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 242, 236, 0.08);
  padding: 20px 40px;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: rgba(207, 201, 189, 0.6);
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 0 20px 30px;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1200px) {
  .main-nav ul {
    gap: 20px;
  }
  .hero {
    flex-direction: column;
    padding-bottom: 20px;
  }
  .hero-overlay {
    background: rgba(10, 9, 6, 0.75);
  }
}

@media (max-width: 900px) {
 
  .make-music {
    font-size: 58px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding: 12px 20px;
  }
  .hero-content {
    padding: 40px 20px;
  }
  .make-music {
    font-size: 46px;
  }
  .mission-line {
    font-size: 17px;
  }
}

/* ---------- Contact us ---------- */

/* ---------- Contact Us ---------- */

.contact-section {
    width: 100%;
    padding: 90px 40px;
    background: var(--black);
}

.contact-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid !important;
    grid-template-columns: 50% 50% !important;

    gap: 30px;

    align-items: start;
}


/* =========================
   LEFT SIDE
========================= */

.contact-info {
    width: 100%;
}

.contact-label {
    display: inline-block;

    margin-bottom: 18px;

    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 2px;

    color: var(--gold);
}

.contact-info h2 {
    margin: 0 0 25px;

    font-family: 'Bebas Neue', sans-serif;

    font-size: 58px;
    line-height: 1.05;
    font-weight: 400;

    color: var(--off-white);
}

.contact-info h2 span {
    display: block;

    color: var(--gold);
}

.contact-description {
    max-width: 520px;

    margin: 0 0 40px;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.8;

    color: var(--gray-text);
}


/* =========================
   CONTACT DETAILS
========================= */

.contact-details {
    display: flex;
    flex-direction: column;

    gap: 22px;
}

.contact-item {
    display: flex;
    align-items: center;

    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

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

    border: 1px solid rgba(217, 164, 65, 0.35);
    border-radius: 50%;

    background: rgba(217, 164, 65, 0.08);

    color: var(--gold);

    font-size: 18px;
}

.contact-item small {
    display: block;

    margin-bottom: 4px;

    font-family: 'Poppins', sans-serif;

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

    text-transform: uppercase;
    letter-spacing: 1px;

    color: var(--gold);
}

.contact-item p {
    margin: 0;

    font-family: 'Poppins', sans-serif;

    font-size: 14px;

    color: var(--off-white);
}


/* =========================
   RIGHT SIDE - FORM
========================= */

.contact-form-wrapper {
    width: 100%;

    padding: 45px;

    background: #15120d;

    border: 1px solid rgba(217, 164, 65, 0.18);

    border-radius: 8px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.contact-form {
    width: 100%;
}


/* Name + Email */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


/* Individual field */

.form-group {
    width: 100%;

    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-family: 'Poppins', sans-serif;

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

    color: var(--off-white);
}

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

    box-sizing: border-box;

    padding: 14px 15px;

    border: 1px solid rgba(245, 242, 236, 0.15);

    border-radius: 4px;

    background: #827c71;

    color: var(--off-white);

    font-family: 'Poppins', sans-serif;

    font-size: 13px;

    outline: none;

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

.form-group textarea {
    min-height: 150px;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
     color: gray;
}


/* Input focus */

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);

    background: #12100b;

    box-shadow: 0 0 0 2px rgba(217, 164, 65, 0.08);
}


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

.contact-submit {
    width: 100%;

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

    gap: 10px;

    padding: 15px 22px;

    border: none;
    border-radius: 4px;

    background: var(--gold);

    color: var(--black);

    font-family: 'Poppins', sans-serif;

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

    cursor: pointer;

    transition: background 0.2s ease,
                transform 0.2s ease;
}

.contact-submit:hover {
    background: var(--gold-light);

    transform: translateY(-1px);
}

.contact-submit span {
    font-size: 18px;

    transition: transform 0.2s ease;
}

.contact-submit:hover span {
    transform: translateX(4px);
}


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

@media (max-width: 900px) {

    .contact-section {
        padding: 70px 30px;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-info h2 {
        font-size: 48px;
    }

}


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

@media (max-width: 600px) {

    .contact-section {
        padding: 60px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .contact-info h2 {
        font-size: 40px;
    }

    .contact-description {
        font-size: 13px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

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

        gap: 0;
    }

}


/* About- us section css */

.about-section {
    width: 100%;
    padding: 90px 40px;
    background: var(--black);
}

.about-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid !important;
    grid-template-columns: 100% !important;

    gap: 30px;

    align-items: start;
}

.about-txt{
width:90%;
text-align:justify;
margin: 0 auto;
}

.about-container h2 {
    margin: 0 0 25px;

    font-family: 'Bebas Neue', sans-serif;

    font-size: 58px;
    line-height: 1.05;
    font-weight: 400;

    color: var(--off-white);
	text-align:center;
}

.imgmee {
  display: grid;
  justify-content: left;
  margin-top: 50px;
  text-align: left;
  width: 10%;
  margin-left: 25px;
}

.imgmee2 {
  display: grid;
  margin-top: 50px;
  text-align:center;
  width: 20%;
  margin-left: 25px;
  display: block;
    margin: 0 auto;
}

.aboutfullwth{ 

  width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid !important;
    grid-template-columns:33% 33% 33% !important;

    

    align-items: start;


}

.txtname{ font-size: 20px;
  font-weight: bold;
  margin-top: 20px;}

.aboutfullwth div{ text-align:center; width:auto; }



/* =========================================
   APPLICATION PORTAL  page css start
========================================= */

.application-section {
    width: 100%;

    padding: 100px 40px;

    background: var(--black);
}


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

.application-container {

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

   align-items: start;
}


/* =========================================
   LEFT SIDE
========================================= */

.application-info {
    width: 100%;
}


.application-label {

    display: inline-block;

    margin-bottom: 18px;

    font-family: 'Poppins', sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    color: var(--gold);
}


.application-info h2 {

    margin: 0 0 25px;

    font-family: 'Bebas Neue', sans-serif;

    font-size: 58px;

    line-height: 1.05;

    font-weight: 400;

    color: var(--off-white);
}


.application-info h2 span {

    display: block;

    color: var(--gold);
}


.application-description {

    max-width: 520px;

    margin: 0 0 45px;

    font-family: 'Poppins', sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: var(--gray-text);
}


/* =========================================
   APPLICATION STEPS
========================================= */

.application-points {

    display: flex;

    flex-direction: column;

    gap: 26px;
}


.application-point {

    display: flex;

    align-items: flex-start;

    gap: 18px;
}


.application-number {

    width: 42px;

    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(217, 164, 65, 0.45);

    border-radius: 50%;

    color: var(--gold);

    font-family: 'Poppins', sans-serif;

    font-size: 11px;

    font-weight: 600;
}


.application-point h3 {

    margin: 0 0 5px;

    font-family: 'Poppins', sans-serif;

    font-size: 14px;

    font-weight: 600;

    color: var(--off-white);
}


.application-point p {

    margin: 0;

    font-family: 'Poppins', sans-serif;

    font-size: 12px;

    line-height: 1.6;

    color: var(--gray-text);
}


/* =========================================
   RIGHT SIDE - FORM
========================================= */

.application-form-wrapper {

    width: 100%;

    padding: 45px;

    background: #15120d;

    border: 1px solid rgba(217, 164, 65, 0.18);

    border-radius: 8px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}


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

.application-form-header {

    margin-bottom: 30px;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(245, 242, 236, 0.08);
}


.application-form-header span {

    display: block;

    margin-bottom: 7px;

    font-family: 'Poppins', sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.5px;

    color: var(--gold);
}


.application-form-header h3 {

    margin: 0;

    font-family: 'Bebas Neue', sans-serif;

    font-size: 30px;

    font-weight: 400;

    color: var(--off-white);
}


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

.application-form {

    width: 100%;
}


.application-form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


.application-form-group {

    width: 100%;

    margin-bottom: 20px;
}


.application-form-group label {

    display: block;

    margin-bottom: 8px;

    font-family: 'Poppins', sans-serif;

    font-size: 14px;

    font-weight: 600;

    color: var(--off-white);
}


.application-form-group input,
.application-form-group select,
.application-form-group textarea {

    width: 100%;

    box-sizing: border-box;

    padding: 13px 14px;

    border: 1px solid rgba(245, 242, 236, 0.14);

    border-radius: 4px;

    background: #827c71;;

    color: var(--off-white);

    font-family: 'Poppins', sans-serif;

    font-size: 14px;

    outline: none;

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


.application-form-group textarea {

    min-height: 130px;

    resize: vertical;
}


.application-form-group select {

    cursor: pointer;
}


/* PLACEHOLDER */

.application-form-group input::placeholder,
.application-form-group textarea::placeholder {

    color: rgba(207, 201, 189, 0.45);
}


/* FOCUS */

.application-form-group input:focus,
.application-form-group select:focus,
.application-form-group textarea:focus {

    border-color: var(--gold);

    background: #12100b;

    box-shadow:
        0 0 0 2px rgba(217, 164, 65, 0.08);
}


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

.application-submit {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 22px;

    border: none;

    border-radius: 4px;

    background: var(--gold);

    color: var(--black);

    font-family: 'Poppins', sans-serif;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.application-submit:hover {

    background: var(--gold-light);

    transform: translateY(-1px);
}


.application-submit span {

    font-size: 18px;

    transition: transform 0.2s ease;
}


.application-submit:hover span {

    transform: translateX(4px);
}


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

@media (max-width: 900px) {

    .application-section {

        padding: 75px 30px;
    }


    .application-container {

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .application-info h2 {

        font-size: 48px;
    }

}


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

@media (max-width: 600px) {

    .application-section {

        padding: 60px 20px;
    }


    .application-container {

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .application-info h2 {

        font-size: 40px;
    }


    .application-description {

        font-size: 13px;
    }


    .application-form-wrapper {

        padding: 25px 20px;
    }


    .application-form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }

}


.radio-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;

    margin: 0;

    color: var(--off-white);

    font-family: 'Poppins', sans-serif;
    font-size: 13px;

    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: 16px;
    height: 16px;

    margin: 0;

    accent-color: var(--gold);

    cursor: pointer;
}





/* =========================================================
   COMMON FULL WIDTH SECTION
========================================================= */

.site-section {
    width: 100%;
    padding: 90px 40px;
}

.site-section-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.site-section-label {
    display: inline-block;

    margin-bottom: 15px;

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

    letter-spacing: 3px;
}

.site-section-heading h2 {
    margin: 0 0 20px;

    font-size: 48px;
    line-height: 1.05;

    font-weight: 800;
}

.site-section-heading h2 span {
    display: block;
}

.site-section-heading p {
    max-width: 700px;
    margin: 0 auto;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   SHOP
========================================================= */

.shop-section {
    background: #f5f5f5;
}

.shop-grid {
    display: grid;

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

    gap: 30px;
}

.shop-card {
    background: #ffffff;

    overflow: hidden;

    border: 1px solid #e5e5e5;

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

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

    box-shadow:
        0 15px 40px rgba(0,0,0,0.10);
}

.shop-card-image {
    width: 100%;
    height: 500px;

    background: #eeeeee;

    overflow: hidden;
}

.shop-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.4s ease;
}

.shop-card:hover .shop-card-image img {
    transform: scale(1.05);
}

.shop-card-content {
    padding: 28px;
	color: black !important;
}

.shop-category {
    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}

.shop-card-content h3 {
    margin: 10px 0 12px;

    font-size: 24px;

    line-height: 1.2;
}

.shop-card-content p {
    margin-bottom: 25px;

    font-size: 15px;

    line-height: 1.7;

    color: #666;
}

.shop-card-bottom {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;
}

.shop-card-bottom strong {
    font-size: 22px;
}

.shop-button {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 17px;

    background: #111;

    color: #fff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.25s ease;
}

.shop-button:hover {
    background: #333;
}

.shop-button span,
.site-primary-button span {
    font-size: 18px;
}

.shop-view-all,
.events-view-all {
    margin-top: 45px;

    text-align: center;
}


/* =========================================================
   EVENTS
========================================================= */

.events-section {
    background: #ffffff;
}

.events-list {
    width: 100%;
}

.event-card {
    display: grid;

    grid-template-columns:
        130px 1fr 180px;

    align-items: center;

    gap: 35px;

    padding: 30px;

    margin-bottom: 20px;

    background: #f7f7f7;

    border: 1px solid #e5e5e5;

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

.event-card:hover {
    transform: translateX(5px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);
}


/* DATE */

.event-date {
    text-align: center;

    border-right: 1px solid #ddd;

    padding-right: 30px;
}

.event-month {
    display: block;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;
}

.event-date strong {
    display: block;

    margin: 3px 0;

    font-size: 48px;

    line-height: 1;

    font-weight: 800;
}

.event-year {
    font-size: 13px;

    color: #777;
}


/* EVENT CONTENT */

.event-type {
    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}

.event-content h3 {
    margin: 8px 0;

    font-size: 25px;

    line-height: 1.2;
}

.event-content p {
    max-width: 700px;

    margin-bottom: 14px;

    color: #666;

    font-size: 15px;

    line-height: 1.6;
}

.event-details {
    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    font-size: 14px;

    font-weight: 600;
}


/* EVENT BUTTON */

.event-action {
    text-align: right;
}

.event-button {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 13px 20px;

    border: 1px solid #111;

    color: #111;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.25s ease;
}

.event-button:hover {
    background: #111;

    color: #fff;
}


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

.site-primary-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 15px 25px;

    background: #111;

    color: #fff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.25s ease;
}

.site-primary-button:hover {
    background: #333;
}


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

@media (max-width: 1000px) {

    .site-section {
        padding: 70px 25px;
    }

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

    .event-card {
        grid-template-columns:
            110px 1fr;

        gap: 25px;
    }

    .event-action {
        grid-column: 2;

        text-align: left;
    }

}


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

@media (max-width: 650px) {

    .site-section {
        padding: 55px 15px;
    }

    .site-section-heading {
        margin-bottom: 35px;
    }

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

    .site-section-heading p {
        font-size: 15px;
    }


    /* SHOP */

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

    .shop-card-image {
        height: 500px;
    }

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


    /* EVENTS */

    .event-card {
        display: block;

        padding: 25px;
    }

    .event-date {
        border-right: none;

        border-bottom: 1px solid #ddd;

        padding-right: 0;

        padding-bottom: 20px;

        margin-bottom: 20px;
    }

    .event-date strong {
        font-size: 42px;
    }

    .event-content h3 {
        font-size: 22px;
    }

    .event-action {
        margin-top: 20px;

        text-align: left;
    }

    .event-button {
        width: 100%;

        justify-content: center;
    }

}


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

@media (max-width: 400px) {

    .site-section-heading h2 {
        font-size: 29px;
    }

    .shop-card-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

    .shop-button {
        width: 100%;

        justify-content: center;
    }

}



/* =========================================================
   EVENTS PAGE
========================================================= */

.events-page-section {
    width: 100%;

    padding: 90px 40px;

    background: transparent;
}


.events-page-container {
    width: 100%;

    max-width: 1400px;

    margin: 0 auto;
}


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

.events-page-heading {
    max-width: 850px;

    margin: 0 auto 65px;

    text-align: center;
}


.events-page-label {
    display: inline-block;

    margin-bottom: 15px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;
}


.events-page-heading h1 {
    margin: 0;

    font-size: 58px;

    line-height: 1;

    font-weight: 800;

    text-transform: uppercase;
}


.events-page-heading h1 span {
    display: block;
}


.events-gold-line {
    width: 70px;

    height: 3px;

    margin: 25px auto;

    background: #c6a15b;
}


.events-page-heading p {
    max-width: 700px;

    margin: 0 auto;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   EVENTS LIST
========================================================= */

.events-page-list {
    width: 100%;
}


.events-page-card {
    display: grid;

    grid-template-columns: 42% 58%;

    width: 100%;

    margin-bottom: 35px;

    background: #ffffff !important;

    border: 1px solid #e5e5e5;

    overflow: hidden;

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


.events-page-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.10);
}


/* =========================================================
   EVENT IMAGE
========================================================= */

.events-page-image {
    width: 100%;

    min-height: 280px;

    overflow: hidden;
}


.events-page-image img {
    display: block;

    width: 100%;

    height:auto;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}


.events-page-card:hover
.events-page-image img {
    transform: scale(1.04);
}


/* =========================================================
   EVENT CONTENT
========================================================= */

.events-page-content {
    padding: 45px;
	padding-top:10px;
	padding-bottom:10px;
}


.events-page-type {
    display: block;

    margin-bottom: 12px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


.events-page-content h2 {
    margin: 0 0 10px;

    font-size: 34px;

    line-height: 1.15;

    font-weight: 800;
}


/* =========================================================
   EVENT META
========================================================= */

.events-page-meta {
    display: grid;

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

    gap: 10px;

    margin-bottom: 9px;

    padding: 20px 0;

    border-top: 1px solid #e5e5e5;

    border-bottom: 1px solid #e5e5e5;
}


.events-page-meta div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.events-page-meta strong {
    font-size: 11px;

    letter-spacing: 1.5px;
}


.events-page-meta span {
    font-size: 14px;

    line-height: 1.4;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.events-page-content p {
    margin-bottom: 28px;

    color: #666;

    font-size: 16px;

    line-height: 1.75;
}


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

.events-page-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 22px;

    background: #111111;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: all 0.25s ease;
}


.events-page-button:hover {
    background: #333333;

    color: #ffffff;
}


.events-page-button span {
    font-size: 18px;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.events-page-cta {
    margin-top: 70px;

    padding: 60px 30px;

    text-align: center;

    border-top: 1px solid #e5e5e5;
}


.events-page-cta h2 {
    margin: 0 0 15px;

    font-size: 42px;

    line-height: 1.1;

    font-weight: 800;
}


.events-page-cta h2 span {
    display: block;
}


.events-page-cta p {
    max-width: 650px;

    margin: 0 auto 30px;

    font-size: 16px;

    line-height: 1.7;
}


.events-donate-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 15px 28px;

    background: #111111;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: all 0.25s ease;
}


.events-donate-button:hover {
    background: #333333;

    color: #ffffff;
}


.events-donate-button span {
    font-size: 18px;
}


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

@media (max-width: 950px) {

    .events-page-section {
        padding: 70px 25px;
    }


    .events-page-card {
        grid-template-columns: 1fr;
    }


    .events-page-image {
        height: 350px;

        min-height: 0;
    }


    .events-page-content {
        padding: 35px;
    }

}


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

@media (max-width: 600px) {

    .events-page-section {
        padding: 55px 15px;
    }


    .events-page-heading {
        margin-bottom: 40px;
    }


    .events-page-heading h1 {
        font-size: 40px;
    }


    .events-page-heading p {
        font-size: 15px;
    }


    .events-page-image {
        height: 250px;
    }


    .events-page-content {
        padding: 25px;
    }


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


    .events-page-meta {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .events-page-content p {
        font-size: 15px;
    }


    .events-page-button {
        width: 100%;

        justify-content: center;
    }


    .events-page-cta {
        margin-top: 40px;

        padding: 40px 15px;
    }


    .events-page-cta h2 {
        font-size: 32px;
    }


    .events-donate-button {
        width: 100%;

        justify-content: center;
    }

}

.events-button-group {
   display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    margin-top: 0px;
}

.events-facebook-button {
    width: 48px;
    height: 48px;

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

    background: #1877f2;
    color: #ffffff;

    text-decoration: none;

    font-size: 20px;

    transition: all 0.25s ease;
}

.events-facebook-button:hover {
    background: #0d65d9;
    color: #ffffff;

    transform: translateY(-2px);
}




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

.product-details-page {
    width: 100%;
    background: #fff;
    padding: 55px 0 100px;
}


.product-details-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =====================================================
   BREADCRUMB
===================================================== */

.product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 45px;

    font-size: 12px;
    letter-spacing: 1px;

    color: #777;
}

.product-breadcrumb a {
    color: #222;
    text-decoration: none;
}

.product-breadcrumb a:hover {
    color: #777;
}


/* =====================================================
   MAIN PRODUCT AREA
===================================================== */

.product-detail-wrapper {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, 0.9fr);

    gap: 75px;

    align-items: start;
}


/* =====================================================
   IMAGE
===================================================== */

.product-gallery {
    width: 100%;
}


.product-main-image {
    width: 100%;
    height: 560px;

    background: #f6f6f4;

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

    overflow: hidden;
}


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

    object-fit: contain;

    transition: transform .4s ease;
}


.product-main-image:hover img {
    transform: scale(1.03);
}


/* =====================================================
   THUMBNAILS
===================================================== */

.product-image-thumbnails {
    display: flex;

    gap: 12px;

    margin-top: 15px;

    overflow-x: auto;
}


.product-thumbnail {
    width: 78px;
    height: 78px;

    padding: 0;

    flex: 0 0 78px;

    border: 1px solid #ddd;

    background: #fff;

    cursor: pointer;

    transition: .2s;
}


.product-thumbnail:hover {
    border-color: #333;
}


.product-thumbnail.active {
    border: 2px solid #111;
}


.product-thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =====================================================
   PRODUCT INFORMATION
===================================================== */

.product-detail-info {
    padding-top: 5px;
}


.product-small-title {
    font-size: 12px;

    letter-spacing: 3px;

    color: #777;

    margin-bottom: 16px;
}


.product-detail-title {
    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;

    font-weight: 600;

    margin: 0 0 22px;

    color: #171717;
}


.product-detail-price {
    font-size: 28px;

    font-weight: 600;

    margin-bottom: 28px;

    color: #171717;
}


.product-detail-description {
    color: #666;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 35px;
}


/* =====================================================
   OPTIONS
===================================================== */

.product-options {
    margin-bottom: 30px;
}


.product-options h3,
.product-quantity-section h3 {
    font-size: 14px;

    font-weight: 600;

    margin-bottom: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.product-option-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.product-option-button {
    padding: 12px 20px;

    background: #fff;

    border: 1px solid #ccc;

    color: #222;

    cursor: pointer;

    font-size: 13px;

    transition: all .2s ease;
}


.product-option-button:hover {
    border-color: #111;
}


.product-option-button.selected {
    background: #111;

    color: #fff;

    border-color: #111;
}


/* =====================================================
   QUANTITY
===================================================== */

.product-quantity-section {
    margin-bottom: 30px;
}


.product-quantity {
    display: flex;

    align-items: center;

    width: fit-content;

    border: 1px solid #ccc;
}


.product-quantity button {
    width: 45px;
    height: 45px;

    border: 0;

    background: #fff;

    font-size: 20px;

    cursor: pointer;
}


.product-quantity button:hover {
    background: #f4f4f4;
}


.product-quantity span {
    width: 50px;

    text-align: center;

    font-size: 14px;
}


/* =====================================================
   ACTION BUTTONS
===================================================== */

.product-action-buttons {
    display: flex;

    gap: 12px;

    margin-bottom: 35px;
}


.product-add-cart,
.product-buy-now {
    flex: 1;

    height: 55px;

    border: none;

    cursor: pointer;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.5px;

    transition: .25s;
}


.product-add-cart {
    background: #171717;

    color: #fff;
}


.product-add-cart:hover {
    background: #333;
}


.product-buy-now {
    background: #d7ae4d;

    color: #111;
}


.product-buy-now:hover {
    background: #c69d3d;
}


/* =====================================================
   PRODUCT META
===================================================== */

.product-information {
    border-top: 1px solid #eee;

    padding-top: 20px;

    color: #777;

    font-size: 13px;

    line-height: 2;
}


/* =====================================================
   PRODUCT DESCRIPTION
===================================================== */

.product-description-section {
    margin-top: 100px;

    padding-top: 65px;

    border-top: 1px solid #eee;
}


.product-description-heading {
    margin-bottom: 35px;
}


.product-description-heading span {
    font-size: 11px;

    letter-spacing: 3px;

    color: #777;
}


.product-description-heading h2 {
    margin-top: 10px;

    font-size: 32px;

    font-weight: 600;
}


.product-description-content {
    max-width: 850px;

    color: #555;

    font-size: 15px;

    line-height: 1.9;
}


.product-description-content p {
    margin-bottom: 15px;
}


.product-description-content img {
    max-width: 100%;
    height: auto;
}


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

@media (max-width: 900px) {

    .product-detail-wrapper {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .product-main-image {
        height: 480px;
    }

}


@media (max-width: 600px) {

    .product-details-page {
        padding-top: 30px;
    }


    .product-details-container {
        width: 92%;
    }


    .product-breadcrumb {
        margin-bottom: 30px;
    }


    .product-main-image {
        height: 350px;
    }


    .product-detail-title {
        font-size: 32px;
    }


    .product-detail-price {
        font-size: 25px;
    }


    .product-action-buttons {
        flex-direction: column;
    }


    .product-add-cart,
    .product-buy-now {
        width: 100%;
    }


    .product-description-section {
        margin-top: 65px;

        padding-top: 40px;
    }

}




/* =========================================
   PRODUCT OPTIONS
========================================= */

.product-option-group {
    margin-bottom: 25px;
}


.option-title {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 12px;

    font-size: 13px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.selected-option-text {
    color: #777;

    font-weight: 400;

    text-transform: none;

    letter-spacing: 0;
}


/* =========================================
   COLOR OPTIONS
========================================= */

.color-options {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.color-option {
    min-width: 80px;

    padding: 11px 18px;

    border: 1px solid #ccc;

    background: #fff;

    cursor: pointer;

    font-size: 13px;

    transition: .2s;
}


.color-option:hover {
    border-color: #111;
}


.color-option.selected {
    background: #111;

    color: #fff;

    border-color: #111;
}


/* =========================================
   SIZE OPTIONS
========================================= */

.size-options {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.size-option {
    min-width: 55px;

    padding: 11px 18px;

    border: 1px solid #ccc;

    background: #fff;

    cursor: pointer;

    font-size: 13px;

    transition: .2s;
}


.size-option:hover {
    border-color: #111;
}


.size-option.selected {
    background: #111;

    color: #fff;

    border-color: #111;
}


/* Disabled size */

.size-option.disabled {
    opacity: .35;

    cursor: not-allowed;

    text-decoration: line-through;

    background: #f5f5f5;
}


/* =========================================
   STOCK
========================================= */

.stock-message {
    min-height: 22px;

    margin-top: 5px;

    margin-bottom: 15px;

    color: #4c7a4c;

    font-size: 13px;
}


.stock-message.out-of-stock {
    color: #c0392b;
}


/* =========================================
   VARIATION PRICE
========================================= */

.variation-price {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    margin-bottom: 25px;

    font-size: 14px;
}


.variation-price strong {
    font-size: 25px;

    font-weight: 600;
}



/* =====================================================
   CART PAGE
===================================================== */

.cart-page {
    width: 100%;

    background: #fff;

    padding: 55px 0 100px;
}


.cart-container {
    width: 90%;

    max-width: 1200px;

    margin: 0 auto;
}


/* =====================================================
   BREADCRUMB
===================================================== */

.cart-breadcrumb {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 45px;

    font-size: 12px;

    letter-spacing: 1px;

    color: #777;
}


.cart-breadcrumb a {
    color: #222;

    text-decoration: none;
}


.cart-breadcrumb a:hover {
    color: #777;
}


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

.cart-heading {
    margin-bottom: 45px;
}


.cart-heading > span {
    font-size: 11px;

    letter-spacing: 3px;

    color: #777;
}


.cart-heading h1 {
    margin-top: 10px;

    font-size: 42px;

    line-height: 1.1;

    font-weight: 600;

    color: #171717;
}


/* =====================================================
   CART LAYOUT
===================================================== */

.cart-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        350px;

    gap: 60px;

    align-items: start;
}


/* =====================================================
   CART ITEMS
===================================================== */

.cart-items {
    width: 100%;
}


.cart-item {
    display: grid;

    grid-template-columns:
        120px
        minmax(0, 1fr)
        auto;

    gap: 25px;

    padding: 25px 0;

    border-top: 1px solid #e8e8e8;

    align-items: center;
}


.cart-item:last-child {
    border-bottom: 1px solid #e8e8e8;
}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.cart-item-image {
    width: 120px;

    height: 120px;

    background: #f6f6f4;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}


.cart-item-image img {
    width: 100%;

    height: 100%;

    object-fit: contain;
}


/* =====================================================
   PRODUCT INFORMATION
===================================================== */

.cart-item-info {
    min-width: 0;
}


.cart-item-name {
    font-size: 19px;

    font-weight: 600;

    margin-bottom: 8px;

    color: #171717;
}


.cart-item-variation {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 12px;

    color: #777;

    font-size: 13px;
}


.cart-item-variation span {
    padding-right: 8px;

    border-right: 1px solid #ddd;
}


.cart-item-variation span:last-child {
    border-right: none;
}


.cart-item-price {
    font-size: 15px;

    color: #555;
}


/* =====================================================
   QUANTITY
===================================================== */

.cart-item-quantity {
    display: flex;

    align-items: center;

    width: fit-content;

    border: 1px solid #ccc;

    margin-top: 15px;
}


.cart-item-quantity button {
    width: 36px;

    height: 36px;

    border: 0;

    background: #fff;

    cursor: pointer;

    font-size: 18px;
}


.cart-item-quantity button:hover {
    background: #f5f5f5;
}


.cart-item-quantity span {
    width: 40px;

    text-align: center;

    font-size: 13px;
}


/* =====================================================
   ITEM TOTAL
===================================================== */

.cart-item-right {
    text-align: right;
}


.cart-item-total {
    font-size: 17px;

    font-weight: 600;

    margin-bottom: 12px;
}


.remove-item {
    border: none;

    background: transparent;

    color: #888;

    font-size: 12px;

    text-decoration: underline;

    cursor: pointer;
}


.remove-item:hover {
    color: #111;
}


/* =====================================================
   CART SUMMARY
===================================================== */

.cart-summary {
    border: 1px solid #e5e5e5;

    padding: 30px;

    background: #fafafa;

    position: sticky;

    top: 30px;
}


.cart-summary-title {
    font-size: 20px;

    font-weight: 600;

    margin-bottom: 25px;
}


.summary-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 12px 0;

    font-size: 14px;

    color: #666;
}


.summary-row.total {
    border-top: 1px solid #ddd;

    margin-top: 10px;

    padding-top: 20px;

    color: #111;

    font-size: 18px;

    font-weight: 600;
}


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

.checkout-button {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 55px;

    margin-top: 25px;

    border: none;

    background: #171717;

    color: #fff;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-decoration: none;

    cursor: pointer;

    transition: .25s;
}


.checkout-button:hover {
    background: #333;

    color: #fff;
}


/* =====================================================
   CONTINUE SHOPPING
===================================================== */

.continue-shopping {
    display: inline-block;

    margin-top: 20px;

    color: #555;

    font-size: 13px;

    text-decoration: underline;
}


.continue-shopping:hover {
    color: #111;
}


/* =====================================================
   EMPTY CART
===================================================== */

.empty-cart {
    padding: 80px 20px;

    text-align: center;

    border-top: 1px solid #eee;

    border-bottom: 1px solid #eee;
}


.empty-cart-icon {
    font-size: 45px;

    margin-bottom: 20px;
}


.empty-cart h2 {
    font-size: 28px;

    margin-bottom: 12px;
}


.empty-cart p {
    color: #777;

    font-size: 14px;

    margin-bottom: 25px;
}


.empty-cart-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 180px;

    height: 50px;

    background: #171717;

    color: #fff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;
}


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

@media (max-width: 900px) {

    .cart-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .cart-summary {
        position: static;
    }

}


@media (max-width: 600px) {

    .cart-page {
        padding: 30px 0 70px;
    }


    .cart-container {
        width: 92%;
    }


    .cart-heading h1 {
        font-size: 32px;
    }


    .cart-item {
        grid-template-columns:
            90px
            minmax(0, 1fr);

        gap: 15px;

        padding: 20px 0;
    }


    .cart-item-image {
        width: 90px;

        height: 90px;
    }


    .cart-item-right {
        grid-column: 2;

        text-align: left;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 15px;
    }


    .cart-item-total {
        margin-bottom: 0;
    }


    .cart-summary {
        padding: 25px;
    }

}



/* =====================================================
   CHECKOUT PAGE
===================================================== */

.checkout-page {
    width: 100%;

    background: #fff;

    padding: 55px 0 100px;
}


.checkout-container {
    width: 90%;

    max-width: 1200px;

    margin: 0 auto;
}


/* =====================================================
   BREADCRUMB
===================================================== */

.checkout-breadcrumb {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 45px;

    font-size: 12px;

    letter-spacing: 1px;

    color: #777;
}


.checkout-breadcrumb a {
    color: #222;

    text-decoration: none;
}


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

.checkout-heading {
    margin-bottom: 45px;
}


.checkout-heading > span {
    font-size: 11px;

    letter-spacing: 3px;

    color: #777;
}


.checkout-heading h1 {
    margin-top: 10px;

    font-size: 42px;

    line-height: 1.1;

    font-weight: 600;

    color: #171717;
}


/* =====================================================
   CHECKOUT LAYOUT
===================================================== */

.checkout-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        380px;

    gap: 60px;

    align-items: start;
}


/* =====================================================
   CUSTOMER FORM
===================================================== */

.checkout-form {
    width: 100%;
}


.checkout-section {
    padding-bottom: 35px;

    margin-bottom: 35px;

    border-bottom: 1px solid #e5e5e5;
}


.checkout-section-title {
    font-size: 20px;

    font-weight: 600;

    margin-bottom: 25px;
}


.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


.form-group {
    margin-bottom: 20px;
}


.form-group.full {
    grid-column: 1 / -1;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .5px;
	color: black !important;
}


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

    height: 48px;

    padding: 0 14px;

    border: 1px solid #d7d7d7;

    background: #fff;

    font-family: inherit;

    font-size: 14px;

    outline: none;
}


.form-group textarea {
    height: 100px;

    padding-top: 14px;

    resize: vertical;
}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #222;
}


/* =====================================================
   ORDER SUMMARY
===================================================== */

.checkout-summary {
    padding: 30px;

    border: 1px solid #e5e5e5;

    background: #fafafa;

    position: sticky;

    top: 30px;
}


.checkout-summary-title {
    font-size: 20px;

    font-weight: 600;

    margin-bottom: 25px;
}


/* =====================================================
   ORDER ITEMS
===================================================== */

.checkout-product {
    display: grid;

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

    gap: 15px;

    padding: 15px 0;

    border-bottom: 1px solid #ddd;

    align-items: center;
}


.checkout-product-image {
    width: 70px;

    height: 70px;

    background: #f1f1f1;

    overflow: hidden;
}


.checkout-product-image img {
    width: 100%;

    height: 100%;

    object-fit: contain;
}


.checkout-product-name {
    font-size: 14px;

    font-weight: 600;

    margin-bottom: 5px;
	color: black;
}


.checkout-product-details {
    color: #777;

    font-size: 12px;

    line-height: 1.6;
}


.checkout-product-price {
    font-size: 14px;

    font-weight: 600;

    white-space: nowrap;
	color: black;
}


/* =====================================================
   SUMMARY ROWS
===================================================== */

.checkout-summary-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 12px 0;

    font-size: 14px;

    color: #666;
}


.checkout-summary-row.total {
    border-top: 1px solid #ccc;

    margin-top: 10px;

    padding-top: 20px;

    color: #111;

    font-size: 19px;

    font-weight: 600;
}


/* =====================================================
   PAYPAL
===================================================== */

.paypal-section {
    margin-top: 25px;
}


.paypal-title {
    font-size: 13px;

    font-weight: 600;

    margin-bottom: 12px;
}


.paypal-button {
    width: 100%;

    height: 55px;

    border: none;

    background: #ffc439;

    color: #111;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    letter-spacing: .5px;

    transition: .2s;
}


.paypal-button:hover {
    background: #f0b72f;
}


.paypal-button:disabled {
    opacity: .5;

    cursor: not-allowed;
}


.paypal-note {
    margin-top: 12px;

    color: #777;

    font-size: 11px;

    line-height: 1.6;
}


/* =====================================================
   EMPTY CART
===================================================== */

.checkout-empty {
    padding: 80px 20px;

    text-align: center;

    border-top: 1px solid #eee;

    border-bottom: 1px solid #eee;
}


.checkout-empty h2 {
    margin-bottom: 10px;
}


.checkout-empty p {
    color: #777;

    margin-bottom: 25px;
}


.checkout-empty a {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    height: 50px;

    padding: 0 30px;

    background: #171717;

    color: #fff;

    text-decoration: none;

    font-size: 12px;

    letter-spacing: 1px;
}


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

@media (max-width: 900px) {

    .checkout-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .checkout-summary {
        position: static;
    }

}


@media (max-width: 600px) {

    .checkout-page {
        padding: 30px 0 70px;
    }


    .checkout-container {
        width: 92%;
    }


    .checkout-heading h1 {
        font-size: 32px;
    }


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


    .form-group.full {
        grid-column: auto;
    }


    .checkout-summary {
        padding: 22px;
    }
	
	.donateinstrument{width: 100% !important;margin: 0 auto !important; }
	
	.about-section {padding: 90px 4px !important;}

}



.donateinstrument{width: 54% ;margin: 0 auto !important; }


input::placeholder {
    color: gray;
    opacity: 1;
}




/* ================================
   DESKTOP / LAPTOP
================================ */

.hamburger {
    display: none;
}

.main-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    display: inline-block;
}

.main-nav ul li a {
    display: block;
}


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

@media (max-width: 768px) {

    .main-nav {
        position: relative;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        width: 45px;
        height: 45px;

        padding: 5px;
        margin-left: auto;

        background: transparent;
        border: none;

        cursor: pointer;

        z-index: 1001;
    }

    /* Hamburger lines */
    .hamburger span {
        width: 28px;
        height: 3px;

        margin: 3px 0;

        background: white;

        border-radius: 3px;

        transition: 0.3s;
    }


    /* Hide menu initially on mobile */
    .main-nav ul {
        display: none;

        position: absolute;

        top: 55px;

        width: 230px;

        padding: 10px 0;
        margin: 0;

        background: #000;

        border-radius: 8px;

        z-index: 1000;
    }


    /* Show menu after clicking hamburger */
    .main-nav ul.open {
        display: block;
    }


    /* Mobile links */
    .main-nav ul li {
        display: block;
        width: 100%;
    }

    .main-nav ul li a {
        display: block;

        width: 100%;
        padding: 14px 20px;

        color: white;
        text-decoration: none;

        box-sizing: border-box;
    }


    /* Hamburger becomes X */
    .hamburger.open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

}