.header .navbar-nav .logo-head
{
    width: 100%;
    max-width: 450px !important;
}

.category-box
{
    text-decoration: none;
}

.section-padding img
{
    width: 150px;
}

.daily-combo-sec
{
    padding: 3% 20px;
    background: #f2fbf2;
    text-align: center;
}
.daily-combo-sec h2
{
   font-weight: 700;
   font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
   position: relative;
   margin-bottom: 50px;
}
.daily-combo-sec h2::after
{
    content: '';
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translate(-50%);
    width: 100px;
    height: 4px;
    background-color: #3fc43f;
    border-radius: 30px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-img {
    position: relative;
    width: 100%;
    padding-top: 90%;
    overflow: hidden;
    background: #f8f8f8;
}

.product-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4d4d;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 50px;
    font-weight: 600;
}

.product-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: -10px;
    color: #333;
    line-height: 1.4;
    font-family: math;

    /* Single line overflow */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.price-box {
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
    margin-right: 8px;
}

.new-price {
    color: #28a745;
    font-size: 18px;
    font-weight: bold;
}

.cart-btn {
    margin-top: auto;
    padding: 10px;
    border: none;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.cart-btn:hover {
    background: linear-gradient(45deg, #218838, #17a2b8);
}


.about-section {
    position: relative;
    padding: 120px 20px 100px;
    background: url('https://quomodosoft.com/html/ecoshop/assets/images/homepage-one/page-title-banner.png');
    text-align: center;
    color: #fff;
    overflow: hidden;
}



.about-section .container {
    position: relative;
    z-index: 2;
}

.about-section h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: black;
}

/* Breadcrumb Styling */
.breadcrumb-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 16px;
}

.breadcrumb-custom li {
    color: #000000;
}

.breadcrumb-custom li a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.breadcrumb-custom li a:hover {
    color: #4CAF50;
}

.breadcrumb-custom .active {
    color: #4CAF50;
    font-weight: 600;
}

/* Tablet */
@media (max-width: 992px) {
    .about-section {
        padding: 90px 20px 80px;
    }

    .about-section h1 {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-section {
        padding: 70px 15px 60px;
    }

    .about-section h1 {
        font-size: 28px;
    }

    .breadcrumb-custom {
        font-size: 14px;
        gap: 8px;
        flex-wrap: wrap;
    }
    .daily-combo-sec h2::after {
        top: 70px;
    }
}

.contact-page {
    background: #ffffff;
    padding: 80px 0;
}

/* Make columns stretch equal height */
.contact-page .row.align-items-stretch > [class*='col-'] {
    display: flex;
}

/* Left Card */
.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.07);
    border: 1px solid #f1f1f1;
    width: 100%;
    height: 100%;
}

/* Right Form Card */
.form-card {
    background: #fff;
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.07);
    border: 1px solid #f1f1f1;
    width: 100%;
    height: 100%;
}

.contact-heading h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-heading p {
    font-size: 15px;
    color: #777;
    margin-bottom: 30px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 20px;
}

.contact-list a {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    background: #fafafa;
    border: 1px solid #eee;
    transition: 0.3s;
}

.contact-list a:hover {
    border-color: #28a745;
    background: #f4fff7;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.icon-box i {
    color: #fff;
    font-size: 18px;
}

.label {
    font-size: 13px;
    color: #888;
}

.info {
    font-weight: 600;
    color: #222;
}

.form-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Inputs */
.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #28a745;
    box-shadow: none;
}

/* Button */
.submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    border: none;
    background: #28a745;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #1e7e34;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-card,
    .form-card {
        padding: 35px 25px;
        height: auto; /* Mobile me natural height */
    }
}

.social-medi-sec {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 0;
}

/* Base Icon Design */
.icon-part {
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    background: #28a745;
}

/* Glow Effect */
.icon-part::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(0);
    transition: 0.4s ease;
    z-index: -1;
}

/* Hover Animation */
.icon-part:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Instagram */
.instagram::before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.instagram:hover::before {
    transform: scale(1);
}

/* Facebook */
.facebook::before {
    background: #1877f2;
}
.facebook:hover::before {
    transform: scale(1);
}

/* LinkedIn */
.linkedin::before {
    background: #0077b5;
}
.linkedin:hover::before {
    transform: scale(1);
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .icon-part {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

.contact-page .form-card .form-control
{
    line-height: 1.7;
}


.map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fff9, #f3fdf6);
    position: relative;
}

/* Wrapper */
.map-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Map */
.map-wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
    filter: grayscale(20%) contrast(105%) brightness(98%);
    transition: 0.5s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(110%) brightness(100%);
    transform: scale(1.02);
}

/* Overlay Card */
.map-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: fadeUp 1s ease forwards;
}

.map-overlay h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.map-overlay p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* Button */
.direction-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: #28a745;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.direction-btn:hover {
    background: #1e7e34;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 400px;
    }

    .map-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: 100%;
    }
}

.about-real-section {
    width: 100%;
    overflow: hidden;
}

.about-banner {
    width: 100%;
    height: 70vh;
    position: relative;
}

.about-banner img {
    width: 100%;
    height: 100%;          /* Desktop height */
    object-fit: contain;      /* Image crop properly */
    display: block;
}

/* Tablet */
@media (max-width: 992px) {
    .about-banner img {
        height: 350px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-banner img {
        height: 250px;
    }
}

.about-page {
    padding: 80px 0;
    background: linear-gradient(180deg, #f9fbf8, #ffffff);
    font-family: 'Poppins', sans-serif;
}

.about-page .about-content
{
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-page h2
{
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    position: relative;
}
.about-page h2::after
{
    content: "";
    width: 80px;
    height: 4px;
    background: #4CAF50;
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 4px;
}
.about-page p
{
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.about-page ul
{
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}
.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;
}


/* ============================= */
/* Product Hero Section Design  */
/* ============================= */

.product-hero {
    position: relative;
    padding: 120px 20px 100px;
    background: url(https://quomodosoft.com/html/ecoshop/assets/images/homepage-one/page-title-banner.png);
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Soft background design element */
.product-hero::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.product-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 15px;
    font-size: 14px;
    opacity: 0.85;
}

.breadcrumb a {
    color: #000000;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    margin: 0 6px;
}

.breadcrumb .active {
    color: #000000;
    font-weight: 600;
}

/* Heading */
.product-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;color: black;
}

/* Subtitle */
.product-hero p {
    font-size: 18px;
    color: #e2e8f0;
}

/* ============================= */
/* Responsive Design             */
/* ============================= */

@media (max-width: 992px) {
    .product-hero {
        padding: 80px 0;
    }

    .product-hero h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 70px 0;
        text-align: center;
    }

    .product-hero-content {
        margin: auto;
    }

    .product-hero h1 {
        font-size: 32px;
    }

    .product-hero p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .product-hero {
        padding: 60px 0;
    }

    .product-hero h1 {
        font-size: 26px;
    }

    .breadcrumb {
        font-size: 13px;
    }
}

.product-hero .product-hero-content .breadcrumb
{
    text-align: center !important;
}

/* ===============================
   PRODUCT DETAIL SECTION
================================= */

.product-detail {
    padding: 60px 20px;
    background: #f8f9fb;
}

/* Layout spacing */
.product-detail .row {
    align-items: center;
}

/* ===============================
   LEFT PART (IMAGES)
================================= */

.left-part {
    display: flex;
    gap: 20px;
}

/* Thumbnail List */
.product-thumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-thumb-list li {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-thumb-list li img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.product-thumb-list li:hover {
    transform: scale(1.05);
}

.product-thumb-list li.active {
    border: 2px solid #2ecc71;
}

/* Main Image Frame */
.img-frame {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-frame img {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.img-frame img:hover {
    transform: scale(1.05);
}

/* ===============================
   RIGHT PART (CONTENT)
================================= */

.right-part {
    padding: 20px 10px;
    max-width: 600px;
}

.right-part h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

.right-part strong {
    display: block;
    font-size: 15px;
    color: #777;
    margin-bottom: 20px;
}

/* Price Section */
.right-part ul:first-of-type {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.right-part ul:first-of-type strong {
    font-size: 26px;
    color: #2ecc71;
}

.right-part ul:first-of-type span {
    font-size: 20px;
    color: #ffffff;
    /* text-decoration: line-through; */
}

/* Description */
.right-part b {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.right-part p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* ===============================
   BUTTONS
================================= */

.right-part ul:last-of-type {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.right-part ul:last-of-type button {
    flex: 1;
    padding: 14px 18px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Add To Cart Button */
.right-part ul:last-of-type button:first-child {
    background: #2ecc71;
    color: #fff;
}

.right-part ul:last-of-type button:first-child:hover {
    background: #27ae60;
    transform: translateY(-3px);
}

/* Buy Now Button */
.right-part ul:last-of-type button:last-child {
    background: #111;
    color: #fff;
}

.right-part ul:last-of-type button:last-child:hover {
    background: #333;
    transform: translateY(-3px);
}

/* Payment Image */
.right-part a img {
    max-width: 100%;
    margin-top: 10px;
    opacity: 0.9;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

/* Tablet */
@media (max-width: 992px) {

    .left-part {
        flex-direction: column-reverse;
        align-items: center;
    }

    .product-thumb-list {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .product-thumb-list li img {
        width: 60px;
        height: 60px;
    }

    .img-frame {
        width: 100%;
    }

    .right-part {
        text-align: center;
    }

    .right-part ul:first-of-type,
    .right-part ul:last-of-type {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .product-detail {
        padding: 40px 15px;
    }

    .img-frame {
        padding: 15px;
    }

    .right-part h2 {
        font-size: 22px;
    }

    .right-part ul:first-of-type strong {
        font-size: 20px;
    }

    .right-part ul:last-of-type {
        flex-direction: column;
    }

    .right-part ul:last-of-type button {
        width: 100%;
    }

    .product-thumb-list li img {
        width: 55px;
        height: 55px;
    }
}

/* ===============================
   REVIEW SECTION - PREMIUM DESIGN
================================= */

.my-review-section {
    padding: 20px 15px;
    background: #f3fdf6;
}

/* Card Design */
.review-card {
    background: linear-gradient(145deg, #ffffff, #ffffff);
    border-radius: 20px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    max-width: 1000px;
    margin: auto;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Title */
.review-title {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    position: relative;
    padding-bottom: 8px;
}

.review-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #28a745, #ffc107);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px;
}

/* ===============================
   STAR RATING DESIGN
================================= */

.star-rating {
    gap: 8px;
}

.star-rating i {
    font-size: 26px;
    cursor: pointer;
    transition: 0.3s ease;
    color: #ccc;
}

.star-rating i:hover {
    transform: scale(1.2);
    color: #ffc107;
}

.star-rating i.active {
    color: #ffc107;
    text-shadow: 0 4px 12px rgba(255, 193, 7, 0.5);
}

/* ===============================
   TEXTAREA DESIGN
================================= */

.review-textarea {
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding: 14px;
    font-size: 14px;
    transition: 0.3s ease;
    resize: none;
}

.review-textarea:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
}

/* ===============================
   BUTTON DESIGN
================================= */

.submit-review-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    border: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 12px;
    transition: 0.3s ease;
    letter-spacing: 0.5px;
}

.submit-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.35);
}

.submit-review-btn:active {
    transform: scale(0.98);
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

/* Tablets */
@media (max-width: 992px) {
    .review-card {
        padding: 25px !important;
    }

    .review-title {
        font-size: 18px;
    }

    .star-rating i {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .review-card {
        padding: 20px !important;
        border-radius: 16px !important;
    }

    .review-title {
        font-size: 17px;
    }

    .star-rating {
        justify-content: center;
    }

    .star-rating i {
        font-size: 22px;
    }

    .submit-review-btn {
        padding: 10px;
        font-size: 14px;
    }
}

/* =========================================
   BATCH SECTION - PREMIUM PRODUCT VERIFY UI
========================================= */

.my-batch-sec {
    padding: 40px 15px;
}

/* Left Content Styling */
.my-batch-sec span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #28a745;
    display: inline-block;
    margin-bottom: 6px;
}

.my-batch-sec h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

/* ===============================
   INPUT FIELD DESIGN
================================= */

.my-batch-sec .form-control {
    height: 48px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.my-batch-sec .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
}

/* ===============================
   BATCH CODE BUTTONS
================================= */

.select-btn {
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: #f8f9fa;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-btn:hover {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
    transform: translateY(-2px);
}

.select-btn.active {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* ===============================
   LINK STYLE
================================= */

.my-batch-sec a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    position: relative;
    transition: 0.3s ease;
}

.my-batch-sec a::after {
    content: "";
    width: 0%;
    height: 1px;
    background: #28a745;
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: 0.3s ease;
}

.my-batch-sec a:hover {
    color: #28a745;
}

.my-batch-sec a:hover::after {
    width: 100%;
}

/* ===============================
   BUTTON DESIGN
================================= */

.btn-download {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.25);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(40, 167, 69, 0.35);
}

.btn-download:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Secondary Button */
.btn-know {
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn-know:hover {
    background: #222;
    color: #fff;
    border-color: #222;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

/* Tablet */
@media (max-width: 992px) {

    .my-batch-sec h2 {
        font-size: 26px;
    }

    .btn-download,
    .btn-know {
        width: 100%;
    }

    .my-batch-sec .d-flex {
        flex-direction: column;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .my-batch-sec {
        padding: 30px 15px;
    }

    .my-batch-sec h2 {
        font-size: 22px;
    }

    .select-btn {
        font-size: 12px;
        padding: 6px 14px;
    }

    .my-batch-sec .form-control {
        height: 44px;
        font-size: 13px;
    }
}

/* ===============================
   Dashboard Layout
================================== */

.profile-dashboard {
    background: #f4f6f9;
    padding: 60px 0;
}

/* Sidebar */
.dashboard-sidebar {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.dashboard-title {
    font-weight: 700;
    margin-bottom: 25px;
}

.dashboard-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-menu li {
    margin-bottom: 15px;
}

.dashboard-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 10px;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.dashboard-menu a:hover,
.dashboard-menu a.active {
    background: #039545;
    color: #fff;
}

/* Card */
.dashboard-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.card-header h3 {
    font-weight: 700;
    margin-bottom: 5px;
}

.card-header p {
    color: #777;
    margin-bottom: 30px;
}

/* Floating Input Style */
.form-floating-custom {
    position: relative;
}

.form-floating-custom input {
    width: 100%;
    height: 55px;
    padding: 18px 15px 0;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #f9fafb;
    transition: 0.3s;
}

.form-floating-custom label {
    position: absolute;
    top: 16px;
    left: 15px;
    font-size: 14px;
    color: #777;
    transition: 0.3s;
    pointer-events: none;
}

.form-floating-custom input:focus {
    border-color: #039545;
    background: #fff;
}

.form-floating-custom input:focus + label,
.form-floating-custom input:not(:placeholder-shown) + label {
    top: 6px;
    font-size: 12px;
    color: #039545;
}

/* Button */
.btn-save {
    background: #039545;
    color: #fff;
    padding: 12px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-save:hover {
    background: #027a39;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3,149,69,0.3);
}

/* ===============================
   Responsive
================================== */

@media (max-width: 991px) {
    .profile-dashboard {
        padding: 40px 0;
    }

    .dashboard-card {
        padding: 30px;
    }
}

@media (max-width: 767px) {

    .dashboard-sidebar {
        margin-bottom: 25px;
    }

    .dashboard-menu a {
        justify-content: center;
    }

    .dashboard-card {
        padding: 20px;
    }

    .btn-save {
        width: 100%;
    }
}

/* ===============================
   Account Dashboard Layout
================================== */

.account-dashboard {
    background: #f4f6f9;
    padding: 60px 0;
}

/* Sidebar */
.account-sidebar {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.account-title {
    font-weight: 700;
    margin-bottom: 25px;
}

.account-menu {
    list-style: none;
    padding: 0;
}

.account-menu li {
    margin-bottom: 15px;
}

.account-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 10px;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.account-menu a:hover,
.account-menu a.active {
    background: #039545;
    color: #fff;
}

/* Card */
.account-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.card-header h3 {
    font-weight: 700;
    margin-bottom: 5px;
}

.card-header p {
    color: #777;
    margin-bottom: 30px;
}

/* Inputs */
.custom-input {
    height: 55px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 0 15px;
    background: #f9fafb;
    transition: 0.3s;
}

.custom-input:focus {
    border-color: #039545;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(3,149,69,0.1);
}

/* Button */
.btn-save {
    background: #039545;
    color: #fff;
    padding: 12px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-save:hover {
    background: #027a39;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3,149,69,0.3);
}

/* ===============================
   Responsive
================================== */

@media (max-width: 991px) {
    .account-dashboard {
        padding: 40px 0;
    }

    .account-card {
        padding: 30px;
    }
}

@media (max-width: 767px) {

    .account-sidebar {
        margin-bottom: 25px;
    }

    .account-menu a {
        justify-content: center;
    }

    .account-card {
        padding: 20px;
    }

    .btn-save {
        width: 100%;
    }
}

/* =====================================
   Account Dashboard - Premium Design
===================================== */

.account-wrapper {
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    padding: 70px 0;
}

/* ================= Sidebar ================= */

.account-sidebar {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    height: 100%;
}

.account-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.account-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.account-link {
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 500;
    color: #444;
    transition: 0.3s ease;
    position: relative;
}

.account-link:hover {
    background: rgba(3,149,69,0.08);
    color: #039545;
    transform: translateX(6px);
}

/* Active Link */
.account-link.active {
    background: rgba(3,149,69,0.12);
    color: #039545;
    font-weight: 600;
    border-left: 4px solid #039545;
}

/* ================= Content Card ================= */

.account-content {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 70px 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Empty State */

.empty-orders {
    text-align: center;
    max-width: 400px;
}

.empty-img {
    width: 90px;
    margin-bottom: 25px;
    opacity: 0.85;
}

.empty-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.empty-subtitle {
    font-size: 15px;
    color: #777;
    margin-bottom: 25px;
}

/* Button */

.shop-btn {
    display: inline-block;
    padding: 13px 35px;
    border-radius: 50px;
    background: linear-gradient(135deg, #039545, #027a39);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.shop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(3,149,69,0.35);
}

/* ================= Responsive ================= */

@media (max-width: 991px) {

    .account-wrapper {
        padding: 50px 0;
    }

    .account-sidebar {
        margin-bottom: 30px;
    }

    .account-content {
        padding: 50px 25px;
    }
}

@media (max-width: 767px) {

    .account-title {
        text-align: center;
        font-size: 24px;
    }

    .account-sidebar {
        text-align: center;
    }

    .account-link {
        justify-content: center;
    }

    .account-content {
        padding: 40px 20px;
    }

    .shop-btn {
        width: 100%;
    }
}


/* ===============================
   BREADCRUMB SECTION
=================================*/
.breadcrumb-section {
    position: relative;
    padding: 120px 20px 100px;
    background: url('https://quomodosoft.com/html/ecoshop/assets/images/homepage-one/page-title-banner.png');
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.breadcrumb-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
    color: #222;
}

.ps-breadcrumb li a {
    text-decoration: none;
    color: #777;
    font-weight: 500;
}

.ps-breadcrumb li.active a {
    color: #28a745;
    font-weight: 600;
}

/* ===============================
   CART TABLE DESIGN
=================================*/
.cart_list {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cart_list table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.cart_list table th {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #888;
    padding: 12px;
}

.cart_list table td {
    background: #fff;
    padding: 18px 12px;
    vertical-align: middle;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    font-weight: 600;
}

.cart_list table tr {
    transition: 0.3s ease;
}

.cart_list table tr:hover td {
    background: #f9fbff;
}

/* Product Name */
.pro_name a {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
}

.pro_name a:hover {
    color: #28a745;
}

/* Price */
.pro_status h6,
.pro_tk h6 {
    font-size: 16px;
    font-weight: 600;
    color: #28a745;
}

/* ===============================
   QUANTITY BUTTON
=================================*/
.quentity_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quentity_btn button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quentity_btn .btn-danger {
    background: #ff4d4f;
}

.quentity_btn .btn-success {
    background: #28a745;
}

.quentity_btn button:hover {
    transform: scale(1.1);
}

.quentity_btn input {
    width: 45px;
    height: 32px;
    font-weight: 600;
    background: #f8f9fa;
    border-radius: 6px;
}

/* ===============================
   DELETE ICON
=================================*/
.pro_icon a {
    font-size: 18px;
    color: #dc3545;
    transition: 0.3s;
}

.pro_icon a:hover {
    color: #a71d2a;
    transform: scale(1.2);
}

/* ===============================
   CHECKOUT BUTTON
=================================*/
.ps-checkout {
    text-align: right;
    margin-top: 30px;
    margin-bottom: 30px;
}

.ps-btn--success {
    background: linear-gradient(135deg, #28a745, #20c997);
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    color: #fff !important;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(40,167,69,0.3);
}

.ps-btn--success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40,167,69,0.4);
}

/* ===============================
   EMPTY CART DESIGN
=================================*/
.text-center.py-5 img {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.text-center h3 {
    font-weight: 600;
    margin-top: 20px;
}

.text-center .btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
}

/* ===============================
   RESPONSIVE DESIGN
=================================*/

/* Tablet */
@media (max-width: 991px) {
    .breadcrumb-title {
        font-size: 26px;
    }

    .cart_list {
        padding: 15px;
    }

    .ps-checkout {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .cart_list table,
    .cart_list thead,
    .cart_list tbody,
    .cart_list th,
    .cart_list td,
    .cart_list tr {
        display: block;
        width: 100%;
    }

    .cart_list table tr {
        margin-bottom: 20px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        padding: 15px;
    }

    .cart_list table th {
        display: none;
    }

    .cart_list table td {
        border: none;
        padding: 10px 0;
        text-align: left;
    }

    .pro_img {
        text-align: center;
    }

    .quentity_btn {
        justify-content: flex-start;
    }

    .ps-btn--success {
        width: 100%;
    }
}

/* Extra Small */
@media (max-width: 480px) {
    .breadcrumb-title {
        font-size: 22px;
    }

    .ps-btn--success {
        padding: 12px;
        font-size: 14px;
    }
}

/* ================================
   Checkout Main Wrapper
================================ */
.ps-checkout {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

/* ================================
   Breadcrumb
================================ */
.ps-breadcrumb {
    background: #ffffff;
    padding: 14px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-size: 14px;
    text-align: left;
}

.ps-breadcrumb__item a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: 0.3s;
}

.ps-breadcrumb__item a:hover {
    color: #0abb75;
}

.ps-breadcrumb__item.active a {
    color: #0abb75;
    font-weight: 600;
}

/* ================================
   Form Section
================================ */
.ps-checkout__form {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.ps-checkout__heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    text-align: left;
}

.ps-checkout__heading::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #0abb75;
    position: absolute;
    left: 0;
    bottom: -8px;
}

/* ================================
   Form Groups
================================ */
.ps-checkout__group {
    margin-bottom: 20px;
    text-align: justify;
}

.ps-checkout__group label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    font-size: 14px;
}

.ps-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f9fafc;
    transition: 0.3s ease;
    font-size: 14px;
}

.ps-input:focus {
    border-color: #0abb75;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(10, 187, 117, 0.15);
    outline: none;
}

/* ================================
   Order Summary Card
================================ */
.ps-checkout__order {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: sticky;
    top: 20px;
}

.ps-checkout__order h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

/* Order Rows */
.ps-checkout__row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #e4e6eb;
    font-size: 14px;
}

.ps-checkout__row:last-child {
    border-bottom: none;
    font-size: 16px;
    margin-top: 10px;
}

/* ================================
   Payment Section
================================ */
.ps-checkout__payment {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.ps-checkout__payment label {
    display: flex;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
    gap: 8px;
    font-size: 14px;
}

.ps-checkout__payment input[type="radio"] {
    accent-color: #0abb75;
    width: 16px;
    height: 16px;
}

/* ================================
   Button Styling
================================ */
.ps-btn--success {
    background: linear-gradient(135deg, #0abb75, #08a463);
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(10, 187, 117, 0.25);
}

.ps-btn--success:hover {
    background: linear-gradient(135deg, #089e5e, #067a48);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(10, 187, 117, 0.35);
}

/* ================================
   Tablet Responsive
================================ */
@media (max-width: 991px) {

    .ps-checkout {
        padding: 40px 0;
    }

    .ps-checkout__form,
    .ps-checkout__order {
        padding: 25px;
    }

    .ps-checkout__heading {
        font-size: 20px;
    }

}

/* ================================
   Mobile Responsive
================================ */
@media (max-width: 575px) {

    .ps-checkout {
        padding: 30px 0;
    }

    .ps-checkout__form {
        padding: 20px;
        border-radius: 12px;
    }

    .ps-checkout__order {
        padding: 20px;
        margin-top: 25px;
        position: relative;
        top: auto;
    }

    .ps-checkout__heading {
        font-size: 18px;
    }

    .ps-checkout__row {
        font-size: 13px;
    }

    .ps-btn--success {
        font-size: 14px;
        padding: 10px;
    }

}