:root {
  /* ===== Brand Colors ===== */
  --primary-color: #1f3d2b;      /* Dark Green – main brand */
  --secondary-color: #DEDED2;    /* Soft eco green */
  --accent-color: #c9a24d;       /* Gold / beige accent */

  /* ===== Neutral Colors ===== */
  --white: #ffffff;
  --black: #000000;

  --gray-50:  #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* ===== Text Colors ===== */
  --text-primary: #1f3d2b;       /* Dark green text */
  --text-secondary: #4b5563;     /* Gray text */
  --text-muted: #9ca3af;
  --text-inverse: #ffffff;

  /* ===== Background Colors ===== */
  --bg-main: #ffffff;
  --bg-secondary: #f7f7f2;       /* Off white */
  --bg-section: #e6efe8;         /* Light eco green */
  --bg-card: #ffffff;

  /* ===== UI State Colors ===== */
  --success: #3a7d44;
  --error: #b91c1c;
  --warning: #c9a24d;
  --info: #2563eb;

  /* ===== Borders ===== */
  --border-light: #e5e5e5;
  --border-medium: #d4d4d4;
  --border-dark: #a3a3a3;

  /* ===== Hover States ===== */
  --primary-hover: #162d20;
  --secondary-hover: #d6e5da;

  /* ===== Shadows ===== */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.08);
}

@font-face {
	src: url('unitled-sans.otf');
	font-family: "unitled-sans";
}

*:not(.bi) {
	font-family: "unitled-sans";
}

body {
  display:contents;
}

html,body {
  overflow-x:hidden;
}

.dot-separated-menu li:not(:last-of-type)::after {
  content:"•";
  margin-inline:5px;
  color:#FFF3;
}

/* Menu */
.child-menu {
  display:block;

  z-index:2;
}
.child-menu:not(.active) {
  display:none;
}

/* ---------- btn 1 -------  */
.glass-btn {
 background: transparent;
  border: 3px solid #2f5e4e;
  color: #2f5e4e;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: border  ease;
  
}

.glass-btn:hover {
  border-width: 4px;
  color: #2f5e4e;
}
.glass-btn:active {
  transform: scale(1.12);
}

/* ------ btn 2 ------  */
.darkGreen-btn {

      background-color: #2f5e4e;
  color: white;
  border: 3px solid #2f5e4e;
  padding: 15px 130px; 
  font-size: 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.darkGreen-btn:hover {
  background-color: transparent;
  color: #2f5e4e;
  
  text-decoration: none;
}
.darkGreen-btn:active {
  transform: scale(1.12); 
}

/* ---------btn 3---- */
.cream-btn {
  background-color: #f5f0dc;
  color: #1f3b2b;
  border: none;
  padding: 14px 48px;
  font-size: 15px;
  letter-spacing: 1px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.cream-btn:hover {
  
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.cream-btn:active {
  transform: scale(1.12);
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.text-primary {
  color:var(--primary-color) !important;
}

.is-loading {
  position:relative;
}

.is-loading::before {
  content:'';

  background:#FFF6;
  
  position: absolute;
  inset:0;

  z-index:1;
}

.is-loading::after {
  content:'';

  width:40px;
  height:40px;

  border:4px solid #000;
  border-top-color:#0000;

  border-radius:90px;

  position:absolute;
  top:calc(50% - 20px);
  left:calc(50% - 20px);

  animation: spinning 1.0s linear infinite;
}

.labeled-input {
  position:relative;

  border:1px solid var(--primary-hover);
  background:var(--secondary-color);

  border-radius:8px;

  padding:10px 10px;
}

.labeled-input label {
  position:absolute;
  inset:6px auto auto 15px;

  color: var(--primary-color);

  font-size:16px;

  opacity:0.6;

  transition:all 0.1s ease;
}

.labeled-input input::placeholder {
  opacity:0;
}

.labeled-input input:focus ~ label,
.labeled-input input:not(:placeholder-shown) ~ label {
  font-size:8px;
  top:3px;
}

.labeled-input input:focus {
  outline:none;
}

.labeled-input button {
  position:absolute;
  right:0;
  top:5px;
  height:calc(100% - 10px);
  padding-block:5px;
}

.labeled-input input {
  border:none;
  background:none;

  position:absolute;
  inset:0;
  padding-bottom:0;
}

/* Product Card */
.product-card:not(#collection-page .product-card,#category-page .product-card) {
  background-color: #f4f6ee;
  border: 1.5px solid #1d3a24;
  border-bottom: 5px solid #3f4d3b;

  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.product-card:not(#collection-page .product-card,#category-page .product-card):hover {
  transform: translateY(-5px);
}

.product-img:not(#collection-page .product-img,#category-page .product-img) {
  width: 100%;
  height:200px;

  object-fit:cover;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 12px;
}

.product-body {
  flex-grow: 1;
}

.product-title {
  font-weight: 600;
  color: #2f3b2d;
}

.product-brand {
  font-size: 12px;
  color: #6b7b63;
  text-transform: uppercase;
}

.product-price {
  font-weight: 600;
  color: #2f3b2d;
}

.product-btn {
  border: 1.5px solid #2f3b2d;
  border-radius: 30px;
  padding: 8px 0;
  background-color: transparent;
  color: #2f3b2d;
  font-weight: 500;
  transition: 0.3s;
}

/* Header */
#main-site-header {
  position:static;
  transition:all 0.2s ease;
  top:-100px;

  z-index:99999;

  box-shadow:0 0 10px #000;
}

#main-menu {
  font-size:14px;
}

#icon-list i {
  font-size:21px;
}

#open-cart-panel,
#wishlist-cont {
  position:relative;
}

#open-cart-panel:not([data-count="0"])::after,
#wishlist-cont:not([data-count="0"])::after {
  font-size:12px;

  content: attr(data-count);

  width:15px;
  height:15px;

  color:#FFF;
  background:var(--primary-color);

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

  border-radius:90px;

  position:absolute;
  top:calc(100% - 15px);
  left:calc(100% - 10px);
}

#wishlist-cont:not([data-count="0"])::after {
  top:calc(100% - 10px);
}

.parent-element {
  position: relative;

  list-style:none;

  padding:0;
}

#main-menu > ul > .parent-element > .child-menu {
  border:2px solid var(--primary-color);
  border-bottom-width:3px;
 
  border-radius:18px;

  background:var(--secondary-color);

  position:absolute;
  top:calc(100% + 10px);
  left:0px;

  padding:15px 30px;

  width:300%;
}

.child-menu .parent-element .menu-toggle {
  width:100%;
  display: block;
}

.child-menu {
  list-style: none;
  padding:0;
}

.child-menu .child-menu {
  background:#00000005;
}

.child-menu li {
  padding:8px 5px;
}

.child-menu .parent-element .menu-toggle::after {
  right:0;
}

.menu-toggle {
  padding-inline-end:10px;

  position:relative;
}

.menu-toggle:not(.get-back)::after {
  font-family: bootstrap-icons;

  content: "\F282";

  border:none;

  position:absolute;
  top:0;
  left:100%;
}

.menu-toggle:not(.get-back).active::after {
  content: "\F286";
}

#main-menu a:hover,#main-menu a:focus {
  color: currentColor !important;
}

#cart-panel {
  position:fixed;
  height:100vh;
  width:350px;

  overflow-y:auto;

  top:0;
  inset-inline-end:-350px;

  transition:inset 0.3s ease;

  z-index: 99;

  background: var(--secondary-color);
}

#cart-panel .layout {
  background:#0003;

  position: fixed;
  top:0;
  left:0;
  width:calc(100% - 350px);
  height:100vh;

  display:none;
}

#cart-panel.active,
#cart-panel.active * {
  inset-inline-end:0;
}

#cart-panel.active .layout {
  display: block;
}

.cart-grid-field {
  display:grid;

  grid-template-areas: "IMAGE BRAND" "IMAGE NAME" "IMAGE PRICE";
}

.cart-grid-field img {
  grid-area: IMAGE;
  
  margin:5px 10px 5px 5px;

  height:100px;
  object-fit: cover;
}

.cart-grid-field .cart-product-brand {
  grid-area: BRAND;
}

.cart-grid-field .cart-product-name {
  grid-area: NAME;
}

.cart-grid-field .cart-product-price {
  grid-area: PRICE;
}

#cart-products-table {
  margin-bottom:20px;
}

#cart-products tr {
  border-bottom:2px solid var(--primary-color);
}

#cart-products tr td {
  padding-block:20px;
}

#cart-products td:last-of-type {
    text-align:end;

    font-weight:bolder;

    padding-inline-end:10px;
}

#cart-products .quantity-wrapper {
  width:120px;

  font-size:16px;
}

@media(max-width:768px) {

  #main-menu {
    position:fixed;
    top:0;
    left:-100%;

    padding-top:75px;
    margin-top:90px;

    z-index:9;

    width:100%;
    height:calc(100vh - 75px);

    background:var(--secondary-color);
  
    transition: left 0.3s ease;
  }

  #toggle-main-menu {
    font-size:26px;
  }

  #toggle-main-menu:hover {
    animation: menu-heart-beat 0.2s ease;
  }

  #toggle-main-menu.active ~ #main-menu {
    left:0;
  }

  #toggle-main-menu.active i::before {
    content: "\F62A";
  }

  #main-menu li {
    width:100%;

    margin:15px;
    padding:10px;

    font-size:18px;
  }

  #main-menu ul a {
        display:block;
    width:100%;
  }

  #main-menu li.parent-element .menu-toggle::after {
    right:40px;
    height:100%;

    align-items:center;
    display:flex;
  }

  #main-menu footer {
    background:rgba(29,58,36,.03);

    bottom:0;
  }

  #main-menu li:hover {
    background:rgba(29,58,36,.04);
  }

  #main-menu ul.child-menu {
    position:fixed !important;
    top:100px !important;
    height: calc(100vh - 100px) !important;
    left:100% !important;
    width:100vw !important;
    border:none !important;

    transition:all 0.2s ease;
    display: block !important;

    background:var(--secondary-color) !important;
  }

  #main-menu ul.child-menu.active {
    left:0 !important;
  }
}

/* Footer */
body > footer nav a,
body > footer ul{
  font-size:13px;
}

/* Animations */
@keyframes menu-heart-beat {
  0% {
    transform:scale(1);
  }

  50% {
    transform:scale(1.1);
  }

  100% {
    transform:scale(1);
  }
}

@keyframes spinning {
  0% {
    transform:rotate(0deg);
  }

  100% {
    transform:rotate(360deg);
  }
}

/* Quantity */
.quantity-section {
  margin-top: 20px;
}

.quantity-label {
  font-size: 16px;
  color: #2f3b2d;
  margin-bottom: 8px;
  font-weight: 500;
}

.quantity-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 170px;
  height: 50px;

  border: 3px solid #1d3a24;
  border-radius: 18px;
  padding: 0 14px;

  background-color: #f4f6ee;
}

.qty-btn {
  background: transparent;
  border: none;
  font-size: 26px;
  font-weight: 500;
  color: #1d3a24;
  cursor: pointer;

  width: 32px;
  height: 32px;

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

.qty-btn:active {
  transform: scale(0.9);
}

#quantity {
  font-size: 20px;
  font-weight: 600;
  color: #1d3a24;
  min-width: 30px;
  text-align: center;

  border:none;
  background:none;

  appearance: textfield;

  margin:5px;
}

.remove-from-cart {
  border:none;

  background:none;
}