/*
Theme Name: Diirshe
Theme URI: https://example.com/diirshe
Author: Diirshe
Author URI: https://example.com
Description: A customizable WordPress and WooCommerce theme for Dr. Abdulmajeed Duwe.
Version: 1.1.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: diirshe
Tags: custom-colors, custom-logo, featured-images, e-commerce, woocommerce
*/

:root {
  --diirshe-primary: #84C140;
  --diirshe-secondary: #056A37;
  --diirshe-background: #faf8f2;
  --diirshe-text: #57534e;
  --diirshe-border: #e7e5e4;
  --diirshe-white: #ffffff;
  --diirshe-primary-rgb: 132, 193, 64;
  --diirshe-secondary-rgb: 5, 106, 55;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--diirshe-background);
  color: var(--diirshe-text);
  font-family: "DM Sans", Arial, sans-serif;
}

body::selection {
  background: var(--diirshe-primary);
  color: var(--diirshe-secondary);
}

a {
  color: inherit;
}

img {
  height: auto;
  max-width: 100%;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.diirshe-hero {
  background: var(--diirshe-background);
  overflow: hidden;
  padding: 96px 24px 80px;
  position: relative;
}

.diirshe-hero::before,
.diirshe-hero::after {
  border-radius: 999px;
  content: "";
  filter: blur(48px);
  pointer-events: none;
  position: absolute;
}

.diirshe-hero::before {
  background: rgba(var(--diirshe-secondary-rgb), 0.05);
  height: 500px;
  left: -5%;
  top: -10%;
  width: 500px;
}

.diirshe-hero::after {
  background: rgba(var(--diirshe-primary-rgb), 0.1);
  bottom: -10%;
  height: 600px;
  right: -10%;
  width: 600px;
}

.diirshe-hero-inner {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1184px;
  position: relative;
  z-index: 1;
}

.diirshe-hero-copy,
.diirshe-hero-media {
  animation: diirshe-fade-up 0.75s ease-out both;
}

.diirshe-hero-media {
  animation-delay: 0.12s;
  margin-inline: auto;
  max-width: 100%;
  padding-bottom: 0.5rem;
  position: relative;
  width: min(100%, 520px);
}

@media (min-width: 901px) {
  .diirshe-hero-media {
    justify-self: end;
    width: min(100%, 480px);
  }
}

.diirshe-eyebrow {
  align-items: center;
  background: rgba(var(--diirshe-secondary-rgb), 0.1);
  border: 1px solid rgba(var(--diirshe-secondary-rgb), 0.2);
  border-radius: 999px;
  color: var(--diirshe-secondary);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0;
  margin: 0 0 24px;
  padding: 8px 16px;
  text-transform: uppercase;
}

.diirshe-icon {
  display: inline-flex;
  height: 20px;
  width: 20px;
}

.diirshe-hero-title {
  color: var(--diirshe-secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5.6vw, 68px);
  line-height: 1.1;
  margin: 0 0 24px;
}

.diirshe-title-main,
.diirshe-title-highlight {
  display: block;
}

.diirshe-title-main {
  color: var(--diirshe-secondary);
  font-style: normal;
  white-space: nowrap;
}

.diirshe-title-highlight {
  color: var(--diirshe-primary);
  font-style: italic;
}

.diirshe-hero-description {
  color: #57534e;
  font-size: 20px;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 590px;
}

.diirshe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.diirshe-button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 56px;
  padding: 16px 32px;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.diirshe-button:hover {
  transform: translateY(-1px);
}

.diirshe-button-primary {
  background: var(--diirshe-primary);
  box-shadow: 0 18px 36px rgba(var(--diirshe-primary-rgb), 0.18);
  color: var(--diirshe-secondary);
}

.diirshe-button-primary:hover {
  background: color-mix(in srgb, var(--diirshe-primary) 88%, #000000);
}

.diirshe-button-secondary {
  background: var(--diirshe-white);
  border: 1px solid var(--diirshe-border);
  color: var(--diirshe-secondary);
}

.diirshe-button-secondary:hover {
  border-color: var(--diirshe-primary);
}

.diirshe-stats {
  border-top: 1px solid var(--diirshe-border);
  display: flex;
  gap: 28px;
  max-width: 448px;
  padding-top: 32px;
}

.diirshe-stat {
  align-items: center;
  display: flex;
  gap: 12px;
}

.diirshe-stat-icon {
  align-items: center;
  background: rgba(var(--diirshe-primary-rgb), 0.2);
  border-radius: 8px;
  color: var(--diirshe-primary);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.diirshe-stat:nth-child(2) .diirshe-stat-icon {
  background: rgba(var(--diirshe-secondary-rgb), 0.1);
  color: var(--diirshe-secondary);
}

.diirshe-stat-divider {
  background: var(--diirshe-border);
  min-height: 48px;
  width: 1px;
}

.diirshe-stat-value {
  color: var(--diirshe-secondary);
  display: block;
  font-size: 20px;
  font-weight: 800;
}

.diirshe-stat-label {
  color: #78716c;
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.diirshe-hero-image-shell {
  isolation: isolate;
  position: relative;
  width: 100%;
}

.diirshe-media-backdrop {
  border-radius: 2rem;
  display: block;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.diirshe-media-backdrop-primary {
  background: linear-gradient(155deg, rgba(var(--diirshe-primary-rgb), 0.42), rgba(var(--diirshe-primary-rgb), 0.12));
  inset: -10px -8px -14px -6px;
  opacity: 0.95;
  transform: rotate(4deg) scale(1.02);
}

.diirshe-media-backdrop-secondary {
  background: linear-gradient(-160deg, rgba(var(--diirshe-secondary-rgb), 0.35), rgba(var(--diirshe-secondary-rgb), 0.08));
  inset: -8px -10px -12px -8px;
  opacity: 0.85;
  transform: rotate(-2.5deg) scale(1.01);
}

.diirshe-hero-image {
  aspect-ratio: 16 / 10;
  border-radius: 1.75rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 0 0 1px rgba(12, 10, 9, 0.05),
    0 4px 6px -1px rgba(5, 106, 55, 0.08),
    0 28px 56px -16px rgba(5, 106, 55, 0.2),
    0 20px 45px -20px rgba(28, 25, 23, 0.18);
  max-height: var(--diirshe-hero-image-mobile-height, 420px);
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}

.diirshe-hero-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.65s ease;
  width: 100%;
}

.diirshe-hero-image::after {
  background: linear-gradient(180deg, transparent 35%, rgba(var(--diirshe-secondary-rgb), 0.42) 100%);
  border-radius: inherit;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

@media (min-width: 901px) {
  .diirshe-hero-image {
    aspect-ratio: 4 / 5;
    border-radius: 2rem;
    max-height: min(var(--diirshe-hero-image-height, 640px), 88vh);
  }

  .diirshe-media-backdrop-primary {
    border-radius: 2.25rem;
    inset: -12px -10px -16px -8px;
  }

  .diirshe-media-backdrop-secondary {
    border-radius: 2.25rem;
    inset: -10px -12px -14px -10px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .diirshe-media-backdrop-primary,
  .diirshe-media-backdrop-secondary,
  .diirshe-hero-image img {
    transition: transform 0.55s ease;
  }

  .diirshe-hero-media:hover .diirshe-media-backdrop-primary {
    transform: rotate(3.5deg) scale(1.02);
  }

  .diirshe-hero-media:hover .diirshe-media-backdrop-secondary {
    transform: rotate(-2deg) scale(1.01);
  }

  .diirshe-hero-media:hover .diirshe-hero-image img {
    transform: scale(1.03);
  }
}

.diirshe-badge {
  align-items: center;
  animation: diirshe-fade-up 0.6s ease-out 0.45s both;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(231, 229, 228, 0.95);
  border-radius: 1rem;
  bottom: 1rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.6) inset,
    0 24px 48px -12px rgba(28, 25, 23, 0.18),
    0 12px 24px -8px rgba(5, 106, 55, 0.1);
  display: flex;
  gap: 14px;
  left: 0.75rem;
  max-width: calc(100% - 1.5rem);
  padding: 14px 16px;
  position: absolute;
  right: auto;
  z-index: 2;
}

@media (min-width: 901px) {
  .diirshe-badge {
    bottom: 2.5rem;
    left: 1rem;
  }

  .diirshe-hero-media {
    padding-bottom: 1.25rem;
  }
}

.diirshe-badge img {
  background: var(--diirshe-secondary);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(5, 106, 55, 0.25);
  flex-shrink: 0;
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.diirshe-badge-kicker {
  color: #78716c;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
}

.diirshe-badge-title {
  color: var(--diirshe-secondary);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}

.diirshe-content {
  margin: 0 auto;
  max-width: 960px;
  padding: 64px 24px;
}

.diirshe-content h1,
.diirshe-content h2,
.diirshe-content h3 {
  color: var(--diirshe-secondary);
  font-family: "Playfair Display", Georgia, serif;
}

.diirshe-content a {
  color: var(--diirshe-secondary);
  font-weight: 700;
}

.diirshe-site-footer {
  background: var(--diirshe-secondary);
  color: #e7e5e4;
  padding: 32px 24px;
  text-align: center;
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button,
.woocommerce #respond input#submit {
  background: var(--diirshe-primary);
  border-radius: 8px;
  color: var(--diirshe-secondary);
  font-weight: 800;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover,
.woocommerce #respond input#submit:hover {
  background: color-mix(in srgb, var(--diirshe-primary) 88%, #000000);
  color: var(--diirshe-secondary);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
  color: var(--diirshe-secondary);
  font-weight: 800;
}

.woocommerce span.onsale {
  background: var(--diirshe-primary);
  color: var(--diirshe-secondary);
}

.woocommerce-page .site-main,
.woocommerce .site-main {
  margin: 0 auto;
  max-width: 1120px;
  padding: 56px 24px 72px;
}

.woocommerce .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce .woocommerce-notices-wrapper .woocommerce-info,
.woocommerce .woocommerce-notices-wrapper .woocommerce-error {
  border-radius: 12px;
}

.woocommerce-checkout .woocommerce {
  background: #fff;
  border: 1px solid rgba(231, 229, 228, 0.9);
  border-radius: 16px;
  box-shadow: 0 12px 40px -12px rgba(5, 106, 55, 0.12);
  padding: 28px;
}

.woocommerce-checkout h1,
.woocommerce-checkout h2,
.woocommerce-checkout h3 {
  color: var(--diirshe-secondary);
  font-family: "Playfair Display", Georgia, serif;
}

.woocommerce-checkout form.checkout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 1fr);
}

.woocommerce-checkout #customer_details {
  background: #fdfcf9;
  border: 1px solid #ece8de;
  border-radius: 14px;
  padding: 20px;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  float: none;
  width: 100%;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  display: grid;
  gap: 14px;
}

.woocommerce-checkout .woocommerce-billing-fields label {
  color: #44403c;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  background: #fff;
  border: 1px solid var(--diirshe-border);
  border-radius: 10px;
  min-height: 46px;
  padding: 10px 12px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  border-color: rgba(var(--diirshe-secondary-rgb), 0.45);
  box-shadow: 0 0 0 3px rgba(var(--diirshe-primary-rgb), 0.2);
  outline: none;
}

.woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce-checkout-review-order-table {
  background: #faf8f2;
  border: 1px solid #ece8de;
  border-radius: 12px;
}

.woocommerce-checkout #order_review_heading {
  margin-bottom: 12px;
}

.woocommerce-checkout #order_review {
  padding: 12px;
}

.woocommerce-checkout #payment {
  background: transparent;
  border-top: 1px solid #ece8de;
}

.woocommerce-checkout #payment ul.payment_methods {
  border-bottom: 1px solid #ece8de;
  margin-bottom: 12px;
  padding: 0 0 10px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
  border-color: #ece8de;
  color: #44403c;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
  color: var(--diirshe-secondary);
  font-weight: 800;
}

.woocommerce-checkout .place-order {
  margin-top: 8px;
}

.woocommerce-checkout #place_order {
  border-radius: 12px;
  font-size: 15px;
  min-height: 52px;
  width: 100%;
}

@media (max-width: 900px) {
  .woocommerce-page .site-main,
  .woocommerce .site-main {
    padding: 40px 16px 56px;
  }

  .woocommerce-checkout .woocommerce {
    border-radius: 12px;
    padding: 16px;
  }

  .woocommerce-checkout form.checkout {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout #customer_details {
    padding: 14px;
  }
}

@keyframes diirshe-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .diirshe-hero {
    padding-top: 64px;
  }

  .diirshe-hero-inner {
    grid-template-columns: 1fr;
  }

  .diirshe-hero-copy {
    order: 2;
  }

  .diirshe-hero-media {
    order: 1;
  }

  .diirshe-hero-image {
    aspect-ratio: 16 / 10;
    max-height: var(--diirshe-hero-image-mobile-height, 420px);
  }

  .diirshe-hero-media {
    width: min(100%, 560px);
  }
}

@media (max-width: 640px) {
  .diirshe-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .diirshe-hero-title {
    font-size: clamp(34px, 10vw, 42px);
  }

  .diirshe-hero-description {
    font-size: 18px;
  }

  .diirshe-actions,
  .diirshe-button {
    width: 100%;
  }

  .diirshe-stats {
    align-items: flex-start;
    flex-direction: column;
  }

  .diirshe-stat-divider {
    display: none;
  }

  .diirshe-media-backdrop-primary {
    inset: -6px -4px -8px -4px;
    opacity: 0.75;
  }

  .diirshe-media-backdrop-secondary {
    inset: -4px -6px -6px -4px;
    opacity: 0.55;
  }

  .diirshe-badge {
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

/* — Packages — */
.diirshe-packages {
  background: #f4f1ea;
  border-top: 1px solid rgba(231, 229, 228, 0.8);
  padding: 64px 24px 80px;
  position: relative;
  scroll-margin-top: 24px;
}

.diirshe-packages-bg {
  background-image: radial-gradient(circle at 1px 1px, rgba(5, 106, 55, 0.06) 1px, transparent 0);
  background-size: 28px 28px;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  position: absolute;
}

.diirshe-packages-inner {
  margin: 0 auto;
  max-width: 1120px;
  position: relative;
  z-index: 1;
}

.diirshe-packages-header {
  margin: 0 auto 48px;
  max-width: 42rem;
  text-align: center;
}

.diirshe-packages-kicker {
  color: var(--diirshe-secondary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.diirshe-packages-title {
  color: #0c1a12;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
}

.diirshe-packages-lead {
  color: #57534e;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

.diirshe-packages-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .diirshe-packages-grid {
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.diirshe-package-card {
  background: #fff;
  border: 1px solid rgba(231, 229, 228, 0.9);
  border-radius: 1rem;
  box-shadow: 0 12px 40px -12px rgba(5, 106, 55, 0.1);
  overflow: hidden;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.diirshe-package-card:hover {
  border-color: rgba(5, 106, 55, 0.2);
  box-shadow: 0 16px 48px -12px rgba(5, 106, 55, 0.14);
  transform: translateY(-2px);
}

.diirshe-package-accent {
  background: linear-gradient(90deg, #022c18, var(--diirshe-secondary), var(--diirshe-primary));
  height: 4px;
  width: 100%;
}

.diirshe-package-inner {
  padding: 24px 24px 28px;
}

.diirshe-package-top {
  border-bottom: 1px solid #f5f5f4;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding-bottom: 20px;
}

.diirshe-package-badge {
  background: rgba(var(--diirshe-secondary-rgb), 0.08);
  border-radius: 6px;
  color: var(--diirshe-secondary);
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  text-transform: uppercase;
}

.diirshe-package-title {
  color: #0c0a09;
  flex: 1 1 100%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 12px 0 0;
}

.diirshe-package-sub {
  color: #78716c;
  flex: 1 1 100%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 4px 0 0;
  text-transform: uppercase;
}

.diirshe-package-price-row {
  text-align: right;
}

.diirshe-package-price {
  color: var(--diirshe-secondary);
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
}

.diirshe-package-per {
  color: #78716c;
  font-size: 12px;
  font-weight: 600;
}

.diirshe-package-price-note {
  color: #a8a29e;
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-transform: uppercase;
}

.diirshe-package-desc {
  color: #57534e;
  font-size: 14px;
  line-height: 1.6;
  margin: 16px 0 0;
}

.diirshe-package-features {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.diirshe-package-features li {
  color: #44403c;
  display: flex;
  font-size: 13px;
  gap: 10px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.diirshe-check {
  background: rgba(var(--diirshe-primary-rgb), 0.25);
  border-radius: 6px;
  color: #045a2f;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  height: 20px;
  line-height: 20px;
  text-align: center;
  width: 20px;
}

.diirshe-package-btn {
  border-radius: 12px;
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-top: 20px;
  padding: 14px 20px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.diirshe-package-btn-solid {
  background: var(--diirshe-secondary);
  box-shadow: 0 8px 20px rgba(5, 106, 55, 0.2);
  color: #fff;
}

.diirshe-package-btn-solid:hover {
  background: #04532d;
  color: #fff;
}

.diirshe-package-btn-outline {
  background: #fff;
  border: 2px solid rgba(5, 106, 55, 0.2);
  color: var(--diirshe-secondary);
}

.diirshe-package-btn-outline:hover {
  border-color: rgba(5, 106, 55, 0.4);
}

.diirshe-package-premium-wrap {
  margin-top: 32px;
  max-width: 1120px;
}

.diirshe-package-premium {
  background: linear-gradient(135deg, #034228, var(--diirshe-secondary) 45%, #022c18);
  border: 1px solid rgba(132, 193, 64, 0.35);
  border-radius: 1rem;
  box-shadow: 0 24px 60px -12px rgba(2, 44, 24, 0.55);
  overflow: hidden;
  position: relative;
}

.diirshe-package-premium-bg {
  background: radial-gradient(circle at 80% 0%, rgba(132, 193, 64, 0.15), transparent 50%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.diirshe-package-premium-grid {
  display: grid;
  gap: 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .diirshe-package-premium-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.diirshe-package-premium-intro {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 28px;
}

@media (min-width: 1024px) {
  .diirshe-package-premium-intro {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.diirshe-package-premium-badge {
  background: rgba(132, 193, 64, 0.15);
  border: 1px solid rgba(132, 193, 64, 0.4);
  border-radius: 999px;
  color: #d4f0a5;
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  text-transform: uppercase;
}

.diirshe-package-premium-title {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 16px 0 0;
}

.diirshe-package-premium-sub {
  color: #9fd86a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 8px 0 0;
  text-transform: uppercase;
}

.diirshe-package-premium-desc {
  color: #d6d3d1;
  font-size: 14px;
  line-height: 1.6;
  margin: 16px 0 0;
}

.diirshe-package-premium-price {
  align-items: baseline;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
}

.diirshe-package-price-lg {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

.diirshe-package-premium-price .diirshe-package-per {
  color: var(--diirshe-primary);
}

.diirshe-package-btn-lime {
  background: var(--diirshe-primary);
  color: #022c18;
  margin-top: 24px;
}

.diirshe-package-btn-lime:hover {
  filter: brightness(1.05);
}

.diirshe-package-premium-list {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  padding: 28px;
}

.diirshe-package-premium-list-title {
  color: #e7e5e4;
  font-size: 14px;
  margin: 0 0 20px;
}

.diirshe-package-premium-list-title strong {
  color: var(--diirshe-primary);
}

.diirshe-package-features-cols {
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .diirshe-package-features-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.diirshe-package-premium-list .diirshe-package-features li {
  color: #e7e5e4;
}

.diirshe-check-light {
  background: var(--diirshe-primary);
  color: #022c18;
}

/* — Blog grid — */
.diirshe-blog {
  background: linear-gradient(180deg, #f4f1ea 0%, var(--diirshe-background) 40%);
  border-top: 1px solid rgba(231, 229, 228, 0.8);
  padding: 64px 24px 80px;
  position: relative;
  scroll-margin-top: 24px;
}

.diirshe-blog-bg {
  background-image: radial-gradient(circle at 1px 1px, rgba(5, 106, 55, 0.06) 1px, transparent 0);
  background-size: 24px 24px;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  position: absolute;
}

.diirshe-blog-inner {
  margin: 0 auto;
  max-width: 1120px;
  position: relative;
  z-index: 1;
}

.diirshe-blog-header {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.diirshe-blog-kicker {
  background: #fff;
  border: 1px solid rgba(5, 106, 55, 0.12);
  border-radius: 999px;
  color: var(--diirshe-secondary);
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0 0 16px;
  padding: 8px 16px;
  text-transform: uppercase;
}

.diirshe-blog-title {
  color: #0c1a12;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.diirshe-blog-archive-header {
  display: block;
  margin-bottom: 40px;
}

.diirshe-blog-lead {
  color: #57534e;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 12px 0 0;
  max-width: 36rem;
}

.diirshe-blog-count {
  color: #78716c;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  text-align: right;
}

.diirshe-blog-count-num {
  color: var(--diirshe-secondary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.diirshe-blog-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .diirshe-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .diirshe-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.diirshe-blog-card {
  background: #fff;
  border: 1px solid rgba(231, 229, 228, 0.9);
  border-radius: 1.25rem;
  box-shadow: 0 12px 40px -12px rgba(5, 106, 55, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.25s ease;
}

.diirshe-blog-card:hover {
  border-color: rgba(5, 106, 55, 0.2);
  box-shadow: 0 20px 50px -12px rgba(5, 106, 55, 0.18);
  transform: translateY(-4px);
}

.diirshe-blog-card-image {
  aspect-ratio: 16 / 10;
  background: #e7e5e4;
  display: block;
  overflow: hidden;
  position: relative;
}

.diirshe-blog-card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  width: 100%;
}

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

.diirshe-blog-card-shade {
  background: linear-gradient(0deg, rgba(12, 26, 18, 0.45), transparent 55%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.diirshe-blog-card-cta {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  bottom: 12px;
  color: var(--diirshe-secondary);
  font-size: 11px;
  font-weight: 800;
  left: 12px;
  letter-spacing: 0.04em;
  opacity: 0;
  padding: 8px 12px;
  position: absolute;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.diirshe-blog-card:hover .diirshe-blog-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.diirshe-blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 22px 22px;
}

.diirshe-blog-card-meta {
  color: #78716c;
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 600;
  gap: 8px;
  margin-bottom: 12px;
}

.diirshe-blog-card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  min-height: 2.75rem;
}

.diirshe-blog-card-title a {
  color: #0c0a09;
  text-decoration: none;
}

.diirshe-blog-card:hover .diirshe-blog-card-title a {
  color: var(--diirshe-secondary);
}

.diirshe-blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.diirshe-blog-tag {
  background: rgba(var(--diirshe-secondary-rgb), 0.06);
  border: 1px solid rgba(5, 106, 55, 0.1);
  border-radius: 6px;
  color: #045a2f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  text-transform: uppercase;
}

.diirshe-blog-readmore {
  border: 1px solid #e7e5e4;
  border-radius: 12px;
  color: var(--diirshe-secondary);
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-top: auto;
  padding: 12px 16px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.diirshe-blog-readmore:hover {
  background: var(--diirshe-secondary);
  border-color: var(--diirshe-secondary);
  color: #fff;
}

.diirshe-blog-empty {
  color: #78716c;
  text-align: center;
}

.diirshe-blog-pagination {
  margin-top: 40px;
}

.diirshe-blog-pagination .nav-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.diirshe-blog-pagination a {
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  padding: 8px 16px;
  text-decoration: none;
}

/* — Single post (aligned with blog grid + marketing blog detail) — */
.diirshe-single {
  margin: 0 auto;
  max-width: 48rem;
  padding: 2.5rem 1rem 4rem;
}

@media (min-width: 640px) {
  .diirshe-single {
    padding: 3.5rem 1.5rem 4rem;
  }
}

.diirshe-single-header {
  margin-bottom: 0;
}

.diirshe-single-kicker {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(5, 106, 55, 0.15);
  border-radius: 999px;
  color: var(--diirshe-secondary);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.2em;
  margin: 0 0 1rem;
  padding: 8px 16px;
  text-transform: uppercase;
}

.diirshe-single-kicker-icon {
  color: var(--diirshe-secondary);
  display: flex;
  line-height: 0;
}

.diirshe-single-kicker-icon svg {
  display: block;
}

.diirshe-single-title {
  color: #022c18;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.875rem, 4.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}

.diirshe-single-meta {
  align-items: center;
  color: #78716c;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 10px;
  margin-top: 1rem;
}

.diirshe-single-meta-sep {
  color: #a8a29e;
  font-weight: 700;
  user-select: none;
}

.diirshe-single-read {
  align-items: center;
  display: inline-flex;
  gap: 6px;
}

.diirshe-single-read-icon {
  color: #a8a29e;
  display: flex;
  line-height: 0;
}

.diirshe-single-read-icon svg {
  display: block;
}

.diirshe-single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.5rem;
}

.diirshe-single-tags .diirshe-blog-tag {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 999px;
  color: #57534e;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: normal;
  padding: 6px 12px;
  text-transform: none;
}

.diirshe-single-featured {
  background: #e7e5e4;
  border: 1px solid rgba(231, 229, 228, 0.9);
  border-radius: 1rem;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.07),
    0 2px 4px -2px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(12, 10, 9, 0.04);
  margin: 2rem 0 0;
  overflow: hidden;
}

.diirshe-single-featured img {
  aspect-ratio: 16 / 10;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

@media (min-width: 640px) {
  .diirshe-single-featured img {
    aspect-ratio: 21 / 9;
  }
}

.diirshe-single-content {
  border-top: 1px solid #e7e5e4;
  color: #44403c;
  font-size: 1rem;
  line-height: 1.625;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}

@media (min-width: 640px) {
  .diirshe-single-content {
    font-size: 1.125rem;
    line-height: 1.75;
  }
}

.diirshe-single-content > *:first-child {
  margin-top: 0;
}

.diirshe-single-content p {
  margin: 0 0 1.5rem;
}

.diirshe-single-content h2,
.diirshe-single-content h3,
.diirshe-single-content h4 {
  color: #022c18;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  margin: 2rem 0 1rem;
}

.diirshe-single-content h2 {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
}

.diirshe-single-content h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
}

.diirshe-single-content h4 {
  font-size: 1.1rem;
}

.diirshe-single-content a {
  color: var(--diirshe-secondary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.diirshe-single-content a:hover {
  color: #04532d;
}

.diirshe-single-content ul,
.diirshe-single-content ol {
  margin: 0 0 1.5rem;
  padding-left: 1.35em;
}

.diirshe-single-content li {
  margin-bottom: 0.5em;
}

.diirshe-single-content blockquote {
  border-left: 4px solid var(--diirshe-primary);
  color: #57534e;
  font-style: italic;
  margin: 0 0 1.5rem;
  padding: 0.25rem 0 0.25rem 1.25rem;
}

.diirshe-single-content img {
  border-radius: 0.75rem;
  height: auto;
  max-width: 100%;
}

.diirshe-single-content .wp-block-image,
.diirshe-single-content .wp-block-gallery {
  margin-bottom: 1.5rem;
}

.diirshe-single-content .wp-block-image figcaption {
  color: #78716c;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  text-align: center;
}

.diirshe-single-content pre,
.diirshe-single-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
}

.diirshe-single-content pre {
  background: #f5f5f4;
  border: 1px solid #e7e5e4;
  border-radius: 0.75rem;
  overflow-x: auto;
  padding: 1rem 1.25rem;
}

.diirshe-single-footer {
  border-top: 1px solid #e7e5e4;
  margin-top: 3rem;
  padding-top: 2.5rem;
}

.diirshe-single-back {
  align-items: center;
  background: var(--diirshe-secondary);
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(5, 106, 55, 0.2);
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  padding: 12px 20px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.diirshe-single-back-icon {
  display: flex;
  line-height: 0;
  margin-left: -2px;
}

.diirshe-single-back-icon svg {
  display: block;
}

.diirshe-single-back:hover {
  background: #04532d;
  color: #fff;
}

/* — Footer — */
.diirshe-footer-rich {
  background: linear-gradient(180deg, #022c18 0%, #034228 50%, #022c18 100%);
  border-top: 1px solid rgba(132, 193, 64, 0.25);
  color: #d6d3d1;
  padding-top: 48px;
  scroll-margin-top: 24px;
}

.diirshe-footer-inner {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 24px 40px;
}

@media (min-width: 768px) {
  .diirshe-footer-inner {
    grid-template-columns: 1.2fr 1fr;
  }
}

.diirshe-footer-kicker {
  color: #b8e086;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.diirshe-footer-name {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.diirshe-footer-name span {
  color: var(--diirshe-primary);
}

.diirshe-footer-desc {
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 28rem;
}

.diirshe-footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.diirshe-footer-nav a {
  color: #e7e5e4;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 10px;
  text-decoration: none;
}

.diirshe-footer-nav a:hover {
  color: var(--diirshe-primary);
}

.diirshe-site-footer {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #a8a29e;
  font-size: 13px;
  margin: 0;
  padding: 20px 24px;
  text-align: center;
}
