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

body { 
    scroll-behavior: smooth;
      margin: 0;
      font-family: "Manrope", sans-serif;
      background: #f8f5ee;
      color: #1f3a2e;
      line-height: 1.6;
  }

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

img {
  max-width: 100%;
  display: block;
}
  
  .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 14px 48px;
      background: #023020;
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(70, 63, 63, 0.12);
      box-shadow: 0 8px 24px rgba(31, 58, 46, 0.06);
  }
  
  .logof {
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .logof img {
      display: block;
      width: 100px;
      height: 50px;
      object-fit: cover;
      border-radius: 10px;
  }
  
  .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      list-style: none;
      gap: 28px;
      margin: 0;
      padding: 0;
      flex: 1;
  }
  
  .nav-links li a {
      text-decoration: none;
      color: #f8f5ee;
      font-weight: 700;
      font-size: 17px;
      font-family: "Manrope", sans-serif;
      padding: 10px 14px;
      border-radius: 999px;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  }
  
  .nav-links li a:hover {
      background-color: #dfe7dd;
      color: #1f3a2e;
      transform: translateY(-1px);
  }
  .access-link{
    display:flex;
    gap:3px;
  }
  .search-container {
      display: flex;
      align-items: center;
      background-color: #dfe7dd;
      border-radius: 999px;
      box-sizing: border-box;
      width: 200px;
      height: 38px;
      transform: translateY(-4px);
      padding-right: 4px;
  }
  .search-container .material-symbols-outlined {
      margin-left: 10px;
      font-size: 20px;
      color: #1f3a2e;
      line-height: 1;
      cursor: default;
      flex-shrink: 0;
  }
  .search-container input {
      border: none;
      outline: none;
      padding: 8px 10px 8px 6px;
      font-size: 14px;
      background-color: transparent;
      color: #1f3a2e;
      width: 100%;
      min-width: 0;
  }
  .search-container input::-webkit-search-cancel-button {
      -webkit-appearance: none;
      appearance: none;
      height: 14px;
      width: 14px;
      margin-right: 6px;
      cursor: pointer;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f3a2e' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center / contain no-repeat;
  }
  .closr_btn
  {
   background:none;
   border:none;
   padding:0px;
   margin:0px;
   color:inherit;
   font:inherit;
   cursor:pointer; 
  }
  /*----------------------wishlist---------------*/
  
  .wishlist-link
  {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius:50%;
      color: #f8f5ee;
      transition: background-color 0.3s ease, transform 0.2s ease;
      transform:translateY(-4px);
      cursor: pointer;
      border: none;
      background: transparent;
  }
  
  .wishlist-link:hover {
      background-color:  #36662b;
      transform: translateY(-1px);
  }
  
  .wishlist-link svg {
      width: 22px;
      height: 22px;
  }
  
  .wishlist-badge {
      position: absolute;
      top: 4px;
      right: 4px;
      min-width: 18px;
      height: 18px;
      padding: 0 5px;
      border-radius: 999px;
      background-color: #c1703d;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      line-height: 18px;
      text-align: center;
  }
  
  
  .wishlist-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 1;
      width: 38px;
      height: 38px;
      border: none;
      border-radius: 50%;
      background: transparent;
      color: #03341e;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: none;
      transition: transform 0.2s ease, color 0.2s ease;
  }
  
  .wishlist-btn:hover {
      transform: scale(1.08);
      background: transparent;
  }
  
  .wishlist-btn svg {
      width: 20px;
      height: 20px;
  }
  
  .wishlist-btn.active {
      color: #c1703d;
  }
  
  .wishlist-btn.active svg {
      fill: #c1703d;
  }
  
  .wishlist-overlay {
      position: fixed;
      inset: 0;
      background: rgba(31, 58, 46, 0.35);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      z-index: 1100;
  }
  
  .wishlist-overlay.open {
      opacity: 1;
      visibility: visible;
  }
  
  .wishlist-panel {
      position: fixed;
      top: 0;
      right: 0;
      width: min(100%, 380px);
      height: 100%;
      background: #faf5ea;
      box-shadow: -8px 0 32px rgba(31, 58, 46, 0.12);
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 1200;
      display: flex;
      flex-direction: column;
  }
  
  .wishlist-panel.open {
      transform: translateX(0);
  }
  
  .wishlist-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px;
      border-bottom: 1px solid rgba(31, 58, 46, 0.1);
      background-color: #023020;
  }
  
  .wishlist-header h2 {
      font-family: "Fraunces", serif;
      font-size: 24px;
      color: #dce7e2;
  }
  
  .wishlist-close {
      width: 40px;
      height: 40px;
      border: none;
      border-radius: 50%;
      background: #dfe7dd;
      color: #1f3a2e;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.2s ease;
  }
  
  .wishlist-close:hover {
      background: #cfd9cf;
  }
  
  .wishlist-body {
      flex: 1;
      overflow-y: auto;
      padding: 16px 24px 24px;
  }
  
  .wishlist-empty {
      text-align: center;
      color: #4a6357;
      padding: 48px 16px;
  }
  
  .wishlist-items {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
  }
  
  .wishlist-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(31, 58, 46, 0.06);
  }
  
  .wishlist-item-img {
      width: 64px;
      height: 64px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0;
  }
  
  .wishlist-item-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 4px;
  }
  
  .wishlist-item-name {
      font-weight: 600;
      color: #1f3a2e;
      font-size: 15px;
  }
  
  .wishlist-item-price {
      color: #023020;
      font-weight: 600;
      font-size: 14px;
  }
  
  .wishlist-remove {
      width: 34px;
      height: 34px;
      border: none;
      border-radius: 50%;
      background: #f0f0f0;
      color: #4a6357;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background-color 0.2s ease, color 0.2s ease;
  }
  
  .wishlist-remove:hover {
      background: #e8d5d0;
      color: #a65c30;
  }
       /*----------------------wishlist---------------------*/

  .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(31, 58, 46, 0.35);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      z-index: 1100;
  }

  .cart-overlay.open {
      opacity: 1;
      visibility: visible;
  }

  .cart-panel {
      position: fixed;
      top: 0;
      right: 0;
      width: min(100%, 380px);
      height: 100%;
      background: #faf5ea;
      box-shadow: -8px 0 32px rgba(31, 58, 46, 0.12);
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 1200;
      display: flex;
      flex-direction: column;
  }

  .cart-panel.open {
      transform: translateX(0);
  }

  .cart-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px;
      border-bottom: 1px solid rgba(31, 58, 46, 0.1);
      background-color: #023020;
  }

  .cart-header h2 {
      font-family: "Fraunces", serif;
      font-size: 24px;
      color: #dce7e2;
      margin: 0;
  }

  .cart-close {
      width: 40px;
      height: 40px;
      border: none;
      border-radius: 50%;
      background: #dfe7dd;
      color: #1f3a2e;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
  }

  .cart-close:hover {
      background: #cfd9cf;
  }

  .cart-body {
      flex: 1;
      overflow-y: auto;
      padding: 16px 24px 24px;
  }

  .cart-empty {
      text-align: center;
      color: #4a6357;
      padding: 48px 16px;
  }

  .cart-items {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
  }

  .cart-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(31, 58, 46, 0.06);
  }

  .cart-item-img {
      width: 64px;
      height: 64px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0;
  }

  .cart-item-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 6px;
  }

  .cart-item-name {
      font-weight: 600;
      color: #1f3a2e;
      font-size: 15px;
  }

  .cart-item-price {
      color: #023020;
      font-weight: 600;
      font-size: 14px;
  }

  .cart-item-subtotal {
      color: #4a6357;
      font-size: 13px;
  }

  .cart-footer {
      margin: 20px 0 0;
      padding-top: 16px;
      border-top: 1px solid rgba(31, 58, 46, 0.14);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
  }

  .cart-total {
      margin: 0;
      color: #023020;
      font-size: 18px;
      font-weight: 700;
      text-align: left;
  }

  .cart-buy-btn {
      border: none;
      border-radius: 999px;
      padding: 10px 16px;
      background: #c1703d;
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      white-space: nowrap;
  }

  .cart-buy-btn:hover {
      background: #a65c30;
  }

  .cart-item-qty {
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  .cart-item-qty button {
      width: 28px;
      height: 28px;
      border: none;
      border-radius: 50%;
      background: #dfe7dd;
      color: #1f3a2e;
      font-weight: 700;
      cursor: pointer;
  }

  .cart-item-qty span {
      min-width: 20px;
      text-align: center;
      font-weight: 700;
  }

  .cart-remove {
      width: 34px;
      height: 34px;
      border: none;
      border-radius: 50%;
      background: #f0f0f0;
      color: #4a6357;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .cart-remove:hover {
      background: #e8d5d0;
      color: #a65c30;
  }

  .cart-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      color: #f8f5ee;
      transition: background-color 0.3s ease, transform 0.2s ease;
      padding: 10px 10px;
  }

  .cart-badge {
      position: absolute;
      top: 4px;
      right: 4px;
      min-width: 18px;
      height: 18px;
      padding: 0 5px;
      border-radius: 999px;
      background-color: #c1703d;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      line-height: 18px;
      text-align: center;
  }

  .cart-badge[hidden] {
      display: none !important;
  }

  .cart-link:hover {
      background-color: #36662b;
      transform: translateY(-1px);
  }

  .cart-link svg {
      width: 22px;
      height: 22px;
  }

  .profile{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      color:#f8f5ee;
      transition: background-color 0.3s ease, transform 0.2s ease;
      padding:10px 10px;
  }
  
  .profile:hover {
      background-color: #36662b;
      transform: translateY(-1px);
  }
  
  .profile svg {
      width: 22px;
      height: 22px;
  }
  
  @media (max-width: 760px) {
      .navbar {
          flex-wrap: wrap;
          justify-content: center;
          padding: 12px 20px 16px;
      }
  
      .nav-links {
          width: 100%;
          flex-wrap: wrap;
          gap: 10px 18px;
      }
  
      .nav-links li a {
          font-size: 15px;
          padding: 8px 12px;
      }
  }
  
  .footers {
      background:#023020;
      padding: 20px 30px 30px;
      color: #F9F6EE;
      font-size: 14px;
  }
  
  .footer-top {
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: start;
      gap: 40px;
  }
  
  .logoof {
      margin-top: 10px;
      margin-right: 30px;
  }
  
  .footer-desc {
      margin: 8px 0 0;
      color: #F9F6EE;
      font-size: 15px;
      max-width: 220px;
      line-height: 1.4;
      font-style:helvetica;
  }
  
  .footer-about {
      display: flex;
      gap: 60px;
      flex-wrap: wrap;
      justify-content: flex-end;
      align-items: flex-start;
      justify-self: end;
  }
  
  .footer-shop ul,
  .footer-policy ul {
      list-style: none;
      margin: 0;
      padding: 0;
  }
  
  .footer-shop h3,
  .footer-policy h3,
  .footer-contact h3 {
      margin-bottom: 10px;
      color: #F9F6EE;
  }
  
  .footer-shop li a,
  .footer-policy li a {
      display: block;
      text-decoration: none;
      color: #F9F6EE;
      margin-bottom: 7px;
  }
  
  .social-icons {
      display: flex;
      gap: 10px;
  }
  
  .social-icons svg {
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      padding: 8px;
  }
  
  .footers p {
      text-align: center;
      margin: 20px 0 0;
      color: #F9F6EE;
  }

  .footers hr {
      border: none;
      border-top: 1px solid rgba(249, 246, 238, 0.2);
      margin: 20px 0 0;
  }

  .products-section {
      padding: 60px 48px;
      max-width: 1200px;
      margin: 0 auto;
  }

  .products-section h1 {
      font-family: "Fraunces", serif;
      font-size: 36px;
      color: #1F3A2E;
      margin-bottom: 12px;
  }

  .heading-line {
      width: 60px;
      height: 3px;
      background-color: #C1703D;
      margin-bottom: 40px;
  }

  @media (max-width: 600px) {
      .products-section {
          padding: 40px 20px;
      }

      .products-section h1 {
          font-size: 28px;
      }
  }
  
  .navbar-placeholder {
    min-height: 80px;
  }

  /* ---------- SHOP TOOLBAR & FILTERS ---------- */
  .shop-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(31, 58, 46, 0.15);
    border-radius: 10px;
    background: #fff;
    color: #1f3a2e;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .filter-toggle:hover,
  .filter-toggle[aria-expanded="true"] {
    background: #023020;
    border-color: #023020;
    color:#cfe4c4;
    
  }

  .filter-toggle[aria-expanded="true"] {
    transform: translateY(-1px);
  }

  .filter-active-badge {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #c1703d;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
  }

  .filter-active-badge[hidden] {
    display: none !important;
  }

  .shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 16px 20px;
    margin-bottom: 20px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(31, 58, 46, 0.06);
    border: 1px solid rgba(31, 58, 46, 0.08);
  }

  .shop-toolbar[hidden] {
    display: none;
  }

  .shop-toolbar:not([hidden]) {
    animation: filterSlideDown 0.25s ease;
  }

  @keyframes filterSlideDown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 140px;
    flex: 1;
  }

  .filter-group label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #4a6357;
  }

  .filter-group select {
    appearance: none;
    padding: 10px 36px 10px 14px;
    border: 1px solid rgba(31, 58, 46, 0.15);
    border-radius: 10px;
    background: #f8f5ee url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231f3a2e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
    color: #1f3a2e;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .filter-group select:hover,
  .filter-group select:focus {
    border-color: #023020;
    outline: none;
    box-shadow: 0 0 0 3px rgba(2, 48, 32, 0.1);
  }

  .filter-clear {
    padding: 10px 18px;
    border: none;
    border-radius: 10px;
    background: #dfe7dd;
    color: #1f3a2e;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .filter-clear:hover {
    background: #cfd9cf;
    transform: translateY(-1px);
  }

  .filter-results-count {
    font-size: 14px;
    color: #4a6357;
    margin: 0;
  }

  .no-results {
    text-align: center;
    color: #4a6357;
    padding: 48px 20px;
    font-size: 16px;
  }

  .product-card.hidden {
    display: none !important;
  }

  /* ---------- PRODUCT CARDS ---------- */
  .product-card {
    display: block;
    width: 100%;
    max-width: 280px;
    transition: transform 0.2s ease;
  }

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

  .product-image {
    position: relative;
    height: 240px;
    background-color: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }

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

  .product-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #4a6357;
    background: #dfe7dd;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
  }

  .product-card h3 {
    font-family: "Fraunces", serif;
    font-size: 20px;
    color: #1F3A2E;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .price {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .new-price {
    color: #023020;
    font-weight: 600;
  }

  .old_price {
    text-decoration: line-through;
    color: #8a9a92;
    font-weight: 400;
    transform: translateY(2px);
  }

  @media (max-width: 600px) {
    .shop-actions {
      flex-direction: column;
      align-items: stretch;
    }

    .filter-toggle {
      justify-content: center;
    }

    .shop-toolbar {
      padding: 16px;
      gap: 12px;
    }

    .filter-group {
      min-width: calc(50% - 8px);
      flex: 0 0 calc(50% - 8px);
    }

    .filter-clear {
      width: 100%;
    }
  }