/*
 pseudo elements
 selector::pseudo-element
 */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    /* Support old version of chrome safari etc */
    box-sizing: border-box;
    /* Standard */
    margin: 0;
    padding: 0;
}

:active,
:hover,
:focus {
    outline: 0 !important;
    outline-offset: 0;
}

a,
a:hover {
    text-decoration: none;
}


ul,
ol {
    margin: 0;
    padding: 0;
}


/* variable define */
:root {
    --primary-color: #007BFF;
    --secondary-color: #2E2E2E;
    --third-color: #F5F5F5;
    --white-color: #fff;
    --text-color: #555;
    --text-gray: #999;
    --black-color: #000;
    --primary-font: 'Roboto', sans-serif;
    --seconrdy-font: 'Quicksand', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Albert Sans", sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: var(--primary-color);
    background-color: var(--white-color);
}

img {
    max-width: 100%;
    height: auto;
    transform: scale(1);
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}


/* Thin, subtle gray scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f8f9fa;
}




/* new css */
:where([class^="ri-"])::before {
  content: "\f3c2";
}

body {
  font-family: "Albert Sans", sans-serif;
}

.hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.category-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.search-input {
  transition: all 0.3s ease;
}

.search-input:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #3b82f6;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3b82f6;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown Sub-menu - Hidden by default */
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
}

/* Mobile dropdown - show submenu when parent has submenu-open */
@media (max-width: 767px) {
  .sub-menu {
    position: static; /* Re-flow on mobile */
    width: 100%;
    box-shadow: none;
    padding-left: 1.5rem;
  }
  .menu-item-has-children.submenu-open > .sub-menu {
    display: block !important;
  }
}

/* Desktop dropdown - show on hover (more reliable than Tailwind group-hover) */
@media (min-width: 768px) {
  .menu-item-has-children:hover > .sub-menu {
    display: block !important;
  }
  .dropdown-menu {
    margin-top: 0;
  }
}


/* Nav link underline - only under text, not whole row */
.nav-link-text {
  position: relative;
  display: inline-block;
}
.nav-link-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3b82f6;
  transition: width 0.3s ease;
}
.nav-link:hover .nav-link-text::after {
  width: 100%;
}
/* Hide original full-width underline when using nav-link-text */
.nav-link:has(.nav-link-text)::after {
  display: none;
}

.countdown-timer {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.benefit-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

/* Tailwind arbitrary value - ensures text-[64px] works (add to tailwind build for production) */
.text-\[64px\] {
  font-size: 64px;
}


.about-sectionn p{
  font-size: 18px;
  margin-bottom: 10px;
  text-align: justify;
}	

.single-product-content p{
	font-size: 18px !important;
}


