* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}


a {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* ==================================================== topbar-section ================================================ */
/* ===============================
  /* ===============================
   TOPBAR SECTION
================================ */
.topbar-section {
  padding: 0px 18px;
  background: linear-gradient(90deg, #2fbf4a, #3fc43f);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

/* ===============================
   LEFT SIDE (SWIPER TEXT)
================================ */
.topbar-section .left-side {
  flex: 1;
  display: flex;
  align-items: center;
}

/* ===============================
   SWIPER CONTAINER
================================ */
.topbar-section .topSwiper {
  width: 100%;
  max-width: 1300px;
  position: relative;
}

/* ===============================
   SWIPER SLIDE
================================ */
.topbar-section .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.topbar-section .swiper-slide b {
  font-weight: 600;
  color: #ffffff;
}

/* Hover effect */
.topbar-section .swiper-slide:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

/* ===============================
   SWIPER NAVIGATION BUTTONS
================================ */
.topbar-section .swiper-button-next,
.topbar-section .swiper-button-prev {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
  margin-top: 0px;
}



/* Arrow size */
.topbar-section .swiper-button-next::after,
.topbar-section .swiper-button-prev::after {
  font-size: 10px;
  font-weight: bold;
}

/* ===============================
   RIGHT SIDE (SOCIAL ICONS)
================================ */
.topbar-section .right-side ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.topbar-section .right-side ul li a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.topbar-section .right-side ul li a:hover {
  background: #ffffff;
  color: #2fbf4a;
  transform: translateY(-2px);
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
  .topbar-section {
    padding: 6px 10px;
    display: none;
  }

  .topbar-section .swiper-slide {
    font-size: 12px;
    height: 34px;
    padding: 0 8px;
    text-align: center;
  }

  .topbar-section .right-side {
    display: none; /* Hide social icons on mobile for clean UI */
  }

  .topbar-section .swiper-button-next,
  .topbar-section .swiper-button-prev {
    width: 18px;
    height: 18px;
  }

  .topbar-section .swiper-button-next::after,
  .topbar-section .swiper-button-prev::after {
    font-size: 8px;
  }
}


/* ==================================================== topbar-section ================================================ */

/* HEADER */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #ffffff;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.06); */
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #33333329;
}

/* LOGO + TOGGLE */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section img {
    height: 75px;
    max-width: 100%;
}

/* TOGGLE BUTTON */
.toggle-section button {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 25px;
    border: 1px solid #3fc43f;
}

.toggle-section i {
    font-size: 18px;
    color: #333;
}

/* AUTH SECTION */
.auth-section button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 25px;
    border: 1px solid #e2e2e2;
    background: #3fc43f;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.auth-section i {
    font-size: 15px;
    color: #ffffff;
}

.auth-section span {
    font-weight: 500;
    color: #ffffff;
}

/* HOVER EFFECT */
.auth-section button:hover {
    background: #1a7f37;
    border-color: #1a7f37;
}

.auth-section button:hover i,
.auth-section button:hover span {
    color: #ffffff;
}

/* ==========================
   RESPONSIVE DESIGN
   ========================== */

/* MOBILE (≤576px) */
@media (max-width: 576px) {
    /* .header {
        padding: 10px 15px;
    } */

    .logo-section img {
        height: 36px;
    }

    .auth-section span {
        /* display: none; */
    }

    .auth-section button {
        padding: 8px 10px;
        /* border-radius: 50%; */
    }
}

/* TABLET (≤991px) */
@media (max-width: 991px) {
    .logo-section img {
        height: 50px;
    }
    .auth-section {
        margin-top: 10px;
    }
    .logo-section {
        gap: 0px;
    }
    .hero-slider {
        height: 35vh !important;
    }
}

.header .toggle-section {
    display: none;
}

.header.scrolled .toggle-section {
    display: block;
}

/* ============================================= Navbar Section ======================================================== */
/* NAVBAR */
.navbar {
    width: 100%;
    padding: 18px 20px 5px;
    background: #ffffff;
    border-top: 1px solid #f1f1f1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* MENU LIST */
.navbar ul {
    display: flex;
    align-items: center;
    gap: 28px;
    justify-content: center;
}

/* LIST ITEM */
.navbar ul li {
    list-style: none;
}

/* LINK STYLE */
.navbar ul li a {
    position: relative;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    padding: 6px 2px;
    transition: color 0.3s ease;
}

/* HOVER EFFECT (Underline Animation) */
.navbar ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #1a7f37;
    transition: width 0.3s ease;
}

.navbar ul li a:hover {
    color: #1a7f37;
}

.navbar ul li a:hover::after {
    width: 100%;
}

/* ACTIVE LINK (OPTIONAL) */
.navbar ul li a.active {
    color: #1a7f37;
}

.navbar ul li a.active::after {
    width: 100%;
}

/* ==========================
   RESPONSIVE DESIGN
   ========================== */

/* TABLET */
@media (max-width: 991px) {
    .navbar ul {
        gap: 20px;
    }

    .navbar ul li a {
        font-size: 15px;
    }
    .header .toggle-section {
        display: block;
        margin-top: -15px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .navbar {
        padding: 15px;
        display: none;
    }

    .navbar ul {
        flex-direction: column;
        gap: 16px;
    }

    .navbar ul li a {
        font-size: 16px;
    }
}

.left-navbar {
    width: 250px;
    height: 100vh;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    /* overflow-y: auto; */
    transition: transform 0.3s ease;
    font-family: "Poppins", sans-serif;
}

/* Navbar UL styling */
.left-navbar ul {
    list-style: none;
    padding: 0;
    margin: 60px 0 0 0; /* leave space for optional logo */
}

/* Navbar items */
.left-navbar ul li {
    margin: 10px 0;
}

/* Navbar links */
.left-navbar ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Hover effect */
.left-navbar ul li a:hover {
    background-color: #f0f0f0;
    color: #000000; /* accent color */
}

/* Active link */
.left-navbar ul li a.active {
    background-color: #007bff;
    color: #fff;
}

/* Close icon */
.left-navbar .close-icon {
    position: absolute;
    top: 60px;
    right: -15px;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    background: #3fc43f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: white;
}

.left-navbar .close-icon:hover {
    color: #007bff;
}

/* Optional: small scrollbar style */
.left-navbar::-webkit-scrollbar {
    width: 6px;
}

.left-navbar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

/* Hide sidebar by default */
.left-navbar {
    transform: translateX(-100%); /* hide off-screen to the left */
}

/* Show sidebar */
.left-navbar.show {
    transform: translateX(0); /* slide in */
}

/* Hero Section */
.hero-slider {
    width: 100%;
    height: 70vh; /* full viewport height for hero */
    position: relative;
    overflow: hidden;
}

/* Swiper container takes full hero height */
.swiper {
    width: 100%;
    height: 100%;
}

/* Slides */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #000; */
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures full coverage */
    transition: transform 1s ease;
}

/* Optional subtle zoom effect */
.swiper-slide-active img {
    transform: scale(1.05);
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Pagination - progress bar style */
.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-progressbar {
    background: rgba(255, 255, 255, 0.2);
    height: 6px;
    border-radius: 3px;
}

.swiper-pagination-progressbar-fill {
    background-color: #1a7f37;
}


/* Card Slider Section */
.hero-section-2 {
    padding: 40px 10px;
    background: #f8f8f8;
}

/* Card styling */
.dealSwiper .swiper-slide.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.dealSwiper .swiper-slide.card:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 12px 25px rgba(0,0,0,0.15); */
}

/* Card image as icon */
.dealSwiper .swiper-slide.card img {
    width: 80px;          /* Small icon size */
    height: 80px;         /* Keep square */
    object-fit: contain;  /* Maintain aspect ratio */
    margin-bottom: 15px;  /* Space between image and title */
}

/* Card title */
.card-title {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    text-align: center;
}


.hero-section-3
{
    padding: 3% 20px;
    background: white;
}
.hero-section-3 .head-part
{
    text-align: center;
}
.hero-section-3 .head-part h2 {
    font-weight: 800;
    font-size: 2.0rem; /* Big and prominent */
    color: #333; /* Base text color */
    background: linear-gradient(90deg, #3fc43f, #3fc43f); /* Gradient text effect */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Make gradient visible */
    margin-bottom: 20px;
    position: relative;
}

/* Optional underline accent */
.hero-section-3 .head-part h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #3fc43f;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Add subtle hover effect (optional) */
.hero-section-3 .head-part h2:hover {
    transform: scale(1.05);
    transition: 0.3s ease;
}

/* Product Card Container */
.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 300px; /* adjust as needed */
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    margin: auto;
}

/* Hover Effect */
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Image Part */
.product-card .img-part {
    width: 100%;
    height: 200px;
    overflow: hidden;
    text-align: center;
}

.product-card .img-part img {
    width: 80%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .img-part img {
    transform: scale(1.1);
}

/* Content Part */
.product-card .content-part {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card .content-part h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;

    /* Limit to 1 line */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; /* important for line-clamp */
}

.product-card .content-part ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.product-card .content-part ul li span {
    /*text-decoration: line-through;*/
    color: #888;
    font-size: 0.9rem;
}

.product-card .content-part ul li strong {
    color: #080808; /* sale price color */
    font-size: 1rem;
}

/* Footer Part */
.product-card .footer-part {
    padding: 15px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card .footer-part ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 3px;
}

.product-card .footer-part ul li i {
    color: #3fc43f;
    font-size: 14px;
}

/* Button Styling */
.product-card .footer-part button {
    background: #3fc43f;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
}

.product-card .footer-part button:hover {
    background: #d32f2f;
}

/* Responsive */
@media (max-width: 768px) {
    .product-card {
        width: 100%;
        margin-bottom: 15px;
    }
}


/* Hero Section 4 */
.hero-section-4 {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}

.hero-section-4 .head-part h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.hero-section-4 .head-part .sub-heading {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}

.card-design {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    height: 100%;
}



.card-design .card-img  {
    padding: 20px;
}
.card-design .card-img img {
    width: 150px;
}

.card-design:hover .card-img img {
    transform: scale(1.05);
}

.card-content {
    padding: 0px;
}

.card-content h4 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 10px;
    font-weight: 600;
}

.card-content p {
    font-size: 0.95rem;
    color: #555;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .card-design .card-img img {
        height: 80px;
    }
    .card-content {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero-section-4 .head-part h2 {
        font-size: 1.6rem;
    }
}


/* General Container */
.category-section {
  padding: 60px 20px;
  background-color: #9292921a;
  font-family: 'Poppins', sans-serif;
}

/* Section Heading */
.category-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.category-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #4CAF50;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Cards Container */
.category-cards {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
  gap: 10px;
}

/* Individual Card */
.category-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Card Image */
.category-image {
  width: 100%;
  background-color: #ffffff;
}

.category-image img {
  max-width: 30%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.05);
}

/* Card Content */
.category-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  padding: 15px 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .category-card {
    width: 45%;
  }
  .category-cards
  {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .category-card {
    width: 90%;
  }
}


.footer-section {
    background-color: #ffffff;
    color: #fff;
    padding: 50px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0px -5px 2px 0px #8080801a;
}

.footer-section a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #f2b636;
}

/* Container */
.footer-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Section Flex */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

/* Columns */
.footer-col {
    flex: 1 1 100px;
    min-width: 220px;
}

/* First Section */
.first-ds .logo-sect {
    display: flex;
    /* align-items: center; */
    gap: 10px;
    flex-direction: column;
    justify-content: left;
}

.first-ds .logo-sect img {
    width: 150px;
}

.first-ds h6 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #76b543;
}

.first-ds p {
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: #000000;
}

.first-ds strong {
    display: block;
    color: #000000;
    font-size: 1rem;
}

/* Second Section */
.second-ds ul {
    list-style: none;
    padding: 0;
}

.second-ds ul li {
    margin-bottom: 10px;
}

.second-ds ul li i {
    margin-right: 8px;
    color: #000000;
}

/* Third Section */
.third-ds ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.third-ds .heading-part {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3fc43f;
    font-size: 1rem;
}

.third-ds ul li a {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
}

.footer-col.third-ds
{
    display: flex;
    gap: 50px;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-top {
        flex-direction: column;
        gap: 0px;
    }
}

@media (max-width: 480px) {
    .first-ds .logo-sect {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ========================================== about-section ================================================= */
.about-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.about-banner {
    position: relative;
    width: 100%;
    height: 70vh; /* Banner height */
    overflow: hidden;
}

.about-banner img {
    width: 100%;
    height: 100%;
    transform: scale(1.05);
    transition: transform 1.2s ease;
}

/* Subtle overlay for premium look */
.about-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25),
        rgba(0, 0, 0, 0.55)
    );
}

/* Hover animation (optional) */
.about-banner:hover img {
    transform: scale(1.12);
}

/* Responsive */
@media (max-width: 768px) {
    .about-banner {
        height: 45vh;
    }
}


/* ===== About Page Section ===== */
.about-page {
    padding: 80px 0;
    background: linear-gradient(180deg, #f9fbf8, #ffffff);
    font-family: 'Poppins', sans-serif;
}

/* Container spacing */
.about-page .container {
    max-width: 1140px;
}

/* Card-style content box */
.about-page .head-part {
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Main Heading */
.about-page h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    position: relative;
}

/* Decorative underline */
.about-page h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #4CAF50;
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 4px;
}

/* Paragraphs */
.about-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Section Titles */
.about-page strong {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin-top: 35px;
    margin-bottom: 15px;
}

/* Lists */
.about-page ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

/* List Items */
.about-page ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    margin-bottom: 12px;
    background: #f3f7f3;
    border-left: 4px solid #4CAF50;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Hover effect */
.about-page ul li:hover {
    background: #e8f5e9;
    transform: translateX(5px);
}

/* Bold labels */
.about-page ul li b {
    color: #1f2937;
    font-weight: 600;
    white-space: nowrap;
}

/* Description text */
.about-page ul li span {
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
}

/* Join Us section emphasis */
.about-page strong:last-child {
    text-align: center;
    font-size: 24px;
    color: #4CAF50;
    margin-top: 50px;
}

/* ===== Responsive Design ===== */

/* Tablets */
@media (max-width: 991px) {
    .about-page {
        padding: 60px 0;
    }

    .about-page .head-part {
        padding: 40px 30px;
    }

    .about-page h2 {
        font-size: 30px;
    }

    .about-page strong {
        font-size: 20px;
    }
}

/* Mobile Devices */
@media (max-width: 575px) {
    .about-page {
        padding: 40px 0;
    }

    .about-page .head-part {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .about-page h2 {
        font-size: 24px;
        text-align: center;
    }

    .about-page h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-page p {
        font-size: 15px;
        text-align: justify;
    }

    .about-page ul li {
        flex-direction: column;
        gap: 6px;
    }

    .about-page strong {
        font-size: 18px;
        text-align: center;
    }
}



/* ========================================================= product-section Page ========================================== */

.product-section
{
    padding: 5% 20px;
    background: #f1f1f1;
}
.product-section .head-part h1
{
   text-align: center;
   font-weight: 800;
}


.product-section-2 {
    padding: 60px 0;
    background: #f7f8fa;
    font-family: 'Inter', sans-serif;
}

.sidebar {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    position: sticky;
    top: 90px;
}

.sidebar h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.sidebar ul li {
    margin-bottom: 14px;
}

.sidebar ul li a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: #374151;
    font-weight: 500;
    background: #f3f4f6;
    transition: all 0.3s ease;
}

.sidebar ul li a:hover {
    background: #16a34a;
    color: #ffffff;
}

/* ===============================
   PRODUCT GRID
================================ */
.product-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ===============================
   CARD DESIGN
================================ */
.card-design {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.card-design:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* ===============================
   IMAGE PART
================================ */
.img-part {
    position: relative;
    background: #f9fafb;
    padding: 20px;
}

.img-part img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.card-design:hover .img-part img {
    transform: scale(1.05);
}

/* STAR RATING */
.img-part ul {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.img-part ul li i {
    color: #fbbf24;
    font-size: 14px;
}

/* ===============================
   CONTENT PART
================================ */
.content-part {
    padding: 18px 20px;
    flex: 1;
    text-align: justify;
}

.content-part h5 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.content-part span {
    font-size: 13px;
    color: #6b7280;
}

.content-part strong {
    display: block;
    margin: 8px 0 12px;
    font-size: 13px;
    color: #16a34a;
    letter-spacing: 0.4px;
}

/* PRICE */
.content-part ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-part ul li:first-child {
    font-size: 18px;
    font-weight: 700;
    color: #16a34a;
}

.content-part ul li:last-child {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
}

/* ===============================
   FOOTER PART
================================ */
.footer-part {
    padding: 15px 20px 20px;
    border-top: 1px solid #f1f5f9;
}

.footer-part ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-part ul li a {
    background: #16a34a;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
}

.footer-part ul li a:hover {
    background: #15803d;
}

.footer-part ul li button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-part ul li button:hover {
    background: #16a34a;
}

.footer-part ul li button img {
    width: 18px;
    filter: grayscale(1);
}

.footer-part ul li button:hover img {
    filter: brightness(0) invert(1);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1199px) {
    .product-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .product-section-2 {
        padding: 40px 0;
    }

    .sidebar {
        margin-bottom: 30px;
        position: static;
    }

    .product-bar {
        grid-template-columns: 1fr;
    }

    .img-part img {
        height: 200px;
    }
}

.contact-page {
  padding: 80px 0;
  background: #f8faf7;
}

.contact-page .row {
  align-items: stretch;
}

/* LEFT SIDE */
.contact-page .left-side {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.contact-page .left-side h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1e3d2b;
  margin-bottom: 25px;
  position: relative;
}

.contact-page .left-side h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #4caf50;
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 5px;
}

/* CONTACT DETAILS */
.contact-page .left-side ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.contact-page .left-side ul li {
  margin-bottom: 18px;
}

.contact-page .left-side ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  color: #444;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-page .left-side ul li a i {
  width: 45px;
  height: 45px;
  background: #4caf50;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-page .left-side ul li a:hover {
  color: #4caf50;
}

/* SOCIAL ICONS */
.contact-page .left-side ul:last-child {
  display: flex;
  gap: 15px;
}

.contact-page .left-side ul:last-child li a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #eef5ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #1e3d2b;
  transition: 0.3s;
}

.contact-page .left-side ul:last-child li a:hover {
  background: #4caf50;
  color: #fff;
}

/* RIGHT SIDE (MAP) */
.contact-page .right-side {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.contact-page .map-section iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
}

/* ============================= */
/* RESPONSIVE DESIGN */
/* ============================= */

@media (max-width: 991px) {
  .contact-page {
    padding: 60px 0;
  }

  .contact-page .left-side {
    margin-bottom: 30px;
  }

  .contact-page .map-section iframe {
    min-height: 350px;
  }
}

@media (max-width: 576px) {
  .contact-page .left-side {
    padding: 25px;
  }

  .contact-page .left-side h2 {
    font-size: 26px;
  }

  .contact-page .left-side ul li a {
    font-size: 16px;
  }

  .contact-page .left-side ul li a i {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .contact-page .map-section iframe {
    min-height: 280px;
  }
}




/* ===== PRODUCT DETAIL SECTION ===== */
.product-detail {
    padding: 60px 20px;
    background: #fff;
}

/* ===== LEFT PART ===== */
.product-detail .left-part {
    display: flex;
    gap: 15px;
}

/* Thumbnails */
.product-detail .left-part ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 80px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-detail .left-part ul li {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.product-detail .left-part ul li:hover {
    border-color: #2d7a3e;
    transform: scale(1.05);
}

.product-detail .left-part ul li img {
    width: 100%;
    border-radius: 6px;
}

/* Main Image */
.product-detail .img-frame {
    flex: 1;
    border-radius: 16px;
    border: 1px solid #eee;
    padding: 60px;
    text-align: center;
    background: #fafafa;
}

.product-detail .img-frame img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
}

/* ===== RIGHT PART ===== */
.product-detail .right-part {
    padding-left: 25px;
}

.product-detail .right-part h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.product-detail .right-part strong {
    color: #2d7a3e;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Price */
.product-detail .right-part > div ul {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.product-detail .right-part > div ul li strong {
    font-size: 1.8rem;
    color: #e63946;
}

.product-detail .right-part > div ul li span {
    color: #777;
    font-size: 0.95rem;
    text-decoration: line-through;
}

/* Info */
.product-detail .right-part b {
    display: block;
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 1rem;
}

.product-detail .right-part p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Buttons */
.product-detail .right-part > ul {
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 25px 0;
    list-style: none;
}

.product-detail .right-part button {
    flex: 1;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Add to cart */
.product-detail .right-part button:first-child {
    background: #2d7a3e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-detail .right-part button:first-child img {
    width: 20px;
}

.product-detail .right-part button:first-child:hover {
    background: #256633;
}

/* Buy now */
.product-detail .right-part button:last-child {
    background: #ffb703;
    color: #000;
}

.product-detail .right-part button:last-child:hover {
    background: #e0a800;
}

/* Payment Icons */
.product-detail .right-part ul:last-child {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.product-detail .right-part ul:last-child li img {
    height: 35px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.product-detail .right-part ul:last-child li img:hover {
    filter: grayscale(0%);
}

.review-card
{
    width: 100%;
    max-width: 600px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .product-detail .left-part {
        flex-direction: column-reverse;
    }

    .product-detail .left-part ul {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }

    .product-detail .right-part {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .product-detail .right-part h2 {
        font-size: 1.4rem;
    }

    .product-detail .right-part > ul {
        flex-direction: column;
    }
}

.my-review-section {
    margin: auto;
}

.review-card {
    background: #ffffff;
}

.review-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
}

/* Star Rating */
.star-rating i {
    font-size: 1.8rem;
    cursor: pointer;
    color: #d1d5db;
    margin-right: 6px;
    transition: all 0.25s ease;
}

.star-rating i:hover {
    transform: scale(1.15);
    color: #fbbf24;
}

.star-rating i.active {
    color: #fbbf24;
}

/* Textarea */
.review-textarea {
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 0.95rem;
    resize: none;
    border: 1px solid #e5e7eb;
}

.review-textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Button */
.submit-review-btn {
    background: #3fc43f;
    color: #fff;
    font-weight: 500;
    padding: 12px;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
}

.submit-review-btn:hover {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    transform: translateY(-1px);
}

.submit-review-btn:active {
    transform: scale(0.98);
}


/* ===== Section Base ===== */
.my-batch-sec {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    max-width: 100%;
}

/* ===== Category ===== */
.my-batch-sec span {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
}

/* ===== Product Title ===== */
.my-batch-sec h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1.3;
    margin-bottom: 18px;
}

/* ===== Inputs ===== */
.my-batch-sec .form-control {
    height: 52px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #dfe3e8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.my-batch-sec .form-control:focus {
    border-color: #2d6cdf;
    box-shadow: 0 0 0 3px rgba(45,108,223,0.15);
}

/* ===== Error ===== */
.my-batch-sec .text-danger {
    font-size: 0.85rem;
    margin-top: 4px;
    display: inline-block;
}

/* ===== Batch Code Buttons ===== */
.select-btn {
    padding: 10px 18px;
    border-radius: 10px;
    background: #f4f6f8;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.select-btn:hover {
    background: #e8efff;
    color: #2d6cdf;
}

.select-btn.active {
    background: #2d6cdf;
    color: #ffffff;
    border-color: #2d6cdf;
    box-shadow: 0 6px 16px rgba(45,108,223,0.3);
}

/* ===== Batch Help Link ===== */
.my-batch-sec a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2d6cdf;
    text-decoration: none;
}

.my-batch-sec a:hover {
    text-decoration: underline;
}

/* ===== Buttons ===== */
.btn-download,
.btn-know {
    height: 50px;
    padding: 0 22px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Download Button */
.btn-download {
    background: #3fc43f;
    color: #ffffff;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45,108,223,0.35);
}

/* Know Button */
.btn-know {
    background: #f1f3f6;
    color: #333;
}

.btn-know:hover {
    background: #e3e6ec;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .my-batch-sec h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .my-batch-sec {
        padding: 22px 18px;
    }

    .my-batch-sec h2 {
        font-size: 1.4rem;
    }

    .btn-download,
    .btn-know {
        width: 100%;
    }

    .my-batch-sec .d-flex {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .select-btn {
        flex: 1 1 100%;
        text-align: center;
    }

    .my-batch-sec span {
        font-size: 0.8rem;
    }
}

/* ===============================
   Contact Page 2 – Professional UI
================================== */

.contact-page-2 {
    padding: 80px 0;
    background: #f8f9fb;
}

.contact-page-2 .header-part {
    text-align: center;
    margin-bottom: 40px;
}

.contact-page-2 .header-part h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.4;
}

/* Form Card */
.contact-page-2 .form-part {
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Form Group */
.contact-page-2 .form-group {
    margin-bottom: 22px;
}

.contact-page-2 .submit-button{
    padding: 10px 35px;
    background: #3fc43f;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
}

/* Labels */
.contact-page-2 label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

/* Inputs & Textarea */
.contact-page-2 .from-control,
.contact-page-2 .form-control {
    width: 100%;
    height: 48px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.contact-page-2 textarea.form-control {
    height: auto;
    resize: none;
}

/* Focus Effect */
.contact-page-2 .from-control:focus,
.contact-page-2 .form-control:focus {
    border-color: #3fc43f;
    box-shadow: 0 0 0 3px rgba(72, 255, 0, 0.15);
}

/* Placeholder */
.contact-page-2 ::placeholder {
    color: #999;
}

/* ===============================
   Responsive Styles
================================== */

/* Tablet */
@media (max-width: 991px) {
    .contact-page-2 {
        padding: 60px 0;
    }

    .contact-page-2 .header-part h2 {
        font-size: 28px;
    }

    .contact-page-2 .form-part {
        padding: 30px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .contact-page-2 {
        padding: 40px 0;
    }

    .contact-page-2 .header-part h2 {
        font-size: 24px;
    }

    .contact-page-2 .form-part {
        padding: 22px;
        border-radius: 12px;
    }

    .contact-page-2 label {
        font-size: 13px;
    }

    .contact-page-2 .from-control,
    .contact-page-2 .form-control {
        height: 44px;
        font-size: 14px;
    }
}


/* ===============================
   OTP LOGIN / REGISTER DESIGN
   =============================== */

.ps-account {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa, #eef1f5);
    padding: 20px;
}

/* Card */
.ps-form--review {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
}

/* Title */
.ps-form__title {
    font-size: 24px;
    font-weight: 600;
    color: #222;
}

/* Label */
.ps-form__label {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin-bottom: 6px;
    display: block;
}

/* Input */
.ps-form__input {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 0 15px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.ps-form__input:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
}

/* Button */
.ps-btn--success {
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ps-btn--success:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.25);
}

/* Alerts */
.alert {
    border-radius: 10px;
    font-size: 14px;
}

/* Link */
.ps-account__link {
    font-size: 14px;
    color: #28a745;
    font-weight: 500;
    text-decoration: none;
}

.ps-account__link:hover {
    text-decoration: underline;
}

/* ===============================
   RESPONSIVE ADJUSTMENTS
   =============================== */

/* Mobile */
@media (max-width: 576px) {
    .ps-form--review {
        padding: 25px 20px;
    }

    .ps-form__title {
        font-size: 20px;
    }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 991px) {
    .ps-form--review {
        padding: 30px 25px;
    }
}


/* Breadcrumb Section */
.breadcrumb-section {
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    padding: 40px 0;
    border-bottom: 1px solid #e5e7eb;
}

/* Wrapper */
.breadcrumb-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Title */
.breadcrumb-title {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

/* Breadcrumb List */
.breadcrumb-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Breadcrumb Item */
.breadcrumb-modern .ps-breadcrumb__item {
    font-size: 14px;
    color: #6b7280;
    position: relative;
}

/* Breadcrumb Separator */
.breadcrumb-modern .ps-breadcrumb__item::after {
    content: "/";
    margin-left: 8px;
    color: #d1d5db;
}

/* Remove Separator from Last */
.breadcrumb-modern .ps-breadcrumb__item:last-child::after {
    display: none;
}

/* Links */
.breadcrumb-modern .ps-breadcrumb__item a {
    text-decoration: none;
    color: #2563eb;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-modern .ps-breadcrumb__item a:hover {
    color: #1e40af;
}

/* Active Item */
.breadcrumb-modern .ps-breadcrumb__item.active a {
    color: #111827;
    font-weight: 600;
    cursor: default;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 25px 0;
    }

    .breadcrumb-title {
        font-size: 22px;
    }
}


/* ===============================
   CART SECTION
================================= */
.cart_view {
    background: #f9fafb;
}

/* Cart List Wrapper */
.cart_list {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Table */
.cart_list table {
    width: 100%;
    border-collapse: collapse;
}

/* Table Head */
.cart_list table th {
    background: #f1f5f9;
    color: #1f2937;
    font-weight: 600;
    font-size: 14px;
    padding: 18px 15px;
    text-transform: uppercase;
}

/* Table Body */
.cart_list table td {
    padding: 18px 15px;
    vertical-align: middle;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
}

/* Product Name */
.pro_name a {
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 6px;
}

.pro_name p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

.pro_name p span {
    font-weight: 500;
    color: #374151;
}

/* Price */
.pro_status h6,
.pro_tk h6 {
    font-weight: 600;
    color: #16a34a;
    margin: 0;
}

/* Quantity Buttons */
.quentity_btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quentity_btn button {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    padding: 0;
}

.quentity_btn input {
    width: 45px;
    height: 34px;
    border-radius: 8px;
    background: #f3f4f6;
    font-weight: 600;
}

/* Delete Icon */
.pro_icon a {
    color: #ef4444;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.pro_icon a:hover {
    transform: scale(1.15);
}

/* Clear All */
.clear_all {
    color: #ef4444;
    font-weight: 500;
    text-decoration: none;
}

/* Checkout Button */
.ps-checkout {
    margin-top: 30px;
    text-align: right;
    margin-bottom: 30px;
}

.ps-checkout .ps-btn {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 10px;
}

/* ===============================
   EMPTY CART
================================= */
.cart_view .text-center img {
    filter: grayscale(20%);
}

/* ===============================
   RESPONSIVE DESIGN
================================= */
@media (max-width: 991px) {
    .cart_list table th {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .cart_list table thead {
        display: none;
    }

    .cart_list table,
    .cart_list table tbody,
    .cart_list table tr,
    .cart_list table td {
        display: block;
        width: 100%;
    }

    .cart_list table tr {
        background: #ffffff;
        margin-bottom: 20px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.06);
        padding: 15px;
    }

    .cart_list table td {
        border: none;
        padding: 10px 0;
    }

    .pro_img {
        text-align: center;
    }

    .pro_status,
    .pro_tk {
        display: flex;
        justify-content: space-between;
    }

    .pro_status::before {
        content: "Price";
        font-weight: 600;
        color: #374151;
    }

    .pro_tk::before {
        content: "Total";
        font-weight: 600;
        color: #374151;
    }

    .pro_icon {
        text-align: right;
        margin-top: 10px;
    }

    .ps-checkout {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .breadcrumb-title {
        font-size: 20px;
    }

    .quentity_btn {
        justify-content: center;
    }
}


/* Main Section */
.ay-register-section {
    padding: 60px 15px;
    background: linear-gradient(135deg, #f6fdf8, #e8f5ee);
    min-height: 100vh;
}

/* Container */
.ay-register-container {
    max-width: 1200px;
    margin: auto;
}

/* Layout */
.ay-register-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ay-register-col {
    width: 100%;
    max-width: 700px;
}

/* Form Card */
.ay-form-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

/* Titles */
.ay-form-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
    color: #2f6f4e;
}

.ay-form-subtitle {
    text-align: center;
    font-size: 14px;
    color: #6c8c7c;
    margin-bottom: 25px;
}

/* Messages */
.ay-form-error {
    color: #d32f2f;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
}

.ay-form-success {
    color: #2e7d32;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
}

/* Form Group */
.ay-form-group {
    margin-bottom: 18px;
}

.ay-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.ay-form-group input {
    width: 100%;
    height: 46px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
    transition: 0.3s;
}

.ay-form-group input:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 2px rgba(76,175,80,0.15);
}

/* Password Toggle */
.ay-password-box {
    position: relative;
}

.ay-password-toggle {
    position: absolute;
    top: 36px;
    right: 14px;
    cursor: pointer;
    color: #888;
}

/* Button */
.ay-submit-btn {
    width: 100%;
    height: 48px;
    background: #4caf50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.ay-submit-btn:hover {
    background: #43a047;
}

/* Login Link */
.ay-login-link {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
}

.ay-login-link a {
    color: #4caf50;
    font-weight: 600;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 480px) {
    .ay-form-card {
        padding: 25px 20px;
    }

    .ay-form-title {
        font-size: 24px;
    }
}
