/* ==========================================================================
   Color Scheme
   ========================================================================== */
   :root {
    --primary-yellow: #FFD700;
    --primary-black: #121212;
    --text-white: #FFFFFF;
    --background-gray: #f0f0f0; /* Adjust as needed */
    --heading-font: "Bebas Neue", cursive; /* If you're using this font */
    --body-font: "Jost", sans-serif; /* If you're using this font */
    --base-padding: 15px;
  }
  
  /* ==========================================================================
     General Styles
     ========================================================================== */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--body-font), sans-serif;
    background-color: var(--primary-black);
    color: var(--text-white);
    line-height: 1.6;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--heading-font);
    color: var(--text-white);
    margin-bottom: 0.5em;
    line-height: 1.2;
  }
  
  a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: var(--primary-yellow);
  }
  
  .container-fluid { /* Replicating Bootstrap's container-fluid */
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px; /* Adjust as needed */
  }
  
  .row { /* Simplified row */
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .col-xl-6,
  .col-lg-12,
  .col-xl-8,
  .col-lg-9,
  .col-6,
  .col-xl-4,
  .col-lg-3,
  .col-xl-12,
  .col-lg-6,
  .col-md-6,
  .col-xl-5,
  .col-lg-7,
  .col-xl-6,
  .col-lg-5 { /* Simplified column styles */
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Add more specific column styles as needed */
  
  /* ==========================================================================
     Header
     ========================================================================== */
  .site-header {
    background-color: var(--primary-black);
    padding: 10px 0;
  }
  
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #333; /* Darker line */
  }
  
  .header-top__left {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    max-width: 100px; /* Adjust as needed */
    height: auto;
  }
  
  .header-top__infos {
    display: flex;
    list-style: none;
  }
  
  .header-top__infos li {
    margin-right: 20px;
  }
  
  .header-top__infos a {
    color: var(--text-white);
  }
  
  .header-top__right {
    display: flex;
    align-items: center;
  }
  
  .social-links {
    display: flex;
    margin-right: 20px;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background-color: #333; /* Darker background */
    margin-right: 5px;
  }
  
  .social-links a:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
  }
  
  .site-btn {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8em;
  }
  
  .site-btn:hover {
    background-color: #444; /* Darker background on hover */
    color: var(--text-white);
  }
  
  .menu-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }
  
  .main-menu ul {
    display: flex;
    list-style: none;
  }
  
  .main-menu ul li {
    margin-right: 15px;
    position: relative;
  }
  
  .main-menu ul li a {
    color: var(--text-white);
    display: block;
    padding: 10px 15px;
  }
  
  .main-menu ul li a:hover,
  .main-menu ul li.active a {
    color: var(--primary-yellow);
  }
  
  .search {
    position: relative;
  }
  
  .search__trigger {
    cursor: pointer;
    color: var(--text-white);
  }
  
  .search__form {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--primary-black);
    padding: 10px;
    display: none; /* Initially hidden */
  }
  
  .search__form.active {
    display: block; /* Show when active */
  }
  
  .search__form input {
    padding: 5px;
    border: 1px solid #555;
    background-color: #222; /* Darker input */
    color: var(--text-white);
  }
  
  .search__form button {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    border: none;
    cursor: pointer;
    padding: 5px 10px;
  }
  
  .hamburger-trigger {
    cursor: pointer;
    color: var(--text-white);
    margin-left: 10px;
  }
  
  .cart {
    cursor: pointer;
    color: var(--text-white);
    margin-left: 10px;
    position: relative;
  }
  
  .cart__count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #555; /* Darker count */
    color: var(--text-white);
    border-radius: 50%;
    padding: 3px 6px;
    font-size: 0.7em;
  }
  
  /* ==========================================================================
     Hero Area
     ========================================================================== */
  .hero__area {
    background-color: var(--primary-black);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
  }
  
  .hero__area::before { /* Yellow shape */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%); /* Adjust shape as needed */
  }
  
  .hero__content {
    position: relative;
    z-index: 1;
  }
  
  .hero__title {
    font-size: 2.5em;
    color: var(--text-white);
    font-family: var(--heading-font);
    margin-bottom: 0.5em;
  }
  
  .hero__description {
    color: #ddd; /* Lighter text */
    margin-bottom: 20px;
  }
  
  .hero__buttons {
    display: flex;
    gap: 15px;
  }
  
  .hero__image {
    position: relative;
    z-index: 1;
  }
  
  /* ==========================================================================
     Feature Area
     ========================================================================== */
  .feature__area {
    background-color: var(--primary-black);
    padding: 40px 0;
  }
  
  .feature__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .feature__item {
    color: var(--primary-black);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
  }
  
  .feature__item .year {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    margin-bottom: 10px;
  }
  
  .feature__item h3 {
    color: #ffcf03;
    font-size: 1.2em;
    margin-bottom: 0.5em;
}
  
  .feature__item p {
    color: #ffffff; /* Darker text on gray */
  }
  
  /* ==========================================================================
     About Area
     ========================================================================== */
  .about__area {
    background-color: var(--primary-black);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
  }
  
  .about__area::before { /* Yellow shape */
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%); /* Adjust shape */
  }
  
  .about__left {
    position: relative;
    z-index: 1;
  }
  
  .about__left img {
    border-radius: 8px;
  }
  
  .about__right {
    position: relative;
    z-index: 1;
    padding: 20px;
  }
  
  .section-heading {
    margin-bottom: 20px;
  }
  
  .section-heading__black .sub-title {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    display: inline-block;
    margin-bottom: 0.5em;
  }
  
  .section-heading__black .title {
    color: var(--text-white);
    font-size: 2em;
    font-family: var(--heading-font);
    margin-bottom: 0.5em;
  }
  
  .about__right p {
    color: #000000; /* Lighter text */
    margin-bottom: 1em;
  }
  
  /* ==========================================================================
     Popular Menu Area (Products)
     ========================================================================== */
  .popular-menu__area {
    background-color: var(--primary-black);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
  }
  
  .popular-menu__area::before,
  .popular-menu__area::after { /* Yellow shapes */
    content: "";
    position: absolute;
    width: 20%;
    height: 20%;
    /* Adjust shape and position as needed */
  }
  
  .popular-menu__area::before {
    top: 0;
    left: 0;
    clip-path: circle(30% at 20% 20%);
  }
  
  .popular-menu__area::after {
    bottom: 0;
    right: 0;
    clip-path: circle(30% at 80% 80%);
  }
  
  .popular-menu__wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .popular-menu__filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .popular-menu__filter button {
    background-color: transparent;
    color: var(--text-white);
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8em;
    text-transform: uppercase;
  }
  
  .popular-menu__filter button.active,
  .popular-menu__filter button:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
  }
  
  .popular-menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .popular-menu__item {
    background-color: var(--background-gray);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .popular-menu__thumb img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
  }
  
  .popular-menu__content {
    padding: 15px;
    text-align: center;
  }
  
  .popular-menu__content h2 {
    color: var(--primary-black);
    font-size: 1.2em;
    margin-bottom: 0.5em;
  }
  
  .popular-menu__content p {
    color: #555; /* Darker text on gray */
    font-size: 0.9em;
    margin-bottom: 1em;
  }
  
  .popular-menu__content .pp__price {
    color: var(--primary-black);
    font-size: 1em;
    font-weight: bold;
  }
  
  .popular-menu__content .pp__action {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1em;
  }
  
  .popular-menu__content .pp__action a {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
  }
  
  .popular-menu__content .pp__action a:hover {
    background-color: #444; /* Darker background on hover */
    color: var(--text-white);
  }
  
  /* ==========================================================================
     Testimonial Area
     ========================================================================== */
  .testimonial__area {
    background-color: var(--primary-black);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
  }
  
  .testimonial__area::before { /* Yellow shape */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-yellow);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%); /* Adjust shape */
    opacity: 0.1; /* Subtle overlay */
  }
  
  .testimonial__active {
    /* Adjust slider styles as needed */
  }
  
  .testimonial__item {
    text-align: center;
    padding: 20px;
  }
  
  .testimonial__item .quote {
    font-size: 2em;
    color: var(--text-white);
    margin-bottom: 0.5em;
  }
  
  .testimonial__item p {
    color: #ddd; /* Lighter text */
    margin-bottom: 1em;
  }
  
  .testimonial__item .thumb img {
    border-radius: 50%;
    max-width: 80px; /* Adjust size */
    margin: 0 auto;
  }
  
  .testimonial__item .name {
    color: var(--text-white);
    font-size: 1.2em;
    font-family: var(--heading-font);
    margin-top: 0.5em;
  }
  
  .testimonial__item .designation {
    color: var(--primary-yellow);
    font-size: 0.9em;
  }
  
  /* ==========================================================================
     Top Grade Area (Gallery)
     ========================================================================== */
  .topgrade__area {
    background-color: var(--primary-black);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
  }
  
  .topgrade__area::before,
  .topgrade__area::after { /* Yellow shapes */
    content: "";
    position: absolute;
    width: 20%;
    height: 20%;
    background-color: var(--primary-yellow);
    /* Adjust shape and position as needed */
  }
  
  .topgrade__area::before {
    top: 0;
    left: 0;
    clip-path: circle(30% at 20% 20%);
  }
  
  .topgrade__area::after {
    bottom: 0;
    right: 0;
    clip-path: circle(30% at 80% 80%);
  }
  
  .topgrade__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .topgrade__item {
    background-color: var(--background-gray);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .topgrade__item img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .topgrade__item .content {
    padding: 15px;
    text-align: center;
  }
  
  .topgrade__item .title {
    color: var(--primary-black);
    font-size: 1.2em;
    margin-bottom: 0.5em;
  }
  
  .topgrade__item .count {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    display: inline-block;
    margin-top: 1em;
  }
  
  /* ==========================================================================
     Blog Area
     ========================================================================== */
  .blog__area {
    background-color: var(--primary-black);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
  }
  
  .blog__area::before,
  .blog__area::after { /* Yellow shapes */
    content: "";
    position: absolute;
    width: 20%;
    height: 20%;
    background-color: var(--primary-yellow);
    /* Adjust shape and position as needed */
  }
  
  .blog__area::before {
    top: 0;
    left: 0;
    clip-path: circle(30% at 20% 20%);
  }
  
  .blog__area::after {
    bottom: 0;
    right: 0;
    clip-path: circle(30% at 80% 80%);
  }
  
  .blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .blog__item {
    background-color: var(--background-gray);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .blog__item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px 8px 0 0;
  }
  
  .blog__item .content {
    padding: 15px;
  }
  
  .blog__item .meta {
    display: flex;
    gap: 10px;
    color: #777;
    font-size: 0.8em;
    margin-bottom: 0.5em;
  }
  
  .blog__item .title {
    color: var(--primary-black);
    font-size: 1.2em;
    margin-bottom: 0.5em;
    font-family: var(--heading-font);
  }
  
  .blog__item .read-more {
    color:#333;
    display: inline-block;
    margin-top: 1em;
  }
  
  .blog__item .read-more:hover {
    color: var(--text-white);
  }
  
  /* ==========================================================================
     Footer
     ========================================================================== */
  .site-footer {
    background-color: var(--primary-black);
    padding: 40px 0;
    color: var(--text-white);
  }
  
  .footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #333; /* Darker line */
  }
  
  .footer__top .footer__widget {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .footer__top .footer__widget img {
    max-width: 30px; /* Adjust size */
  }
  
  .footer__top .footer__widget a {
    color: var(--text-white);
  }
  
  .footer__middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #333; /* Darker line */
  }
  
  .footer__middle .footer__logo--content p {
    color: #ddd; /* Lighter text */
    font-size: 0.9em;
    margin-top: 0.5em;
  }
  
  .footer__menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
  }
  
  .footer__menu a {
    color: var(--text-white);
    font-size: 0.9em;
  }
  
  .footer__menu a:hover,
  .footer__menu .active a {
    color: var(--primary-yellow);
  }
  
  .go-top {
    color: var(--text-white);
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
  }
  
  .go-top i {
    margin-left: 5px;
  }
  
  /* ==========================================================================
     Helper Classes (Adjust as Needed)
     ========================================================================== */
  .mt-30 {
    margin-top: 30px;
  }
  
  .mb-55 {
    margin-bottom: 55px;
  }
  
  .pl-75 {
    padding-left: 75px;
  }
  
  /* Add more helper classes as needed */
  
  /* ==========================================================================
     Responsive Design (Simplified)
     ========================================================================== */
  @media (max-width: 768px) {
    .header-top {
      flex-direction: column;
      text-align: center;
    }
  
    .main-menu ul {
      flex-direction: column;
      text-align: center;
    }
  
    .hero {
      flex-direction: column;
      text-align: center;
    }
  
    .hero__image {
      order: -1;
    }
  
    .feature__wrapper,
    .popular-menu__grid,
    .topgrade__grid,
    .blog__grid {
      grid-template-columns: 1fr;
    }
  
    .about {
      flex-direction: column;
    }
  
    .footer__top {
      flex-direction: column;
      text-align: center;
    }
  
    .footer__middle {
      flex-direction: column;
      text-align: center;
    }
  
    .footer__menu ul {
      flex-direction: column;
      text-align: center;
    }
  }