:root {
	--main-background: #cce5ff;
	--main-green: #80BD02;
}

body {
  transition: padding-top 0.2s ease;
}


.product.woocommerce.add_to_cart_inline, 
.is-ajax-search-details,
[name="is-ajax-search-product-quantity"],
a[data-product_id][href*="add-to-cart"],
{
	display: none !important;
}
p {
    font-size: 1.0rem !important;
    line-height: 2;
	font-family: 'Segoe UI', sans-serif; color: #333;
}

.banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 70vh; /* Full viewport height */
    overflow: hidden;
    color: white;
	border-radius: 15px
	background-color: red ;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 50%;
}

.banner-content h1 {
    font-size: 20px;
    margin: 0;
   	color: #ffff;
}

.banner-content p {
    font-size: 3rem;
    margin: 10px 0;
		color: #ffff;
}

.banner-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.banner-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.start-shopping {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}

.start-shopping .arrow {
    margin-left: 10px;
    font-size: 1.2em;
}

.top-collections {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}

.banner-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    z-index: 1;
    overflow: hidden;
    transform: translate(-50%, -50%);
}


.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*filter: brightness(0.5);  Darken the image for better text visibility */
}



/*Benefits*/
.benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: var(--main-background);
		flex-direction: column;
}

.benefits-content {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 20px;
}

.benefits-images {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
}

.image-group img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.benefits-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-text h4 {
    color: #4caf50;
    font-size: 1.2em;
    margin: 0;
}

.benefits-text h1 {
    font-size: 2.5em;
    margin: 10px 0;
}

.benefits-text p {
    font-size: 1.1em;
    margin: 10px 0;
}

.benefits-text strong {
    font-weight: bold;
}

.shop-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    background-color: #000;
    color: #fff;
    margin-top: 20px;
}

.shop-now .arrow {
    margin-left: 10px;
    font-size: 1.2em;
}

/*benefits list*/
.benefits-list {
    max-width: 1200px;
    width: 100%;
    text-align: center;
		margin-top: 50px;
}

.benefits-list h4 {
    color: #4caf50;
    font-size: 1.2em;
    margin: 0;
}

.benefits-list h2 {
    font-size: 2.5em;
    margin: 10px 0 50px;
}

.benefits-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (max-width: 768px) {
  .benefits-items {
    grid-template-columns: 1fr;
  }
}


.benefit-item {
	    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.benefit-item-icon-container {
  border-radius: 50%;
	background: #ffff;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
}
.benefit-item-icon-container img {
    width: 45px;
    height: 45px;
}

.benefit-item h3 {
    font-size: 1.5em;
    margin: 10px 0;
}

.benefit-item p {
    font-size: 1em;
    color: #555;
}

/*Top selled products*/
.best-sellers {
    text-align: center;
    padding: 50px 20px;
}

.best-sellers h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
}

.price {
    font-size: 1.2em;
    color: #000;
}

.view-all {
    display: inline-block;
    margin-top: 50px;
    font-size: 1em;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
}


/*Main Objectives*/
.unique-objectives {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
}

.unique-objectives h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
}

.unique-objectives-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
    justify-items: center;
}

.unique-objective-card {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.unique-objective-card::after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.5em;
    color: #000;
}

.unique-objective-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.unique-objective-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.unique-objective-card p {
    font-size: 1em;
    margin-bottom: 20px;
}

.unique-view-all {
    display: inline-block;
    font-size: 1em;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.unique-view-all:hover {
    color: #007bff;
    border-color: #007bff;
}

.featured-products-container{
	margin-top: 0%;
}


/*featured container*/
.featured-product-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
}

.featured-product-section {
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 50px 0;
}

/* Parallax Effect */
.featured-product-image img {
	  position: absolute;
    top: 0rem;
	  right: -13rem;
    width: 65%;
}

.featured-product-image img {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .featured-product-image img.active {
    opacity: 1;
    z-index: 1;
  }

  .featured-product-image img.inactive {
    opacity: 0;
    z-index: 0;
  }

.featured-product-info {
  max-width: 50%;
  padding-right: 20px;
  color: #333;
}

.featured-product-info h2 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.featured-product-info p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.featured-product-info ul {
  list-style-type: none;
  padding: 0;
}

.featured-product-info ul li {
  font-size: 1em;
  margin-bottom: 10px;
}

.featured-product-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #2c3e50;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.featured-product-btn:hover {
  background-color: #34495e;
	color: white;
}

.product {
	box-shadow: none;
}

.col-xs-12.col-sm-6.col-sm-pull-6.col-md-3.col-md-pull-6 {
	min-width: 40%
}

p,
button,
span,
ul,
li,
a,
select {
	font-size: 18px;
}

select.orderby {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    width: fit-content;
}

/* Equal height product cards */
.woocommerce ul.products li.product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 480px; /* adjust based on your needs */
  box-sizing: border-box;
}

/* Make sure image area doesn’t break layout */
.woocommerce ul.products li.product img {
  max-height: 180px;
  object-fit: contain;
}

/* Optional: constrain title height for consistency */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 48px;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Align price at the bottom */
.woocommerce ul.products li.product .price {
  margin-top: auto;
  padding: 0.5rem;
  background-color: #d6edb4;
  display: inline-block;
  border-radius: 8px;
  font-weight: bold;
}


.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
	display: none !important;
}


@import "tailwindcss";
@import "tw-animate-css";

@custom-variant dark (&:is(.dark *));

:root {
  --background: oklch(0.99 0 0);
  --foreground: oklch(0.15 0.01 270);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.15 0.01 270);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.15 0.01 270);
  --primary: oklch(0.72 0.18 145);
  --primary-foreground: oklch(0.98 0 0);
  --secondary: oklch(0.25 0.02 270);
  --secondary-foreground: oklch(0.98 0 0);
  --muted: oklch(0.96 0.005 270);
  --muted-foreground: oklch(0.5 0.01 270);
  --accent: oklch(0.72 0.18 145);
  --accent-foreground: oklch(0.98 0 0);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.98 0 0);
  --border: oklch(0.9 0.005 270);
  --input: oklch(0.9 0.005 270);
  --ring: oklch(0.72 0.18 145);
  --chart-1: oklch(0.72 0.18 145);
  --chart-2: oklch(0.25 0.02 270);
  --chart-3: oklch(0.5 0.01 270);
  --chart-4: oklch(0.82 0.15 145);
  --chart-5: oklch(0.35 0.03 270);
  --radius: 0.75rem;
  --sidebar: oklch(1 0 0);
  --sidebar-foreground: oklch(0.145 0 0);
  --sidebar-primary: oklch(0.205 0 0);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.97 0 0);
  --sidebar-accent-foreground: oklch(0.205 0 0);
  --sidebar-border: oklch(0.922 0 0);
  --sidebar-ring: oklch(0.708 0 0);
}

.dark {
  --background: oklch(0.12 0.01 270);
  --foreground: oklch(0.98 0 0);
  --card: oklch(0.15 0.01 270);
  --card-foreground: oklch(0.98 0 0);
  --popover: oklch(0.15 0.01 270);
  --popover-foreground: oklch(0.98 0 0);
  --primary: oklch(0.72 0.18 145);
  --primary-foreground: oklch(0.12 0.01 270);
  --secondary: oklch(0.25 0.02 270);
  --secondary-foreground: oklch(0.98 0 0);
  --muted: oklch(0.2 0.01 270);
  --muted-foreground: oklch(0.65 0.01 270);
  --accent: oklch(0.72 0.18 145);
  --accent-foreground: oklch(0.12 0.01 270);
  --destructive: oklch(0.396 0.141 25.723);
  --destructive-foreground: oklch(0.98 0 0);
  --border: oklch(0.25 0.02 270);
  --input: oklch(0.25 0.02 270);
  --ring: oklch(0.72 0.18 145);
  --chart-1: oklch(0.72 0.18 145);
  --chart-2: oklch(0.35 0.03 270);
  --chart-3: oklch(0.65 0.01 270);
  --chart-4: oklch(0.82 0.15 145);
  --chart-5: oklch(0.45 0.02 270);
  --sidebar: oklch(0.205 0 0);
  --sidebar-foreground: oklch(0.985 0 0);
  --sidebar-primary: oklch(0.488 0.243 264.376);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.269 0 0);
  --sidebar-accent-foreground: oklch(0.985 0 0);
  --sidebar-border: oklch(0.269 0 0);
  --sidebar-ring: oklch(0.439 0 0);
}

@theme inline {
  --font-sans: "Geist", "Geist Fallback";
  --font-mono: "Geist Mono", "Geist Mono Fallback";
  --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-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-destructive: var(--destructive);
  --color-destructive-foreground: var(--destructive-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --color-chart-1: var(--chart-1);
  --color-chart-2: var(--chart-2);
  --color-chart-3: var(--chart-3);
  --color-chart-4: var(--chart-4);
  --color-chart-5: var(--chart-5);
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --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);
}

@layer base {
  * {
    @apply border-border outline-ring/50;
  }
  body {
    @apply bg-background text-foreground;
  }
}



.woocommerce-products-header {
    display: none !important;
}
