html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}



html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff8ed;
    color: #333;
}

.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}




/* Mobile Navigation */
.pg-navbar {
    padding: 10px 0;
}

.pg-logo-img {
    height: 70px;
    width: auto;
    margin-left: 15px;
}

.pg-nav-icon {
    height: 25px;
}

.pg-nav-menu {
    background: white;
    padding: 15px;
    border-radius: 0 0 10px 10px;
}

.pg-nav-item {
    margin: 8px 0;
}

.pg-nav-link {
    padding: 10px 15px !important;
    font-size: 16px;
}

    .pg-nav-link:hover {
        transform: translateY(-3px) !important;
    }

.pg-dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Footer */
.pg-footer {
    background-color: black;
    padding: 40px 0 20px;
}

.pg-footer-column {
    margin-bottom: 30px;
}

.pg-footer-company {
    text-align: left !important;
}

.pg-footer-links-column,
.pg-footer-social-column {
    text-align: center;
}

.pg-footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pg-footer-logo {
    max-height: 80px;
    width: auto;
}

.pg-footer-company-info {
    color: white;
    font-size: 14px;
    line-height: 1.4;
}

.pg-footer-links,
.pg-social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Floating Chat */
.floating-chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.pg-chat-toggle {
    background-color: #f0ad4e;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pg-chat-icons {
    display: none;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.pg-chat-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (min-width: 768px) {
    .pg-footer-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (min-width: 992px) {
    .pg-logo-img {
        height: 100px;
        margin-left: 80px;
    }

    .pg-nav-icon {
        height: 30px;
    }

    .pg-navbar .d-flex.d-lg-none {
        display: none !important;
    }

    .pg-navbar .d-none.d-lg-flex {
        display: flex !important;
    }
}

@media (max-width: 991.98px) {
    .pg-navbar .d-flex.d-lg-none {
        gap: 10px;
    }

    .pg-navbar .navbar-toggler {
        padding: 0.25rem;
    }

    .pg-navbar .d-flex.d-lg-none .nav-link {
        padding: 0.5rem !important;
    }

    .pg-navbar .d-none.d-lg-flex {
        display: none !important;
    }
}

/*dashboard css*/


:root {
    --dashboard-primary: #FF6B00;
    --dashboard-primary-dark: #E05D00;
    --dashboard-primary-light: #FFF0E8;
    --dashboard-secondary: #2A5C8B;
    --dashboard-background: #F8F9FA;
    --dashboard-card-bg: #FFFFFF;
    --dashboard-text: #2D3748;
    --dashboard-text-light: #718096;
    --dashboard-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --dashboard-radius: 16px;
}


.dashboard-body {
    font-family: 'Poppins', sans-serif;
    background: var(--dashboard-background);
    color: var(--dashboard-text);
    margin: 0;
    line-height: 1.6;
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.dashboard-h1, .dashboard-h2, .dashboard-h3, .dashboard-h4 {
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.dashboard-h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

.dashboard-h2 {
    font-size: 2.2rem;
}

.dashboard-h3 {
    font-size: 1.5rem;
}

.dashboard-h4 {
    font-size: 1.2rem;
}

.dashboard-text-center {
    text-align: center;
}

.dashboard-text-primary {
    color: var(--dashboard-primary);
}

.dashboard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    gap: 8px;
}

.dashboard-btn-primary {
    background: var(--dashboard-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

    .dashboard-btn-primary:hover {
        background: var(--dashboard-primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 107, 0, 0.3);
    }

.dashboard-btn-secondary {
    background: var(--dashboard-secondary);
    color: white;
}

.dashboard-btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
}


.dashboard-hero {
    background: linear-gradient(135deg, var(--dashboard-primary-light) 0%, #FFF6F0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .dashboard-hero::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 300px;
        height: 300px;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23FF6B0030"><circle cx="25" cy="25" r="20"/><circle cx="75" cy="75" r="20"/></svg>');
        z-index: 0;
    }

.dashboard-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.dashboard-hero-text .dashboard-h1 span {
    color: var(--dashboard-primary);
}

.dashboard-hero-subtext {
    font-size: 1.2rem;
    color: var(--dashboard-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.dashboard-hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 2rem;
}

.dashboard-hero-image {
    position: relative;
    border-radius: var(--dashboard-radius);
    overflow: hidden;
    box-shadow: var(--dashboard-shadow);
    animation: dashboard-float 6s ease-in-out infinite;
}

    .dashboard-hero-image img {
        width: 100%;
        display: block;
    }

.dashboard-hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.dashboard-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-stat-icon {
    width: 40px;
    height: 40px;
    background: var(--dashboard-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.dashboard-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.dashboard-stat-label {
    color: var(--dashboard-text-light);
    font-size: 0.9rem;
}

@keyframes dashboard-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}


.dashboard-featured-categories {
    padding: 80px 0;
    background: white;
}

.dashboard-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.dashboard-section-title {
    position: relative;
    display: inline-block;
}

    .dashboard-section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: var(--dashboard-primary);
    }

.dashboard-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.dashboard-category-card {
    position: relative;
    height: 350px;
    border-radius: var(--dashboard-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--dashboard-shadow);
}

    .dashboard-category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.dashboard-category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--dashboard-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dashboard-category-image {
    width: 100%;
    height: 100%;
}

    .dashboard-category-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.dashboard-category-card:hover .dashboard-category-image img {
    transform: scale(1.1);
}

.dashboard-category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.dashboard-category-name {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.dashboard-category-description {
    margin-bottom: 16px;
    opacity: 0.9;
}


.dashboard-about-section {
    padding: 100px 0;
    background: var(--dashboard-background);
    position: relative;
}

.dashboard-about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dashboard-about-image {
    border-radius: var(--dashboard-radius);
    overflow: hidden;
    box-shadow: var(--dashboard-shadow);
}

    .dashboard-about-image img {
        width: 100%;
        display: block;
    }

.dashboard-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.dashboard-feature-item {
    display: flex;
    gap: 12px;
}

.dashboard-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--dashboard-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dashboard-primary);
    flex-shrink: 0;
}

.dashboard-feature-text .dashboard-h4 {
    margin-bottom: 4px;
}

.dashboard-feature-text p {
    color: var(--dashboard-text-light);
    font-size: 0.9rem;
    margin: 0;
}


.dashboard-testimonials {
    padding: 80px 0;
    background: white;
}

.dashboard-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.dashboard-testimonial-card {
    background: var(--dashboard-background);
    border-radius: var(--dashboard-radius);
    padding: 30px;
    box-shadow: var(--dashboard-shadow);
}

.dashboard-testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

    .dashboard-testimonial-text::before {
        content: '"';
        font-size: 4rem;
        position: absolute;
        top: -20px;
        left: -10px;
        color: var(--dashboard-primary-light);
        line-height: 1;
        z-index: 0;
    }

.dashboard-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dashboard-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.dashboard-author-info .dashboard-h4 {
    margin-bottom: 4px;
}

.dashboard-author-info p {
    color: var(--dashboard-text-light);
    font-size: 0.9rem;
    margin: 0;
}


.dashboard-promotions {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dashboard-primary-light) 0%, #FFF6F0 100%);
}

.dashboard-promo-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.dashboard-promo-card {
    flex: 0 0 360px;
    background: white;
    border-radius: var(--dashboard-radius);
    overflow: hidden;
    box-shadow: var(--dashboard-shadow);
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

    .dashboard-promo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.dashboard-promo-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--dashboard-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

.dashboard-promo-image {
    height: 200px;
    overflow: hidden;
}

    .dashboard-promo-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.dashboard-promo-card:hover .dashboard-promo-image img {
    transform: scale(1.1);
}

.dashboard-promo-details {
    padding: 20px;
}

.dashboard-promo-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.dashboard-promo-description {
    color: var(--dashboard-text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.dashboard-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.dashboard-current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dashboard-primary);
}

.dashboard-original-price {
    text-decoration: line-through;
    color: var(--dashboard-text-light);
}


@media (max-width: 992px) {
    .dashboard-hero-content,
    .dashboard-about-container {
        grid-template-columns: 1fr;
    }

    .dashboard-hero-text {
        text-align: center;
    }

    .dashboard-hero-cta {
        justify-content: center;
    }

    .dashboard-hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .dashboard-hero-stats {
        justify-content: center;
    }

    .dashboard-about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .dashboard-about-content {
        text-align: center;
    }

    .dashboard-about-features {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 30px auto 0;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .dashboard-h1 {
        font-size: 2.2rem;
    }

    .dashboard-h2 {
        font-size: 1.8rem;
    }

    .dashboard-hero {
        padding: 80px 0;
    }

    .dashboard-category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-hero-stats {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .dashboard-category-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-btn {
        padding: 10px 20px;
    }

    .dashboard-hero-cta {
        flex-direction: column;
        gap: 12px;
    }
}

/* Problem Section Styles */
.dashboard-problems {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.dashboard-problems-carousel {
    position: relative;
    overflow: hidden;
    margin: 40px 0;
    padding: 30px 0;
}

.dashboard-problems-track {
    display: flex;
    transition: transform 0.5s ease;
}

.dashboard-problem-card {
    flex: 0 0 calc(33.333% - 40px);
    margin: 0 20px;
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: scale(0.9);
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.dashboard-problem-center {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(79, 140, 255, 0.2);
    border: 2px solid #4f8cff;
    position: relative;
    z-index: 2;
}

    .dashboard-problem-center::before {
        content: 'Common Problems';
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: #4f8cff;
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: bold;
        white-space: nowrap;
    }

.dashboard-problem-image-container {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.dashboard-problem-center .dashboard-problem-image-container {
    box-shadow: 0 6px 15px rgba(79, 140, 255, 0.3);
}

.dashboard-problem-image {
    width: 100%;
    height: 100%;
    /*     object-fit: cover; */
    transition: transform 0.3s ease;
}

.dashboard-problem-card:hover .dashboard-problem-image {
    transform: scale(1.05);
}

.dashboard-problem-card h3 {
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.25rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-problem-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

    .dashboard-problem-list li {
        padding: 10px 0;
        position: relative;
        padding-left: 25px;
        line-height: 1.4;
        border-bottom: 1px solid #f1f3f5;
    }

        .dashboard-problem-list li:last-child {
            border-bottom: none;
        }

        .dashboard-problem-list li::before {
            content: '•';
            color: #4f8cff;
            font-weight: bold;
            font-size: 1.5rem;
            position: absolute;
            left: 5px;
            top: 6px;
        }

.dashboard-problems-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.dashboard-problems-prev,
.dashboard-problems-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #4f8cff;
    background: white;
    color: #4f8cff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .dashboard-problems-prev:hover,
    .dashboard-problems-next:hover {
        background: #4f8cff;
        color: white;
    }

.dashboard-problems-dots {
    display: flex;
    gap: 10px;
}

.dashboard-problems-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dashboard-problems-dot.active {
        background: #4f8cff;
        transform: scale(1.2);
    }

/* Responsive styles */
@media (max-width: 1200px) {
    .dashboard-problem-card {
        flex: 0 0 calc(50% - 40px);
        min-height: 420px;
    }
}

@media (max-width: 768px) {
    .dashboard-problem-card {
        flex: 0 0 calc(100% - 40px);
        min-height: auto;
    }

    .dashboard-problems-nav {
        flex-wrap: wrap;
    }

    .dashboard-problem-image-container {
        height: 140px;
    }

    .dashboard-problem-card h3 {
        min-height: auto;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .dashboard-problem-card {
        margin: 0 10px;
        padding: 20px;
    }

    .dashboard-problem-image-container {
        height: 120px;
    }

    .dashboard-problem-list li {
        padding: 8px 0;
        padding-left: 22px;
    }
}


.dashboard-alert-success {
    background: #D4EDDA;
    color: #155724;
    padding: 16px;
    border-radius: 8px;
    /*margin: 20px 0;*/
    border-left: 4px solid #28A745;
    max-width: 100%;
}


/* Testimonials Section Styles */
.dashboard-testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.dashboard-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.dashboard-testimonial-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .dashboard-testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    }

.dashboard-testimonial-image-container {
    position: relative;
    padding: 30px 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.dashboard-testimonial-product-image {
    width: 300px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto 15px;
    border: 4px solid white;
}

    .dashboard-testimonial-product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.dashboard-testimonial-card:hover .dashboard-testimonial-product-image img {
    transform: scale(1.05);
}

.dashboard-testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.dashboard-rating-star {
    color: #FFD700;
    font-size: 22px; /* Increased from 18px */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dashboard-testimonial-content {
    padding: 0 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dashboard-testimonial-text {
    flex-grow: 1;
    margin: 20px 0;
    position: relative;
}

    .dashboard-testimonial-text::before {
        content: """; position: absolute;
        top: -15px;
        left: -5px;
        font-size: 60px;
        color: #4f8cff;
        opacity: 0.2;
        font-family: Georgia, serif;
    }

    .dashboard-testimonial-text p {
        font-size: 16px;
        line-height: 1.7;
        color: #495057;
        margin: 0;
        position: relative;
        z-index: 1;
    }

.dashboard-testimonial-author {
    margin: 20px 0;
    text-align: center;
}

.dashboard-author-info h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.dashboard-author-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.dashboard-testimonial-actions {
    margin-top: 15px;
}

    .dashboard-testimonial-actions .dashboard-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 15px;
        border-radius: 10px;
    }

/* Certificates Section Styles */
.dashboard-certificates {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #dee2e6;
}

.dashboard-section-subtitle {
    margin-bottom: 40px;
    color: #2c3e50;
    font-size: 2rem;
}

.dashboard-certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-certificate-item {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .dashboard-certificate-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

.dashboard-certificate-image-container {
    width: 100%;
    height: 200px; /* Container for larger certificate images */
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-certificate-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.dashboard-certificate-item:hover .dashboard-certificate-image {
    transform: scale(1.05);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .dashboard-testimonial-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 992px) {
    .dashboard-testimonial-product-image {
        width: 130px;
        height: 130px;
    }

    .dashboard-certificate-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .dashboard-certificate-image-container {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .dashboard-testimonial-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .dashboard-testimonial-card {
        border-radius: 16px;
    }

    .dashboard-testimonial-image-container {
        padding: 25px 25px 15px;
    }

    .dashboard-testimonial-product-image {
        width: 120px;
        height: 120px;
    }

    .dashboard-testimonial-content {
        padding: 0 25px 25px;
    }

    .dashboard-rating-star {
        font-size: 20px;
    }

    .dashboard-certificate-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .dashboard-certificate-item {
        padding: 25px;
    }

    .dashboard-certificate-image-container {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .dashboard-testimonial-product-image {
        width: 110px;
        height: 110px;
    }

    .dashboard-testimonial-image-container {
        padding: 20px 20px 15px;
    }

    .dashboard-testimonial-content {
        padding: 0 20px 20px;
    }

    .dashboard-testimonial-text p {
        font-size: 15px;
    }

    .dashboard-certificate-item {
        padding: 20px;
    }

    .dashboard-certificate-image-container {
        height: 140px;
    }

    .dashboard-section-subtitle {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
}












/*    our product css*/
/* ===== Core Styles ===== */
/* ===== Core Styles ===== */
:root {
    --pg-orange: #FF6B00;
    --pg-orange-light: #FFEEE8;
    --pg-dark: #2D3748;
    --pg-gray: #718096;
    --pg-light: #F8F9FA;
}

.pg-categories-page {
    background: var(--pg-light);
    min-height: 100vh;
}

/* ===== Hero Section ===== */
.pg-categories-hero {
    background: linear-gradient(135deg, var(--pg-orange-light) 0%, #FFF6F0 100%);
    padding: 5rem 1rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.pg-categories-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--pg-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.pg-title-accent {
    color: var(--pg-orange);
}

.pg-categories-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--pg-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

/* ===== Floating Shapes Background ===== */
.pg-hero-shape {
    position: absolute;
    opacity: 0.1;
    border-radius: 50%;
}

.pg-shape-1 {
    width: 150px;
    height: 150px;
    background: var(--pg-orange);
    top: -50px;
    left: -50px;
}

.pg-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--pg-orange);
    bottom: -100px;
    right: -50px;
}

/* ===== Categories Grid ===== */
.pg-categories-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem 4rem;
}

/* Updated Grid Layout */
.pg-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* Fixed 3 columns */
    gap: 2rem;
}

.pg-category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    border: 1px solid rgba(255, 107, 0, 0.1);
    height: 100%; /* Make all cards same height */
    display: flex;
    flex-direction: column;
}

    .pg-category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(255, 107, 0, 0.15);
    }

.pg-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--pg-orange);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.pg-category-image-container {
    height: 250px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0; /* Prevent image container from shrinking */
}

.pg-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.pg-category-card:hover .pg-category-image {
    transform: scale(1.1);
}

.pg-category-content {
    padding: 1.8rem;
    text-align: center;
    flex-grow: 1; /* Make content fill remaining space */
    display: flex;
    flex-direction: column;
}

.pg-category-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--pg-dark);
    position: relative;
}

    .pg-category-name:after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: var(--pg-orange);
    }

.pg-category-desc {
    color: var(--pg-gray);
    margin-bottom: 1.8rem;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1; /* Push button to bottom */
}

.pg-category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--pg-orange);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    margin-top: auto; /* Push button to bottom */
}

    .pg-category-btn:hover {
        background: #E05D00;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
    }
/* Product Carousel Styles - Landscape Layout */
.dashboard-products {
    padding: 80px 0;
}

.dashboard-products-carousel {
    position: relative;
    overflow: hidden;
    margin: 40px 0;
    padding: 30px 0;
}

.dashboard-products-track {
    display: flex;
    transition: transform 0.5s ease;
}

.dashboard-products-slide {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.dashboard-product-row {
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 220px;
}

/* Standard layout: Image left, Content center, Action right */
.dashboard-product-row-standard {
    flex-direction: row;
}

/* Reversed layout: Action left, Content center, Image right */
.dashboard-product-row-reversed {
    flex-direction: row;
}

.dashboard-product-image-col {
    flex: 0 0 250px;
    position: relative;
    overflow: hidden;
}

    .dashboard-product-image-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.dashboard-product-row:hover .dashboard-product-image-col img {
    transform: scale(1.05);
}

.dashboard-product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.dashboard-product-content-col {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 2; /* Always in the middle */
}

.dashboard-product-title {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.4rem;
    line-height: 1.4;
}

.dashboard-product-benefits {
    margin-bottom: 0;
}

.dashboard-benefits-title {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-benefits-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

    .dashboard-benefits-list li {
        padding: 6px 0;
        position: relative;
        padding-left: 20px;
        color: #495057;
        line-height: 1.4;
        font-size: 0.9rem;
    }

        .dashboard-benefits-list li::before {
            content: '?';
            color: #28a745;
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 6px;
        }

.dashboard-product-description p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.dashboard-product-action-col {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    background: #f8f9fa;
}

/* Standard layout: Image left, Content center, Action right */
.dashboard-product-row-standard .dashboard-product-image-col {
    order: 1;
}

.dashboard-product-row-standard .dashboard-product-content-col {
    order: 2;
}

.dashboard-product-row-standard .dashboard-product-action-col {
    order: 3;
    border-left: 1px solid #e9ecef;
}

/* Reversed layout: Action left, Content center, Image right */
.dashboard-product-row-reversed .dashboard-product-action-col {
    order: 1;
    border-right: 1px solid #e9ecef;
}

.dashboard-product-row-reversed .dashboard-product-content-col {
    order: 2;
}

.dashboard-product-row-reversed .dashboard-product-image-col {
    order: 3;
}

.dashboard-product-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dashboard-primary);
    margin-bottom: 20px;
    text-align: center;
}

.dashboard-btn-buy {
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap;
    width: 100%;
}

.dashboard-products-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.dashboard-products-prev,
.dashboard-products-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #4f8cff;
    background: white;
    color: #4f8cff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .dashboard-products-prev:hover,
    .dashboard-products-next:hover {
        background: #4f8cff;
        color: white;
    }

.dashboard-products-dots {
    display: flex;
    gap: 10px;
}

.dashboard-products-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dashboard-products-dot.active {
        background: #4f8cff;
        transform: scale(1.2);
    }

/* Responsive styles */
@media (max-width: 992px) {
    .dashboard-product-row {
        height: auto;
        flex-direction: column !important;
    }

    .dashboard-product-image-col {
        flex: 0 0 200px;
        order: 1 !important;
    }

    .dashboard-product-content-col {
        order: 2 !important;
    }

    .dashboard-product-action-col {
        order: 3 !important;
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 25px;
        border: none !important;
        border-top: 1px solid #e9ecef !important;
    }

    .dashboard-product-price {
        margin-bottom: 0;
    }

    .dashboard-btn-buy {
        width: auto;
    }
}

@media (max-width: 768px) {
    .dashboard-benefits-list {
        grid-template-columns: 1fr;
    }

    .dashboard-product-action-col {
        flex-direction: column;
        gap: 15px;
    }

    .dashboard-product-price {
        margin-bottom: 0;
    }

    .dashboard-btn-buy {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .dashboard-product-image-col {
        flex: 0 0 180px;
    }

    .dashboard-product-content-col {
        padding: 20px;
    }
}


/* FAQ Section Styles */
.dashboard-faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.dashboard-section-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dashboard-faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-faq-content {
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

.dashboard-faq-accordion {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dashboard-faq-item {
    border-bottom: 1px solid #e9ecef;
}

    .dashboard-faq-item:last-child {
        border-bottom: none;
    }

.dashboard-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

    .dashboard-faq-question:hover {
        background: #f8f9fa;
    }

    .dashboard-faq-question i {
        transition: transform 0.3s ease;
    }

    .dashboard-faq-question.active i {
        transform: rotate(180deg);
    }

.dashboard-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafbff;
}

    .dashboard-faq-answer p {
        padding: 0 30px 25px;
        margin: 0;
        color: #495057;
        line-height: 1.6;
    }

    .dashboard-faq-answer.active {
        max-height: 300px;
    }

.dashboard-faq-contact {
    position: sticky;
    top: 30px;
}

.dashboard-contact-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dashboard-contact-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #e9ecef;
}

    .dashboard-contact-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.dashboard-contact-card h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.dashboard-contact-card p {
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Responsive styles */
@media (max-width: 992px) {
    .dashboard-faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dashboard-faq-contact {
        position: static;
    }
}

@media (max-width: 576px) {
    .dashboard-faq {
        padding: 60px 0;
    }

    .dashboard-faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .dashboard-faq-answer p {
        padding: 0 20px 20px;
    }

    .dashboard-contact-card {
        padding: 25px 20px;
    }
}

.contactUs-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdfdff 0%, #f6f8ff 100%);
}

.contactUs-wrapper {
    max-width: 900px;
    margin: 40px auto 0;
}

.contactUs-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .contactUs-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    }

.contactUs-image {
    flex: 0 0 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

    .contactUs-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.contactUs-content {
    flex: 1;
}

.contactUs-role {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.contactUs-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Buttons */
.contactUs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contactUs-btn-primary {
    background: #25d366;
    color: white;
}

    .contactUs-btn-primary:hover {
        background: #1ebc57;
    }

.contactUs-btn-outline {
    border: 2px solid #dee2e6;
    color: #FFFFFF;
    background: #00B2FF;
}

    .contactUs-btn-outline:hover {
        background: #f8f9fa;
    }

/* Responsive */
@media (max-width: 768px) {
    .contactUs-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .contactUs-image {
        width: 120px;
        height: 120px;
    }

    .contactUs-actions {
        justify-content: center;
    }
}

/* ===== Mobile Optimizations ===== */
@media (max-width: 1024px) {
    .pg-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {
    .pg-categories-hero {
        padding: 3rem 1rem;
    }

    .pg-categories-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 1.5rem;
    }

    .pg-category-image-container {
        height: 200px;
    }

    .pg-category-content {
        padding: 1.5rem;
    }

    .pg-category-name {
        font-size: 1.3rem;
    }

    .pg-category-btn {
        padding: 0.8rem 1.5rem;
        width: 100%;
    }
}

/* ===== Animation Keyframes ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}



/*register*/
:root {
    --pg-primary: #FF6B00;
    --pg-primary-light: #FFF0E8;
    --pg-dark: #2D3748;
    --pg-gray: #718096;
    --pg-light: #F8F9FA;
}

.pg-register-page {
    background: #fff8ed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 1rem;
}

.pg-register-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.pg-register-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.pg-register-header {
    /* background: linear-gradient(135deg, var(--pg-primary-light) 0%, #FFF6F0 100%); */
    padding-top: 2.5rem;
    text-align: center;
}

.pg-register-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pg-dark);
    margin-bottom: 0.5rem;
}

.pg-register-subtitle {
    color: var(--pg-gray);
    font-size: 1.1rem;
}

.pg-register-body {
    padding: 2.5rem;
}

.pg-form-group {
    margin-bottom: 1.5rem;
}

.pg-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--pg-dark);
}

.pg-form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .pg-form-control:focus {
        border-color: var(--pg-primary);
        box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
        outline: none;
    }

.pg-form-row {
    display: flex;
    gap: 1.5rem;
}

.pg-form-col {
    flex: 1;
}

.pg-btn-primary {
    background: var(--pg-primary);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .pg-btn-primary:hover {
        background: #E05D00;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    }

    .pg-btn-primary:active {
        transform: translateY(0);
    }

.pg-login-link {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--pg-gray);
}

    .pg-login-link a {
        color: var(--pg-primary);
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .pg-login-link a:hover {
            text-decoration: underline;
        }

.pg-error-message {
    color: #e53e3e;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    display: block;
}

.pg-password-container {
    position: relative;
}

.pg-toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--pg-gray);
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 768px) {
    .pg-register-header {
        padding: 2rem 1.5rem;
    }

    .pg-register-body {
        padding: 2rem 1.5rem;
    }

    .pg-form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .pg-register-title {
        font-size: 1.8rem;
    }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pg-register-card {
    animation: fadeIn 0.6s ease forwards;
}

/*.row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}*/

/*Forget Passowrd*/
/* ===== Modern Forgot Password Styles ===== */
:root {
    --pg-orange: #FF6B00;
    --pg-orange-light: #FFEEE8;
    --pg-dark: #2D3748;
    --pg-gray: #718096;
    --pg-light: #F8F9FA;
}

.pg-forgot-password-page {
    background: #fff8ed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 1rem;
}

.pg-forgot-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.pg-forgot-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: none;
}

.pg-forgot-header {
    /* background: linear-gradient(135deg, var(--pg-orange-light) 0%, #FFF6F0 100%); */
    padding-top: 2.5rem;
    text-align: center;
    position: relative;
}

.pg-forgot-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pg-dark);
    margin-bottom: 0.5rem;
    position: relative;
}

.pg-forgot-subtitle {
    color: var(--pg-gray);
    font-size: 1rem;
    margin-bottom: 0;
}

.pg-forgot-body {
    padding: 2.5rem;
}

.pg-form-label {
    font-weight: 600;
    color: var(--pg-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.pg-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

    .pg-form-input:focus {
        border-color: var(--pg-orange);
        box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
        outline: none;
    }

.pg-submit-btn {
    background: var(--pg-orange);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .pg-submit-btn:hover {
        background: #E05D00;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
    }

    .pg-submit-btn:active {
        transform: translateY(0);
    }

.pg-alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pg-alert-danger {
    background: #FEF2F2;
    color: #B91C1C;
    border-left: 4px solid #DC2626;
}

/* ===== Animation ===== */
.pg-forgot-card {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 576px) {
    .pg-forgot-header {
        padding: 2rem 1.5rem;
    }

    .pg-forgot-body {
        padding: 2rem 1.5rem;
    }

    .pg-forgot-title {
        font-size: 1.8rem;
    }
}


/*about us css*/
:root {
    --primary: #FF6B00;
    --primary-light: #FFF4EE;
    --primary-dark: #E05D00;
    --secondary: #2D3748;
    --text: #4A5568;
    --light: #F7FAFC;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 15px 30px rgba(0,0,0,0.15);
    --rounded-sm: 8px;
    --rounded-md: 12px;
    --rounded-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    /*margin-bottom: 3rem;*/
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--primary);
        border-radius: 2px;
    }

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text);
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: var(--primary);
    color: white;
    border-radius: var(--rounded-sm);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

    .btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm);
    }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
    padding: 8rem 1.5rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: 0;
        width: 100%;
        height: 100px;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23FF6B00"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23FF6B00"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23FF6B00"></path></svg>');
        background-size: cover;
        z-index: 1;
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Story Section */
.story-section {
    background-color: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
        /*align-items: center;*/
    }
}

.story-image {
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    aspect-ratio: 4/3;
}

    .story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .story-image:hover img {
        transform: scale(1.03);
    }

.story-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--rounded-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

    .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text);
}

/* Certifications Section */
.certifications-section {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

    .certifications-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23FF6B00" fill-opacity="0.03" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
        background-size: cover;
        z-index: 0;
    }

.certifications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.certification-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--rounded-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

    .certification-item:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.certification-logo {
    width: 100px;
    height: auto;
    margin-bottom: 1.5rem;
}

.certification-name {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.certification-desc {
    font-size: 0.9rem;
    color: var(--text);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--rounded-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    aspect-ratio: 4/3;
}

    .gallery-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 50%);
        z-index: 1;
        opacity: 0;
        transition: var(--transition);
    }

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

        .gallery-item:hover::before {
            opacity: 1;
        }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

/* Values Section */
.values-section {
    background: var(--primary-light);
    position: relative;
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--rounded-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

    .value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        background: var(--primary);
        transition: var(--transition);
    }

    .value-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-md);
    }

        .value-card:hover::before {
            height: 100%;
        }

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: var(--primary);
    color: white;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.value-desc {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Location Section */
.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.25rem;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.info-content p {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.location-map {
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 350px;
    position: relative;
}

@media (min-width: 992px) {
    .location-map {
        height: 450px;
    }
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-left"] {
    transform: translateX(-30px);
}

[data-animate="fade-right"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

/*product details css*/
:root {
    --pg-primary: #FF6B00;
    --pg-primary-light: #FFEEE8;
    --pg-dark: #2D3748;
    --pg-gray: #718096;
    --pg-light: #F8F9FA;
    --pg-success: #16A34A;
    --pg-danger: #DC2626;
}

.pg-product-detail {
    background: linear-gradient(135deg, var(--pg-orange-light) 0%, #FFF6F0 100%);
    min-height: 100vh;
    padding: 2rem 1rem;
}

.pg-product-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* ===== Product Gallery ===== */
.pg-product-gallery {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    padding: 2rem;
}

.pg-thumbnail-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

    .pg-thumbnail-container::-webkit-scrollbar {
        width: 5px;
    }

    .pg-thumbnail-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .pg-thumbnail-container::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

        .pg-thumbnail-container::-webkit-scrollbar-thumb:hover {
            background: #aaa;
        }

.pg-thumbnail {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .pg-thumbnail:hover {
        border-color: var(--pg-primary);
        transform: scale(1.05);
    }

    .pg-thumbnail.active {
        border-color: var(--pg-primary);
        box-shadow: 0 0 0 2px var(--pg-primary);
    }

.pg-main-image-container {
    position: relative;
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
}

.pg-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
}

.pg-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--pg-primary);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

/* ===== Product Info ===== */
.pg-product-info {
    padding: 2rem;
}

.pg-product-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pg-dark);
    margin-bottom: 1rem;
}

.pg-product-subtitle {
    font-size: 1.1rem;
    color: var(--pg-gray);
    margin-bottom: 1.5rem;
}

.pg-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pg-primary);
    margin: 1.5rem 0;
}

.pg-stock-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pg-in-stock {
    background: rgba(22, 163, 74, 0.1);
    color: var(--pg-success);
}

.pg-out-of-stock {
    background: rgba(220, 38, 38, 0.1);
    color: var(--pg-danger);
}

.pg-quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.pg-quantity-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pg-light);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pg-quantity-input {
    width: 60px;
    text-align: center;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.pg-action-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.pg-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.pg-btn-primary {
    background: var(--pg-primary);
    color: white;
    border: none;
    flex: 1;
}

    .pg-btn-primary:hover {
        background: #E05D00;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
    }

.pg-btn-secondary {
    background: white;
    color: var(--pg-primary);
    border: 2px solid var(--pg-primary);
    flex: 1;
}

    .pg-btn-secondary:hover {
        background: var(--pg-primary-light);
    }

/* ===== Tabs ===== */
.pg-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin: 0 2rem;
}

.pg-tab-btn {
    padding: 1rem 2rem;
    font-weight: 600;
    color: var(--pg-gray);
    border: none;
    background: transparent;
    position: relative;
    cursor: pointer;
}

    .pg-tab-btn.active {
        color: var(--pg-primary);
    }

        .pg-tab-btn.active:after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--pg-primary);
        }

.pg-tab-content {
    padding: 2rem;
    display: none;
}

    .pg-tab-content.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

/* ===== Description Content ===== */
.pg-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--pg-dark);
}

.pg-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.pg-feature-item {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    background: var(--pg-light);
}

.pg-feature-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 0.5rem;
}

.pg-feature-name {
    font-weight: 600;
}

.pg-long-desc {
    line-height: 1.8;
    color: var(--pg-gray);
}

/* ===== Reviews ===== */
.pg-review-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.pg-review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.pg-review-author {
    font-weight: 600;
}

.pg-review-date {
    color: var(--pg-gray);
    font-size: 0.9rem;
}

.pg-review-stars {
    color: #FFC107;
    margin-right: 0.5rem;
}

.pg-review-text {
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* ===== Flyers ===== */
.pg-flyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.pg-flyer-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .pg-flyer-img:hover {
        transform: scale(1.02);
    }

/* ===== Mobile Responsiveness ===== */
@media (max-width: 768px) {
    .pg-product-gallery {
        grid-template-columns: 1fr;
    }

    .pg-thumbnail-container {
        flex-direction: row;
        order: 2;
        height: auto;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 10px;
    }

    .pg-thumbnail {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    .pg-main-image-container {
        height: 350px;
    }

    .pg-action-btns {
        flex-direction: column;
    }

    .pg-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }

    .pg-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*cart css*/
/* ===== Cart Page Styles ===== */
.cart-page-container {
    background: #fff8ed;
    min-height: 100vh;
    padding: 2rem 1rem;
}

.cart-container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.cart-header {
    /* background: linear-gradient(135deg, #FFEEE8 0%, #FFF6F0 100%); */
    padding-top: 2rem;
    text-align: center;
}

.cart-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2D3748;
    margin-bottom: 0.5rem;
}

.cart-subtitle {
    color: #718096;
    font-size: 1rem;
}

/* ===== Cart Content ===== */
.cart-content {
    padding: 2rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem;
    color: #718096;
}

.cart-empty-icon {
    font-size: 3rem;
    color: #CBD5E0;
    margin-bottom: 1rem;
}

/* ===== Cart Table ===== */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table-header {
    background: #F7FAFC;
    border-bottom: 2px solid #E2E8F0;
}

.cart-table-header-cell {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #4A5568;
}

.cart-table-cell {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #EDF2F7;
    vertical-align: middle;
}

/* ===== Cart Items ===== */
.cart-item {
    transition: background 0.3s ease;
}

    .cart-item:hover {
        background: #F8FAFC;
    }

.cart-product-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-product-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #EDF2F7;
}

.cart-product-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-out-of-stock {
    color: #E53E3E;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* ===== Quantity Controls ===== */
.cart-quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-quantity-input {
    width: 60px;
    padding: 0.5rem;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    text-align: center;
}

/* ===== Checkbox ===== */
.cart-checkbox {
    width: 20px;
    height: 20px;
    accent-color: #FF6B00;
}

/* ===== Price ===== */
.cart-price {
    font-weight: 600;
    color: #2D3748;
}

.cart-subtotal {
    font-weight: 700;
    color: #2D3748;
}

/* ===== Remove Button ===== */
.cart-remove-btn {
    background: none;
    border: none;
    color: #E53E3E;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

    .cart-remove-btn:hover {
        transform: scale(1.1);
    }

/* ===== Cart Summary ===== */
.cart-summary {
    display: flex;
    justify-content: flex-end;
    padding: 2rem;
    border-top: 1px solid #EDF2F7;
    background: #F7FAFC;
}

.cart-total-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cart-total-label {
    font-size: 1.1rem;
    font-weight: 600;
}

.cart-total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B00;
}

.cart-checkout-btn {
    background: #FF6B00;
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .cart-checkout-btn:hover {
        background: #E05D00;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
    }

    .cart-checkout-btn:disabled {
        background: #CBD5E0;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }
/* ===== Select All Controls ===== */
.cart-select-all-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-start;
    padding-left : 3rem;
}

#select-all-label {
    cursor: pointer;
    font-weight: 500;
}

.cart-deselect-btn {
    background: none;
    border: none;
    color: #E53E3E;
    cursor: pointer;
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 4px;
}

    .cart-deselect-btn:hover {
        background: #FFF5F5;
    }
/* ===== Mobile Responsiveness ===== */
@media (max-width: 768px) {
    .cart-header {
        padding: 1.5rem;
    }

    .cart-content {
        padding: 1rem;
        overflow-x: auto;
    }

    .cart-table {
        min-width: 700px;
    }

    .cart-product-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .cart-summary {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-end;
    }
}

/*checkout css*/
/* ===== Checkout Page Styles ===== */
:root {
    --checkout-primary: #FF6B00;
    --checkout-primary-light: #FFEEE8;
    --checkout-dark: #2D3748;
    --checkout-gray: #718096;
    --checkout-light: #F8F9FA;
    --checkout-border: #E2E8F0;
}

.checkout-page {
    background: #fff8ed;
    min-height: 100vh;
    padding: 2rem 0;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 1rem;
}

/* ===== Billing Form ===== */
.checkout-billing-form {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.checkout-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--checkout-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--checkout-primary);
}

.checkout-form-group {
    margin-bottom: 1.5rem;
}

.checkout-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--checkout-dark);
}

.checkout-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--checkout-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .checkout-form-input:focus {
        border-color: var(--checkout-primary);
        box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
        outline: none;
    }

/* ===== Order Summary ===== */
.checkout-order-summary {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 1rem;
    align-self: start;
}

.checkout-summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--checkout-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--checkout-primary);
}

.checkout-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

    .checkout-order-table th {
        text-align: left;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--checkout-border);
        font-weight: 600;
        color: var(--checkout-dark);
    }

    .checkout-order-table td {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--checkout-border);
        vertical-align: top;
    }

    .checkout-order-table tr:last-child td {
        border-bottom: none;
        font-weight: 700;
        color: var(--checkout-primary);
    }

/* ===== Payment Section ===== */
.checkout-payment-section {
    margin-top: 2rem;
}

.checkout-payment-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--checkout-dark);
}

.checkout-bank-box {
    background: var(--checkout-light);
    border: 1px solid var(--checkout-border);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.checkout-bank-name {
    font-weight: 600;
    color: var(--checkout-primary);
}

/* ===== Checkout Upload Box ===== */
.checkout-upload-box {
    position: relative;
    width: 100%;
    height: 200px;
    border: 2px dashed var(--checkout-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    background: var(--checkout-light);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

    .checkout-upload-box:hover {
        border-color: var(--checkout-primary);
    }

    .checkout-upload-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: none;
    }

    .checkout-upload-box i {
        font-size: 2rem;
        color: var(--checkout-gray);
    }

    .checkout-upload-box input[type="file"] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

.checkout-upload-label {
    display: block;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: var(--checkout-dark);
}
.checkout-product-cell {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem; /* Space between name and qty */
    align-items: center;
}

.checkout-product-name {
    font-weight: 500;
    color: var(--checkout-dark);
}

.checkout-product-qty {
    color: var(--checkout-gray);
}

.checkout-price-cell {
    white-space: nowrap; /* Keep RM and price together */
    text-align: right; /* Align prices to the right for clarity */
}

.checkout-total-row td {
    border-top: 2px solid var(--checkout-primary);
    padding-top: 0.75rem;
}

.checkout-price-header {
    text-align: right;
}
/* ===== Submit Button ===== */
.checkout-submit-btn {
    width: 100%;
    background: var(--checkout-primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

    .checkout-submit-btn:hover {
        background: #E05D00;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
    }

/* ===== Mobile Responsiveness ===== */
@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .checkout-order-summary {
        position: static;
    }
}


/*    editprofile css*/
/* ===== Modern Profile Styles ===== */
:root {
    --pg-primary: #FF6B00;
    --pg-primary-light: #FFEEE8;
    --pg-dark: #2D3748;
    --pg-gray: #718096;
    --pg-light: #F8F9FA;
}

.pg-profile-page {
    background: #fff8ed;
    min-height: 100vh;
    padding: 2rem 1rem;
}

.pg-profile-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.pg-profile-header {
    /*  background: linear-gradient(135deg, var(--pg-primary-light) 0%, #FFF6F0 100%); */
    padding-top: 2.5rem;
    text-align: center;
    position: relative;
}

.pg-profile-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--pg-dark);
    margin-bottom: 1rem;
}

.pg-avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    cursor: pointer;
}

.pg-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pg-avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.pg-avatar-container:hover .pg-avatar {
    transform: scale(1.05);
}

.pg-avatar-container:hover .pg-avatar-overlay {
    opacity: 1;
}

.pg-user-id {
    font-size: 0.9rem;
    color: var(--pg-gray);
    background: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pg-profile-body {
    padding: 2.5rem;
}

.pg-form-group {
    margin-bottom: 1.5rem;
}

.pg-form-label {
    display: block;
    font-weight: 600;
    color: var(--pg-dark);
    margin-bottom: 0.5rem;
}

.pg-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .pg-form-input:focus {
        border-color: var(--pg-primary);
        box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
        outline: none;
    }

.pg-save-btn {
    background: var(--pg-primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

    .pg-save-btn:hover {
        background: #E05D00;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
    }

    .pg-save-btn:active {
        transform: translateY(0);
    }

.pg-alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pg-alert-success {
    background: #F0FDF4;
    color: #166534;
    border-left: 4px solid #22C55E;
}

.pg-alert-danger {
    background: #FEF2F2;
    color: #B91C1C;
    border-left: 4px solid #DC2626;
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 576px) {
    .pg-profile-header {
        padding: 2rem 1.5rem;
    }

    .pg-profile-body {
        padding: 2rem 1.5rem;
    }

    .pg-profile-title {
        font-size: 1.5rem;
    }

    .pg-avatar-container {
        width: 100px;
        height: 100px;
    }
}

/*login css*/
/* ===== Modern Login Styles ===== */
:root {
    --pg-primary: #FF6B00;
    --pg-primary-light: #FFF0E8;
    --pg-dark: #2D3748;
    --pg-gray: #718096;
    --pg-light: #F8F9FA;
}

.pg-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #fff8ed;
    padding: 2rem 1rem;
}

.pg-login-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.pg-login-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .pg-login-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    }

.pg-login-header {
    /* background: linear-gradient(135deg, var(--pg-primary-light) 0%, #FFF6F0 100%); */
    padding-top: 2.5rem;
    text-align: center;
}

.pg-login-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pg-dark);
    margin-bottom: 0.5rem;
}

.pg-login-subtitle {
    color: var(--pg-gray);
    font-size: 1rem;
}

.pg-login-body {
    padding: 2.5rem;
}

.pg-form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.pg-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--pg-dark);
}

.pg-form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

    .pg-form-control:focus {
        border-color: var(--pg-primary);
        box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
        background: white;
    }

.pg-password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--pg-gray);
    transition: color 0.3s ease;
}

    .pg-password-toggle:hover {
        color: var(--pg-primary);
    }

.pg-login-btn {
    width: 100%;
    padding: 1rem;
    background: var(--pg-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .pg-login-btn:hover {
        background: #E05D00;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    }

.pg-login-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--pg-gray);
}

.pg-login-link {
    color: var(--pg-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .pg-login-link:hover {
        color: #E05D00;
        text-decoration: underline;
    }

.pg-alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.pg-alert-danger {
    background: #FFF5F5;
    color: #E53E3E;
    border: 1px solid #FED7D7;
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 576px) {
    .pg-login-header {
        padding: 2rem 1.5rem;
    }

    .pg-login-body {
        padding: 2rem 1.5rem;
    }

    .pg-login-title {
        font-size: 1.8rem;
    }
}

/* ===== Animation ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pg-login-card {
    animation: fadeIn 0.6s ease forwards;
}

   /* myorder css*/
/* ===== Modern Order History Styles ===== */
:root {
    --myorder-primary: #FF6B00;
    --myorder-primary-light: #FFEEE8;
    --myorder-dark: #2D3748;
    --myorder-gray: #718096;
    --myorder-light: #F8F9FA;
    --myorder-success: #28A745;
    --myorder-warning: #FFC107;
    --myorder-danger: #DC3545;
    --myorder-info: #17A2B8;
}

.myorder-history {
    background: #fff8ed;
    min-height: 100vh;
    padding: 2rem 1rem;
}

.myorder-container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 50px;
}

/* ===== Header Section ===== */
.myorder-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.myorder-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--myorder-dark);
    margin: 0;
}

.myorder-filter {
    position: relative;
    min-width: 200px;
}

.myorder-filter-select {
    width: 100%;
    padding: 0.75rem 3rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: white;
    font-size: 1rem;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    cursor: pointer;
}

/* ===== Order Cards ===== */
.myorder-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.myorder-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

    .myorder-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

.myorder-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    gap: 1rem;
}

.myorder-meta {
    flex: 1;
    min-width: 250px;
}

.myorder-number {
    font-weight: 700;
    color: var(--myorder-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.myorder-date {
    color: var(--myorder-gray);
    font-size: 0.9rem;
}

.myorder-preview {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.myorder-thumbnail {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #eee;
}

.myorder-more {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--myorder-gray);
}

.myorder-total {
    font-weight: 700;
    color: var(--myorder-dark);
    margin: 0 1rem 0 auto;
    min-width: 100px;
    text-align: right;
}

.myorder-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
}

.myorder-status-pending {
    background: #FFF3CD;
    color: #856404;
}
.myorder-status-waiting-for-courier-pickup {
    background: #FFF7E6;
    color: #8A5A00;
}



.myorder-status-processing {
    background: #CCE5FF;
    color: #004085;
}

.myorder-status-shipped {
    background: #D4EDDA;
    color: #155724;
}

.myorder-status-complete {
    background: #D1ECF1;
    color: #0C5460;
}

.myorder-status-cancelled {
    background: #F8D7DA;
    color: #721C24;
}

.myorder-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--myorder-light);
    transition: transform 0.3s ease;
}

.myorder-card.active .myorder-toggle {
    transform: rotate(90deg);
}

/* ===== Order Details ===== */
.myorder-details {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.myorder-card.active .myorder-details {
    display: block;
}

.myorder-items {
    margin-bottom: 2rem;
}

.myorder-item {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    background: white;
    margin-bottom: 1rem;
    align-items: center;
    border: 1px solid #f0f0f0;
}

.myorder-item-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    background: #f9f9f9;
    padding: 0.5rem;
}

.myorder-item-info {
    flex: 1;
}

.myorder-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--myorder-dark);
}

.myorder-item-price {
    color: var(--myorder-gray);
    font-size: 0.9rem;
}

.myorder-item-subtotal {
    font-weight: 600;
    color: var(--myorder-dark);
    min-width: 100px;
    text-align: right;
}

.myorder-item-actions {
    display: flex;
    gap: 0.5rem;
}

.myorder-review-btn {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: var(--myorder-warning);
    color: #212529;
    border: none;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.myorder-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.myorder-shipping-info {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}

.myorder-shipping-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--myorder-dark);
}

.myorder-shipping-text {
    color: var(--myorder-gray);
    line-height: 1.6;
}

.myorder-totals {
    min-width: 250px;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}

.myorder-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed #e9ecef;
}

.myorder-grand-total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--myorder-dark);
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e9ecef;
}

/* ===== Empty State ===== */
.myorder-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.myorder-empty-icon {
    font-size: 3rem;
    color: #adb5bd;
    margin-bottom: 1.5rem;
}

.myorder-empty-title {
    color: #495057;
    margin-bottom: 0.5rem;
}

.myorder-empty-message {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.myorder-shopping-btn {
    display: inline-block;
    background: var(--myorder-primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .myorder-shopping-btn:hover {
        background: #E05D00;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
    }

/* ===== Tracking Button ===== */
.myorder-track-btn {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: var(--myorder-primary-light);
    color: var(--myorder-primary);
    border: none;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .myorder-track-btn:hover {
        background: var(--myorder-primary);
        color: white;
    }

/* ===== Modal Styles ===== */
.myorder-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.myorder-modal--visible {
    opacity: 1;
    visibility: visible;
}

.myorder-modal__dialog {
    width: 100%;
    max-width: 500px;
    margin: 1rem;
}

.myorder-modal__content {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.myorder-modal__header {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.myorder-modal__title {
    font-weight: 600;
    margin: 0;
}

.myorder-modal__close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
}

.myorder-modal__body {
    padding: 1.5rem;
}
.form-group__textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding-right: 45px;
}

/* ===== Rating Stars ===== */
.myorder-rating-stars {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0 1.5rem;
}

.myorder-rating-star {
    font-size: 2rem;
    color: #e9ecef;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .myorder-rating-star.selected {
        color: #FFC107;
    }

    .myorder-rating-star:hover {
        transform: scale(1.1);
    }

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
    .myorder-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .myorder-total {
        margin: 0.5rem 0 0 0;
        text-align: left;
    }

    .myorder-status {
        margin-top: 0.5rem;
    }

    .myorder-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .myorder-item-subtotal {
        text-align: left;
        margin-top: 0.5rem;
    }

    .myorder-item-actions {
        width: 100%;
        justify-content: flex-end;
        margin-top: 1rem;
    }
}

/*product by category css*/
:root {
    --pg-orange: #FF6B00;
    --pg-orange-light: #FFEEE8;
    --pg-dark: #2D3748;
    --pg-gray: #718096;
    --pg-light: #F8F9FA;
}

.pg-products-page {
    background: var(--pg-light);
    min-height: 100vh;
}

/* Hero Section - Matching categories page */
.pg-products-hero {
    background: linear-gradient(135deg, var(--pg-orange-light) 0%, #FFF6F0 100%);
    padding: 5rem 1rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.pg-products-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--pg-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.pg-title-accent {
    color: var(--pg-orange);
}

.pg-products-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--pg-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

/* Floating Shapes Background */
.pg-hero-shape {
    position: absolute;
    opacity: 0.1;
    border-radius: 50%;
}

.pg-shape-1 {
    width: 150px;
    height: 150px;
    background: var(--pg-orange);
    top: -50px;
    left: -50px;
}

.pg-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--pg-orange);
    bottom: -100px;
    right: -50px;
}

/* Products Grid - Updated for consistent sizing */
.pg-products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem 4rem;
}

.pg-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Fixed 3 columns */
    gap: 2rem;
}

.pg-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    border: 1px solid rgba(255, 107, 0, 0.1);
    text-decoration: none;
    color: inherit;
    height: 100%; /* Make all cards same height */
    display: flex;
    flex-direction: column;
}

    .pg-product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(255, 107, 0, 0.15);
    }

.pg-product-image-container {
    height: 250px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0; /* Prevent image container from shrinking */
}

.pg-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.pg-product-card:hover .pg-product-image {
    transform: scale(1.1);
}

.pg-product-content {
    padding: 1.8rem;
    flex-grow: 1; /* Make content fill remaining space */
    display: flex;
    flex-direction: column;
}

.pg-product-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--pg-dark);
    position: relative;
    padding-bottom: 0.8rem;
}

    .pg-product-name:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--pg-orange);
    }

.pg-product-price {
    color: var(--pg-orange);
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1rem;
}

.pg-product-desc {
    color: var(--pg-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1; /* Push price to bottom */
}

/* Back to Categories Button */
.pg-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    color: var(--pg-orange);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .pg-back-btn:hover {
        color: #E05D00;
        transform: translateX(-5px);
    }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .pg-products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 640px) {
    .pg-products-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }

    .pg-products-hero {
        padding: 3rem 1rem;
    }

    .pg-product-image-container {
        height: 200px;
    }

    .pg-product-content {
        padding: 1.5rem;
    }

    .pg-product-name {
        font-size: 1.1rem;
    }
}

/* Animation Keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/*promotion css*/
/* ===== Modern Promotion Page Styles ===== */
:root {
    --pg-primary: #FF6B00;
    --pg-primary-light: #FFF0E8;
    --pg-secondary: #2A5C8B;
    --pg-dark: #2D3748;
    --pg-gray: #718096;
    --pg-light: #F8F9FA;
    --pg-success: #40916C;
    --pg-danger: #E63946;
}

.pg-promotions-page {
    background: var(--pg-light);
    min-height: 100vh;
}

/* ===== Hero Section ===== */
.pg-promo-hero {
    background: linear-gradient(135deg, var(--pg-orange-light) 0%, #FFF6F0 100%);
    padding: 5rem 1rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.pg-promo-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--pg-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.pg-title-accent {
    color: var(--pg-orange);
}

.pg-promo-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--pg-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

/* ===== Floating Shapes Background ===== */
.pg-hero-shape {
    position: absolute;
    opacity: 0.1;
    border-radius: 50%;
}

.pg-shape-1 {
    width: 150px;
    height: 150px;
    background: var(--pg-orange);
    top: -50px;
    left: -50px;
}

.pg-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--pg-orange);
    bottom: -100px;
    right: -50px;
}

/* ===== Promo Grid ===== */
.pg-promo-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pg-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.pg-promo-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
}

    .pg-promo-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(255, 107, 0, 0.15);
    }

.pg-promo-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--pg-danger);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.pg-promo-image-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.pg-promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.pg-promo-card:hover .pg-promo-image {
    transform: scale(1.1);
}

.pg-promo-content {
    padding: 1.8rem;

}

.pg-promo-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--pg-dark);
}

.pg-promo-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pg-primary);
    margin-bottom: 1rem;
}

.pg-promo-original-price {
    text-decoration: line-through;
    color: var(--pg-gray);
    font-size: 1rem;
    margin-left: 8px;
}

.pg-promo-desc {
    color: var(--pg-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pg-promo-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pg-promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--pg-primary);
    color: white;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

    .pg-promo-btn:hover {
        background: #E05D00;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
    }

.pg-promo-wishlist {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .pg-promo-wishlist:hover {
        background: #FFF0E8;
        color: var(--pg-primary);
    }

/* ===== Empty State ===== */
.pg-promo-empty {
    text-align: center;
    padding: 4rem;
    grid-column: 1 / -1;
}

.pg-promo-empty-icon {
    font-size: 3rem;
    color: var(--pg-gray);
    margin-bottom: 1.5rem;
}

.pg-promo-empty-title {
    font-size: 1.5rem;
    color: var(--pg-dark);
    margin-bottom: 0.5rem;
}

.pg-promo-empty-text {
    color: var(--pg-gray);
    margin-bottom: 1.5rem;
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 768px) {
    .pg-promo-hero {
        padding: 3rem 1rem;
    }

    .pg-promo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pg-promo-image-container {
        height: 220px;
    }
}

/* ===== Animation ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pg-promo-card {
    animation: fadeIn 0.6s ease forwards;
}

    .pg-promo-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .pg-promo-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .pg-promo-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    /*enter tac css*/
/* ===== Modern TAC Verification Styles ===== */
:root {
    --pg-orange: #FF6B00;
    --pg-orange-light: #FFEEE8;
    --pg-dark: #2D3748;
    --pg-gray: #718096;
    --pg-light: #F8F9FA;
}

.pg-tac-verification-page {
    background: #fff8ed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 1rem;
}

.pg-tac-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    animation: fadeIn 0.6s ease forwards;
}

.pg-tac-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: none;
}

.pg-tac-header {
    /* background: linear-gradient(135deg, var(--pg-orange-light) 0%, #FFF6F0 100%); */
    padding-top: 2.5rem;
    text-align: center;
    position: relative;
}

.pg-tac-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pg-tac-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--pg-dark);
    margin-bottom: 0.5rem;
}

.pg-tac-subtitle {
    color: var(--pg-gray);
    font-size: 1rem;
    margin-bottom: 0;
}

.pg-tac-body {
    padding: 2.5rem;
}

.pg-tac-input-container {
    margin-bottom: 2rem;
}

.pg-tac-label {
    font-weight: 600;
    color: var(--pg-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.pg-tac-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .pg-tac-input:focus {
        border-color: var(--pg-orange);
        box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
        outline: none;
    }

.pg-verify-btn {
    background: var(--pg-orange);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .pg-verify-btn:hover {
        background: #E05D00;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
    }

    .pg-verify-btn:active {
        transform: translateY(0);
    }

.pg-alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pg-alert-danger {
    background: #FEF2F2;
    color: #B91C1C;
    border-left: 4px solid #DC2626;
}

.pg-resend-link {
    text-align: center;
    margin-top: 1.5rem;
}

    .pg-resend-link a {
        color: var(--pg-orange);
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .pg-resend-link a:hover {
            text-decoration: underline;
        }

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pg-tac-icon {
    animation: pulse 2s ease-in-out infinite;
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 576px) {
    .pg-tac-header {
        padding: 2rem 1.5rem;
    }

    .pg-tac-body {
        padding: 2rem 1.5rem;
    }

    .pg-tac-title {
        font-size: 1.5rem;
    }

    .pg-tac-input {
        padding: 12px;
        font-size: 1rem;
    }
}


/*reset password css*/
:root {
    --pg-orange: #FF6B00;
    --pg-orange-light: #FFEEE8;
    --pg-dark: #2D3748;
    --pg-gray: #718096;
    --pg-light: #F8F9FA;
    --pg-success: #28a745;
}

.pg-reset-page {
    background: fff8ed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 1rem;
}

.pg-reset-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.pg-reset-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: none;
    animation: fadeInUp 0.6s ease forwards;
}

.pg-reset-header {
    /* background: linear-gradient(135deg, var(--pg-orange-light) 0%, #FFF6F0 100%); */
    padding-top: 2.5rem;
    text-align: center;
    position: relative;
}

.pg-reset-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pg-reset-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pg-dark);
    margin-bottom: 0.5rem;
}

.pg-reset-subtitle {
    color: var(--pg-gray);
    font-size: 1rem;
    margin-bottom: 0;
}

.pg-reset-body {
    padding: 2.5rem;
}

.pg-form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.pg-form-label {
    font-weight: 600;
    color: var(--pg-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.pg-password-container {
    position: relative;
}

.pg-form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding-right: 45px;
}

    .pg-form-input:focus {
        border-color: var(--pg-orange);
        box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
        outline: none;
    }

.pg-toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--pg-gray);
    transition: all 0.3s ease;
}

    .pg-toggle-password:hover {
        color: var(--pg-orange);
    }

.pg-password-strength {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.pg-strength-meter {
    height: 100%;
    width: 0%;
    background: #dc3545;
    transition: all 0.3s ease;
}

.pg-submit-btn {
    background: var(--pg-orange);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

    .pg-submit-btn:hover {
        background: #E05D00;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
    }

    .pg-submit-btn:active {
        transform: translateY(0);
    }

.pg-alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pg-alert-danger {
    background: #FEF2F2;
    color: #B91C1C;
    border-left: 4px solid #DC2626;
}

/* ===== Animation ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Password Strength Colors ===== */
.pg-weak {
    background: #dc3545;
    width: 25%;
}

.pg-medium {
    background: #fd7e14;
    width: 50%;
}

.pg-strong {
    background: #28a745;
    width: 75%;
}

.pg-very-strong {
    background: #28a745;
    width: 100%;
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 576px) {
    .pg-reset-header {
        padding: 2rem 1.5rem;
    }

    .pg-reset-body {
        padding: 2rem 1.5rem;
    }

    .pg-reset-title {
        font-size: 1.8rem;
    }

    .pg-reset-icon {
        width: 50px;
        height: 50px;
    }
}