* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111827;
    background: #ffffff;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

a {
    text-decoration: none;
}

.top-bar {
    background: #003f9e;
    color: #ffffff;
    font-size: 13px;
    padding: 8px 0;
}

.top-content {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.top-content span {
    margin-right: 18px;
}

.navbar {
    background: #ffffff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 99;
}

.nav-content {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
}

.site-logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
    display: block;
    background: #ffffff;
    border-radius: 8px;
}

.logo h2 {
    color: #0046a8;
    font-size: 24px;
    line-height: 1;
}

.logo p {
    color: #18844b;
    font-size: 20px;
    font-weight: 700;
}

nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

nav a {
    color: #111827;
    font-size: 15px;
    font-weight: 700;
}

nav a.active {
    color: #003f9e;
}

.contact-btn,
.btn-primary {
    background: #003f9e;
    color: #ffffff;
    padding: 13px 22px;
    border-radius: 6px;
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    border: none;
    background: #003f9e;
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}

.cart-count {
    background: #ef4444;
    color: #ffffff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 20px;
    margin-left: 4px;
}

.user-label {
    color: #18844b;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 700;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 700;
}

.main-home {
    background: #f8fbff;
    padding: 25px 0 55px;
}

.home-grid {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 25px;
    align-items: start;
}

.category-sidebar {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
    padding: 14px;
    position: sticky;
    top: 110px;
}

.category-sidebar h3 {
    color: #003f9e;
    font-size: 17px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.category-link {
    width: 100%;
    border: none;
    background: #ffffff;
    color: #1f2937;
    padding: 8px 10px;
    border-radius: 8px;
    text-align: left;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 38px;
    line-height: 1.2;
    transition: all 0.25s ease;
    padding: 8px 10px;
}

.category-link i {
    width: 20px;
    min-width: 20px;
    color: #003f9e;
    font-size: 15px;
    text-align: center;
}

.category-link:hover,
.category-link.active {
    background: #003f9e;
    color: #ffffff;
}

.category-link:hover i,
.category-link.active i {
    color: #ffffff;
}

.sidebar-contact {
    margin-top: 22px;
    padding: 18px;
    background: #eaf4ff;
    border-radius: 10px;
    text-align: center;
}

.sidebar-contact i {
    font-size: 34px;
    color: #003f9e;
    margin-bottom: 10px;
}

.sidebar-contact h4 {
    margin-bottom: 8px;
    color: #003f9e;
}

.sidebar-contact p {
    color: #4b5563;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 14px;
}

.sidebar-contact a {
    background: #18844b;
    color: #ffffff;
    padding: 9px 16px;
    border-radius: 5px;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
}

.home-body {
    min-width: 0;
}

.hero-slider {
    background: #eaf4ff;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.slide {
    display: none;
    animation: fadeSlide 0.6s ease-in-out;
}

.slide.active {
    display: block;
}

.slide-content {
    min-height: 360px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 25px;
    padding: 45px;
}

.slide-text h1 {
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.slide-text h1 span {
    color: #18844b;
}

.slide-text p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 480px;
}

.slide-buttons {
    display: flex;
    gap: 14px;
}

.btn-outline {
    border: 2px solid #003f9e;
    color: #003f9e;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 700;
    background: #ffffff;
}

.slide-icons {
    min-height: 250px;
    background: linear-gradient(135deg, #ffffff, #dceeff);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 25px;
}

.slide-icon {
    width: 110px;
    height: 110px;
    background: #ffffff;
    color: #003f9e;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 63, 158, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-icon i {
    font-size: 42px;
}

.slide-icon.big {
    width: 145px;
    height: 145px;
}

.slide-icon.big i {
    font-size: 58px;
}

.slide-icon.small {
    width: 95px;
    height: 95px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #003f9e;
    color: #ffffff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
}

.slider-btn.prev {
    left: 14px;
}

.slider-btn.next {
    right: 14px;
}

.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
}

.slider-dots button {
    width: 11px;
    height: 11px;
    border: none;
    border-radius: 50%;
    background: #aac7e8;
    cursor: pointer;
}

.slider-dots button.active {
    width: 26px;
    border-radius: 20px;
    background: #003f9e;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sort-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 25px;
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.sort-box div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sort-box label {
    font-size: 13px;
    color: #003f9e;
    font-weight: 700;
}

.sort-box select {
    min-width: 170px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 10px 12px;
    font-weight: 600;
    color: #1f2937;
    background: #ffffff;
    cursor: pointer;
}

.product-block {
    background: #ffffff;
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 26px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.block-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.block-title h2 {
    color: #003f9e;
    font-size: 24px;
}

.block-title span {
    color: #6b7280;
    font-size: 14px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 20px 15px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.product-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #eaf4ff;
    color: #003f9e;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon i {
    font-size: 38px;
}

.product-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
}

.product-card p {
    color: #4b5563;
    font-size: 13px;
    line-height: 1.5;
    min-height: 40px;
}

.product-date {
    font-size: 12px;
    color: #6b7280;
    margin-top: 10px;
}

.product-date i {
    color: #003f9e;
    margin-right: 5px;
}

.product-bottom {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-bottom strong {
    color: #18844b;
    font-size: 17px;
}

.add-cart-btn {
    border: none;
    background: #003f9e;
    color: #ffffff;
    padding: 8px 13px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.add-cart-btn i {
    margin-right: 4px;
}

.no-products {
    display: none;
    background: #ffffff;
    text-align: center;
    padding: 35px;
    border-radius: 12px;
    color: #6b7280;
}

.no-products i {
    font-size: 42px;
    margin-bottom: 12px;
    color: #9ca3af;
}

.about {
    padding: 55px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 35px;
    align-items: center;
}

.about-card {
    background: #eaf4ff;
    border-radius: 14px;
    padding: 35px;
    text-align: center;
}

.about-card i {
    font-size: 58px;
    color: #003f9e;
    margin-bottom: 15px;
}

.about-card h3 {
    color: #003f9e;
    margin-bottom: 10px;
}

.about h2 {
    color: #003f9e;
    margin-bottom: 15px;
}

.about p {
    color: #4b5563;
    line-height: 1.7;
}

.footer {
    background: #eaf4ff;
    padding-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding-bottom: 35px;
}

.footer h3 {
    color: #003f9e;
    margin-bottom: 16px;
}

.footer p {
    color: #1f2937;
    margin-bottom: 10px;
}

.social-icons i {
    width: 38px;
    height: 38px;
    background: #003f9e;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
}

.copyright {
    background: #003f9e;
    color: #ffffff;
    text-align: center;
    padding: 15px;
}

.cart-page {
    background: #f8fbff;
    min-height: 80vh;
    padding: 45px 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.cart-header h1 {
    color: #003f9e;
}

.continue-btn {
    background: #003f9e;
    color: #ffffff;
    padding: 11px 18px;
    border-radius: 6px;
    font-weight: 700;
}

.empty-cart {
    background: #ffffff;
    text-align: center;
    padding: 60px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.empty-cart i {
    font-size: 60px;
    color: #003f9e;
    margin-bottom: 18px;
}

.empty-cart h2 {
    margin-bottom: 10px;
}

.empty-cart p {
    color: #6b7280;
    margin-bottom: 20px;
}

.empty-cart a {
    background: #003f9e;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 700;
}

.cart-box {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 25px;
    align-items: start;
}

.cart-table {
    width: 100%;
    background: #ffffff;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.cart-table th {
    background: #003f9e;
    color: #ffffff;
    padding: 14px;
    text-align: left;
}

.cart-table td {
    padding: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-icon {
    width: 42px;
    height: 42px;
    background: #eaf4ff;
    color: #003f9e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-input {
    width: 70px;
    padding: 8px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
}

.remove-btn {
    background: #ef4444;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
}

.cart-summary {
    background: #ffffff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.cart-summary h3 {
    color: #003f9e;
    margin-bottom: 18px;
}

.cart-summary div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 18px;
}

.cart-summary strong {
    color: #18844b;
}

.update-cart-btn,
.clear-cart-btn,
.checkout-btn {
    width: 100%;
    display: block;
    text-align: center;
    border: none;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}

.update-cart-btn {
    background: #003f9e;
    color: #ffffff;
}

.clear-cart-btn {
    background: #f97316;
    color: #ffffff;
}

.checkout-btn {
    background: #18844b;
    color: #ffffff;
}

.auth-page {
    background: #f8fbff;
    min-height: 75vh;
    padding: 55px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.auth-card {
    width: 92%;
    max-width: 430px;
    background: #ffffff;
    border-radius: 14px;
    padding: 35px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.auth-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #eaf4ff;
    color: #003f9e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.auth-card h1 {
    color: #003f9e;
    margin-bottom: 8px;
}

.auth-card > p {
    color: #6b7280;
    margin-bottom: 22px;
}

.form-group {
    text-align: left;
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 7px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    border: 1px solid #cbd5e1;
    padding: 12px 14px;
    border-radius: 7px;
    font-size: 15px;
}

.form-group input:focus {
    outline: none;
    border-color: #003f9e;
}

.auth-btn {
    width: 100%;
    border: none;
    background: #003f9e;
    color: #ffffff;
    padding: 13px;
    border-radius: 7px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
}

.auth-link {
    margin-top: 20px;
    color: #4b5563;
    font-size: 14px;
}

.auth-link a {
    color: #003f9e;
    font-weight: 700;
}

.demo-login {
    margin-top: 20px;
    background: #eaf4ff;
    color: #1f2937;
    padding: 14px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .contact-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: absolute;
        top: 88px;
        left: 0;
        right: 0;
        background: #ffffff;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
    }

    nav.show {
        display: flex;
    }

    nav a,
    nav .user-label {
        padding: 15px 5%;
        border-bottom: 1px solid #e5e7eb;
    }

    .home-grid {
        grid-template-columns: 1fr;
    }

    .category-sidebar {
        position: static;
    }

    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .slide-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .slide-buttons {
        justify-content: center;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content,
    .footer-grid,
    .cart-box {
        grid-template-columns: 1fr;
    }

    .cart-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .top-content {
        flex-direction: column;
        text-align: center;
    }

    .logo h2 {
        font-size: 20px;
    }

    .logo p {
        font-size: 17px;
    }

    .site-logo {
        width: 50px;
        height: 50px;
    }

    .slide-content {
        padding: 35px 20px 60px;
    }

    .slide-text h1 {
        font-size: 34px;
    }

    .slide-buttons {
        flex-direction: column;
    }

    .slide-icons {
        flex-direction: column;
    }

    .slider-btn {
        display: none;
    }

    .sort-box {
        flex-direction: column;
    }

    .sort-box select {
        width: 100%;
    }

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

    .block-title {
        flex-direction: column;
        align-items: start;
        gap: 6px;
    }

    .product-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .add-cart-btn {
        width: 100%;
    }

    .cart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

.booking-menu-section {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 30px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.booking-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.booking-section-header h2 {
    color: #003f9e;
    font-size: 24px;
    margin-bottom: 5px;
}

.booking-section-header p {
    color: #6b7280;
    font-size: 14px;
}

.booking-slider-actions {
    display: flex;
    gap: 10px;
}

.booking-slider-actions button {
    width: 38px;
    height: 38px;
    border: none;
    background: #003f9e;
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
}

.booking-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.booking-slider-track {
    display: flex;
    gap: 18px;
    transition: transform 0.45s ease;
}

.booking-menu-card {
    min-width: calc((100% - 36px) / 3);
    background: #f8fbff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.booking-menu-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    background: #eaf4ff;
    color: #003f9e;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.booking-menu-content span {
    display: inline-block;
    color: #18844b;
    background: #ecfdf5;
    padding: 4px 9px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 9px;
}

.booking-menu-content h3 {
    color: #111827;
    font-size: 16px;
    margin-bottom: 8px;
}

.booking-menu-content p {
    color: #4b5563;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 14px;
}

.booking-menu-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.booking-menu-bottom strong {
    color: #18844b;
    font-size: 15px;
}

.booking-menu-bottom a {
    background: #003f9e;
    color: #ffffff;
    padding: 8px 13px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .booking-menu-card {
        min-width: calc((100% - 18px) / 2);
    }
}

@media (max-width: 576px) {
    .booking-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .booking-menu-card {
        min-width: 100%;
        flex-direction: column;
    }

    .booking-menu-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-menu-bottom a {
        width: 100%;
        text-align: center;
    }
}

.slide-image-box {
    min-height: 250px;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 63, 158, 0.15);
}

.slide-image-box img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
}

.admin-slide-thumb {
    width: 95px;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.slide-preview-box {
    margin-bottom: 18px;
    background: #f8fbff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px;
}

.slide-preview-box img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.form-group small {
    display: block;
    color: #6b7280;
    font-size: 12px;
    margin-top: 6px;
}

@media (max-width: 576px) {
    .slide-image-box img {
        height: 230px;
    }
}

.social-login-box {
    margin-top: 22px;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.social-login-box p {
    color: #6b7280;
    margin-bottom: 14px;
    font-weight: 700;
}

.social-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 7px;
    font-weight: 700;
    margin-bottom: 10px;
}

.social-btn.google {
    background: #ffffff;
    color: #111827;
    border: 1px solid #d1d5db;
}

.social-btn.facebook {
    background: #1877f2;
    color: #ffffff;
}

.social-btn.apple {
    background: #111111;
    color: #ffffff;
}

.promotion-page {
    background: #f8fbff;
    min-height: 75vh;
    padding: 45px 0;
}

.promotion-header {
    text-align: center;
    margin-bottom: 35px;
}

.promotion-header h1 {
    color: #003f9e;
    font-size: 34px;
    margin-bottom: 8px;
}

.promotion-header p {
    color: #6b7280;
}

.promotion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.promotion-card {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
    transition: all 0.25s ease;
}

.promotion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.promotion-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #ef4444;
    color: #ffffff;
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.promotion-image {
    height: 190px;
    background: #eaf4ff;
    overflow: hidden;
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotion-icon {
    height: 190px;
    background: #eaf4ff;
    color: #003f9e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
}

.promotion-content {
    padding: 22px;
}

.promotion-content h3 {
    color: #111827;
    font-size: 18px;
    margin-bottom: 10px;
}

.promotion-content p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
    min-height: 45px;
    margin-bottom: 15px;
}

.promotion-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.old-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 700;
}

.promotion-price strong {
    color: #18844b;
    font-size: 22px;
}

.promotion-date {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 18px;
}

.promotion-date i {
    color: #003f9e;
    margin-right: 5px;
}

.promotion-btn {
    display: block;
    background: #003f9e;
    color: #ffffff;
    text-align: center;
    padding: 11px;
    border-radius: 7px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .promotion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .promotion-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    position: relative;
}

.product-promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ef4444;
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

.product-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.old-product-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 13px;
    font-weight: 700;
}

.promotion-date-small {
    margin-top: 8px;
    color: #ef4444;
    background: #fee2e2;
    padding: 5px 9px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
}

.pagination-box {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li a,
.pagination li span {
    display: inline-block;
    padding: 9px 13px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    color: #003f9e;
    background: #ffffff;
    font-weight: 700;
}

.pagination li.active a,
.pagination li.active span {
    background: #003f9e;
    color: #ffffff;
    border-color: #003f9e;
}

.pagination li.disabled span {
    color: #9ca3af;
    background: #f3f4f6;
}

.product-image {
    width: 100%;
    height: 130px;
    background: #eaf4ff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dataTables_wrapper {
    background: #ffffff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.dataTables_length,
.dataTables_filter {
    margin-bottom: 15px;
}

.dataTables_filter input,
.dataTables_length select {
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 7px 10px;
    margin-left: 6px;
}
.custom-pagination-wrapper {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.custom-pagination {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.custom-pagination li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-pagination li a {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #003f9e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition: all 0.2s ease;
}

.custom-pagination li a:hover {
    background: #eaf4ff;
    border-color: #003f9e;
}

.custom-pagination li.active a {
    background: #003f9e;
    color: #ffffff;
    border-color: #003f9e;
}

@media (max-width: 576px) {
    .custom-pagination {
        gap: 5px;
    }

    .custom-pagination li a {
        min-width: 34px;
        height: 34px;
        padding: 0 10px;
        font-size: 13px;
    }
}

/* Small clean Select2 dropdown */
.select2-container {
    width: 100% !important;
    max-width: 320px;
}

.select2-container--default .select2-selection--single {
    height: 42px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 10px !important;
    background: #ffffff !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #1f2937 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 42px !important;
    padding-left: 0 !important;
    padding-right: 24px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px !important;
    right: 8px !important;
}

.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #003f9e !important;
}

.select2-dropdown {
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.select2-search--dropdown {
    padding: 8px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    height: 36px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    padding: 6px 9px !important;
    font-size: 14px !important;
    outline: none !important;
}

.select2-results__option {
    padding: 8px 10px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #003f9e !important;
    color: #ffffff !important;
}

.sort-box {
    align-items: flex-end;
}

.sort-box div {
    min-width: 220px;
}

.sort-box label {
    font-size: 14px;
    margin-bottom: 6px;
}

.filter-btn {
    width: 320px;
    height: 56px;
    border: none;
    border-radius: 10px;
    background: #003f9e;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.filter-btn:hover {
    background: #002f78;
}
@media (max-width: 576px) {
    .filter-btn {
        width: 100%;
    }
}

.stock-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stock-badge.in {
    background: #dcfce7;
    color: #166534;
}

.stock-badge.out {
    background: #fee2e2;
    color: #991b1b;
}

.out-stock-btn {
    border: none;
    background: #9ca3af;
    color: #ffffff;
    padding: 8px 13px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    cursor: not-allowed;
}

.out-stock-btn i {
    margin-right: 4px;
}
/* Screenshot-style Home Banner */
.home-banner-section {
    background: #ffffff;
    padding: 28px 0 35px;
}

.home-banner-slider {
    width: 86%;
    max-width: 1320px;
    height: 430px;
    margin: 0 auto;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #f3f4f6;
}

.home-banner-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.home-banner-slide.active {
    display: block;
}

.home-banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider arrows */
.home-banner-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #4b5563;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-banner-btn.prev {
    left: 18px;
}

.home-banner-btn.next {
    right: 18px;
}

/* Section title with green line */
.home-product-section {
    background: #ffffff;
    padding: 0 0 38px;
    width: 86%;
    max-width: 1320px;
    margin: 0 auto;
}

.section-line-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 8px 0 35px;
}

.section-line-title span {
    height: 1.5px;
    background: #1f9b70;
    flex: 1;
}

.section-line-title h2 {
    color: #1f9b70;
    font-size: 23px;
    font-weight: 400;
    margin: 0;
    white-space: nowrap;
}

/* Product grid */
.home-style-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* Product card */
.home-shop-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 3px 11px rgba(0, 0, 0, 0.13);
    transition: all 0.25s ease;
}

.home-shop-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.home-shop-image {
    width: 100%;
    height: 315px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home-shop-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    display: block;
}

.home-shop-info {
    padding: 0 14px 14px;
}

.home-shop-info h3 {
    color: #1f9b70;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.45;
    height: 58px;
    overflow: hidden;
    margin: 0 0 15px;
}

.home-shop-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.home-shop-price {
    color: #ff4b4b;
    font-size: 23px;
    font-weight: 800;
}

.home-shop-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.home-shop-actions form {
    margin: 0;
}

.shop-action-btn {
    width: 41px;
    height: 41px;
    border: none;
    border-radius: 6px;
    background: #1f9b70;
    color: #ffffff;
    font-size: 19px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(31, 155, 112, 0.35);
}

.shop-action-btn:hover {
    background: #157f5a;
}

.shop-action-btn.disabled {
    background: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
}

/* View all button */
.view-all-wrap {
    text-align: center;
    margin-top: 26px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: #1f9b70;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 22px;
    font-weight: 700;
}

.view-all-btn:hover {
    background: #157f5a;
}

/* Responsive */
@media (max-width: 1200px) {
    .home-banner-slider,
    .home-product-section {
        width: 92%;
    }

    .home-style-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-shop-image {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .home-banner-slider {
        height: 260px;
    }

    .home-style-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-line-title h2 {
        font-size: 20px;
    }

    .home-shop-image {
        height: 230px;
    }

    .home-shop-info h3 {
        font-size: 16px;
        height: 50px;
    }

    .home-shop-price {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .home-banner-slider {
        width: 94%;
        height: 190px;
    }

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

    .section-line-title {
        gap: 8px;
    }

    .section-line-title h2 {
        font-size: 17px;
    }

    .home-shop-image {
        height: 255px;
    }

    .view-all-btn {
        font-size: 18px;
    }
}

.product-detail-page {
    background: #f8fbff;
    padding: 35px 0 60px;
}

.breadcrumb-box {
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 22px;
    color: #6b7280;
    font-weight: 600;
}

.breadcrumb-box a {
    color: #003f9e;
}

.breadcrumb-box span {
    margin: 0 8px;
}

.product-detail-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.product-detail-image {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: contain;
    padding: 18px;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-category {
    display: inline-block;
    color: #1f9b70;
    background: #ecfdf5;
    padding: 7px 13px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
    width: fit-content;
}

.product-detail-info h1 {
    color: #111827;
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.detail-price {
    color: #ff4b4b;
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 14px;
}

.detail-stock {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    padding: 8px 13px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 22px;
}

.detail-stock.in {
    background: #dcfce7;
    color: #166534;
}

.detail-stock.out {
    background: #fee2e2;
    color: #991b1b;
}

.detail-description {
    margin-bottom: 24px;
}

.detail-description h3 {
    color: #003f9e;
    margin-bottom: 8px;
}

.detail-description p {
    color: #4b5563;
    line-height: 1.7;
}

.detail-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-cart-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.detail-qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
    height: 48px;
}

.detail-qty-box button {
    width: 42px;
    height: 48px;
    border: none;
    background: #f3f4f6;
    color: #003f9e;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
}

.detail-qty-box input {
    width: 55px;
    height: 48px;
    border: none;
    text-align: center;
    font-weight: 800;
    outline: none;
}

.detail-cart-btn,
.detail-wishlist-btn {
    height: 48px;
    border: none;
    border-radius: 8px;
    padding: 0 22px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.detail-cart-btn {
    background: #1f9b70;
    color: #ffffff;
}

.detail-cart-btn:hover {
    background: #157f5a;
}

.detail-cart-btn.disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.detail-wishlist-btn {
    background: #ffffff;
    color: #1f9b70;
    border: 1px solid #1f9b70;
}

.related-products-section {
    margin-top: 45px;
}

.product-title-link {
    text-decoration: none;
}

@media (max-width: 992px) {
    .product-detail-card {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        min-height: 320px;
    }
}

@media (max-width: 576px) {
    .product-detail-card {
        padding: 18px;
    }

    .product-detail-info h1 {
        font-size: 24px;
    }

    .detail-price {
        font-size: 28px;
    }

    .detail-cart-form {
        flex-direction: column;
        align-items: stretch;
    }

    .detail-qty-box {
        width: fit-content;
    }

    .detail-cart-btn,
    .detail-wishlist-btn {
        width: 100%;
    }
}

/* Modern Header Style */
.modern-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 999;
}

.modern-header-inner {
    width: 94%;
    max-width: 1500px;
    margin: 0 auto;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

/* Logo */
.modern-logo {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.modern-logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

/* Menu */
.modern-menu {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 32px;
}

.modern-menu > a,
.modern-dropdown-toggle {
    color: #1f9b70;
    font-size: 18px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    white-space: nowrap;
}

.modern-menu > a:hover,
.modern-menu > a.active,
.modern-dropdown-toggle:hover {
    color: #003f9e;
}

.modern-menu i {
    font-size: 18px;
}

.dropdown-arrow {
    font-size: 13px !important;
    margin-left: 4px;
}

/* Dropdown */
.modern-dropdown {
    position: relative;
}

.modern-dropdown-menu {
    position: absolute;
    top: 34px;
    left: 0;
    min-width: 230px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    padding: 10px;
    display: none;
    z-index: 1000;
}

.modern-dropdown-menu a {
    display: block;
    padding: 11px 13px;
    border-radius: 8px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.modern-dropdown-menu a:hover {
    background: #eaf4ff;
    color: #003f9e;
}

.modern-dropdown:hover .modern-dropdown-menu {
    display: block;
}

/* Right icons */
.modern-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.modern-icon-btn {
    position: relative;
    color: #1f9b70;
    font-size: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modern-icon-btn:hover {
    color: #003f9e;
}

.modern-flag {
    width: 35px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modern-flag img {
    width: 35px;
    height: 24px;
    object-fit: cover;
}

.modern-cart span {
    position: absolute;
    top: -12px;
    right: -13px;
    min-width: 23px;
    height: 23px;
    background: #ef4444;
    color: #ffffff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile */
.modern-mobile-btn {
    display: none;
    border: none;
    background: #1f9b70;
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 9px;
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .modern-header-inner {
        height: 76px;
    }

    .modern-mobile-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .modern-menu {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #ffffff;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 5%;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
    }

    .modern-menu.show {
        display: flex;
    }

    .modern-menu > a,
    .modern-dropdown-toggle {
        padding: 14px 0;
        font-size: 16px;
    }

    .modern-dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 8px;
        margin-bottom: 10px;
        display: none;
    }

    .modern-dropdown:hover .modern-dropdown-menu {
        display: block;
    }

    .modern-actions {
        gap: 14px;
    }

    .modern-icon-btn {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .modern-header-inner {
        width: 94%;
        gap: 10px;
    }

    .modern-logo {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 14px;
    }

    .modern-logo img {
        width: 38px;
        height: 38px;
    }

    .modern-actions {
        gap: 10px;
    }

    .modern-icon-btn {
        font-size: 20px;
    }

    .modern-flag,
    .modern-flag img {
        width: 30px;
        height: 20px;
    }
}

/* Product page like screenshot */
.shop-page {
    background: #ffffff;
    padding: 42px 0 70px;
}

.shop-container {
    width: 78%;
    max-width: 1180px;
    margin: 0 auto;
}

.shop-page-title {
    text-align: center;
    color: #1f9b70;
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 38px;
}

.shop-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.shop-search-box {
    width: 220px;
    height: 40px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    background: #ffffff;
}

.shop-search-box i {
    color: #6b7280;
    font-size: 20px;
    margin-right: 8px;
}

.shop-search-box input {
    width: 100%;
    border: none;
    outline: none;
    color: #1f2937;
    font-size: 14px;
}

.shop-search-box input::placeholder {
    color: #a1a1aa;
}

.shop-sort-box select {
    width: 190px;
    height: 40px;
    border: none;
    border-radius: 5px;
    background: #f3f4f6;
    color: #1f9b70;
    padding: 0 14px;
    font-weight: 700;
    outline: none;
    cursor: pointer;
}

.shop-category-tabs {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.shop-category-tabs::-webkit-scrollbar {
    height: 5px;
}

.shop-category-tabs::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.shop-category-tab {
    border: 1px solid #1f9b70;
    color: #1f9b70;
    background: #ffffff;
    padding: 7px 14px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.shop-category-tab.active,
.shop-category-tab:hover {
    background: #1f9b70;
    color: #ffffff;
}

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.shop-product-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    min-height: 405px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    transition: all 0.25s ease;
}

.shop-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.shop-product-image {
    height: 255px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    display: block;
}

.shop-product-info {
    padding: 0 10px 10px;
}

.shop-product-title {
    display: block;
    color: #1f9b70;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    height: 48px;
    overflow: hidden;
    text-decoration: none;
    margin-bottom: 8px;
}

.shop-stock-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 8px;
}

.shop-stock-status.in {
    background: #dcfce7;
    color: #166534;
}

.shop-stock-status.out {
    background: #fee2e2;
    color: #991b1b;
}

.shop-stock-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ef4444;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    z-index: 2;
}

.shop-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-product-price {
    color: #ff4b4b;
    font-size: 20px;
    font-weight: 900;
}

.shop-product-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.shop-product-actions form {
    margin: 0;
}

.shop-square-btn {
    width: 37px;
    height: 37px;
    border: none;
    border-radius: 5px;
    background: #1f9b70;
    color: #ffffff;
    font-size: 17px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(31, 155, 112, 0.28);
}

.shop-square-btn:hover {
    background: #157f5a;
}

.shop-square-btn.disabled {
    background: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .shop-container {
        width: 92%;
    }

    .shop-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-search-box,
    .shop-sort-box select {
        width: 100%;
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-product-image {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .shop-page-title {
        font-size: 26px;
    }

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

    .shop-product-image {
        height: 250px;
    }
}

.detail-page-v2 {
    background: #ffffff;
    padding: 40px 0 70px;
}

.detail-container-v2 {
    width: 78%;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-grid-v2 {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 32px;
    align-items: start;
}

.detail-main-image-v2 {
    width: 100%;
    height: 560px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-main-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 22px;
}

.detail-thumbs-wrapper-v2 {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    gap: 8px;
    align-items: center;
}

.detail-thumbs-v2 {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 4px;
}

.detail-thumbs-v2::-webkit-scrollbar {
    height: 5px;
}

.detail-thumbs-v2::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.detail-thumb-v2 {
    width: 105px;
    height: 90px;
    min-width: 105px;
    border: 2px solid transparent;
    background: #ffffff;
    cursor: pointer;
    padding: 4px;
}

.detail-thumb-v2.active {
    border-color: #1f9b70;
}

.detail-thumb-v2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumb-nav-btn {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #6b7280;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    cursor: pointer;
}

.detail-right-v2 {
    position: relative;
    padding-top: 8px;
}

.detail-right-v2 h1 {
    color: #1f9b70;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 22px;
    font-weight: 800;
}

.detail-top-actions-v2 {
    display: flex;
    justify-content: flex-end;
    gap: 7px;
    margin-bottom: 10px;
}

.detail-top-actions-v2 button {
    width: 38px;
    height: 38px;
    background: #1f9b70;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.detail-meta-v2 {
    display: flex;
    justify-content: space-between;
    color: #b7b7b7;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 14px;
}

.detail-meta-v2 span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.detail-right-v2 hr {
    border: none;
    border-top: 1px solid #d9d9d9;
    margin: 18px 0;
}

.detail-price-row-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.detail-current-price {
    color: #ff4b4b;
    font-size: 35px;
    font-weight: 400;
}

.detail-old-price {
    color: #b7b7b7;
    font-size: 27px;
    text-decoration: line-through;
}

.detail-stock-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 6px 11px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}

.detail-stock-v2.in {
    background: #dcfce7;
    color: #166534;
}

.detail-stock-v2.out {
    background: #fee2e2;
    color: #991b1b;
}

.detail-add-form-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.qty-control-v2 {
    display: flex;
    align-items: center;
    gap: 24px;
}

.qty-control-v2 button {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 5px;
    background: #8b8b8b;
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.qty-control-v2 button:last-child {
    background: #1f9b70;
}

.qty-control-v2 input {
    width: 42px;
    border: none;
    outline: none;
    text-align: center;
    font-size: 28px;
    color: #111827;
}

.add-cart-detail-btn-v2 {
    height: 45px;
    border: none;
    border-radius: 4px;
    background: #1f9b70;
    color: #ffffff;
    padding: 0 24px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.add-cart-detail-btn-v2:hover {
    background: #157f5a;
}

.add-cart-detail-btn-v2.disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.detail-description-v2 {
    color: #111827;
    font-size: 17px;
    line-height: 1.8;
}

.detail-description-v2 ul {
    padding-left: 25px;
}

.related-section-v2 {
    margin-top: 55px;
}

@media (max-width: 992px) {
    .detail-container-v2 {
        width: 92%;
    }

    .detail-grid-v2 {
        grid-template-columns: 1fr;
    }

    .detail-main-image-v2 {
        height: 420px;
    }
}

@media (max-width: 576px) {
    .detail-main-image-v2 {
        height: 320px;
    }

    .detail-right-v2 h1 {
        font-size: 23px;
    }

    .detail-current-price {
        font-size: 28px;
    }

    .detail-add-form-v2 {
        flex-direction: column;
        align-items: stretch;
    }

    .qty-control-v2 {
        justify-content: center;
    }

    .add-cart-detail-btn-v2 {
        width: 100%;
        justify-content: center;
    }
}

.cart-toast {
    position: fixed;
    top: 100px;
    right: 24px;
    min-width: 230px;
    max-width: 320px;
    padding: 13px 18px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 800;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: all 0.25s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.cart-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.cart-toast.success {
    background: #1f9b70;
}

.cart-toast.error {
    background: #ef4444;
}

@media (max-width: 576px) {
    .cart-toast {
        right: 12px;
        left: 12px;
        max-width: none;
        top: 85px;
    }
}

.checkout-page {
    background: #ffffff;
    padding: 45px 0 70px;
}

.checkout-container {
    width: 78%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.checkout-left h1 {
    color: #1f9b70;
    font-size: 30px;
    margin-bottom: 20px;
}

.checkout-cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 14px;
    background: #ffffff;
}

.checkout-item-info strong {
    display: block;
    color: #111827;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.checkout-item-info span {
    color: #ff4b4b;
    font-weight: 800;
}

.checkout-qty {
    margin-top: 8px;
    color: #1f2937;
    font-weight: 700;
}

.checkout-subtotal {
    color: #111827;
    align-self: end;
}

.checkout-subtotal strong {
    color: #ff4b4b;
}

.checkout-total-box {
    margin-top: 18px;
    text-align: right;
    font-size: 22px;
    font-weight: 800;
    color: #111827;
}

.checkout-total-box strong {
    color: #ff4b4b;
}

.checkout-form h2 {
    color: #1f9b70;
    font-size: 20px;
    margin: 20px 0 12px;
}

.checkout-input {
    height: 52px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    margin-bottom: 12px;
}

.checkout-input i {
    color: #8b949e;
    font-size: 20px;
    margin-right: 12px;
}

.checkout-input input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    color: #111827;
    font-size: 15px;
}

.delivery-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.delivery-options label input {
    display: none;
}

.delivery-options label span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 20px;
    background: #f3f4f6;
    color: #111827;
    font-weight: 700;
    cursor: pointer;
}

.delivery-options label input:checked + span {
    background: #1f9b70;
    color: #ffffff;
}

.payment-card {
    border: 2px solid #1f9b70;
    border-radius: 8px;
    padding: 14px 18px;
    background: #ecfdf5;
    margin-bottom: 20px;
}

.payment-card strong {
    display: block;
    color: #111827;
    margin-bottom: 5px;
}

.payment-card p {
    color: #4b5563;
    margin: 0;
}

.place-order-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 7px;
    background: #1f9b70;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}

.place-order-btn:hover {
    background: #157f5a;
}

.checkout-success-page {
    min-height: 70vh;
    background: #f8fbff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

.success-card i {
    font-size: 64px;
    color: #1f9b70;
    margin-bottom: 18px;
}

.success-order-no {
    color: #ff4b4b;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 22px;
}

.success-card a {
    display: inline-block;
    background: #1f9b70;
    color: #ffffff;
    padding: 11px 24px;
    border-radius: 7px;
    font-weight: 800;
}

@media (max-width: 992px) {
    .checkout-container {
        width: 92%;
        grid-template-columns: 1fr;
    }
}

.modern-dropdown-menu {
    position: absolute;
    top: 34px;
    left: 0;
    min-width: 260px;
    max-height: 360px;      /* important */
    overflow-y: auto;       /* important */
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    padding: 10px;
    display: none;
    z-index: 1000;
}

.modern-dropdown:hover .modern-dropdown-menu {
    display: block;
}

.modern-dropdown-menu a {
    display: block;
    padding: 10px 13px;
    border-radius: 8px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.modern-dropdown-menu a:hover {
    background: #eaf4ff;
    color: #003f9e;
}
.modern-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.modern-dropdown-menu::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

.modern-dropdown-menu::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.modern-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #1f9b70;
}
@media (max-width: 992px) {
    .modern-dropdown-menu {
        position: static;
        max-height: 260px;
        overflow-y: auto;
        box-shadow: none;
        border-radius: 8px;
        margin-bottom: 10px;
    }
}

.modern-header,
.modern-header-inner,
.modern-menu,
.modern-dropdown {
    overflow: visible !important;
}

.modern-header {
    z-index: 9999 !important;
}

.modern-dropdown {
    position: relative;
}

.modern-dropdown-menu {
    z-index: 10000 !important;
    max-height: 360px;
    overflow-y: auto;
}

.modern-dropdown:hover .modern-dropdown-menu {
    display: block;
}