/* RESET & BASE */
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont;
    color: #222;
    background: #ffffff;
}

a {
    text-decoration: none;
}

/* TOP BAR */
.top-bar {
    background: #0d6efd;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

.top-bar span {
    margin-right: 20px;
}

.top-bar i {
    margin-right: 6px;
}

/* HEADER MAIN */
.header-main {
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
}

.site-logo {
    font-weight: 700;
    font-size: 22px;
    color: #0d6efd;
}

.main-menu .nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: #333;
}

.main-menu .nav-link:hover {
    color: #0d6efd;
}

/* SEARCH */
.search-form input {
    width: 240px;
    padding: 7px 12px;
    border-radius: 20px;
    border: 1px solid #ddd;
    outline: none;
}

.search-form input:focus {
    border-color: #0d6efd;
}

/* HEADER ICONS */
.header-icons a {
    font-size: 18px;
    color: #333;
    margin-left: 18px;
    position: relative;
}

.header-icons a:hover {
    color: #0d6efd;
}

/* CART COUNT */
.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
}

/* MOBILE */
@media (max-width: 991px) {
    .search-form {
        margin: 15px 0;
    }
    .search-form input {
        width: 100%;
    }
}

/*Banner*/
/* ================================
   HERO SECTION
================================ */
.hero-section {
    background: linear-gradient(
        120deg,
        #0d6efd 0%,
        #0a58ca 100%
    );
    color: #ffffff;
    padding: 90px 0;
}

.hero-content {
    max-width: 720px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    background: #ffffff;
    color: #0d6efd;
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #e9ecef;
    color: #084298;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-section {
        padding: 70px 0;
    }
}

/*category*/
/* ================================
   CATEGORY SECTION
================================ */
.category-section {
    padding: 70px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: #555;
}

.category-card {
    display: block;
    height: 100%;
    padding: 30px 25px;
    border-radius: 14px;
    background: #f8f9fa;
    border: 1px solid #e6e6e6;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.category-card span {
    font-size: 14px;
    color: #666;
}

.category-card:hover {
    background: #0d6efd;
    border-color: #0d6efd;
}

.category-card:hover h3,
.category-card:hover span {
    color: #ffffff;
}

/* MOBILE */
@media (max-width: 768px) {
    .category-section {
        padding: 50px 0;
    }

    .category-card {
        margin-bottom: 20px;
    }
}

/*product card*/
/* ================================
   FEATURED PRODUCTS
================================ */
.featured-section {
    padding: 80px 0;
    background: #f9fafb;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cols-pro{
    margin-bottom: 15px;
}

.product-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    text-align: center;
}

.product-image img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

.product-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}

.product-tags {
    margin-bottom: 15px;
}

.product-tags span {
    display: inline-block;
    background: #eef2ff;
    color: #0d6efd;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-right: 6px;
}

.product-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #0d6efd;
}

.add-to-cart-btn {
    background: #0d6efd;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #084298;
}

/* MOBILE */
@media (max-width: 768px) {
    .featured-section {
        padding: 60px 0;
    }

    .product-card {
        margin-bottom: 25px;
    }
}

/*about us*/
/* ================================
   ABOUT US SECTION
================================ */
.about-section {
    padding: 90px 0;
    background: #ffffff;
}

.about-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.about-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0d6efd;
    margin-bottom: 10px;
}

.about-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    background: #0d6efd;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #084298;
    color: #ffffff;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-section {
        padding: 70px 0;
    }

    .about-title {
        font-size: 28px;
    }
}

/*faq*/
/* ================================
   WHY CHOOSE US SECTION
================================ */
.why-choose-section {
    padding: 90px 0;
    background: #f9fafb;
}

.why-image img {
    width: 80%;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* Accordion customization */
.accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-size: 16px;
    background: #ffffff;
}

.accordion-button:not(.collapsed) {
    color: #0d6efd;
    background: #eef2ff;
}

.accordion-body {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    background: #ffffff;
}

/* MOBILE */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 70px 0;
    }

    .why-image {
        margin-bottom: 30px;
    }
}

/*testimonial*/
/* ================================
   TESTIMONIAL SECTION
================================ */
.testimonial-section {
    padding: 90px 0;
    background: #ffffff;
}

.testimonial-card {
    background: #f9fafb;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.testimonial-user strong {
    display: block;
    font-size: 16px;
    color: #222;
}

.testimonial-user span {
    font-size: 14px;
    color: #777;
}

/* MOBILE */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 70px 0;
    }

    .testimonial-card {
        margin-bottom: 25px;
    }
}

/*footer*/
/* ================================
   FOOTER
================================ */
.site-footer {
    background: #0b1c2d;
    color: #cfd6dd;
    padding: 70px 0 0;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cfd6dd;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact {
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact a {
    color: #cfd6dd;
}

.footer-contact a:hover {
    color: #ffffff;
}

/* FOOTER BOTTOM */
.footer-bottom {
    background: #081623;
    padding: 15px 0;
    margin-top: 50px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #9aa4af;
}

/* MOBILE */
@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0 0;
    }

    .site-footer .col-md-3 {
        margin-bottom: 30px;
    }
}


/* ================================
   ABOUT PAGE
================================ */

/* HERO */
.about-hero {
    background: linear-gradient(120deg, #0d6efd, #084298);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* CONTENT */
.about-page-section {
    padding: 90px 0;
    background: #ffffff;
}

.about-page-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-page-subtitle {
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0d6efd;
}

.about-page-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #222;
}

.about-page-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.about-page-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

/* CTA */
.about-page-btn {
    display: inline-block;
    margin-top: 25px;
    background: #0d6efd;
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.about-page-btn:hover {
    background: #084298;
    color: #ffffff;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
    }

    .about-page-section {
        padding: 70px 0;
    }

    .about-page-content h2 {
        font-size: 28px;
    }
}

/* ================================
   CONTACT PAGE
================================ */

/* HERO */
.contact-hero {
    background: linear-gradient(120deg, #0d6efd, #084298);
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 40px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 17px;
    opacity: 0.95;
}

/* CONTENT */
.contact-section {
    padding: 90px 0;
    background: #ffffff;
}

.contact-info h3,
.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #444;
}

/* FORM */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0d6efd;
    outline: none;
}

.contact-btn {
    background: #0d6efd;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: #084298;
}

/* SUCCESS MESSAGE */
.contact-success {
    background: #e7f6ec;
    border: 1px solid #b7e4c7;
    color: #1b4332;
    padding: 15px;
    border-radius: 8px;
    font-size: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-section {
        padding: 70px 0;
    }

    .contact-info {
        margin-bottom: 40px;
    }

    .contact-hero h1 {
        font-size: 30px;
    }
}

/* ================================
   POLICY PAGE
================================ */

/* HERO */
.policy-hero {
    background: #f4f6f8;
    padding: 70px 0;
    text-align: center;
}

.policy-hero h1 {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.policy-hero p {
    font-size: 16px;
    color: #555;
}

/* CONTENT */
.policy-section {
    padding: 90px 0;
    background: #ffffff;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 10px;
    color: #222;
}

.policy-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
}

.policy-note {
    margin-top: 40px;
    padding: 15px;
    background: #f9fafb;
    border-left: 4px solid #0d6efd;
    font-size: 14px;
}

/* LINKS */
.policy-content a {
    color: #0d6efd;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 30px;
    }

    .policy-section {
        padding: 70px 0;
    }
}

/* ================================
   AUTH (LOGIN / SIGNUP)
================================ */
.auth-section {
    padding: 90px 0;
    background: #f9fafb;
}

.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-box {
    background: #ffffff;
    padding: 45px;
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    text-align: center;
}

.auth-box h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.auth-box p {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
}

.auth-box input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 15px;
}

.auth-box input:focus {
    border-color: #0d6efd;
    outline: none;
}

.auth-btn {
    width: 100%;
    background: #0d6efd;
    color: #ffffff;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.auth-btn:hover {
    background: #084298;
}

.auth-links {
    margin-top: 20px;
    font-size: 14px;
}

.auth-links a {
    color: #0d6efd;
}

.auth-links span {
    margin: 0 6px;
    color: #999;
}

/* ERROR */
.auth-error {
    background: #fdecea;
    color: #842029;
    border: 1px solid #f5c2c7;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
    .auth-section {
        padding: 70px 0;
    }

    .auth-box {
        padding: 35px;
    }
}

/* ================================
   CART PAGE
================================ */

/* HERO */
.cart-hero {
    background: #f4f6f8;
    padding: 70px 0;
    text-align: center;
}

.cart-hero h1 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
}

.cart-hero p {
    font-size: 16px;
    color: #555;
}

/* CART CONTENT */
.cart-section {
    padding: 90px 0;
}

.cart-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-table th,
.cart-table td {
    border-bottom: 1px solid #e6e6e6;
    padding: 15px;
    text-align: left;
    font-size: 15px;
}

.cart-table th {
    background: #f9fafb;
    font-weight: 600;
}

.remove-item {
    color: #dc3545;
    font-size: 14px;
}

.remove-item:hover {
    text-decoration: underline;
}

/* SUMMARY */
.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
}

.cart-summary p {
    font-size: 18px;
    margin: 0;
}

.cart-btn {
    background: #0d6efd;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cart-btn:hover {
    background: #084298;
}

/* EMPTY CART */
.cart-empty {
    text-align: center;
    padding: 60px 0;
}

.cart-empty p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .cart-section {
        padding: 70px 0;
    }

    .cart-summary {
        flex-direction: column;
        gap: 15px;
    }
}

/* ================================
   CHECKOUT PAGE
================================ */

/* HERO */
.checkout-hero {
    background: #f4f6f8;
    padding: 70px 0;
    text-align: center;
}

.checkout-hero h1 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
}

.checkout-hero p {
    font-size: 16px;
    color: #555;
}

/* SECTION */
.checkout-section {
    padding: 90px 0;
}

.checkout-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e6e6e6;
    margin-bottom: 25px;
}

.checkout-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* FORM */
.checkout-box input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 15px;
}

.checkout-box input:focus {
    border-color: #0d6efd;
    outline: none;
}

/* PAYMENT */
.payment-method {
    background: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
}

/* SUMMARY */
.order-summary {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.order-summary li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
}

.order-total p {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
}

/* BUTTON */
.checkout-btn {
    width: 100%;
    background: #0d6efd;
    color: #ffffff;
    padding: 14px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.checkout-btn:hover {
    background: #084298;
}

/* TRUST */
.checkout-trust {
    margin-top: 15px;
    font-size: 13px;
    color: #777;
    text-align: center;
}

/* SUCCESS */
.checkout-success {
    text-align: center;
    background: #e7f6ec;
    padding: 40px;
    border-radius: 16px;
}

.checkout-success h2 {
    color: #1b4332;
    margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .checkout-section {
        padding: 70px 0;
    }
}

/* ================================
   TRACK ORDER PAGE
================================ */

.track-hero {
    background: #f4f6f8;
    padding: 70px 0;
    text-align: center;
}

.track-hero h1 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
}

.track-hero p {
    font-size: 16px;
    color: #555;
}

/* CONTENT */
.track-section {
    padding: 90px 0;
}

.track-box {
    max-width: 520px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e6e6e6;
    text-align: center;
}

.track-box input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 15px;
}

.track-box input:focus {
    border-color: #0d6efd;
    outline: none;
}

.track-btn {
    width: 100%;
    background: #0d6efd;
    color: #ffffff;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: background 0.3s ease;
}

.track-btn:hover {
    background: #084298;
}

/* RESULT */
.track-result {
    margin-top: 30px;
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
}

.track-result h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.track-message {
    font-size: 15px;
    color: #555;
    margin-top: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .track-section {
        padding: 70px 0;
    }

    .track-box {
        padding: 30px;
    }
}

/* ================================
   RETURN ORDER PAGE
================================ */

.return-hero {
    background: #f4f6f8;
    padding: 70px 0;
    text-align: center;
}

.return-hero h1 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
}

.return-hero p {
    font-size: 16px;
    color: #555;
}

/* CONTENT */
.return-section {
    padding: 90px 0;
}

.return-box {
    max-width: 520px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e6e6e6;
    text-align: center;
}

/* FORM */
.return-box input,
.return-box select,
.return-box textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 15px;
}

.return-box input:focus,
.return-box select:focus,
.return-box textarea:focus {
    border-color: #0d6efd;
    outline: none;
}

.return-btn {
    width: 100%;
    background: #0d6efd;
    color: #ffffff;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: background 0.3s ease;
}

.return-btn:hover {
    background: #084298;
}

/* SUCCESS */
.return-success {
    background: #e7f6ec;
    padding: 30px;
    border-radius: 12px;
}

.return-success h3 {
    color: #1b4332;
    margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .return-section {
        padding: 70px 0;
    }

    .return-box {
        padding: 30px;
    }
}

/* ================================
   SHOP PAGE
================================ */

/* HERO */
.shop-hero {
    background: #f4f6f8;
    padding: 70px 0;
    text-align: center;
}

.shop-hero h1 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
}

.shop-hero p {
    font-size: 16px;
    color: #555;
}

/* CONTENT */
.shop-section {
    padding: 90px 0;
}

/* SIDEBAR */
.shop-sidebar {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 25px;
}

.shop-sidebar h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.shop-sidebar ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.shop-sidebar ul li {
    margin-bottom: 10px;
}

.shop-sidebar ul li a {
    color: #0d6efd;
    font-size: 14px;
}

/* PRODUCT CARD */
.shop-product-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.shop-product-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.shop-product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    text-align: center;

}

.shop-product-image img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
}

.shop-product-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-col {
    margin-bottom: 30px;
}

.shop-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

/* TAGS */
.shop-tags span {
    display: inline-block;
    background: #eef2ff;
    color: #0d6efd;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-right: 6px;
    margin-bottom: 6px;
}

/* BOTTOM */
.shop-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.shop-price {
    font-size: 18px;
    font-weight: 700;
    color: #0d6efd;
}

.shop-cart-btn {
    background: #0d6efd;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.shop-cart-btn:hover {
    background: #084298;
}

/* MOBILE */
@media (max-width: 768px) {
    .shop-section {
        padding: 70px 0;
    }

    .shop-sidebar {
        margin-bottom: 30px;
    }
}

/* ================================
   PRODUCT DETAIL PAGE
================================ */

/* HERO */
.product-hero {
    background: #f4f6f8;
    padding: 70px 0;
    text-align: center;
}

.product-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
}

.product-hero p {
    font-size: 16px;
    color: #555;
}

/* CONTENT */
.product-section {
    padding: 90px 0;
}

.product-image-box {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.product-image-box img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
}

/* INFO */
.product-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-long-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* TAGS */
.product-tags span {
    display: inline-block;
    background: #eef2ff;
    color: #0d6efd;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 10px;
}

/* PRICE */
.product-price-box {
    margin: 20px 0;
}

.product-price {
    font-size: 26px;
    font-weight: 700;
    color: #0d6efd;
}

/* BUTTON */
.product-cart-btn {
    display: inline-block;
    background: #0d6efd;
    color: #ffffff;
    padding: 12px 34px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: background 0.3s ease;
}

.product-cart-btn:hover {
    background: #084298;
}

/* TRUST */
.product-trust {
    font-size: 14px;
    color: #777;
}

/* SPECS */
.product-specs {
    margin-top: 50px;
}

.product-specs h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-specs table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs th,
.product-specs td {
    border-bottom: 1px solid #e6e6e6;
    padding: 12px;
    font-size: 15px;
}

.product-specs th {
    width: 30%;
    background: #f9fafb;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
    .product-section {
        padding: 70px 0;
    }

    .product-info {
        margin-top: 30px;
    }
}

/* ================================
   MY ACCOUNT PAGE
================================ */

.account-hero {
    background: #f4f6f8;
    padding: 70px 0;
    text-align: center;
}

.account-hero h1 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
}

.account-hero p {
    font-size: 16px;
    color: #555;
}

/* CONTENT */
.account-section {
    padding: 90px 0;
}

.account-box {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e6e6e6;
}

.account-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.account-box h4 {
    margin-top: 25px;
    font-size: 18px;
    font-weight: 600;
}

.account-box p {
    font-size: 15px;
    color: #555;
}

.account-links {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px;
}

.account-links li {
    margin-bottom: 10px;
}

.account-links a {
    color: #0d6efd;
    font-weight: 500;
}

.account-logout-btn {
    display: inline-block;
    background: #dc3545;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.account-logout-btn:hover {
    background: #bb2d3b;
}

/* MOBILE */
@media (max-width: 768px) {
    .account-section {
        padding: 70px 0;
    }

    .account-box {
        padding: 30px;
    }
}

.hero-image img {
    max-width: 80%;
    height: auto;
}

/* Mobile friendly */
@media (max-width: 768px) {
    .hero-image {
        margin-top: 30px;
    }
}
/* Payment Method Section */
.payment-method {
    margin-top: 20px;
}

.payment-method h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* Hide default radio */
.payment-option input {
    display: none;
}

/* Card wrapper */
.payment-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 18px;
    border: 2px solid #e2e6ea;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    margin-bottom: 12px;
    transition: all 0.25s ease;
}

/* Hover */
.payment-card:hover {
    border-color: #0a74ff;
    background: #f5f9ff;
}

/* Selected state */
.payment-option input:checked + .payment-card {
    border-color: #0a74ff;
    background: #eef5ff;
}

/* Icon */
.payment-icon {
    font-size: 28px;
}

/* Text */
.payment-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 3px;
}

.payment-text span {
    font-size: 13px;
    color: #6c757d;
}