@theme inline {
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --radius-2xl: calc(var(--radius) + 8px);
  --radius-3xl: calc(var(--radius) + 12px);
  --radius-4xl: calc(var(--radius) + 16px);
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-primary-soft: var(--primary-soft);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-accent-soft: var(--accent-soft);
  --color-destructive: var(--destructive);
  --color-destructive-foreground: var(--destructive-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --color-ring-offset-background: var(--background);
  --color-sidebar: var(--sidebar);
  --color-sidebar-foreground: var(--sidebar-foreground);
  --color-sidebar-primary: var(--sidebar-primary);
  --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
  --color-sidebar-accent: var(--sidebar-accent);
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
  --color-sidebar-border: var(--sidebar-border);
  --color-sidebar-ring: var(--sidebar-ring);
  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --shadow-soft: 0 10px 30px -12px oklch(0.45 0.13 150 / 0.22);
  --shadow-lift: 0 24px 50px -20px oklch(0.45 0.13 150 / 0.35);
}

:root {
  --radius: 1rem;
  --background: oklch(0.995 0.004 120);
  --foreground: oklch(0.22 0.03 155);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.22 0.03 155);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.22 0.03 155);
  --primary: oklch(0.58 0.16 148);
  --primary-foreground: oklch(0.99 0.01 140);
  --primary-soft: oklch(0.95 0.04 148);
  --secondary: oklch(0.96 0.02 150);
  --secondary-foreground: oklch(0.3 0.06 155);
  --muted: oklch(0.965 0.01 150);
  --muted-foreground: oklch(0.53 0.03 155);
  --accent: oklch(0.72 0.18 52);
  --accent-foreground: oklch(0.99 0.01 60);
  --accent-soft: oklch(0.96 0.05 60);
  --destructive: oklch(0.6 0.22 27);
  --destructive-foreground: oklch(0.99 0.01 60);
  --border: oklch(0.92 0.015 150);
  --input: oklch(0.92 0.015 150);
  --ring: oklch(0.58 0.16 148);
  --sidebar: oklch(0.98 0.01 150);
  --sidebar-foreground: oklch(0.22 0.03 155);
  --sidebar-primary: oklch(0.58 0.16 148);
  --sidebar-primary-foreground: oklch(0.99 0.01 140);
  --sidebar-accent: oklch(0.95 0.04 148);
  --sidebar-accent-foreground: oklch(0.3 0.06 155);
  --sidebar-border: oklch(0.92 0.015 150);
  --sidebar-ring: oklch(0.58 0.16 148);

  --gradient-primary: linear-gradient(
    135deg,
    oklch(0.62 0.17 152),
    oklch(0.52 0.15 145)
  );
  --gradient-accent: linear-gradient(
    135deg,
    #ff9200,
    #ee5e23
  );
  --gradient-hero: linear-gradient(
    120deg,
    oklch(0.24 0.06 155 / 0.9),
    oklch(0.3 0.09 150 / 0.55) 55%,
    oklch(0.35 0.1 120 / 0.15)
  );
  --shadow-soft: 0 10px 30px -12px oklch(0.45 0.13 150 / 0.22);
  --shadow-lift: 0 24px 50px -20px oklch(0.45 0.13 150 / 0.35);
  --color-border: var(--border);
  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
}

.dark {
  --background: oklch(0.18 0.02 155);
  --foreground: oklch(0.97 0.01 150);
  --card: oklch(0.22 0.03 155);
  --card-foreground: oklch(0.97 0.01 150);
  --popover: oklch(0.22 0.03 155);
  --popover-foreground: oklch(0.97 0.01 150);
  --primary: oklch(0.68 0.17 150);
  --primary-foreground: oklch(0.18 0.03 155);
  --primary-soft: oklch(0.3 0.06 152);
  --secondary: oklch(0.28 0.03 155);
  --secondary-foreground: oklch(0.97 0.01 150);
  --muted: oklch(0.28 0.03 155);
  --muted-foreground: oklch(0.72 0.02 150);
  --accent: oklch(0.75 0.18 55);
  --accent-foreground: oklch(0.2 0.03 60);
  --accent-soft: oklch(0.32 0.07 55);
  --destructive: oklch(0.68 0.2 25);
  --destructive-foreground: oklch(0.98 0.01 60);
  --border: oklch(1 0 0 / 12%);
  --input: oklch(1 0 0 / 15%);
  --ring: oklch(0.68 0.17 150);
  --sidebar: oklch(0.22 0.03 155);
  --sidebar-foreground: oklch(0.97 0.01 150);
  --sidebar-primary: oklch(0.68 0.17 150);
  --sidebar-primary-foreground: oklch(0.18 0.03 155);
  --sidebar-accent: oklch(0.28 0.03 155);
  --sidebar-accent-foreground: oklch(0.97 0.01 150);
  --sidebar-border: oklch(1 0 0 / 12%);
  --sidebar-ring: oklch(0.68 0.17 150);
}

* {
  border-color: var(--color-border) !important;
}

body {
  background-color: var(--color-background) !important;
  color: var(--color-foreground) !important;
  font-family: var(--font-sans) !important;
  -webkit-font-smoothing: antialiased !important;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display) !important;
  letter-spacing: -0.02em !important;
}

.gradient-primary {
  background-image: var(--gradient-primary);
}

.gradient-accent {
  background-image: var(--gradient-accent);
}

.text-gradient {
  background-image: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-panel {
  background-color: oklch(1 0 0 / 0.12);
  border: 1px solid oklch(1 0 0 / 0.22);
  backdrop-filter: blur(14px);
}

.glass-panel:hover {
  background-image: var(--gradient-accent);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.card-lift {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
  &:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lift);
  }
}

.section-pad {
  padding-block: 4rem;
  @media (min-width: 768px) {
    padding-block: 6rem;
  }
}
/* 
@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float-soft 6s ease-in-out infinite;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

.animate-rise {
  animation: rise-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.section-head {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.section-title {
    margin-top: 0.75rem;
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-description {
    margin-top: 0.75rem;
    color: var(--muted-foreground);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.875rem;
    }

    .section-description {
        font-size: 0.95rem;
    }
}
.faq-icon{
    display:flex;
    transition:transform .3s ease;
}

.faq-icon.active{
    transform:rotate(180deg);
}

.faq-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-content.active{
    max-height:500px;
}

/* Cart count animation */
#header-cart-count.cart-count-updated {
    animation: cartCountBounce 0.45s ease;
}

@keyframes cartCountBounce {
    0% {
        transform: scale(1);
    }

    35% {
        transform: scale(1.45);
    }

    65% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

#custom-loginform {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#custom-loginform p {
    margin: 0;
}

#custom-loginform label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
}

#custom-loginform input[type="text"],
#custom-loginform input[type="email"],
#custom-loginform input[type="password"] {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--background);
    color: var(--foreground);
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

#custom-loginform input[type="text"]:focus,
#custom-loginform input[type="email"]:focus,
#custom-loginform input[type="password"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px color-mix(
        in srgb,
        var(--primary) 12%,
        transparent
    );
}

#custom-loginform .login-remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#custom-loginform .login-remember label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

#custom-loginform .login-remember input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin: 0;
}

#custom-loginform input[type="submit"] {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 9999px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-weight: 500;
    background: var(--primary);
    color: var(--primary-foreground);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

#custom-loginform input[type="submit"]:hover {
    opacity: 0.9;
}

#custom-loginform input[type="submit"]:active {
    transform: scale(0.98);
}

.home-swiper .swiper-pagination-bullet {
  width: 0.55rem;
  height: 0.55rem;
  opacity: 1;
  background: var(--primary-soft);
  transition: width 0.25s ease, background-color 0.25s ease;
}

.home-swiper .swiper-pagination-bullet-active {
  width: 1.5rem;
  border-radius: 9999px;
  background: var(--primary);
}

.reviews-swiper .swiper-wrapper {
  align-items: center;
}

.reviews-swiper .swiper-slide {
  /* opacity: 0.7; */
  transform: scale(0.9);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.reviews-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1.04);
}

.reviews-swiper .swiper-pagination {
  position: static;
  margin-top: 1.5rem;
}

.reviews-swiper .swiper-button-disabled {
  opacity: 0.5;
}

.reviews-swiper .reviews-prev,
.reviews-swiper .reviews-next {
  display: flex;
  visibility: visible;
  pointer-events: auto;
  z-index: 30;
  cursor: pointer;
}

.reviews-swiper {
  overflow: hidden;
}

.reviews-swiper .swiper-pagination-bullet {
  background: var(--primary-soft);
  opacity: 1;
}

.reviews-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
}
.certification-panel {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.certification-item {
    position: relative;
    transition: background-color 0.25s ease;
}

.certification-item:hover {
    background: var(--secondary);
}

.certification-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 78px;
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--primary);
}

.certification-mark-fssai {
    color: #168b45;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.65rem;
}

.certification-mark-gmp {
    width: 76px;
    height: 76px;
    border: 2px solid var(--primary);
    border-radius: 9999px;
    font-size: 1.2rem;
}

.certification-mark-iso {
    font-size: 1.55rem;
    font-weight: 900;
}

.certification-mark-ayush {
    font-size: 1rem;
    line-height: 1.1;
}

.certification-mark-who {
    font-size: 1.2rem;
    font-weight: 800;
}

.certification-item:hover .certification-mark {
    transform: translateY(-2px);
}

.certification-mark {
    transition: transform 0.25s ease;
}

@media (max-width: 767px) {
    .certification-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .certification-item {
        min-height: 175px;
    }

    .certification-item:nth-child(3) {
        border-left: 0 !important;
    }

    .certification-item:nth-child(odd) {
        border-left: 0 !important;
    }

    .certification-item:nth-child(even) {
        border-left: 1px solid var(--border);
    }

    .certification-mark {
        height: 65px;
    }
}

@media (min-width: 1024px) {
    .certification-item {
        min-height: 220px;
    }
}
