/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --primary-blue: #0196DA;
    --soft-blue: #f3f9fb;
    --text-dark: #20232b;
    --text-muted: #8b96a5;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --transition: all 0.3s ease;
}

body {
    font-family: "Figtree", sans-serif;
    color: var(--text-dark);
    background-color: #FAFCFE;
    overflow-x: hidden;
    font-family: "Figtree", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Bai Jamjuree", sans-serif;
    font-weight: 700;
}

/* Header & Nav */
.navbar {
    padding: 0.8rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1000;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--primary-blue) !important;
    text-decoration: none;
}

.navbar-brand img {
    height: 45px;
}

.btn-shop {
    background-color: var(--soft-blue);
    color: var(--primary-blue);
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 10px;
    font-weight: 600;
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.search-container {
    flex-grow: 1;
    max-width: 550px;
    position: relative;
    margin: 0 2rem;
}

.search-input {
    width: 100%;
    background-color: #f9f9f9;
    border: 1px solid #e5f1f5;
    padding: 0.7rem 3rem 0.7rem 1.2rem;
    border-radius: 12px;
    color: #7D89B0;
    outline: none;
    transition: var(--transition);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    border: 1px solid var(--Shades-of-Grey-200, #DCDFEA);
}

.search-input:focus {
    border-color: var(--primary-blue);
    background-color: #fff;
}

.search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.nav-right-item {
    color: #4a5568 !important;
    font-weight: 600;
    margin-left: 2.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-cart {
    background-color: var(--primary-blue);
    color: var(--white) !important;
    padding: 0.7rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    text-decoration: none;
    margin-left: 2.5rem;
    transition: var(--transition);
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 142, 204, 0.2);
}

.cart-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4747;
    color: white;
    font-size: 0.75rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    font-weight: 700;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 90%;
    left: 0;
    width: 100%;
    background: #F6E5E6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 1px solid var(--border-color);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-radius: 20px;
    /* overflow: hidden; */
}

.nav-item-shop:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover bridge to prevent losing hover state when moving to menu */
.nav-item-shop::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

.menu-section h6 {
    font-weight: 800;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 12px;
    font-size: 1.1rem;
}

.menu-section h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
}

.menu-section.trending h6::after {
    background: #ff4747;
}

.menu-links {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 15px;
    column-gap: 30px;
}

.menu-links li a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: block;
}

.menu-links li a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

/* Hero Section */
.hero-container {
    padding: 2rem 0;
    /* background-color: #fafafa; */
}

.slider-wrapper {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.slider-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Custom Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.hero-controls .slick-prev-custom,
.hero-controls .slick-next-custom {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fcebeb;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1a202c;
    transition: var(--transition);
    padding: 0;
}

.hero-controls .slick-prev-custom {
    order: 1;
}

.hero-controls .slick-dots {
    order: 2;
}

.hero-controls .slick-next-custom {
    order: 3;
}

.hero-controls .slick-prev-custom:hover,
.hero-controls .slick-next-custom:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.hero-controls .slick-prev-custom i,
.hero-controls .slick-next-custom i {
    font-size: 14px;
}

.hero-controls .slick-dots {
    position: static;
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    width: auto;
}

.hero-controls .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.hero-controls .slick-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fcebeb;
    padding: 0;
    opacity: 0.8;
    transition: var(--transition);
}

.hero-controls .slick-dots li button:before {
    display: none;
}

.hero-controls .slick-dots li.slick-active button {
    width: 24px;
    border-radius: 10px;
    background-color: #f1c40f;
    opacity: 1;
}

/* Slick Customization */
.slick-dots {
    bottom: 30px;
}

.slick-dots li button:before {
    color: #ffd2d2;
    font-size: 12px;
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: white;
}

.slick-prev,
.slick-next {
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slick-prev {
    left: 40px;
}

.slick-next {
    right: 40px;
}

.slick-prev:hover,
.slick-next:hover {
    background: white !important;
    transform: scale(1.1);
}

.slick-prev:before,
.slick-next:before {
    color: var(--text-dark) !important;
    font-size: 20px !important;
    opacity: 1 !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.slick-prev:before {
    content: '\f053';
}

.slick-next:before {
    content: '\f054';
}

.category-img-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.category-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item {
    padding: 15px 10px 30px;
}

.category-item:hover .category-img-wrapper {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-item p {
    color: #404968;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    font-weight: 600 !important;
}

.category-arrows button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #a0aec0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    margin-left: 10px;
}

.category-arrows button:hover {
    background: #fff;
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gap-3 {
    gap: 1rem;
}

/* Product Cards */
.product-section {
    /* background-color: #fff; */
    padding-bottom: 5rem;
}

.product-card {
    border: none;
    border-radius: 20px;
    background: #fff;
    transition: var(--transition);
    margin-bottom: 0px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

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

.product-img-container {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    padding: 0px;
}

.product-img-container img {
    /* border-radius: 15px; */
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.discount-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #27ae60;
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-info {
    padding: 1rem 1.25rem 1.5rem;
}

.product-cat {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    display: block;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

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

.product-title-link:hover {
    color: var(--primary-blue);
    text-decoration: none;
}

.variant-selection {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.variant-btn {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #4a5568;
    cursor: pointer;
    transition: var(--transition);
}

.variant-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.product-rating i {
    color: #f1c40f;
}

.product-rating span {
    color: #a0aec0;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.curr-price {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

.old-price {
    color: #a0aec0;
    text-decoration: line-through;
    font-size: 0.85rem;
}

.explore-all-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.explore-all-link:hover {
    text-decoration: none;
    color: #0077aa;
}

/* Welcome Section */
.welcome-box {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    border-radius: 20px;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.welcome-content {
    position: relative;
    z-index: 2;
}

.welcome-img {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.welcome-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

.welcome-desc {
    max-width: 800px;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
}

.stats-row {
    margin-top: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #94a3b8;
}

/* Decorative Shapes */
.shape {
    position: absolute;
    opacity: 0.4;
    z-index: 1;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #bae6fd, transparent);
    border-radius: 30%;
    top: -50px;
    left: -50px;
    transform: rotate(15deg);
}

.shape-2 {
    width: 100px;
    height: 100px;
    border: 15px solid #bae6fd;
    border-radius: 50%;
    bottom: -30px;
    right: 5%;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: #bae6fd;
    border-radius: 20px;
    top: 20%;
    right: -20px;
    transform: rotate(45deg);
}

/* Testimonials */
.testimonials-section {
    background-color: #e3f2fd;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.reviews-badge {
    background: #fff;
    color: var(--primary-blue);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-slider-wrapper {
    position: relative;
    padding: 2rem 0;
}

.testimonial-item {
    padding: 20px;
    opacity: 0.5;
    transition: var(--transition);
    transform: scale(0.9);
}

.testimonial-item.slick-center {
    opacity: 1;
    transform: scale(1.05);
    z-index: 2;
}

.testimonial-item.slick-center .testimonial-card {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.stars i {
    color: #ffc107;
    font-size: 0.9rem;
    margin-right: 2px;
}

.quote-icon {
    color: #cce7ff;
    font-size: 2.5rem;
}

.testimonial-cat {
    background: #e1f0fa;
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-slider-wrapper button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: var(--transition);
}

.test-prev {
    left: 20px;
}

.test-next {
    right: 20px;
}

.testimonial-slider-wrapper button:hover {
    background: var(--primary-blue);
    color: white;
}

/* Subscribe Section */
.subscribe-section {
    background-color: var(--primary-blue);
    color: white;
}

.exclusive-badge {
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.subscribe-title {
    font-size: 2.2rem;
    font-weight: 800;
}

.subscribe-text {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
}

.benefit-list li {
    margin-right: 25px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.benefit-list li i {
    color: #ffc107;
}

.subscribe-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.subscribe-input {
    flex: 1;
    height: 55px;
    border-radius: 12px;
    border: none;
    padding: 0 20px;
    font-size: 1rem;
}

.btn-subscribe {
    background: #ffc107;
    color: #000;
    font-weight: 700;
    padding: 0 30px;
    height: 55px;
    border-radius: 12px;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: #ffca2c;
    transform: translateY(-2px);
}

.secure-text {
    font-size: 0.85rem;
    opacity: 0.8;
}

.sub-count-text {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Main Footer */
.main-footer {
    background-color: #001e2b;
    color: white;
}

.footer-brand-name {
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-logo-img {
    width: 227px;
    height: auto;
}

.footer-desc {
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    margin-bottom: 10px;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.social-icon.fb {
    background-color: #3b5998;
}

.social-icon.ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.tw {
    background-color: #1da1f2;
}

.social-icon.yt {
    background-color: #ff0000;
}

.social-icon.wa {
    background-color: #25d366;
}

.social-icon.tk {
    background-color: #000000;
}

.footer-title {
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1rem;
}

.contact-item span {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.05);
}

.payment-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.8;
}

.payment-methods-section .line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.payment-logo {
    background: white;
    padding: 10px 25px;
    border-radius: 12px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 60px;
}

.payment-logo span {
    font-weight: 900;
    font-size: 1.2rem;
}

.esewa {
    color: #60bb46;
}

.khalti {
    color: #5c2d91;
}

.fonepay {
    color: #ed1c24;
    font-style: italic;
}

.visa {
    color: #1a1f71;


}

.delivery-badge {
    background: #008ecc;
    color: white;
    border: none;
    text-align: left;
}

.delivery-badge i {
    font-size: 1.5rem;
}

.delivery-badge strong {
    display: block;
    line-height: 1;
}

.delivery-badge small {
    display: block;
    opacity: 0.8;
    font-size: 0.7rem;
}

.sub-footer {
    background-color: #000;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.sub-footer a:hover {
    color: white;
}

.sub-footer span {
    opacity: 0.6;
}

/* Footer Minimal */
footer {
    background: #fff;
    padding: 1rem 0 3rem;
    /* border-top: 1px solid var(--border-color); */
    padding-bottom: 0;
}

section.hero-container .slick-dotted.slick-slider {
    margin-bottom: 0;
}

p.subTitle {
    color: #5D6B98;
}

button.btn.btn-shop {
    color: #5D6B98;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
}

h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
}

/*
Source - https://stackoverflow.com/a/31635875
Posted by Dishan TD, modified by community. See post 'Timeline' for change history
Retrieved 2026-03-18, License - CC BY-SA 4.0
*/

/* the slides */

/* testimonial new  */
img {
    cursor: pointer;
}

/* Register Page */
.register-page {
    min-height: 100vh;
    margin: 0;
    background-color: #647780;
}

.register-wrapper {
    /* min-height: 100vh; */
    padding: 72px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    background: url(../assets/images/rectangleBg.png);
    background-repeat: no-repeat;
    background-position: center;
}

.register-card {
    width: min(1120px, 100%);
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 30px 70px rgba(18, 47, 76, 0.25);
}

.register-media {
    background: #f0f4f8;
    min-height: 680px;
}

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

.register-form-panel {
    padding: 34px 34px 28px;
    position: relative;
}

.register-close {
    position: absolute;
    top: 20px;
    right: 26px;
    color: #a0a9b8;
    font-size: 1.25rem;
    text-decoration: none;
}

.register-close:hover {
    color: #4f5d73;
    text-decoration: none;
}

.register-title {
    color: #171A2E;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: 1%;
}

.register-form label {
    color: #5D6B98;
    margin-bottom: 9px;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
}

.register-form .form-control {
    height: 54px;
    border-radius: 14px;
    border: 1px solid #e1e6ef;
    background: #fbfcff;
    color: #7D89B0;
    padding: 0 18px;
    box-shadow: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0%;
}

.register-form .form-control::placeholder {
    color: #98a3b7;
}

.register-form .form-control:focus {
    border-color: #0196da;
    box-shadow: 0 0 0 3px rgba(1, 150, 218, 0.08);
    background: #fff;
}

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap .form-control {
    padding-right: 48px;
}

.input-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: #7fc4df;
    font-size: 1.1rem;
    pointer-events: none;
}

.password-strength {
    margin: 8px 0 0;
    font-size: 0.92rem;
    color: #8b95a9;
}

.btn-register-submit {
    margin-top: 14px;
    width: 100%;
    border: 0;
    border-radius: 14px;
    background: #0196da;
    color: #fff;
    height: 56px;
    font-size: 1.15rem;
    font-weight: 700;
}

.btn-register-submit:hover {
    color: #fff;
    background: #0087c4;
}

.register-login-text {
    margin: 20px 0 0;
    text-align: center;
    color: #5D6B98;
    font-size: 16px;
    font-weight: 400;
}

.register-login-text a {
    color: #0196DA;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .register-card {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .register-media {
        min-height: 280px;
        max-height: 320px;
    }
}

@media (max-width: 575.98px) {
    .register-wrapper {
        padding: 16px 10px;
    }

    .register-form-panel {
        padding: 24px 14px 18px;
    }

    .register-close {
        right: 16px;
    }

    .register-title {
        font-size: 1.8rem;
    }
}

/* Login Page */
.login-form-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form .form-group {
    margin-bottom: 22px;
}

.forgot-password-link {
    margin-top: 10px;
    display: block;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: #0196DA;
    text-decoration: none;
}

.forgot-password-link:hover {
    color: #0087c4;
    text-decoration: none;
}

/* Product List Page */
.product-list-page {
    margin: 0;
    min-height: 100vh;
    background: #edf1f5;
    color: #1d2b3a;
}

.product-list-wrap {
    padding: 22px 0 28px;
}

.product-list-container {
    max-width: 1420px;
    padding-left: 34px;
    padding-right: 34px;
}

.product-list-topbar {
    margin-bottom: 16px;
}

.product-list-title {
    margin: 0;
    font-family: "Figtree", sans-serif;
    font-size: 32px;
    line-height: 1.2;
    color: #29374d;
    font-weight: 700;
}

.product-list-search {
    width: 320px;
    max-width: 100%;
    background: #fff;
    border: 1px solid #dce4ee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.product-list-search i {
    color: #9aadc3;
    font-size: 0.9rem;
    margin-right: 8px;
}

.product-list-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #596883;
    height: 38px;
    font-size: 0.9rem;
}

.product-list-search input::placeholder {
    color: #9eadc0;
}

.product-list-layout {
    align-items: flex-start;
}

.product-filter-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #dfe6ee;
    padding: 18px 18px 16px;
    box-shadow: 0 6px 22px rgba(38, 58, 84, 0.06);
}

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

.filter-head h2 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.2;
    color: #24334b;
}

.filter-head a {
    color: #e68c8c;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.filter-block {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eef2f7;
}

.filter-block h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    line-height: 1.2;
    color: #3c4d66;
}

.filter-block label {
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #72809a;
    font-size: 0.9rem;
    line-height: 1.35;
    cursor: pointer;
}

.filter-block input[type="checkbox"],
.filter-block input[type="radio"] {
    width: 15px;
    height: 15px;
    accent-color: #27a3df;
}

.view-more-link {
    display: inline-block;
    margin-top: 4px;
    color: #27a3df;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
}

.range-values {
    display: flex;
    gap: 7px;
    margin-bottom: 9px;
}

.range-values span {
    border-radius: 8px;
    border: 1px solid #dbe4ef;
    background: #f8fbff;
    padding: 6px 8px;
    font-size: 0.78rem;
    color: #72819a;
}

.filter-range {
    width: 100%;
    accent-color: #27a3df;
}

.product-grid-col {
    padding-left: 10px;
}

.product-card-grid {
    margin-left: -8px;
    margin-right: -8px;
}

.product-card-grid>div {
    padding-left: 8px;
    padding-right: 8px;
}

.list-product-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #dde5ef;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(37, 52, 73, 0.08);
    height: 100%;
}

.list-product-image-wrap {
    position: relative;
}

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

.list-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 999px;
    background: #2db073;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    padding: 6px 10px;
}

.list-product-body {
    padding: 10px 12px 12px;
}

.list-product-body small {
    color: #96a4b8;
    font-size: 0.74rem;
    font-weight: 500;
}

.list-product-body h4 {
    margin: 5px 0 7px;
    color: #253349;
    font-size: 1.13rem;
    line-height: 1.2;
}

.list-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.list-variants span {
    border-radius: 8px;
    border: 1px solid #d2dce8;
    color: #80a4c3;
    background: #f6fbff;
    padding: 2px 7px;
    font-size: 0.72rem;
    font-weight: 600;
}

.list-rating {
    margin: 0 0 7px;
    color: #6f84a1;
    font-size: 0.82rem;
    font-weight: 600;
}

.list-rating i {
    color: #f1c44f;
}

.list-rating span {
    color: #9aa8bc;
}

.list-price {
    margin: 0;
    color: #0592cf;
    font-weight: 700;
    font-size: 1.06rem;
}

.list-price del {
    margin-left: 6px;
    color: #a4b3c6;
    font-size: 0.78rem;
    font-weight: 500;
}

.list-desc {
    margin: 0 0 8px;
    font-size: 0.8rem;
    line-height: 1.35;
    color: #8e9db3;
}

.btn-load-more {
    min-width: 150px;
    border: 1px solid #50b0df;
    background: #fff;
    color: #45a9da;
    border-radius: 12px;
    height: 44px;
    font-size: 0.95rem;
    font-weight: 700;
}

.btn-load-more:hover {
    background: #45a9da;
    color: #fff;
}

@media (max-width: 1199.98px) {
    .product-filter-col {
        margin-bottom: 14px;
    }

    .product-grid-col {
        padding-left: 0;
    }

    .product-list-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 767.98px) {
    .product-list-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .product-list-topbar {
        gap: 10px;
    }

    .product-list-title {
        font-size: 1.7rem;
    }

    .product-list-search {
        width: 100%;
    }

    .list-product-image-wrap img {
        height: 230px;
    }
}

/* Product Detail Page */
.product-detail-page {
    margin: 0;
    min-height: 100vh;
    background: #ffffff;
    color: #28364b;
}

.product-detail-wrap {
    padding: 20px 0 32px;
}

.product-detail-container {
    /* max-width: 1240px; */
}

.product-breadcrumb {
    margin-bottom: 14px;
    font-size: 14px;
    color: #0196DA;
    display: flex;
    gap: 7px;
    font-weight: 600;
}

.product-breadcrumb a {
    color: #5ea9d7;
    text-decoration: none;
}

.product-main-row {
    margin-bottom: 28px;
}

.product-main-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #dce4ef;
    background: #fff;
    cursor: zoom-in;
}

.product-main-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.28s ease;
    transform-origin: center center;
    will-change: transform;
}

.product-main-image.zoom-active img {
    transform: scale(1.7);
}

.product-thumbs {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}

.product-thumbs button {
    width: 96px;
    height: 96px;
    border-radius: 10px;
    border: 2px solid #d7e1ec;
    padding: 0;
    overflow: hidden;
    background: #fff;
    transition: all 0.2s ease;
}

.product-thumbs button.active {
    border-color: #47aae0;
    box-shadow: 0 6px 16px rgba(61, 158, 214, 0.2);
}

.product-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-panel small {
    display: block;
    color: #86a0bc;
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.product-info-panel h1 {
    margin: 0 0 10px;
    font-size: 2.5rem;
    line-height: 1.1;
    color: #171A2E;
}

.product-summary {
    margin: 0 0 6px;
    color: #404968;
    font-size: 16px;
    line-height: 150%;
    max-width: 95%;
    font-weight: 400;
}

.product-score {
    color: #7388a4;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.product-score i {
    color: #f1c44f;
}

.product-label {
    margin: 0 0 10px;
    color: #404968;
    font-size: 20px;
}

.product-size-options {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.product-size-options button {
    border: 1px solid #d1dbe7;
    background: #fff;
    color: #7f94ad;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 0.82rem;
    font-weight: 700;
}

.product-size-options button.active {
    background: #4daee1;
    border-color: #4daee1;
    color: #fff;
}

.product-price-box {
    border: 1px solid #cde3f3;
    border-radius: 10px;
    background: #f4fbff;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.product-price-box h2 {
    margin: 0 0 2px;
    color: #1297d6;
    font-size: 2rem;
    line-height: 1.1;
}

.product-price-box del {
    color: #95a4b8;
    font-size: 1rem;
    font-weight: 500;
    margin-left: 8px;
}

.product-price-box p {
    margin: 0;
    color: #5bbd69;
    font-size: 0.88rem;
    font-weight: 600;
}

.quantity-row {
    margin-bottom: 14px;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d5deea;
    border-radius: 999px;
    background: #fff;
}

.quantity-control button {
    width: 34px;
    height: 32px;
    border: 0;
    background: transparent;
    color: #86a0ba;
    font-weight: 700;
}

.quantity-control span {
    width: 34px;
    text-align: center;
    font-weight: 700;
    color: #4d607b;
}

.product-cta-row {
    display: flex;
    gap: 10px;
}

.btn-cart-add,
.btn-buy-now {
    border: 0;
    border-radius: 8px;
    height: 44px;
    font-size: 0.92rem;
    font-weight: 600;
}

.btn-cart-add {
    flex: 1;
    background: #369ad7;
    color: #fff;
}

.btn-buy-now {
    width: 130px;
    background: #f0c840;
    color: #4a421d;
}

.product-reviews {
    margin-bottom: 26px;
}

.product-reviews h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #171A2E;
}

.review-item {
    margin-bottom: 14px;
}

.review-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-user span,
.review-user img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #4aa9df;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.review-user h4 {
    margin: 0;
    font-size: 0.98rem;
    color: #33455c;
}

.review-user small,
.review-head>small {
    color: #98a8bc;
    font-size: 0.74rem;
}

.review-stars {
    margin: 4px 0;
    color: #f1c44f;
    font-size: 0.85rem;
}

.review-text {
    margin: 0;
    color: #6f819a;
    font-size: 0.82rem;
    line-height: 1.45;
}

.btn-review-more {
    margin-top: 10px;
    border: 1px solid #58b2e0;
    color: #4eaedf;
    background: #fff;
    border-radius: 8px;
    height: 34px;
    padding: 0 12px;
    font-size: 0.8rem;
    font-weight: 700;
}

.rating-breakdown {
    background: #fff;
    border: 1px solid #dde5ef;
    border-radius: 14px;
    padding: 16px;
    margin-top: 10px;
    box-shadow: 0 7px 20px rgba(39, 58, 80, 0.08);
}

.rating-breakdown h3 {
    margin: 0 0 12px;
    color: #4a5c73;
    font-size: 1.5rem;
}

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

.rating-breakdown li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    color: #8699af;
    font-size: 0.9rem;
}

.related-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.related-head h2 {
    margin: 0;
    font-size: 2rem;
    color: #171A2E;
}

.related-head a {
    color: #4caee0;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
}

.related-card {
    background: #fff;
    border: 1px solid #dde6ef;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(37, 55, 76, 0.08);
    height: 100%;
}

.related-card img {
    width: 100%;
    height: 165px;
    object-fit: cover;
    display: block;
}

.related-body {
    padding: 10px 11px 12px;
}

.related-body h4 {
    margin: 4px 0 8px;
    color: #2c3a4f;
    font-size: 1.08rem;
}

@media (max-width: 991.98px) {
    .product-main-image img {
        height: 380px;
    }

    .product-info-panel {
        margin-top: 16px;
    }

    .product-info-panel h1 {
        font-size: 2.1rem;
    }

    .product-thumbs button {
        width: 80px;
        height: 80px;
    }

    .rating-breakdown {
        margin-top: 18px;
    }
}

@media (max-width: 575.98px) {
    .product-detail-wrap {
        padding: 14px 0 24px;
    }

    .product-main-image img {
        height: 300px;
    }

    .product-thumbs {
        gap: 7px;
    }

    .product-thumbs button {
        width: 70px;
        height: 70px;
    }

    .product-info-panel h1 {
        font-size: 1.8rem;
    }

    .product-price-box h2 {
        font-size: 1.55rem;
    }

    .product-cta-row {
        flex-direction: column;
    }

    .btn-buy-now {
        width: 100%;
    }

    .product-reviews h2,
    .related-head h2 {
        font-size: 1.7rem;
    }
}

/* About Page */
.about-page {
    margin: 0;
    min-height: 100vh;
    background: #eef2f6;
    color: #2f3e54;
}

.about-wrap {
    padding: 20px 0 34px;
}

.about-container {
    /* max-width: 1240px; */
}

.about-story h2 {
    margin: 0 0 2px;
    color: #171A2E;
    font-size: 2rem;
    font-weight: 700;
}

.about-story h1 {
    margin: 0 0 12px;
    color: #0196DA;
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 700;
}

.about-story p {
    margin: 0 0 10px;
    color: #404968;
    font-size: 16px;
    line-height: 150%;
    max-width: 94%;
    font-weight: 400;
    font-family: "Figtree", sans-serif;
}

.about-story-image {
    width: min(340px, 90%);
    height: auto;
}

.about-stats {
    margin-top: 20px;
    background: linear-gradient(135deg, #aed8f4 0%, #c7e9f3 55%, #dbeec8 100%);
    border-radius: 20px;
    padding: 34px 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    margin: 0 0 4px;
    color: #0196DA;
    font-size: 4rem;
    line-height: 1;
}

.stat-item p {
    margin: 0;
    color: #5D6B98;
    font-size: 16px;
    font-weight: 600;
    max-width: 100%;
    font-weight: 400;
}

.mission-vision {
    margin-top: 34px;
}

.mission-vision>h2 {
    margin: 0 0 18px;
    text-align: center;
    color: #171A2E;
    font-size: 2rem;
}

.mv-card {
    text-align: center;
    padding: 8px 20px;
}

.mv-card img {
    width: min(240px, 90%);
    height: auto;
    margin-bottom: 8px;
}

.mv-card h3 {
    margin: 0 0 6px;
    color: #404968;
    font-size: 24px;
}

.mv-card p {
    margin: 0 auto;
    max-width: 520px;
    color: #404968;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 400;
    line-height: 150%;
}

.focus-quality {
    margin-top: 26px;
}

.focus-quality>h2 {
    margin: 0 0 16px;
    text-align: center;
    color: #171A2E;
    font-size: 2rem;
}

.quality-content {
    background: transparent;
}

.quality-image {
    width: 100%;
    border-radius: 14px;
    border: 1px solid #dce4ee;
    display: block;
}

.focus-quality p {
    margin: 0 0 10px;
    color: #667790;
    font-size: 0.93rem;
    line-height: 1.6;
}

.btn-explore-about {
    margin-top: 10px;
    border: 0;
    background: #efc83f;
    color: #3d3a2b;
    border-radius: 10px;
    height: 44px;
    padding: 0 20px;
    font-size: 0.92rem;
    font-weight: 700;
}

.btn-explore-about i {
    margin-left: 7px;
}

@media (max-width: 991.98px) {
    .about-story h1 {
        font-size: 2.5rem;
    }

    .about-story h2 {
        font-size: 1.95rem;
    }

    .about-story p {
        max-width: 100%;
    }

    .about-story-image {
        margin-top: 12px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }

    .stat-item h3 {
        font-size: 3.4rem;
    }

    .mission-vision>h2,
    .focus-quality>h2 {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .about-wrap {
        padding: 14px 0 26px;
    }

    .about-story h1 {
        font-size: 2.05rem;
    }

    .about-story h2 {
        font-size: 1.55rem;
    }

    .about-stats {
        border-radius: 14px;
    }

    .stat-item h3 {
        font-size: 2.8rem;
    }

    .mission-vision>h2,
    .focus-quality>h2 {
        font-size: 1.65rem;
    }
}


/* Shopping Cart Page (Filled) */
.cart-page {
    margin: 0;
    min-height: 100vh;
    background: #eef2f6;
    color: #2a3950;
}

.cart-wrap {
    padding: 28px 0 40px;
}

.cart-container {
    /* max-width: 1280px; */
}

.cart-back-link {
    color: #3da1da;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
}

.cart-back-link:hover {
    color: #2c8cc5;
    text-decoration: none;
}

.cart-back-link i {
    margin-right: 6px;
}

.cart-container h1 {
    margin: 8px 0 4px;
    color: #171A2E;
    font-size: 40px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 1%;
}

.cart-count {
    margin: 0 0 20px;
    color: #7b8ea6;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Cart Item Card */
.cart-item-card {
    background: #fff;
    border: 1px solid #e2eaf2;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 14px;
    box-shadow: 0 4px 16px rgba(30, 50, 72, 0.06);
    display: flex;
    gap: 18px;
    position: relative;
    transition: box-shadow 0.25s ease;
}

.cart-item-card:hover {
    box-shadow: 0 8px 28px rgba(30, 50, 72, 0.10);
}

.cart-item-badge {
    position: absolute;
    top: 26px;
    left: 26px;
    background: #1dba67;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
    letter-spacing: 0.3px;
}

.cart-item-image {
    flex-shrink: 0;
    width: 160px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    background: #f4f6f9;
}

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

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.cart-item-category {
    display: block;
    color: #5D6B98;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    font-family: "Figtree", sans-serif;
}

.cart-item-name {
    margin: 0;
    color: #171A2E;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.cart-item-remove {
    border: none;
    background: none;
    color: #e0615e;
    font-size: 1.1rem;
    padding: 6px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    background: #fef0f0;
    color: #d04542;
}

/* Variant Tags */
.cart-item-variants {
    display: flex;
    gap: 8px;
    margin: 8px 0;
}

.variant-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid #d8e2ec;
    color: #5d7089;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.variant-tag.active {
    background: #3da1da;
    color: #fff;
    border-color: #3da1da;
}

.variant-tag:hover:not(.active) {
    border-color: #3da1da;
    color: #3da1da;
}

/* Price & Quantity Row */
.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.cart-item-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-current {
    color: #1a9ed4;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: "Bai Jamjuree", sans-serif;
}

.price-original {
    color: #a3b1c3;
    font-size: 0.88rem;
    text-decoration: line-through;
    font-weight: 500;
}

/* Quantity Controls */
.cart-qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e2eaf2;
    border-radius: 10px;
    overflow: hidden;
}

.qty-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: #f0f5f9;
    color: #5a6e85;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #3da1da;
    color: #fff;
}

.qty-minus {
    border-right: 1px solid #e2eaf2;
}

.qty-plus {
    border-left: 1px solid #e2eaf2;
}

.qty-value {
    min-width: 36px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2d3e55;
    padding: 0 4px;
}

/* Order Summary Card */
.cart-summary-card {
    background: #fff;
    border: 1px solid #e0e8f1;
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 6px 22px rgba(30, 50, 72, 0.07);
    position: sticky;
    top: 20px;
}

.cart-summary-title {
    margin: 0 0 18px;
    color: #1e2d42;
    font-size: 1.6rem;
    font-weight: 800;
}

.cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #6b7e97;
    font-size: 0.98rem;
}

.cart-summary-row strong {
    color: #3e5068;
    font-weight: 700;
}

.cart-summary-row.saving span,
.cart-summary-row.saving strong {
    color: #1dba67;
}

.cart-summary-divider {
    border-top: 1px solid #e8eff5;
    margin: 14px 0;
}

.cart-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e2d42;
}

.cart-summary-total strong {
    color: #1a9ed4;
    font-size: 1.35rem;
}

.btn-cart-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border-radius: 28px;
    background: #1a9ed4;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.25s ease;
    border: none;
}

.btn-cart-checkout:hover {
    background: #1589bc;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(26, 158, 212, 0.3);
}

.btn-cart-checkout i {
    margin-left: 8px;
    font-size: 0.85rem;
}

.btn-cart-continue {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border-radius: 28px;
    background: #f5c518;
    color: #2d2a17;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.25s ease;
    border: none;
}

.btn-cart-continue:hover {
    background: #e8b810;
    color: #2d2a17;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(245, 197, 24, 0.3);
}

/* Trust Badges */
.cart-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5a6e85;
    font-size: 0.88rem;
    font-weight: 500;
}

.trust-badge-item i {
    color: #1dba67;
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
}

/* Responsive */
@media (max-width: 991.98px) {
    .cart-container h1 {
        font-size: 2.4rem;
    }

    .cart-summary-card {
        position: static;
        margin-top: 6px;
    }

    .cart-item-image {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 575.98px) {
    .cart-wrap {
        padding: 18px 0 28px;
    }

    .cart-container h1 {
        font-size: 2rem;
    }

    .cart-item-card {
        flex-direction: column;
        gap: 12px;
    }

    .cart-item-image {
        width: 100%;
        height: 180px;
    }

    .cart-item-badge {
        top: 26px;
        left: 26px;
    }

    .cart-item-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cart-summary-title {
        font-size: 1.35rem;
    }

    .btn-cart-checkout,
    .btn-cart-continue {
        height: 46px;
        font-size: 0.95rem;
    }
}

/* Empty Cart Page */
.cart-empty-page .cart-wrap {
    padding-bottom: 52px;
}

.cart-empty-state {
    margin: 62px auto 0;
    max-width: 430px;
    text-align: center;
}

.cart-empty-state img {
    width: min(340px, 86%);
    height: auto;
    margin-bottom: 22px;
}

.cart-empty-state h2 {
    margin: 0 0 7px;
    color: #424d66;
    font-size: 2.9rem;
    line-height: 1.2;
}

.cart-empty-state p {
    margin: 0 0 18px;
    color: #6e7e9b;
    font-size: 1.95rem;
}

.btn-start-shopping {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 350px;
    max-width: 100%;
    height: 56px;
    border-radius: 14px;
    background: #439bd4;
    color: #fff;
    font-size: 1.95rem;
    font-weight: 700;
    text-decoration: none;
}

.btn-start-shopping:hover {
    color: #fff;
    text-decoration: none;
    background: #378fc8;
}

@media (max-width: 767.98px) {
    .cart-empty-state {
        margin-top: 36px;
    }

    .cart-empty-state h2 {
        font-size: 2.1rem;
    }

    .cart-empty-state p {
        font-size: 1.35rem;
    }

    .btn-start-shopping {
        min-width: 280px;
        height: 50px;
        font-size: 1.4rem;
    }
}

@media (max-width: 575.98px) {
    .cart-empty-state {
        margin-top: 28px;
    }

    .cart-empty-state h2 {
        font-size: 1.7rem;
    }

    .cart-empty-state p {
        font-size: 1.02rem;
    }

    .btn-start-shopping {
        width: 100%;
        min-width: 0;
        font-size: 1.05rem;
    }
}

/* Checkout Page */
.checkout-page {
    margin: 0;
    min-height: 100vh;
    background: #eef2f6;
    color: #2a3950;
}

.checkout-wrap {
    padding: 28px 0 34px;
}

.checkout-container {
    /* max-width: 1360px; */
}

.checkout-back-link {
    color: #3da1da;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
}

.checkout-back-link i {
    margin-right: 6px;
}

.checkout-container h1 {
    margin: 8px 0 4px;
    color: #222c42;
    font-size: 3.1rem;
    line-height: 1.1;
    margin: 8px 0 4px;
    color: #171A2E;
    font-size: 40px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 1%;
}

.checkout-subtitle {
    margin: 0 0 16px;
    color: #5D6B98;
    font-size: 18px;
    font-weight: 400;
}

.checkout-card {
    background: #fff;
    border: 1px solid #dfe7f0;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 14px;
    box-shadow: 0 5px 18px rgba(39, 56, 78, 0.06);
}

.checkout-card h2 {
    margin: 0 0 12px;
    color: #171A2E;
    font-size: 20px;
}

.checkout-card label {
    color: #5D6B98;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.checkout-card .form-control {
    height: 44px;
    border: 1px solid #d7e0eb;
    border-radius: 10px;
    background: #f9fbfe;
    color: #334a64;
    box-shadow: none;
    font-size: 0.9rem;
}

.checkout-card .form-control::placeholder {
    color: #9aabc0;
}

.checkout-card select.form-control {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #7088a4 50%), linear-gradient(135deg, #7088a4 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 13px) calc(50% - 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.payment-pill {
    border: 1px solid #d5dfeb;
    background: #fff;
    border-radius: 10px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
}

.payment-pill.active {
    border-color: #4ba8de;
    box-shadow: 0 0 0 2px rgba(75, 168, 222, 0.12);
}

.payment-pill img {
    max-width: 100%;
    max-height: 34px;
    object-fit: contain;
}

.payment-note {
    margin: 10px 0 0;
    color: #4f8ed0;
    font-size: 0.9rem;
    font-weight: 600;
}

.payment-note i {
    margin-right: 5px;
}

.checkout-summary-card {
    background: #fff;
    border: 1px solid #dde6f0;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 7px 24px rgba(31, 48, 68, 0.08);
    position: sticky;
    top: 14px;
}

.checkout-summary-card h2 {
    margin: 0 0 12px;
    color: #171A2E;
    font-size: 24px;
}

.checkout-order-item {
    display: grid;
    grid-template-columns: 68px 1fr auto;
    gap: 8px;
    align-items: center;
    margin-bottom: 14px;
}

.checkout-order-item img {
    width: 64px;
    height: 64px;
    border-radius: 7px;
    object-fit: cover;
}

.checkout-order-item h4 {
    margin: 0;
    color: #2f3f55;
    font-size: 16px;
    font-weight: 600;
}

.checkout-order-item p {
    margin: 1px 0 0;
    color: #0196DA;
    font-size: 20px;
    font-weight: 700;
}

.checkout-order-item small {
    color: #7f93ad;
    font-size: 0.84rem;
    font-weight: 700;
}

.checkout-summary-row,
.checkout-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    color: #72849e;
    font-size: 1.02rem;
}

.checkout-summary-row strong {
    color: #5a6d85;
}

.checkout-summary-row.saving span,
.checkout-summary-row.saving strong {
    color: #4da96c;
}

.checkout-summary-card hr {
    border-top: 1px solid #e2e9f2;
    margin: 10px 0;
}

.checkout-total-row {
    margin-bottom: 12px;
    color: #36475e;
    font-size: 1.35rem;
    font-weight: 700;
}

.checkout-total-row strong {
    color: #3d9cd8;
}

.btn-checkout-pay {
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: #3f9fd9;
    color: #fff;
    height: 44px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-checkout-pay i {
    margin-left: 8px;
}

.btn-checkout-pay:hover {
    color: #fff;
    text-decoration: none;
}

.btn-checkout-back {
    width: 100%;
    border: 1px solid #f0a19c;
    border-radius: 10px;
    background: #fff;
    color: #e6827d;
    height: 44px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-checkout-back:hover {
    text-decoration: none;
    color: #d3706b;
}

@media (max-width: 1199.98px) {
    .payment-methods-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .checkout-summary-card {
        position: static;
        margin-top: 2px;
    }

    .checkout-container h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .checkout-wrap {
        padding: 18px 0 24px;
    }

    .checkout-container h1 {
        font-size: 2rem;
    }

    .checkout-subtitle {
        font-size: 1rem;
    }

    .checkout-card h2,
    .checkout-summary-card h2 {
        font-size: 1.45rem;
    }

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

    .checkout-total-row {
        font-size: 1.15rem;
    }
}

/* Payment Page */
.payment-page {
    margin: 0;
    min-height: 100vh;
    background: #eef2f6;
    color: #28364b;
}

.payment-wrap {
    padding: 28px 0 34px;
}

.payment-container {
    max-width: 1360px;
}

.payment-container h1 {
    margin: 8px 0 4px;
    color: #222c42;
    font-size: 3.1rem;
    line-height: 1.1;
}

.payment-form-card {
    background: #fff;
    border: 1px solid #dfe7f0;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 7px 24px rgba(39, 57, 79, 0.08);
}

.payment-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.payment-brand-logo {
    width: 160px;
    height: auto;
    object-fit: contain;
}

.payment-required {
    text-align: right;
}

.payment-required small {
    display: block;
    color: #7c8fad;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.payment-required h2 {
    margin: 0;
    color: #1d2640;
    font-size: 3.2rem;
    line-height: 1;
}

.payment-form-card label {
    color: #5f7491;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.payment-form-card .form-control {
    height: 54px;
    border: 1px solid #d7e0eb;
    border-radius: 12px;
    background: #f9fbfe;
    color: #334a64;
    box-shadow: none;
    font-size: 0.95rem;
}

.payment-form-card .form-control::placeholder {
    color: #9aabc0;
}

.payment-form-card .btn-checkout-pay {
    height: 58px;
    font-size: 1.05rem;
    border-radius: 14px;
    margin-top: 8px;
}

.payment-form-card .btn-checkout-back {
    height: 50px;
    border-radius: 14px;
}

.payment-page .checkout-summary-card {
    border-radius: 16px;
}

@media (max-width: 991.98px) {
    .payment-container h1 {
        font-size: 2.5rem;
    }

    .payment-required h2 {
        font-size: 2.6rem;
    }

    .payment-page .checkout-summary-card {
        margin-top: 14px;
    }
}

@media (max-width: 575.98px) {
    .payment-wrap {
        padding: 18px 0 24px;
    }

    .payment-container h1 {
        font-size: 2rem;
    }

    .payment-form-card {
        padding: 14px;
    }

    .payment-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .payment-required {
        text-align: left;
    }

    .payment-required h2 {
        font-size: 2.1rem;
    }
}

/* Order Confirmed Page */
.order-confirm-page {
    margin: 0;
    min-height: 100vh;
    /* background: radial-gradient(circle at top left, #88a2b4 0%, #6e879a 45%, #5d7588 100%); */
    position: relative;
    min-height: 100vh;
    margin: 0;
    background-color: #647780;
}

.order-confirm-page::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(22, 40, 56, 0.42); */
    backdrop-filter: blur(4px);
}

.order-confirm-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    background-image: url(assets/images/orderCon.png);
    background: url(../assets/images/orderCon.png);
    background-repeat: no-repeat;
    background-position: center;
    padding: 72px 20px;
}

.order-confirm-card {
    width: min(380px, 100%);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(22, 39, 54, 0.25);
    padding: 26px 24px 22px;
    text-align: center;
}

.order-confirm-icon {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: #1fbe63;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-confirm-icon i {
    color: #fff;
    font-size: 3.35rem;
}

.order-confirm-card h1 {
    margin: 0 0 8px;
    color: #1f2840;
    font-size: 24px;
    line-height: 1.2;
    font-size: 7;
}

.order-confirm-card p {
    margin: 0 0 18px;
    color: #69788f;
    font-size: 1.05rem;
    line-height: 1.5;
}

.btn-order-continue,
.btn-order-view {
    width: 100%;
    border-radius: 12px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.btn-order-continue {
    background: #1593d1;
    color: #fff;
    margin-bottom: 10px;
}

.btn-order-continue i {
    margin-left: 8px;
}

.btn-order-continue:hover {
    color: #fff;
    text-decoration: none;
    background: #1087c1;
}

.btn-order-view {
    background: #f1ce26;
    color: #2e2a17;
}

.btn-order-view:hover {
    color: #2e2a17;
    text-decoration: none;
    background: #e7c31d;
}

@media (max-width: 575.98px) {
    .order-confirm-card h1 {
        font-size: 1.9rem;
    }

    .order-confirm-card p {
        font-size: 0.96rem;
    }

    .btn-order-continue,
    .btn-order-view {
        font-size: 1rem;
    }
}

/* Blogs Page */
.blogs-page {
    margin: 0;
    min-height: 100vh;
    background: #eef2f6;
    color: #2a3950;
}

.blogs-wrap {
    padding: 20px 0 34px;
}

.blogs-container {
    /* max-width: 1240px; */
}

.blogs-container h1 {
    margin: 0 0 4px;
    color: #212b42;
    font-size: 40px;
}

.blogs-subtitle {
    margin: 0 0 16px;
    color: #5D6B98;
    font-size: 0.95rem;
    font-weight: 400;
}

.featured-blog-card {
    background: #fff;
    border: 1px solid #dde6ef;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(33, 52, 75, 0.08);
    margin-bottom: 16px;
}

.featured-blog-card img {
    width: 100%;
    height: 100%;
    min-height: 266px;
    object-fit: cover;
    display: block;
}

.featured-blog-content {
    padding: 27px !important;
}

.featured-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.featured-meta-top span {
    border-radius: 999px;
    background: #e8f3fb;
    color: #0196DA;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
}

.featured-meta-top small {
    color: #5D6B98;
    font-size: 0.72rem;
    font-weight: 400;
}

.featured-blog-content h2 {
    margin: 0 0 8px;
    color: #171A2E;
    font-size: 2rem;
    line-height: 130%;
}

.featured-blog-content p {
    margin: 0 0 10px;
    color: #404968;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
}

.featured-meta-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 8px;
}

.featured-meta-bottom small {
    color: #5D6B98;
    font-size: 0.76rem;
    font-weight: 400;
}

.featured-meta-bottom i {
    margin-right: 4px;
}

.featured-blog-content>a,
.blog-card-body>a {
    color: #0196DA;
    font-size: 0.84rem;
    font-weight: 400;
    text-decoration: none;
}

.featured-blog-content>a i,
.blog-card-body>a i {
    margin-left: 5px;
}

.blog-card-item {
    background: #fff;
    border: 1px solid #dde6ef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 7px 22px rgba(34, 53, 74, 0.08);
    height: 100%;
}

.blog-card-item img {
    width: 100%;
    height: 172px;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 10px 12px 12px;
}

.blog-card-meta-top {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.blog-card-meta-top span,
.blog-card-meta-top small {
    color: #5D6B98;
    font-size: 14px;
    font-weight: 600;
}

.blog-card-body h3 {
    margin: 0 0 5px;
    color: #171A2E;
    font-size: 20px;
    line-height: 150%;
}

.blog-card-body p {
    margin: 0 0 7px;
    color: #404968;
    font-size: 0.8rem;
    line-height: 1.4;
}

.blog-card-meta-bottom {
    margin-bottom: 7px;
}

.blog-card-meta-bottom small {
    display: block;
    color: #5D6B98;
    font-size: 14px;
    margin-bottom: 4px;
    margin-top: 8px;
}

.blog-card-meta-bottom i {
    margin-right: 4px;
}

.blogs-load-more {
    min-width: 112px;
    height: 38px;
    border: 1px solid #5aafe0;
    border-radius: 10px;
    background: #fff;
    color: #4da9dc;
    font-size: 0.85rem;
    font-weight: 700;
}

.blogs-load-more:hover {
    background: #4da9dc;
    color: #fff;
}

@media (max-width: 991.98px) {
    .featured-blog-content h2 {
        font-size: 1.95rem;
    }

    .blogs-container h1 {
        font-size: 2.3rem;
    }
}

@media (max-width: 575.98px) {
    .blogs-wrap {
        padding: 14px 0 24px;
    }

    .blogs-container h1 {
        font-size: 2rem;
    }

    .featured-blog-content h2 {
        font-size: 1.6rem;
    }

    .blog-card-body h3 {
        font-size: 1.05rem;
    }
}

/* Blog Detail Page */
.blog-detail-page {
    margin: 0;
    min-height: 100vh;
    background: #eef2f6;
    color: #2b3a50;
}

.blog-detail-wrap {
    padding: 16px 0 30px;
}

.blog-detail-container {
    max-width: 1080px;
}

.blog-detail-breadcrumb {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #9eb0c5;
    font-size: 0.78rem;
    font-weight: 600;
}

.blog-detail-breadcrumb a {
    color: #6eb2db;
    text-decoration: none;
}

.blog-detail-article {
    max-width: 700px;
    margin: 0 auto 18px;
}

.blog-detail-hero {
    width: 100%;
    border-radius: 14px;
    display: block;
    margin-bottom: 12px;
}

.blog-detail-article h1 {
    margin: 0 0 7px;
    color: #2b3a50;
    font-size: 40px;
    line-height: 1.18;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 12px;
}

.blog-detail-meta small {
    color: #9aaabe;
    font-size: 0.77rem;
    font-weight: 600;
}

.blog-detail-meta i {
    margin-right: 4px;
}

.blog-detail-article p {
    margin: 0 0 8px;
    color: #6e809b;
    font-size: 0.86rem;
    line-height: 1.45;
}

.blog-detail-article h2 {
    margin: 11px 0 4px;
    color: #304056;
    font-size: 1rem;
    line-height: 1.3;
}

.blog-share-box {
    margin-top: 14px;
    border: 1px solid #dde6ef;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 6px 18px rgba(35, 51, 72, 0.06);
}

.blog-share-box h3 {
    margin: 0 0 8px;
    color: #3b4b61;
    font-size: 0.92rem;
}

.share-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.share-links a {
    border: 1px solid #d7e1ec;
    border-radius: 8px;
    background: #f8fbff;
    color: #7b8ea9;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 9px;
}

.share-links a i {
    margin-right: 4px;
}

.blog-related-section {
    margin-top: 18px;
}

.blog-related-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.blog-related-head h2 {
    margin: 0;
    color: #2c3b51;
    font-size: 1.95rem;
}

.blog-related-head a {
    color: #4caedf;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
}

.blog-related-head a i {
    margin-left: 4px;
}

@media (max-width: 767.98px) {
    .blog-detail-article h1 {
        font-size: 2rem;
    }

    .blog-related-head h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .blog-detail-wrap {
        padding: 12px 0 22px;
    }

    .blog-detail-article h1 {
        font-size: 1.7rem;
    }

    .blog-detail-meta {
        gap: 9px;
    }

    .share-links a {
        font-size: 0.68rem;
        padding: 5px 7px;
    }
}

/* ===== My Account Page ===== */
.myaccount-wrap {
    padding: 2.5rem 0 4rem;
}

.myaccount-header {
    margin-bottom: 2rem;
}

.myaccount-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.myaccount-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Layout */
.myaccount-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: start;
}

/* Profile Card */
.myaccount-profile-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #edf2f7;
    position: sticky;
    top: 20px;
}

.profile-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.2rem;
    border: 3px solid #edf2f7;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.profile-role-badge {
    display: inline-block;
    background: #e1f0fa;
    color: var(--primary-blue);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.profile-info-list {
    text-align: left;
    margin-bottom: 1.8rem;
}

.profile-info-item {
    margin-bottom: 1rem;
}

.profile-info-item:last-child {
    margin-bottom: 0;
}

.profile-info-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2px;
}

.profile-info-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-edit-profile {
    width: 100%;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1.5px solid var(--primary-blue);
    background: #fff;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-edit-profile:hover {
    background: var(--primary-blue);
    color: #fff;
}

.btn-logout {
    width: 100%;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1.5px solid #ff4747;
    background: #fff;
    color: #ff4747;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.btn-logout:hover {
    background: #ff4747;
    color: #fff;
}

/* Orders */
.myaccount-orders {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1.8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #edf2f7;
    transition: var(--transition);
}

.order-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.order-id-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2px;
    flex-wrap: wrap;
}

.order-id {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.order-status-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: capitalize;
    white-space: nowrap;
}

.status-processing {
    background: #fef3c7;
    color: #b45309;
}

.status-on-delivery {
    background: #dbeafe;
    color: #1d4ed8;
}

.status-delivered {
    background: #d1fae5;
    color: #047857;
}

.status-cancelled {
    background: #fee2e2;
    color: #dc2626;
}

.order-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 4px 0 10px;
}

.order-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

/* Order Items */
.order-card-right {
    border-left: 1px solid #f0f4f8;
    padding-left: 24px;
}

.order-items-heading {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.item-name {
    color: #64748b;
    font-weight: 400;
}

.item-qty {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.82rem;
}

.item-price {
    color: var(--text-dark);
    font-weight: 600;
    white-space: nowrap;
}

.view-more-items {
    color: var(--primary-blue);
    font-size: 0.83rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.view-more-items:hover {
    text-decoration: underline;
    color: #0077aa;
}

/* Responsive */
@media (max-width: 991.98px) {
    .myaccount-layout {
        grid-template-columns: 280px 1fr;
        gap: 18px;
    }
}

nav.product-breadcrumb strong {
    color: #5D6B98;
    font-weight: 400;
}

@media (max-width: 767.98px) {
    .myaccount-layout {
        grid-template-columns: 1fr;
    }

    .myaccount-profile-card {
        position: static;
    }

    .order-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .order-card-right {
        border-left: none;
        border-top: 1px solid #f0f4f8;
        padding-left: 0;
        padding-top: 14px;
    }
}

/* ===== FAQ Page ===== */
.faq-page {
    margin: 0;
    min-height: 100vh;
    background: #fafcff;
    color: #2b3a50;
}

.faq-wrap {
    padding: 3rem 0 4rem;
}

.faq-container {
    max-width: 800px;
}

.faq-header {
    margin-bottom: 2.5rem;
}

.faq-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1e35;
    margin-bottom: 0.5rem;
}

.faq-header p {
    color: #6a7c92;
    font-size: 1rem;
    margin: 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 3rem;
}

.faq-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    border: 1px solid #edf2f7;
    overflow: hidden;
    transition: var(--transition, 0.3s ease);
}

.faq-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.faq-card-header {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    user-select: none;
}

.faq-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c3854;
    padding-right: 20px;
}

.faq-card-header:not(.collapsed) .faq-title {
    color: #0196DA;
    /* Primary blue for active */
}

.faq-icon {
    font-size: 1rem;
    color: #6a7c92;
    transition: transform 0.3s ease;
}

.faq-card-header:not(.collapsed) .faq-icon {
    color: #0196DA;
}

.faq-icon::before {
    content: "\f067";
    /* fa-plus */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.faq-card-header:not(.collapsed) .faq-icon::before {
    content: "\f068";
    /* fa-minus */
}

.faq-card-body {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: #5c6b84;
    line-height: 1.6;
}

/* Contact Box */
.faq-contact-box {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    border: 1px solid #edf2f7;
}

.faq-contact-box h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1e35;
    margin-bottom: 0.5rem;
}

.faq-contact-box p {
    color: #6a7c92;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.faq-contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #edf2f7;
    text-decoration: none;
    transition: var(--transition, 0.3s ease);
}

.contact-method-item:hover {
    background: #f1f5f9;
    text-decoration: none;
    transform: translateY(-2px);
}

.method-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.method-icon.phone {
    background: #e0f2fe;
    color: #0284c7;
}

.method-icon.email {
    background: #e0e7ff;
    color: #4f46e5;
}

.method-icon.whatsapp {
    background: #dcfce7;
    color: #16a34a;
}

.contact-method-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

@media (max-width: 767.98px) {
    .faq-contact-methods {
        grid-template-columns: 1fr;
    }

    .faq-header h1 {
        font-size: 1.8rem;
    }
}

/* ===== Contact Page ===== */
.contact-page {
    margin: 0;
    min-height: 100vh;
    background: #fafcff;
    color: #2b3a50;
}

.contact-wrap {
    padding: 2.5rem 0 4rem;
}

.go-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0196DA;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: var(--transition, 0.3s ease);
}

.go-back-link:hover {
    color: #007bb5;
    text-decoration: none;
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1e35;
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: #5D6B98;
    font-size: 18px;
    margin: 0;
}

/* Contact Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    border: 1px solid #edf2f7;
}

.contact-form-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1e35;
    margin-bottom: 0.5rem;
}

.form-desc {
    color: #5D6B98;
    font-size: 16px;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-form label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #5D6B98;
    margin-bottom: 6px;
}

.contact-form .form-control {
    width: 100%;
    border: 1px solid #dce4ed;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #2b3a50;
    background-color: #fcfdfe;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #0196DA;
    box-shadow: 0 0 0 3px rgba(1, 150, 218, 0.1);
    outline: none;
    background-color: #fff;
}

.contact-form .form-control::placeholder {
    color: #a0b0c0;
}

.message-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.char-count-wrap {
    text-align: right;
    width: 100%;
    margin-top: -30px;
    padding-right: 16px;
    pointer-events: none;
}

.char-count-wrap span {
    font-size: 0.75rem;
    color: #8a9cae;
    font-weight: 500;
}

.btn-send-message {
    width: 100%;
    background-color: #0196DA;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 16px;
    border-radius: 10px;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.btn-send-message:hover {
    background-color: #017bb5;
    color: #fff;
    transform: translateY(-1px);
}

/* Store Locations */
.store-locations-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1e35;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.store-location-card {
    display: flex;
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    border: 1px solid #edf2f7;
    margin-bottom: 1rem;
    align-items: center;
}

.map-thumbnail {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 1.2rem;
    background: #eef2f6;
    border: 1px solid #edf2f7;
}

.store-info {
    flex-grow: 1;
}

.store-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1e35;
    margin-bottom: 1rem;
}

.store-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.store-contact-row:last-child {
    margin-bottom: 0;
}

.store-contact-row .icon-wrap {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.icon-wrap.phone {
    background: #e0f2fe;
    color: #0284c7;
}

.icon-wrap.email {
    background: #e0e7ff;
    color: #4f46e5;
}

.icon-wrap.whatsapp {
    background: #dcfce7;
    color: #16a34a;
}

.store-contact-row span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #5c6b84;
}

@media (max-width: 991.98px) {
    .contact-form-card {
        padding: 2rem;
    }

    .contact-header h1 {
        font-size: 2.2rem;
    }

    .store-locations-title {
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {
    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-header h1 {
        font-size: 1.8rem;
    }

    .store-location-card {
        flex-direction: column;
        text-align: center;
    }

    .map-thumbnail {
        width: 100%;
        height: 160px;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .store-contact-row {
        justify-content: center;
    }
}

footer.main-footer i.fas {
    color: #FED001;
}

.payment-logos {
    gap: 15px; /* space between logos */
    flex-wrap: wrap;
}

.payment-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;       /* white background block */
    border-radius: 8px;     /* rounded corners */
    padding: 10px 15px;     /* padding around image */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* subtle shadow optional */
}

.payment-img {
    width: 110px;           /* uniform width */
    height: 60px;           /* uniform height */
    object-fit: contain;    /* keeps aspect ratio */
}

.toast-box {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 280px;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #fff;
    z-index: 99999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease;
}

.toast-box.success {
    background: #22c55e;
}

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

.toast-box i {
    font-size: 18px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.is-invalid {
    border-color: #ef4444;
}

.password-rules li {
    color: #dc3545;
    transition: 0.2s;
}

.password-rules li.valid {
    color: #28a745;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.input-icon-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.input-icon-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;          /* 🔥 bring icon above input */
    pointer-events: auto; /* 🔥 ensure clickable */
}

/* 🔥 VERY IMPORTANT */
.input-icon-wrap input {
    padding-right: 40px; /* space for icon */
}