/* ===============================
   CSS RESET
   =============================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



/* =====================================================
   1. CSS RESET (BOOTSTRAP SAFE)
   ===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  line-height: 1.5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Arial, sans-serif;
  color: #212529;
  background-color: #fff;
  font-size: 16px;

  /* Font sharpness (Windows friendly) */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

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

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =====================================================
   2. GLOBAL LAYOUT UTILITIES
   ===================================================== */

/* Full width container with side spacing */
.container {
  width: 100%;
  max-width: 100%;
  padding-inline: clamp(1.25rem, 8vw, 12.5rem);
  /* 20px → 200px */
}

/* =====================================================
   3. SPACING TOKENS (FLUID + REM)
   ===================================================== */

:root {
    --spacing: .25rem;
  --space-80: clamp(2.5rem, 6vw, 5rem);
  /* 40px → 80px */
  --space-60: clamp(2rem, 5vw, 3.75rem);
  /* 32px → 60px */
  --space-40: clamp(1.5rem, 4vw, 2.5rem);
  /* 24px → 40px */
}

/* =====================================================
   4. PADDING UTILITIES (BOOTSTRAP SAFE)
   ===================================================== */

/* Padding Top */
.pt-80 {
  padding-top: var(--space-80);
}

.pt-60 {
  padding-top: var(--space-60);
}

.pt-40 {
  padding-top: var(--space-40);
}

/* Padding Right */
.pr-80 {
  padding-right: var(--space-80);
}

.pr-60 {
  padding-right: var(--space-60);
}

.pr-40 {
  padding-right: var(--space-40);
}

/* Padding Bottom */
.pb-80 {
  padding-bottom: var(--space-80);
}

.pb-60 {
  padding-bottom: var(--space-60);
}

.pb-40 {
  padding-bottom: var(--space-40);
}

/* Padding Left */
.pl-80 {
  padding-left: var(--space-80);
}

.pl-60 {
  padding-left: var(--space-60);
}

.pl-40 {
  padding-left: var(--space-40);
}

/* Padding Top + Bottom */
.py-80 {
  padding-block: var(--space-80);
}

.py-60 {
  padding-block: var(--space-60);
}

.py-40 {
  padding-block: var(--space-40);
}

/* =====================================================
   5. OPTIONAL HELPER CLASSES
   ===================================================== */

.text-center {
  text-align: center;
}

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

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.bg-light {
  background-color: #f8f9fa;
}

.bg-dark {
  background-color: #212529;
  color: #fff;
}

/* =====================================================
   6. PERFORMANCE HELPERS
   ===================================================== */

.lazy-img {
  loading: lazy;
}

.hide-mobile {
  display: block;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

/* Top bar */
.pe_top-bar {
  background: #f5f5f5;
  font-size: 13px;
}

.pe_top-bar a {
  color: #333;
}

/* Header */
.pe_main-header {
  background: #fff;
}

.pe_logo {
  max-height: 80px;
}

/* Search box */
.pe_search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #e9e9e9;
  border-radius: 50px;
  padding: 6px 20px
}

.pe_search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  color: #111;
}

.pe_search-input::placeholder {
  color: #888;
  font-weight: 400;
}

.pe_search-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: #111;
  cursor: pointer;
}


/* Semi Navigation */
#menu-toggle {
  display: none;
}


.pe_semi-menu {
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}

.pe_semi-menu li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: 0.3s ease;
}

/* Hover underline animation */
.pe_semi-menu li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #2f2f6f;
  transition: 0.3s ease;
}

.pe_semi-menu li a:hover {
  color: #2f2f6f;
}

.pe_semi-menu li a:hover::after {
  width: 100%;
}


/* Header icons */
.pe_header-icons span {
  cursor: pointer;
  font-size: 16px;
}

/* Category nav */
.pe_category-nav {
  background: #fff;
}

.pe_category-nav .nav-link {
  color: #000;
  font-weight: 500;
  padding: 12px 14px;
}

.pe_category-nav .nav-link:hover {
  color: #1e2a5a;
}

.pe_category-nav .pe_promo {
  color: red;
  font-weight: 600;
}


.carousel-item img {
  height: auto;
  /* adjust height */
  object-fit: cover;
  /* keeps image clean */
}

.pe_header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

/* Account */
.pe_account {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 15px;
}

.pe_account i {
  font-size: 18px;
}

/* Cart Circle */
.pe_cart {
  width: 44px;
  height: 44px;
  background: #f2f2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  text-decoration: none;
  transition: 0.3s ease;
   position: relative;
}

span#cartCount {
  position: absolute;
  background: #bd212e;
  border-radius: 17px;
  width: 20px;
  text-align: center;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  top: -10px;
  right: 0;
  font-size: 14px;
  line-height: 1;
}
.pe_cart:hover {
  background: #e6e6e6;
}

.pe_cart i {
  font-size: 18px;
}

.pe_main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0, 0, 0, .3);
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.pe_main-header.sticky .pe_semi-nav {
  display: none !important;
}

.pe_main-header.sticky .pe_semi-nav {
  display: none !important;
}

.pe_main-header.sticky .pe_logo {
  max-height: 60px;
  transition: all 0.3s ease;
}

/* Smooth slide animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

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

/* Footer */

.footer {
  font-size: 15px;
  color: #333;
}

.footer h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.footer p {
  margin: 0 0 10px;
  color: #555;
}

.footer a {
  text-decoration: none;
  color: #555;
  display: block;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer a:hover {
  color: #000;
}

.footer-top {
  padding-bottom: 30px;
}

.footer-top .d-flex {
  gap: 15px
}

.footer-top .icon-wrap i {
  font-size: 24px;
  color: #2f2f6f;
}

.footer-top p {
  margin: 0
}

.social-icons-column {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 20px;
}


.social-icons-column .social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s ease;

}

.social-icons-column .social-icon i {
  color: #fff
}

/* Brand Colors */
.whatsapp {
  background: #25D366;
}

.linkedin {
  background: #0077b5;
}

.instagram {
  background: #E4405F;
}



.facebook {
  background: #1877F2;
}

.tiktok {
  background: #000;
}

/* Hover Effect */
.social-icon:hover {
  transform: translateY(-4px);
  opacity: 0.85;

}


.grid-row>div {
  border-right: 1px solid rgb(229, 229, 229);
}

.grid-row>div:last-child {
  border: none
}

.footer-middle {
  padding: 30px 0;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  margin-top: 20px;
}

.footer-bottom a {
  display: inline-block;
  margin: 0 8px;
}

/* Button Css */

.btn-primary {
  background: linear-gradient(135deg, #2f2f6f, #4a4ab3);
  color: #fff;
  padding: 8px 28px;
  border-radius: 5px;
  font-weight: 500;
  transition: 0.3s ease;
  border: none;
  white-space: nowrap;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: linear-gradient(135deg, #242454, #3b3b8f);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(47, 47, 111, 0.3);
}

.btn-primary:disabled {
  background: linear-gradient(135deg, #242454, #3b3b8f);
  color: #888;
}


.btn-secondary {
  background: #ffffff;
  color: #000;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s ease;
  border: none;
  white-space: nowrap;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background: #e6e6e6;
  color: #000;
}

.btn-secondary:disabled {
  background-color: #e5e5e5;
  border-color: #e5e5e5;
  color: #888;
}


.btn-light {
  border: 2px solid #1b8f5a;
  color: #1b8f5a;
  background: transparent;
  transition: 0.3s ease;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 500;
  white-space: nowrap;
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
  background: #1b8f5a;
  color: #fff;
  border: 2px solid #1b8f5a;
}

.btn-light:disabled {
  background-color: #e5e5e5;
  border-color: #e5e5e5;
  color: #888;
}


/* Mobile Menu */

/* Overlay */
.pemob_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

/* Drawer */
.pemob_drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: #fff;
  transition: 0.3s ease;
  z-index: 999;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pemob_drawer.active {
  left: 0;
}

.pemob_overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Header */
.pemob_drawer_header {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Body */
.pemob_drawer_body {
  position: relative;
  flex: 1;
  overflow: hidden;
}

/* Menu Panels */
button.pemob_close_btn {
  margin-right: 0;
  padding-right: 0;
}

.pemob_menu,
.pemob_submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  background: #fff;
  transition: 0.3s ease;
  overflow-x: hidden;
}

.hamburger-menu {
  width: 42px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
}

.hamburger-menu span {
  height: 3px;
  width: 100%;
  background: #111111;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animation when active */
.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.pemob_level_1 {
  left: 0;
}

.pemob_menu.active,
.pemob_submenu.active {
  left: 0;
}

/* Menu Items */
.pemob_menu li,
.pemob_submenu li {
  border-bottom: 1px solid #f2f2f2;
}

.pemob_menu a,
.pemob_submenu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: 0.3s;
}

.pemob_menu a:hover,
.pemob_submenu a:hover {
  color: #2f2f6f;
}

.pemob_back a {
  font-weight: 600;
}

.pemob_menu_toggle {
  display: none;
}