/* =====================
       CSS VARIABLES
    ===================== */
    :root {
      --cream: #f5f0e8;
      --green: #4a7c3f;
      --green-light: #6ab04c;
      --dark: #1a1a1a;
      --card-border: #d6d0c4;
      --text-muted: #888;
      --white: #ffffff;
      --sand: #e8dcc8;
    }

    /* =====================
       GLOBAL
    ===================== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Nunito Sans', sans-serif;
      background-color: var(--cream);
      color: var(--dark);
    }

    /* =====================
       NAVBAR
    ===================== */
    .navbar {
      background-color: var(--cream);
      border-bottom: 1px solid var(--card-border);
      padding: 14px 0;
    }

    .navbar-brand img {
      height: 38px;
      width: auto;
    }

    .navbar-nav .nav-link {
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.04em;
      color: var(--dark);
      text-transform: uppercase;
      padding: 0 14px !important;
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
      color: var(--green);
    }

    /* Navbar icons */
    .navbar-icons a {
      color: var(--dark);
      font-size: 1.1rem;
      margin-left: 14px;
      text-decoration: none;
      transition: color 0.2s;
    }

    .navbar-icons a:hover {
      color: var(--green);
    }

    /* =====================
       HERO SECTION
    ===================== */
    .hero-section {
      background-color: var(--cream);
      padding: 0;
    }

    /* The single hero wrapper — video fills it, everything overlays on top */
    .hero-banner-wrap {
      position: relative;
      width: 100%;
      /* min-height: 420px; */
      height: 500px;
      overflow: hidden;
    }

    /* Video fills the full banner area */
    .hero-banner-wrap video {
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
      display: block;
    }

    /* ---- SEARCH BAR — overlaid near the top of the banner ---- */
    .hero-search-row {
      position: absolute;
      top: 28px;          /* distance from top of banner */
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 820px;
      padding: 0 20px;
      z-index: 20;
      display: flex;
      gap: 10px;
      flex-wrap: nowrap;
    }

    .search-pill {
      border-radius: 50px;
      border: 1.5px solid var(--card-border);
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      padding: 10px 42px 10px 20px;
      font-size: 0.88rem;
      color: var(--dark);
      outline: none;
      width: 100%;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .search-pill::placeholder {
      color: var(--text-muted);
    }

    .search-pill:focus {
      border-color: var(--green-light);
      box-shadow: 0 0 0 3px rgba(106, 176, 76, 0.20);
      background: rgba(255, 255, 255, 0.98);
    }

    .location-wrap {
      position: relative;
      flex: 0 0 220px;
    }

    .location-wrap .bi-geo-alt {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      font-size: 1rem;
      pointer-events: none;
    }

    .search-wrap {
      position: relative;
      flex: 1 1 auto;
    }

    .search-wrap .bi-search {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      font-size: 1rem;
      pointer-events: none;
    }

    /* ---- PRICKLO big text overlay — center of banner ---- */
    .hero-title-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: clamp(3rem, 12vw, 7rem);
      color: var(--dark);
      letter-spacing: -2px;
      white-space: nowrap;
      pointer-events: none;
      z-index: 5;
    }

    /* ---- SHOP button — bottom-center of banner ---- */
    .btn-shop {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(255,255,255,0.85);
      border: 1.5px solid var(--dark);
      border-radius: 6px;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      padding: 8px 32px;
      color: var(--dark);
      letter-spacing: 0.04em;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
      z-index: 10;
      white-space: nowrap;
    }

    .btn-shop:hover {
      background: var(--dark);
      color: var(--white);
    }

    /* =====================
       EXPLORE NURSERIES
    ===================== */
    .nurseries-section {
      background-color: var(--cream);
      padding: 56px 0 60px;
    }

    .section-title {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: clamp(1.1rem, 3vw, 1.35rem);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--dark);
      margin-bottom: 32px;
    }

    /* Nursery Card */
    .nursery-card {
      background: var(--white);
      border: 1.5px solid var(--card-border);
      border-radius: 16px;
      overflow: hidden;
      transition: box-shadow 0.2s, transform 0.2s;
      height: 100%;
    }

    .nursery-card:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,0.10);
      transform: translateY(-4px);
    }

    .nursery-card-img {
      width: 100%;
      aspect-ratio: 4/3;
      background: #d6d0c4;
      object-fit: cover;
      display: block;
    }

    /* placeholder if no image */
    .nursery-card-img-placeholder {
      width: 100%;
      aspect-ratio: 4/3;
      background: #d6d0c4;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nursery-card-img-placeholder i {
      font-size: 2.5rem;
      color: #b0a898;
    }

    .nursery-card-body {
      padding: 18px 18px 20px;
    }

    .nursery-card-title {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 1.05rem;
      margin-bottom: 8px;
    }

    .nursery-card-desc {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .btn-details {
      display: block;
      width: 100%;
      text-align: center;
      border: 1.5px solid var(--card-border);
      border-radius: 6px;
      background: transparent;
      color: var(--dark);
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      padding: 8px 0;
      text-decoration: none;
      letter-spacing: 0.03em;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .btn-details:hover {
      background: var(--green);
      color: var(--white);
      border-color: var(--green);
    }

    /* =====================
       FEATURED PLANTS SECTION
    ===================== */
    .plants-section {
      background-color: var(--white);
      padding: 56px 0 60px;
      border-top: 1px solid var(--card-border);
    }

    /* Plant card */
    .plant-card {
      background: var(--cream);
      border-radius: 14px;
      overflow: hidden;
      transition: box-shadow 0.2s, transform 0.2s;
      height: 100%;
      position: relative;
    }

    .plant-card:hover {
      box-shadow: 0 8px 28px rgba(0,0,0,0.09);
      transform: translateY(-4px);
    }

    .plant-card-img-wrap {
      width: 100%;
      aspect-ratio: 1/1;
      background: #e8dcc8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.5rem;
    }

    .plant-card-body {
      padding: 14px 16px 16px;
    }

    .plant-card-name {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      margin-bottom: 4px;
    }

    .plant-card-price {
      font-size: 0.85rem;
      color: var(--green);
      font-weight: 700;
    }

    .plant-add-btn {
      position: absolute;
      top: 12px;
      right: 12px;
      background: var(--white);
      border: none;
      border-radius: 50%;
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.10);
      cursor: pointer;
      color: var(--green);
      transition: background 0.2s, color 0.2s;
    }

    .plant-add-btn:hover {
      background: var(--green);
      color: var(--white);
    }

    /* =====================
       WHY PRICKLO SECTION
    ===================== */
    .why-section {
      background-color: var(--cream);
      padding: 56px 0 60px;
      border-top: 1px solid var(--card-border);
    }

    .why-card {
      text-align: center;
      padding: 28px 20px;
    }

    .why-icon {
      font-size: 2.2rem;
      color: var(--green);
      margin-bottom: 14px;
    }

    .why-title {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      margin-bottom: 8px;
    }

    .why-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* =====================
       TESTIMONIALS
    ===================== */
    .testimonials-section {
      background-color: var(--dark);
      padding: 56px 0 60px;
      color: var(--white);
    }

    .testimonials-section .section-title {
      color: var(--white);
    }

    .testimonial-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 14px;
      padding: 28px 24px;
      height: 100%;
    }

    .testimonial-stars {
      color: #f5c842;
      font-size: 0.9rem;
      margin-bottom: 12px;
    }

    .testimonial-text {
      font-size: 0.88rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.80);
      margin-bottom: 18px;
    }

    .testimonial-author {
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--green-light);
    }

    /* =====================
       NEWSLETTER SECTION
    ===================== */
    .newsletter-section {
      background-color: var(--green);
      padding: 50px 0;
    }

    .newsletter-section h2 {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: clamp(1.3rem, 3vw, 1.9rem);
      color: var(--white);
      margin-bottom: 8px;
    }

    .newsletter-section p {
      color: rgba(255,255,255,0.85);
      font-size: 0.9rem;
      margin-bottom: 0;
    }

    .newsletter-input-wrap {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .newsletter-input {
      flex: 1;
      min-width: 200px;
      border: none;
      border-radius: 50px;
      padding: 12px 22px;
      font-size: 0.88rem;
      outline: none;
    }

    .newsletter-btn {
      background: var(--dark);
      color: var(--white);
      border: none;
      border-radius: 50px;
      padding: 12px 28px;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      cursor: pointer;
      transition: opacity 0.2s;
      white-space: nowrap;
    }

    .newsletter-btn:hover {
      opacity: 0.85;
    }

    /* =====================
       FOOTER
    ===================== */
    footer {
      background-color: var(--dark);
      color: rgba(255,255,255,0.65);
      padding: 50px 0 28px;
    }

    .footer-logo {
      height: 36px;
      width: auto;
      filter: brightness(0) invert(1);
      margin-bottom: 14px;
    }

    .footer-desc {
      font-size: 0.82rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.5);
      max-width: 240px;
    }

    .footer-heading {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.88rem;
      color: var(--white);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 9px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      font-size: 0.84rem;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--green-light);
    }

    .footer-social a {
      color: rgba(255,255,255,0.55);
      font-size: 1.2rem;
      margin-right: 14px;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-social a:hover {
      color: var(--green-light);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.10);
      padding-top: 22px;
      margin-top: 36px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.35);
    }

    /* =====================
       MOBILE OVERRIDES
    ===================== */
    @media (max-width: 991px) {
      .hero-title-overlay {
        font-size: clamp(2.5rem, 14vw, 5rem);
      }

      .location-wrap {
        flex: 0 0 160px;
      }
    }

    @media (max-width: 767px) {
      .hero-banner-wrap {
        min-height: 320px;
      }

      .hero-banner-wrap video {
        min-height: 320px;
      }

      .hero-title-overlay {
        font-size: clamp(2.2rem, 14vw, 3.5rem);
      }

      /* On mobile, stack the search bars vertically */
      .hero-search-row {
        flex-direction: column;
        gap: 8px;
        top: 16px;
        max-width: 92%;
      }

      .location-wrap {
        flex: 1 1 auto;
      }

      .nurseries-section,
      .plants-section,
      .why-section,
      .testimonials-section {
        padding: 40px 0 44px;
      }

      .newsletter-section {
        padding: 36px 0;
      }
    }

    @media (max-width: 575px) {
      .navbar-icons a {
        font-size: 1rem;
        margin-left: 10px;
      }
    }

    /* Login Page css */

    /* =====================
       CSS VARIABLES
    ===================== */
    :root {
      --cream: #f5f0e8;
      --cream-dark: #ede7d9;
      --green: #4a7c3f;
      --green-light: #6ab04c;
      --green-pale: #e8f5e0;
      --dark: #1a1a1a;
      --card-border: #d6d0c4;
      --text-muted: #888;
      --white: #ffffff;
      --sand: #e8dcc8;
      --input-bg: #faf8f4;
    }


    /* =====================
       MAIN LAYOUT
    ===================== */
    .login-wrapper {
      flex: 1;
      display: flex;
      align-items: stretch;
      min-height: calc(100vh - 70px);
    }

    /* ---- LEFT PANEL: decorative plant side ---- */
    .login-left {
      flex: 1;
      background-color: var(--cream-dark);
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 60px 40px;
    }

    /* Big background circle decoration */
    .login-left::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: var(--sand);
      opacity: 0.5;
      bottom: -100px;
      left: -100px;
      pointer-events: none;
    }

    .login-left::after {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      border: 2px dashed var(--card-border);
      top: -60px;
      right: -60px;
      pointer-events: none;
    }

    /* Pricklo big brand text on left */
    .left-brand {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: clamp(2.8rem, 6vw, 5rem);
      color: var(--dark);
      letter-spacing: -2px;
      position: relative;
      z-index: 2;
      margin-bottom: 12px;
    }

    .left-brand .cactus-dot {
      display: inline-block;
      width: 14px;
      height: 14px;
      background: var(--green-light);
      border-radius: 50%;
      margin-right: 4px;
      vertical-align: middle;
      position: relative;
      top: -6px;
    }

    .left-tagline {
      font-size: 1rem;
      color: var(--text-muted);
      font-weight: 600;
      letter-spacing: 0.02em;
      position: relative;
      z-index: 2;
      margin-bottom: 48px;
      text-align: center;
    }

    /* Plant illustration area */
    .plant-illustration {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 20px;
      width: 100%;
      max-width: 380px;
    }

    /* SVG plant pots */
    .plant-svg {
      filter: drop-shadow(0 8px 20px rgba(0,0,0,0.10));
    }

    /* Feature pills at bottom of left panel */
    .feature-pills {
      position: relative;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-top: 40px;
    }

    .feature-pill {
      background: var(--white);
      border: 1.5px solid var(--card-border);
      border-radius: 50px;
      padding: 8px 18px;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--dark);
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .feature-pill i {
      color: var(--green-light);
      font-size: 0.9rem;
    }

    /* ---- RIGHT PANEL: login form ---- */
    .login-right {
      width: 480px;
      flex-shrink: 0;
      background: var(--white);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 60px 48px;
      border-left: 1px solid var(--card-border);
    }

    /* Form header */
    .form-header {
      width: 100%;
      margin-bottom: 36px;
    }

    .form-header h1 {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 1.8rem;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .form-header p {
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    .form-header p a {
      color: var(--green);
      font-weight: 700;
      text-decoration: none;
    }

    .form-header p a:hover {
      text-decoration: underline;
    }

    /* Input label */
    .form-label-custom {
      display: block;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.80rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--dark);
      margin-bottom: 7px;
    }

    /* Input field */
    .input-wrap {
      position: relative;
      margin-bottom: 20px;
    }

    .input-wrap i {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      font-size: 1rem;
      pointer-events: none;
    }

    .form-input {
      width: 100%;
      background: var(--input-bg);
      border: 1.5px solid var(--card-border);
      border-radius: 50px;
      padding: 12px 20px 12px 44px;
      font-family: 'Nunito Sans', sans-serif;
      font-size: 0.9rem;
      color: var(--dark);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    }

    .form-input::placeholder {
      color: #bbb;
    }

    .form-input:focus {
      border-color: var(--green-light);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(106, 176, 76, 0.12);
    }

    /* Password toggle */
    .input-wrap .pw-toggle {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      font-size: 1rem;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      line-height: 1;
    }

    .input-wrap .pw-toggle:hover {
      color: var(--green);
    }

    /* Forgot password row */
    .forgot-row {
      display: flex;
      justify-content: flex-end;
      margin-top: -12px;
      margin-bottom: 28px;
    }

    .forgot-row a {
      font-size: 0.80rem;
      color: var(--green);
      font-weight: 700;
      text-decoration: none;
    }

    .forgot-row a:hover {
      text-decoration: underline;
    }

    /* Login button */
    .btn-login {
      display: block;
      width: 100%;
      background: var(--dark);
      color: var(--white);
      border: none;
      border-radius: 50px;
      padding: 13px 0;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }

    .btn-login:hover {
      background: var(--green);
      transform: translateY(-1px);
    }

    .btn-login:active {
      transform: translateY(0);
    }

    /* Divider */
    .divider {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 28px 0;
      width: 100%;
    }

    .divider::before,
    .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--card-border);
    }

    .divider span {
      font-size: 0.78rem;
      color: var(--text-muted);
      font-weight: 600;
      white-space: nowrap;
    }

    /* Social login buttons */
    .btn-social {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      background: var(--white);
      border: 1.5px solid var(--card-border);
      border-radius: 50px;
      padding: 11px 0;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      color: var(--dark);
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
      margin-bottom: 12px;
    }

    .btn-social:hover {
      border-color: var(--green-light);
      background: var(--green-pale);
      color: var(--dark);
    }

    .btn-social img {
      width: 18px;
      height: 18px;
    }

    /* Google icon using SVG inline */
    .google-icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    /* Sign up nudge at bottom */
    .signup-nudge {
      margin-top: 32px;
      text-align: center;
      font-size: 0.84rem;
      color: var(--text-muted);
      width: 100%;
    }

    .signup-nudge a {
      color: var(--green);
      font-weight: 700;
      text-decoration: none;
    }

    .signup-nudge a:hover {
      text-decoration: underline;
    }

    /* =====================
       RESPONSIVE
    ===================== */
    @media (max-width: 991px) {
      .login-left {
        display: none;
      }

      .login-right {
        width: 100%;
        border-left: none;
        padding: 48px 32px;
      }

      .login-wrapper {
        min-height: calc(100vh - 70px);
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .login-right {
        padding: 40px 22px;
      }
    }


    /* Customer Dashboard */

    :root {
      --cream: #f5f0e8;
      --cream-dark: #ede7d9;
      --green: #4a7c3f;
      --green-light: #6ab04c;
      --green-pale: #eaf5e0;
      --dark: #1a1a1a;
      --card-border: #d6d0c4;
      --text-muted: #888;
      --white: #ffffff;
      --sand: #e8dcc8;
      --red: #e05252;
      --amber: #f0a500;
    }

    /* =====================
       LAYOUT
    ===================== */
    .portal-wrapper {
      display: flex;
      min-height: calc(100vh - 62px);
    }

    /* ---- SIDEBAR ---- */
    .sidebar {
      width: 260px;
      flex-shrink: 0;
      background: var(--white);
      border-right: 1px solid var(--card-border);
      display: flex;
      flex-direction: column;
      padding: 28px 0 0;
      position: sticky;
      top: 62px;
      height: calc(100vh - 62px);
      overflow-y: auto;
    }

    /* User profile card inside sidebar */
    .sidebar-profile {
      padding: 0 22px 24px;
      border-bottom: 1px solid var(--card-border);
      margin-bottom: 10px;
    }

    .avatar {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--green-pale);
      border: 2px solid var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 1.2rem;
      color: var(--green);
      margin-bottom: 10px;
    }

    .sidebar-profile h6 {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      margin-bottom: 2px;
    }

    .sidebar-profile span {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    /* Nav items */
    .sidebar-nav { flex: 1; padding: 8px 12px; }

    .sidebar-section-label {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.68rem;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--text-muted);
      padding: 14px 10px 6px;
    }

    .sidebar-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 11px 12px;
      border-radius: 10px;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      color: var(--dark);
      text-decoration: none;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
      margin-bottom: 2px;
    }

    .sidebar-link i {
      font-size: 1rem;
      width: 20px;
      text-align: center;
      color: var(--text-muted);
      transition: color 0.15s;
    }

    .sidebar-link:hover, .sidebar-link.active {
      background: var(--green-pale);
      color: var(--green);
    }

    .sidebar-link:hover i, .sidebar-link.active i {
      color: var(--green);
    }

    .sidebar-link .badge-count {
      margin-left: auto;
      background: var(--green-light);
      color: var(--white);
      font-size: 0.65rem;
      font-weight: 800;
      border-radius: 50px;
      padding: 2px 8px;
    }

    .sidebar-logout {
      padding: 18px 22px;
      border-top: 1px solid var(--card-border);
    }

    .btn-logout {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--red);
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      transition: opacity 0.2s;
    }

    .btn-logout:hover { opacity: 0.7; }

    /* ---- MAIN CONTENT ---- */
    .main-content {
      flex: 1;
      padding: 32px 36px;
      overflow-y: auto;
    }

    /* Page section — shown/hidden by JS */
    .page-section { display: none; }
    .page-section.active { display: block; }

    /* =====================
       COMMON COMPONENTS
    ===================== */

    .page-title {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 1.5rem;
      margin-bottom: 6px;
    }

    .page-subtitle {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 28px;
    }

    /* Stat cards row */
    .stat-card {
      background: var(--white);
      border: 1.5px solid var(--card-border);
      border-radius: 14px;
      padding: 20px 22px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .stat-icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .stat-icon.green  { background: var(--green-pale); color: var(--green); }
    .stat-icon.amber  { background: #fff8e6; color: var(--amber); }
    .stat-icon.red    { background: #fef0f0; color: var(--red); }
    .stat-icon.blue   { background: #e8f0fe; color: #3b7de9; }

    .stat-info label {
      font-size: 0.75rem;
      color: var(--text-muted);
      font-weight: 700;
      display: block;
      margin-bottom: 2px;
    }

    .stat-info strong {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 1.4rem;
    }

    /* White card */
    .white-card {
      background: var(--white);
      border: 1.5px solid var(--card-border);
      border-radius: 14px;
      padding: 24px;
      margin-bottom: 20px;
    }

    .white-card h5 {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      margin-bottom: 18px;
    }

    /* Section divider line */
    .section-divider {
      border: none;
      border-top: 1px solid var(--card-border);
      margin: 20px 0;
    }

    /* =====================
       ORDERS
    ===================== */
    .order-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid var(--card-border);
    }

    .order-item:last-child { border-bottom: none; }

    .order-plant-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      flex-shrink: 0;
    }

    .order-info { flex: 1; }

    .order-name {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.92rem;
      margin-bottom: 3px;
    }

    .order-meta {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .order-status {
      font-size: 0.72rem;
      font-weight: 800;
      border-radius: 50px;
      padding: 4px 12px;
      white-space: nowrap;
    }

    .status-delivered { background: var(--green-pale); color: var(--green); }
    .status-transit   { background: #fff8e6; color: var(--amber); }
    .status-processing{ background: #e8f0fe; color: #3b7de9; }
    .status-cancelled { background: #fef0f0; color: var(--red); }

    .order-price {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 0.95rem;
      text-align: right;
      flex-shrink: 0;
      margin-left: 10px;
    }

    /* =====================
       CART
    ===================== */
    .cart-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid var(--card-border);
    }

    .cart-item:last-child { border-bottom: none; }

    .cart-plant-icon {
      width: 56px;
      height: 56px;
      border-radius: 12px;
      background: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      flex-shrink: 0;
    }

    .cart-info { flex: 1; }
    .cart-name {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.92rem;
      margin-bottom: 3px;
    }

    .cart-nursery { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 8px; }

    .qty-control {
      display: flex;
      align-items: center;
      gap: 0;
      border: 1.5px solid var(--card-border);
      border-radius: 50px;
      overflow: hidden;
      width: fit-content;
    }

    .qty-btn {
      background: none;
      border: none;
      padding: 4px 12px;
      font-size: 1rem;
      cursor: pointer;
      color: var(--dark);
      font-weight: 700;
      transition: background 0.15s;
    }

    .qty-btn:hover { background: var(--cream); }

    .qty-num {
      padding: 4px 10px;
      font-weight: 800;
      font-family: 'Nunito', sans-serif;
      font-size: 0.9rem;
      border-left: 1px solid var(--card-border);
      border-right: 1px solid var(--card-border);
      min-width: 36px;
      text-align: center;
    }

    .cart-price {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 1rem;
      flex-shrink: 0;
      margin-left: 10px;
    }

    .btn-remove {
      background: none;
      border: none;
      color: var(--text-muted);
      font-size: 1rem;
      cursor: pointer;
      padding: 4px;
      transition: color 0.2s;
    }

    .btn-remove:hover { color: var(--red); }

    /* Cart summary */
    .cart-summary {
      background: var(--cream);
      border-radius: 12px;
      padding: 20px;
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.88rem;
      margin-bottom: 10px;
      color: var(--text-muted);
    }

    .summary-row.total {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 1rem;
      color: var(--dark);
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px dashed var(--card-border);
    }

    .btn-checkout {
      display: block;
      width: 100%;
      background: var(--dark);
      color: var(--white);
      border: none;
      border-radius: 50px;
      padding: 13px 0;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.92rem;
      cursor: pointer;
      margin-top: 16px;
      transition: background 0.2s;
    }

    .btn-checkout:hover { background: var(--green); }

    /* =====================
       WISHLIST
    ===================== */
    .wish-card {
      background: var(--white);
      border: 1.5px solid var(--card-border);
      border-radius: 14px;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .wish-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .wish-img {
      width: 100%;
      aspect-ratio: 1/1;
      background: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
    }

    .wish-body { padding: 14px; }

    .wish-name {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.9rem;
      margin-bottom: 4px;
    }

    .wish-price {
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--green);
      margin-bottom: 12px;
    }

    .wish-actions { display: flex; gap: 8px; }

    .btn-add-cart {
      flex: 1;
      background: var(--dark);
      color: var(--white);
      border: none;
      border-radius: 50px;
      padding: 8px 0;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      cursor: pointer;
      transition: background 0.2s;
    }

    .btn-add-cart:hover { background: var(--green); }

    .btn-remove-wish {
      background: none;
      border: 1.5px solid var(--card-border);
      border-radius: 50px;
      padding: 8px 12px;
      font-size: 0.85rem;
      color: var(--red);
      cursor: pointer;
      transition: background 0.2s;
    }

    .btn-remove-wish:hover { background: #fef0f0; }

    /* =====================
       PROFILE FORM
    ===================== */
    .form-group-custom { margin-bottom: 20px; }

    .form-label-custom {
      display: block;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--dark);
      margin-bottom: 7px;
    }

    .form-input-custom {
      width: 100%;
      background: var(--cream);
      border: 1.5px solid var(--card-border);
      border-radius: 10px;
      padding: 11px 16px;
      font-family: 'Nunito Sans', sans-serif;
      font-size: 0.9rem;
      color: var(--dark);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .form-input-custom:focus {
      border-color: var(--green-light);
      box-shadow: 0 0 0 3px rgba(106,176,76,0.12);
      background: var(--white);
    }

    .btn-save {
      background: var(--dark);
      color: var(--white);
      border: none;
      border-radius: 50px;
      padding: 11px 32px;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.88rem;
      cursor: pointer;
      transition: background 0.2s;
    }

    .btn-save:hover { background: var(--green); }

    /* =====================
       ADDRESSES
    ===================== */
    .address-card {
      background: var(--white);
      border: 1.5px solid var(--card-border);
      border-radius: 14px;
      padding: 20px;
      position: relative;
      height: 100%;
    }

    .address-card.default {
      border-color: var(--green-light);
    }

    .address-badge {
      position: absolute;
      top: 14px;
      right: 14px;
      background: var(--green-pale);
      color: var(--green);
      font-size: 0.65rem;
      font-weight: 800;
      border-radius: 50px;
      padding: 3px 10px;
    }

    .address-name {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.92rem;
      margin-bottom: 6px;
    }

    .address-text {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 14px;
    }

    .address-actions { display: flex; gap: 10px; }

    .btn-addr {
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      border-radius: 50px;
      padding: 6px 16px;
      cursor: pointer;
      border: 1.5px solid var(--card-border);
      background: none;
      color: var(--dark);
      transition: background 0.2s, border-color 0.2s;
    }

    .btn-addr:hover { background: var(--cream); border-color: var(--dark); }
    .btn-addr.danger { color: var(--red); }
    .btn-addr.danger:hover { background: #fef0f0; border-color: var(--red); }

    .add-address-card {
      border: 2px dashed var(--card-border);
      border-radius: 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 40px 20px;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      height: 100%;
      color: var(--text-muted);
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
    }

    .add-address-card:hover {
      border-color: var(--green-light);
      background: var(--green-pale);
      color: var(--green);
    }

    .add-address-card i { font-size: 1.5rem; }

    /* =====================
       MOBILE SIDEBAR TOGGLE
    ===================== */
    .mobile-sidebar-toggle {
      display: none;
      background: var(--white);
      border: 1.5px solid var(--card-border);
      border-radius: 10px;
      padding: 10px 16px;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      cursor: pointer;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
      width: 100%;
    }

    /* =====================
       RESPONSIVE
    ===================== */
    @media (max-width: 991px) {
      .sidebar {
        position: fixed;
        left: -270px;
        top: 62px;
        height: calc(100vh - 62px);
        z-index: 200;
        transition: left 0.28s ease;
        box-shadow: 4px 0 24px rgba(0,0,0,0.10);
      }

      .sidebar.open { left: 0; }

      .main-content { padding: 24px 20px; }

      .mobile-sidebar-toggle { display: flex; }

      /* Overlay when sidebar open */
      .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.3);
        z-index: 199;
      }

      .sidebar-overlay.show { display: block; }
    }

    @media (max-width: 575px) {
      .main-content { padding: 18px 14px; }
      .page-title { font-size: 1.25rem; }
    }

    /* =====================
       BREADCRUMB
    ===================== */
    .breadcrumb-wrap {
      padding: 14px 0 0;
    }

    .breadcrumb {
      font-size: 0.78rem;
      margin: 0;
      background: none;
      padding: 0;
      gap: 6px;
    }

    .breadcrumb-item a {
      color: var(--text-muted);
      text-decoration: none;
      font-weight: 600;
    }

    .breadcrumb-item a:hover { color: var(--green); }
    .breadcrumb-item.active  { color: var(--dark); font-weight: 700; }
    .breadcrumb-item + .breadcrumb-item::before { color: var(--card-border); }

    /* =====================
       HERO SECTION
    ===================== */
    .hero-section-prodcut{
      background: var(--cream);
      padding: 24px 0 0;
      overflow: hidden;
    }

    /* Left — text content */
    .hero-left { padding-right: 32px; padding-bottom: 32px; }

    /* Tags / badges */
    .tag-row {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 14px;
    }

    .tag-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      border: 1.5px solid var(--card-border);
      border-radius: 50px;
      padding: 5px 14px;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.76rem;
      background: rgba(255,255,255,0.7);
      color: var(--dark);
    }

    .tag-pill.trending {
      border-color: #f5c542;
      background: #fffbea;
      color: #b07a00;
    }

    .tag-pill.low-maintenance {
      border-color: var(--green-light);
      background: var(--green-pale);
      color: var(--green);
    }

    /* Product name */
    .product-name {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: clamp(2rem, 5vw, 3rem);
      color: var(--dark);
      line-height: 1.1;
      margin-bottom: 8px;
      letter-spacing: -0.5px;
    }

    .product-tagline {
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 20px;
      font-style: italic;
    }

    /* Rating */
    .rating-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
    }

    .stars { color: #f5c542; font-size: 0.95rem; letter-spacing: 1px; }

    .rating-count {
      font-size: 0.80rem;
      color: var(--text-muted);
      font-weight: 600;
    }

    /* Price */
    .price-row {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 24px;
    }

    .price-main {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 2.2rem;
      color: var(--dark);
    }

    .price-original {
      font-size: 1.1rem;
      color: var(--text-muted);
      text-decoration: line-through;
    }

    .price-discount {
      background: #fff3cd;
      color: #856404;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.80rem;
      border-radius: 50px;
      padding: 3px 10px;
    }

    /* Qty + CTA */
    .cta-row {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 22px;
    }

    .qty-control {
      display: flex;
      align-items: center;
      border: 1.5px solid var(--card-border);
      border-radius: 10px;
      overflow: hidden;
      background: var(--white);
    }

    .qty-btn {
      background: none;
      border: none;
      padding: 0 16px;
      height: 48px;
      font-size: 1.2rem;
      font-weight: 700;
      cursor: pointer;
      color: var(--dark);
      transition: background 0.15s;
    }

    .qty-btn:hover { background: var(--cream); }

    .qty-num {
      padding: 0 14px;
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 1rem;
      border-left: 1px solid var(--card-border);
      border-right: 1px solid var(--card-border);
      height: 48px;
      display: flex;
      align-items: center;
      min-width: 44px;
      justify-content: center;
    }

    .btn-cart {
      background: var(--dark);
      color: var(--white);
      border: none;
      border-radius: 10px;
      padding: 13px 28px;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background 0.2s, transform 0.15s;
      flex: 1;
      justify-content: center;
      min-width: 160px;
    }

    .btn-cart:hover { background: var(--green); transform: translateY(-1px); }

    .btn-buy {
      background: var(--white);
      color: var(--dark);
      border: 1.5px solid var(--dark);
      border-radius: 10px;
      padding: 12px 28px;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      flex: 1;
      min-width: 130px;
    }

    .btn-buy:hover { background: var(--cream-dark); transform: translateY(-1px); }

    /* Wishlist + share */
    .action-icons {
      display: flex;
      gap: 10px;
      margin-bottom: 24px;
    }

    .icon-btn {
      width: 44px; height: 44px;
      border-radius: 10px;
      border: 1.5px solid var(--card-border);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.05rem;
      color: var(--text-muted);
      transition: all 0.2s;
    }

    .icon-btn:hover { border-color: var(--green-light); color: var(--green); background: var(--green-pale); }
    .icon-btn.active { color: var(--red); border-color: #f5c0c0; background: #fef0f0; }

    /* Delivery info strip */
    .delivery-strip {
      background: var(--white);
      border: 1.5px solid var(--card-border);
      border-radius: 12px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.84rem;
      font-weight: 600;
      margin-bottom: 0;
    }

    .delivery-strip i { color: var(--green); font-size: 1rem; }

    /* =====================
       HERO IMAGE — RIGHT
    ===================== */
    .hero-img-wrap {
      position: relative;
      height: 100%;
      min-height: 420px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      background: linear-gradient(160deg, #e8e2d8 0%, var(--cream-dark) 100%);
      border-radius: 24px;
      overflow: hidden;
    }

    /* Decorative circle behind plant */
    .hero-img-wrap::before {
      content: '';
      position: absolute;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: rgba(255,255,255,0.40);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -55%);
    }

    /* Big plant emoji/SVG placeholder */
    .plant-hero-display {
      font-size: 14rem;
      line-height: 1;
      position: relative;
      z-index: 2;
      filter: drop-shadow(0 16px 40px rgba(0,0,0,0.12));
      margin-bottom: -10px;
      user-select: none;
    }

    /* Thumbnail row */
    .thumb-row {
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 5;
    }

    .thumb {
      width: 52px;
      height: 52px;
      border-radius: 10px;
      background: rgba(255,255,255,0.75);
      border: 2px solid transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      backdrop-filter: blur(6px);
    }

    .thumb.active,
    .thumb:hover { border-color: var(--green-light); background: var(--white); }

    /* Stock indicator */
    .stock-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--white);
      border: 1.5px solid var(--green-light);
      border-radius: 50px;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.72rem;
      color: var(--green);
      padding: 5px 12px;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .stock-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--green-light);
      display: inline-block;
    }

    /* Nursery badge */
    .nursery-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(255,255,255,0.9);
      border: 1.5px solid var(--card-border);
      border-radius: 50px;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.72rem;
      color: var(--dark);
      padding: 5px 12px;
      display: flex;
      align-items: center;
      gap: 5px;
      backdrop-filter: blur(6px);
    }

    /* =====================
       CARE INFO CARDS
    ===================== */
    .care-section {
      padding: 40px 0 0;
    }

    .care-card {
      background: var(--white);
      border: 1.5px solid var(--card-border);
      border-radius: 16px;
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      height: 100%;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .care-card:hover {
      box-shadow: 0 6px 22px rgba(0,0,0,0.07);
      transform: translateY(-2px);
    }

    .care-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .care-icon.water  { background: #e8f4fd; }
    .care-icon.light  { background: #fff8e6; }
    .care-icon.care   { background: var(--green-pale); }
    .care-icon.size   { background: var(--cream-dark); }

    .care-label {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      margin-bottom: 2px;
    }

    .care-value {
      font-size: 0.80rem;
      color: var(--text-muted);
      font-weight: 600;
    }

    /* =====================
       ABOUT SECTION
    ===================== */
    .about-section {
      padding: 40px 0 0;
    }

    .section-heading {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 1.25rem;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .about-text {
      font-size: 0.95rem;
      line-height: 1.85;
      color: #444;
      margin-bottom: 14px;
    }

    /* Photo gallery */
    .gallery-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 24px;
    }

    .gallery-img {
      aspect-ratio: 1/1;
      border-radius: 14px;
      background: var(--cream-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .gallery-img:hover { transform: scale(1.03); }

    /* =====================
       WHY PRICKLO
    ===================== */
    .why-section { padding: 40px 0 0; }

    .why-list { list-style: none; padding: 0; }

    .why-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid var(--card-border);
      font-size: 0.92rem;
      color: var(--dark);
      font-weight: 600;
    }

    .why-list li:last-child { border-bottom: none; }

    .why-check {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--green-pale);
      color: var(--green);
      font-size: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* =====================
       REVIEWS
    ===================== */
    .reviews-section { padding: 40px 0 0; }

    .review-summary {
      background: var(--white);
      border: 1.5px solid var(--card-border);
      border-radius: 16px;
      padding: 24px;
      display: flex;
      align-items: center;
      gap: 28px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .review-big-num {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 3.5rem;
      color: var(--dark);
      line-height: 1;
    }

    .review-stars-big { font-size: 1.2rem; color: #f5c542; letter-spacing: 2px; }
    .review-count-txt { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

    .bar-row {
      flex: 1;
      min-width: 180px;
    }

    .rating-bar-item {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
      font-size: 0.78rem;
      font-weight: 700;
    }

    .bar-track {
      flex: 1;
      height: 6px;
      background: var(--cream-dark);
      border-radius: 50px;
      overflow: hidden;
    }

    .bar-fill {
      height: 100%;
      border-radius: 50px;
      background: var(--green-light);
    }

    /* Review card */
    .review-card {
      background: var(--white);
      border: 1.5px solid var(--card-border);
      border-radius: 14px;
      padding: 20px;
      margin-bottom: 14px;
    }

    .reviewer-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .reviewer-av {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--green-pale);
      border: 2px solid var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 0.85rem;
      color: var(--green);
      flex-shrink: 0;
    }

    .reviewer-name {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.88rem;
      margin-bottom: 2px;
    }

    .reviewer-meta { font-size: 0.74rem; color: var(--text-muted); }

    .review-stars { color: #f5c542; font-size: 0.82rem; margin-left: auto; }

    .review-text {
      font-size: 0.88rem;
      line-height: 1.75;
      color: #444;
    }

    /* =====================
       YOU MIGHT ALSO LIKE
    ===================== */
    .also-section { padding: 40px 0 60px; }

    .related-card {
      background: var(--white);
      border: 1.5px solid var(--card-border);
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .related-card:hover {
      box-shadow: 0 8px 28px rgba(0,0,0,0.10);
      transform: translateY(-4px);
    }

    .related-img {
      width: 100%;
      aspect-ratio: 1/1;
      background: var(--cream-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4.5rem;
      position: relative;
    }

    .related-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(255,255,255,0.9);
      border-radius: 50px;
      font-size: 0.65rem;
      font-weight: 800;
      padding: 3px 10px;
      font-family: 'Nunito', sans-serif;
    }

    .related-tag.trending { color: #b07a00; }
    .related-tag.new      { color: var(--green); }

    .related-body { padding: 14px; }

    .related-name {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 0.95rem;
      margin-bottom: 3px;
    }

    .related-nursery {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .related-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .related-price {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 1rem;
      color: var(--dark);
    }

    .btn-related-cart {
      background: var(--dark);
      color: var(--white);
      border: none;
      border-radius: 8px;
      padding: 7px 14px;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      cursor: pointer;
      transition: background 0.2s;
    }

    .btn-related-cart:hover { background: var(--green); }

    /* =====================
       STICKY BOTTOM BAR (mobile)
    ===================== */
    .sticky-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--white);
      border-top: 1px solid var(--card-border);
      padding: 12px 20px;
      gap: 10px;
      z-index: 99;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    }

    @media (max-width: 767px) {
      .sticky-bar { display: flex; }
      body { padding-bottom: 80px; }
    }

    .sticky-price {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 1.2rem;
    }

    .sticky-cart {
      flex: 1;
      background: var(--dark);
      color: var(--white);
      border: none;
      border-radius: 10px;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.88rem;
      padding: 12px 0;
      cursor: pointer;
      transition: background 0.2s;
    }

    .sticky-cart:hover { background: var(--green); }

    .sticky-buy {
      flex: 1;
      background: var(--white);
      color: var(--dark);
      border: 1.5px solid var(--dark);
      border-radius: 10px;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 0.88rem;
      padding: 12px 0;
      cursor: pointer;
    }

    /* =====================
       RESPONSIVE TWEAKS
    ===================== */
    @media (max-width: 991px) {
      .hero-left { padding-right: 0; }
      .hero-img-wrap { min-height: 340px; margin-top: 28px; }
      .plant-hero-display { font-size: 10rem; }
    }

    @media (max-width: 767px) {
      .product-name { font-size: 2rem; }
      .plant-hero-display { font-size: 8rem; }
      .gallery-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    }

    @keyframes fadeUp {
    from { transform: translateY(12px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }