/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://firoz.fluxit.tech
Description: Child theme for Twenty Twenty-Five
Author: Your Name
Author URI: https://firoz.fluxit.tech
Template: twentytwentyfive
Version: 1.0
*/

/* You can add custom CSS below this line */


*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body{
  overflow-x:hidden;
}
main{
 margin-top: 8px !important;
}

/* ===== Slider ===== */
.slider{
  width:100%;
  height:80vh;
  overflow:hidden;
  position:relative;
  max-width: 100%;
}
.slides{
  display:flex;
  height:100%;
  animation:slideAnimation 44s ease-in-out infinite;
}
.slide{
  flex:0 0 100%;
  height:80vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 8%;
}
/* Modern ecommerce gradient backgrounds */
.slide:nth-child(1){
  background:linear-gradient(120deg,#eef2ff,#ffffff);
}
.slide:nth-child(2){
  background:linear-gradient(120deg,#fff7ed,#ffffff);
}
.slide:nth-child(3){
  background:linear-gradient(120deg,#ecfeff,#ffffff);
}

/* Content layout */
.content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
}

/* Left Side */
.text{
  width:50%;
}

.text h1{
  font-size:60px;
  font-weight:700;
  margin-bottom:20px;
  color:#111;
}

.text p{
  font-size:18px;
  color:#555;
  margin-bottom:30px;
  max-width:500px;
}

.text a{
  display:inline-block;
  padding:14px 34px;
  background:#111;
  color:#fff;
  text-decoration:none;
  border-radius:50px;
  font-weight:600;
  transition:0.3s;
}

.text a:hover{
  background:#ff4d4d;
  transform:translateY(-4px);
}

/* Right Side */
.image{
  width:45%;
  text-align:right;
}

.image img{
  width: 70%;
  max-width:600px;
  animation:float 4s ease-in-out infinite;
}

/* Floating Image Animation */
@keyframes float{
  0%{transform:translateY(0);}
  50%{transform:translateY(-20px);}
  100%{transform:translateY(0);}
}

/* ===== Auto Slide Animation ===== */
@keyframes slideAnimation{
  0%   {transform:translateX(0);}
  28%  {transform:translateX(0);}

  33%  {transform:translateX(-100%);}
  61%  {transform:translateX(-100%);}

  66%  {transform:translateX(-200%);}
  94%  {transform:translateX(-200%);}

  100% {transform:translateX(0);}
}

/* ===== Responsive ===== */
@media(max-width:992px){
  .content{
    flex-direction:column;
    text-align:center;
  }

  .text, .image{
    width:100%;
  }

  .text h1{
    font-size:38px;
  }

  .image{
    margin-top:40px;
  }
}
/* main menu */
.main-menu .wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
    background: linear-gradient(120deg,#ecfeff,#ffffff) !important;
    border: 1px solid #00000026;
}
header.wp-block-template-part {
  /* box-shadow: 0 2px 2px rgba(250, 105, 44, 0.7); */ 
  box-shadow: 0 2px 2px rgba(6, 64, 43, 0.7);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
header.wp-block-template-part  .is-layout-constrained > .alignwide {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.feature-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    padding: 0px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
    height: auto;
}
.feature-item {
    /* background:linear-gradient(120deg,#ecfeff,#ffffff); */
    padding: 20px;
    text-align: center;
    border-radius: 8px; /* optional rounded corners */
    box-shadow: 0 4px 8px rgba(64, 224, 208, 0.5);
}
.cat-image {
    width: 100%;
    height: 200px;
    padding: 0px;
    margin: 0px auto;
    text-align: center;
    align-items: center;
}
.cat-image img {
    width: auto;
    height: 200px;
}
.cat-link {
    margin: 10px auto;
}
.cat-link a h4 {
    color: #ff7034;
    font-weight: 700;
    text-decoration: underline;
}
@media (max-width: 900px) {
    .feature-container {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
    }
}

@media (max-width: 600px) {
    .feature-container {
        grid-template-columns: 1fr; /* 1 item per row */
    }
}

.woocommerce .woocommerce-breadcrumb {
    margin: 10px 0 1em;
    padding: 0;
}
body.tax-product_cat h1.wp-block-query-title {
 color: #fa692c;
}
.feature-title {
    color: #000;
    font-weight: 600;
    text-align: left;
    padding: 20px 0px 8px;
    width: fit-content;
    height: auto;
    /* max-width: 100%; */
    border-bottom: 2px solid #000;
    margin-left: 0px !important;
}

/* Container spacing */
.woocommerce-ordering {
    position: relative;
    display: inline-block;
    font-family: inherit;
    background: linear-gradient(145deg, #ffffff, #f3f4f6);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Remove default browser style */
.woocommerce-ordering .orderby {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 45px 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 220px;
    
}

/* Hover effect */
.woocommerce-ordering .orderby:hover {
    border-color: #6366f1;
}

/* Focus effect */
.woocommerce-ordering .orderby:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

/* Custom arrow */
.woocommerce-ordering {
    position: relative;
}

.woocommerce-ordering::after {
    content: "▼";
    font-size: 12px;
    color: #6b7280;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.woocommerce-result-count {
  font-size: 16px !important;
  font-weight: 500;
}
body.tax-product_cat .alignwide.wp-block-term-description {
  padding-bottom: 10px;
  box-shadow: 0 6px 10px -4px rgba(250, 105, 44, 0.3);
}
body.tax-product_cat .wc-block-product.product.type-product {
  padding: 20px;
  text-align: center;
  border-radius: 8px; /* optional rounded corners */
  box-shadow: 0 4px 8px rgba(64, 224, 208, 0.5);
}
body.tax-product_cat .wc-block-product.product.type-product img {
  width: 200px;
  height: auto;
}
body.tax-product_cat .wc-block-product.product.type-product h2 a {
  color: #ff7034;
  font-weight: 700;
  text-decoration: underline;
}


/* Pagination container */
.wp-block-query-pagination {
    margin-top: 40px;
    gap: 10px;
}

/* Number buttons */
.wp-block-query-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover effect */
.wp-block-query-pagination .page-numbers:hover {
    background: #6366f1;
    color: #ffffff;
    border-color: #6366f1;
    transform: translateY(-2px);
}

/* Active page */
.wp-block-query-pagination .page-numbers.current {
    background: #6366f1;
    color: #ffffff;
    border-color: #6366f1;
    box-shadow: 0 6px 15px rgba(99, 102, 241, 0.3);
}

/* Next button */
.wp-block-query-pagination .wp-block-query-pagination-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 20px;
    border-radius: 12px;
    background: #111827;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Next hover */
.wp-block-query-pagination .wp-block-query-pagination-next:hover {
    background: #6366f1;
    transform: translateY(-2px);
}
/* Style Next & Previous buttons */
.wp-block-query-pagination-next,
.wp-block-query-pagination-previous {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    min-height: 44px;
    border-radius: 30px;
    background: #6366f1;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3);
}

/* Hover effect */
.wp-block-query-pagination-next:hover,
.wp-block-query-pagination-previous:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

/* Disabled state */
.wp-block-query-pagination-next[aria-disabled="true"],
.wp-block-query-pagination-previous[aria-disabled="true"] {
    background: #d1d5db;
    color: #6b7280 !important;
    box-shadow: none;
    cursor: not-allowed;
}

.wp-block-query-pagination-previous::before {
    content: "← ";
}

.wp-block-query-pagination-next::after {
    content: " →";
}

/* Clean modern category list */
.wc-block-product-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Category item spacing */
.wc-block-product-categories-list-item {
    margin-bottom: 12px;
}

/* Category link */
.wc-block-product-categories-list-item > a {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

/* Modern underline hover animation */
.wc-block-product-categories-list-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #6366f1;
    transition: width 0.3s ease;
}

.wc-block-product-categories-list-item > a:hover::after {
    width: 100%;
}

/* Inline product count */
.wc-block-product-categories-list-item-count {
    background: none !important;
    padding: 0;
    margin-left: 6px;
    font-size: 13px;
    font-weight: 400;
    color: #9ca3af;
    letter-spacing: 0.5px;
}

/* Add subtle dot separator */
.wc-block-product-categories-list-item-count::before {
    content: "·";
    margin-right: 6px;
    color: #d1d5db;
}

/* Active category style */
.wc-block-product-categories-list-item a[aria-current="page"] {
    color: #6366f1;
    font-weight: 600;
}

/* Subcategory styling */
.wc-block-product-categories-list--depth-1 {
    margin-top: 8px;
    padding-left: 14px;
    border-left: 2px solid #eef2ff;
}

/* Subcategory links */
.wc-block-product-categories-list--depth-1 a {
    font-size: 14px;
    font-weight: 400;
    color: #4b5563;
    transition: all 0.3s ease;
}

/* Subcategory hover */
.wc-block-product-categories-list--depth-1 a:hover {
    color: #6366f1;
    transform: translateX(3px);
}

footer.wp-block-template-part {
  background: #eef2ff;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  margin-top: 40px;
}
footer.wp-block-template-part .is-layout-constrained > .alignwide {
    max-width: 100%;
}
.footer-area h2 {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #06402B;
  color: #06402B;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 10px;
}
.footer-area h3 {
  width: 100%;
  height: auto;  
  color: #06402B;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.footer-area p {
  width: 100%;
  height: auto;  
  color: #06402B;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  padding: 4px 0;
  transition: 0.3s ease;
}

/* Footer Links Common Style */
.footer-area a {
  color: #06402B;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  padding: 4px 0;
  transition: 0.3s ease;
}

.footer-area a:hover {
  color: #021b12;
  padding-left: 5px;
}

/* Add spacing for icon */
.footer-area .phone a,
.footer-area .email a,
.footer-area .web a {
  position: relative;
  padding-left: 28px;
}

/* Phone Icon */
.footer-area .phone a::before {
  content: "📞";
  position: absolute;
  left: 0;
  top: 6px;
}

/* Email Icon */
.footer-area .email a::before {
  content: "✉️";
  position: absolute;
  left: 0;
  top: 6px;
}

/* Web Icon */
.footer-area .web a::before {
  content: "🌐";
  position: absolute;
  left: 0;
  top: 6px;
}
.footer-area .social-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #06402B;
  color: #fff;
  text-align: center;
  line-height: 34px;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s ease;
}

.footer-area .social-link a:hover {
  background: #0a6b47;
  transform: translateY(-3px);
}


/* Remove default list style */
.footer-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Space between items */
.footer-area ul li {
  margin-bottom: 8px;
}

/* Link styling */
.footer-area ul li a {
  color: #06402B;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  padding-left: 18px;
  transition: 0.3s ease;
}

/* Arrow before link */
.footer-area ul li a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #06402B;
  font-weight: bold;
}

/* Hover effect */
.footer-area ul li a:hover {
  color: #0a6b47;
  padding-left: 22px;
}

.copyright {
  background: #06402B;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.copyright a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.copyright a:hover {
  text-decoration: underline;
}


/* Main Menu Links */
.wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation-item__content {
  color: #06402B;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 18px;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover Effect (Underline Animation) */
.wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation-item__content::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 8px;
  width: 0;
  height: 2px;
  background: #06402B;
  transition: width 0.3s ease;
}

.wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation-item__content:hover::after {
  width: calc(100% - 36px);
}

/* Hover Color */
.wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation-item__content:hover {
  color: #042d1f;
}

/* Submenu Container */
.wp-block-navigation__submenu-container {
  background: #ffffff;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border: none;
}

/* Submenu Links */
.wp-block-navigation__submenu-container a {
  color: #06402B;
  font-size: 14px;
  padding: 8px 20px;
  display: block;
  transition: all 0.3s ease;
}

/* Submenu Hover */
.wp-block-navigation__submenu-container a:hover {
  background: #f4f8f6;
  padding-left: 25px;
  color: #042d1f;
}

/* Remove default SVG arrow color issue */
.wp-block-navigation__submenu-icon svg {
  stroke: #06402B;
}

/* Logo container */
.logo-create {
    display: inline-block;
    text-align: center; /* Center everything */
    font-family: 'Poppins', sans-serif;
}

/* First line: GBD + image */
.logo-create .first-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px; /* space between text and image */
}

/* GBD text */
.logo-create .brand {
  font-weight: 700;
  font-size: 24px;
  color: #ff7034;
}

/* FOODS LTD on second line */
.logo-create .suffix {
    display: block;
    font-weight: 600;
    font-size: 24px;
    color: rgb(16, 180, 163); /* your turquoise */
    margin-top: 4px;
}

body.home .noneedinhome {display: none;}
.wc-block-product-categories-list--depth-2 {
    margin-top: 8px;
    padding-left: 14px;
    border-left: 2px solid #eef2ff;
}

/* top header links */
.top-header-area {
  background: #06402B;
  padding: 10px 0px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0px auto;          /* center the whole block */
  display: flex;
  justify-content: center;    /* center horizontally */
  align-items: center;        /* vertical alignment */
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.contact-list li {
  display: flex;
  align-items: center;
  justify-content: center;  
  gap: 10px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
}

.contact-list i {
  font-size: 14px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-list a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.contact-list li:hover i {
  transform: scale(1.2);
  color: #ff7034;
}

.contact-list li:hover a {
  color: #ff7034;
}