/* =========================
   Kodablex - General CSS
   ========================= */

/* --------- Değişkenler --------- */
:root {
    --primary: #5c67f2;
    --primary-dark: #4049d0;
    --primary-alt: #4e73df;
    --danger: #e74c3c;
    --muted: #777;
    --bg-light: #f9f9fb;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --max-width: 1200px;
    --break-sm: 768px;
}

/* --------- Reset / Base --------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #222;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background: #fff;
}

/* --------- Utilities --------- */
.a-none {
    text-decoration: none !important;
    color: inherit !important;
}

.a-none:hover {
    color: #333 !important;
}

.fw-medium {
    font-weight: 500;
}

.text-muted {
    color: #6c757d;
    font-size: 0.9em;
}

/* --------- Header / Nav --------- */
header {
    background: #ffffff;
    padding: 20px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.logo {
    max-height: 50px;
    max-width: 180px;
}

@media (max-width:767px) {
    .logo {
        max-width: 125px;
    }
}

/* Nav links (desktop & mobile variations handled later) */
.nav-links,
nav.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    position: relative;
}

nav.nav-links a,
.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color .3s;
}

nav.nav-links a:hover {
    color: var(--primary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: .5rem 1rem;
    border-radius: 4px;
    z-index: 10;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 5px 0;
    color: #333;
    text-decoration: none;
}

.dropdown-menu a:hover {
    color: var(--primary);
}

/* Auth / Buttons */
.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Generic button base */
.btn {
    text-decoration: none;
    padding: 8px 18px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color .3s ease;
    font-size: .9rem;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Login / Register variants */
.btn--outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 4px;
    padding: 8px 20px;
}

.btn--outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn--solid {
    background: var(--primary-alt);
    color: #fff;
    border-radius: 4px;
    padding: 8px 20px;
}

.btn--solid:hover {
    background: #3a5ccc;
}

/* If you relied on old .login-btn selector, keep it mapped */
.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .9rem;
    padding: 8px 20px;
    border-radius: 4px;
    background: var(--primary-alt);
    color: #fff;
    border: none;
    transition: all .3s;
}

.login-btn:hover {
    background: #3a5ccc;
    color: #fff;
}

/* --------- Icon / Header actions --------- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-button,
.kodablex_offcanvas-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--primary);
    border-radius: 50%;
    color: #fff;
    border: none;
    margin: 0 5px;
    font-size: 18px;
    transition: background-color .2s ease, transform .2s ease;
    position: relative;
    cursor: pointer;
}

.icon-button:hover,
.kodablex_offcanvas-close:hover {
    background-color: #4753d3;
    transform: scale(1.05);
}

/* Cart */
.cart-icon {
    position: relative;
    font-size: inherit;
}

.cart-count {
    margin-left: 15px;
    background: var(--danger);
    color: #fff;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    position: absolute;
    bottom: 25px;
}

@media (max-width:768px) {
    .cart-icon {
        font-size: 18px;
    }

    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
}

/* --------- Language switcher --------- */
.language-switcher {
    position: relative;
    display: inline-block;
}

.language-current {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
}

.language-current img,
.language-option img,
.seller-avatar {
    border-radius: 50%;
    object-fit: cover;
}

.language-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 1000;
    display: none;
}

.language-switcher:hover .language-dropdown,
.language-switcher:focus-within .language-dropdown {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

.language-option:hover {
    background-color: #f5f5f5;
}

/* --------- Hero / Sections / Grid / Cards --------- */
.hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #eef0ff, #f9faff);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1f1f1f;
}

.hero p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero a.btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background .3s;
}

.hero a.btn:hover {
    background: var(--primary-dark);
}

.section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 20px;
}

.section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.section p.sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    transition: all .3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.card h3 {
    margin-bottom: 10px;
    color: #1f1f1f;
}

.card p {
    font-size: .95rem;
    color: #666;
}

.card a.btn {
    display: inline-block;
    margin-top: 20px;
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

.card a.btn:hover {
    background: var(--primary-dark);
}

/* --------- Features / CTA --------- */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform .3s;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-box p {
    color: #666;
    font-size: .95rem;
}

.cta-developer {
    background: #e9ecef;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

/* --------- Product cards & prices --------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow .3s ease;
}

.product-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-info h3 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}

.product-info p {
    font-size: 14px;
    color: #666;
}

.product-info .btn {
    margin-top: 10px;
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
}

.product-info .btn:hover {
    background: #0056b3;
}

/* Price block */
.price {
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
}

.discounted-price {
    color: var(--danger);
    margin-right: 10px;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
    font-size: 1rem;
}

.normal-price {
    color: #333;
}

.price-container {
    margin: 16px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.current-price {
    color: #111;
    font-size: 1.4rem;
    font-weight: bold;
}

.discount-badge {
    background-color: #ff4d4f;
    color: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: .85rem;
    font-weight: 600;
}

.saving-text {
    margin-top: 6px;
    color: #2ecc71;
    font-size: .9rem;
    font-weight: 500;
}

/* --------- Seller profile / ratings --------- */
.seller-profile {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.seller-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.seller-link:hover {
    color: #0066cc;
}

.seller-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
}

.seller-home-name {
    font-size: 14px;
    font-weight: 500;
}

.seller-rating {
    line-height: 1;
    font-size: 14px;
}

.stars {
    display: inline-flex;
    align-items: center;
}

.stars i {
    color: #FFC107;
    font-size: 16px;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rating-info {
    display: inline-flex;
    align-items: baseline;
}

/* --------- Blog specific small tweaks --------- */
.kodablx_blog-item .card-title a:hover {
    color: #007bff;
    transition: color .3s ease;
}

.kodablx_blog-categories .list-inline-item a {
    padding: 4px 8px;
    border-radius: 5px;
    color: #333;
}

.kodablx_blog-categories .list-inline-item.fw-bold a {
    background-color: #e9ecef;
}

/* --------- Lazyload images --------- */
.lazyload,
.lazyloading {
    opacity: 0;
}

.lazyloaded {
    opacity: 1;
    transition: opacity 300ms;
}

img.lazyload:not([src]) {
    visibility: hidden;
}

/* --------- Breadcrumb --------- */
.nav-breadcrumb {
    padding-top: 5px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: .25rem;
    font-size: 13px;
}

.breadcrumb-item {
    display: flex;
    text-decoration: none;
}

.breadcrumb .active {
    color: #333;
    text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 4px;
    color: #999;
}

.breadcrumb a {
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: none;
}

/* --------- Modal (login) --------- */
#loginModal .modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#loginModal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

#loginModal .modal-title {
    font-weight: 600;
}

#loginForm .btn-primary {
    background-color: var(--primary-alt);
    border: none;
    padding: 10px;
    font-weight: 500;
}

#loginAlert {
    transition: all .3s ease;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: .2em;
}

/* --------- Offcanvas (Kodablex mobile menu) --------- */
.kodablex_mobile-offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    z-index: 1050;
    overflow: hidden;
}

.kodablex_mobile-offcanvas.kodablex_active {
    display: block;
}

.kodablex_offcanvas-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
}

.kodablex_offcanvas-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 80vw;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .3s ease;
}

.kodablex_mobile-offcanvas.kodablex_active .kodablex_offcanvas-content {
    transform: translateX(0);
}

.kodablex_offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    margin-bottom: 8px;
    padding-bottom: 5px;
}

.kodablex_offcanvas-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.kodablex_mobile-menu-list,
.kodablex_mobile-menu-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kodablex_mobile-menu-list li {
    margin-bottom: .5rem;
}

.kodablex_mobile-menu-list a,
.kodablex_submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: .5rem .25rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    margin-right: 8px;
}

.kodablex_submenu-arrow {
    transition: transform .3s ease;
}

.kodablex_submenu-toggle[aria-expanded="true"] .kodablex_submenu-arrow {
    transform: rotate(90deg);
}

.kodablex_submenu {
    padding-left: 1rem !important;
}

/* --------- Hamburger / Menu toggle (generic + kodablex) --------- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.kodablex_menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.kodablex_menu-toggle span {
    width: 24px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: .3s;
}

/* hide kodablex mobile toggle on larger screens */
@media (min-width:768px) {
    .kodablex_menu-toggle {
        display: none;
    }

    .kodablex_mobile-offcanvas {
        display: none !important;
    }
}

/* --------- Responsive: mobile nav offcanvas --------- */
@media (max-width:768px) {
    header {
        padding: 20px;
    }

    nav.nav-links {
        position: fixed;
        top: 0;
        left: -250px;
        height: 100vh;
        width: 250px;
        background: #fff;
        flex-direction: column;
        gap: 25px;
        padding: 70px 20px 20px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left .3s ease-in-out;
        z-index: 1050;
    }

    nav.nav-links.open {
        left: 0;
    }

    nav.nav-links a {
        font-size: 1.1rem;
        color: #333;
    }

    .auth-buttons {
        display: flex;
        gap: 10px;
        margin-left: 10px;
        align-items: flex-start;
    }

    nav.nav-links,
    .auth-buttons {
        display: flex;
        align-items: flex-start;
    }

    .menu-toggle {
        display: flex;
    }

    header {
        justify-content: space-between;
    }

    /* mobile-specific: show mobile logo if present */
    .mobile-logo {
        display: block !important;
    }
}

/* --------- Footer Alanı --------- */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.footer-column {
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 300px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #111;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #5c67f2;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-icon {
    font-size: 18px;
    width: 40px;
    height: 40px;
    background-color: #1d3557;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.8;
}

.social-icon.instagram {
    background-color: #C13584;
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.youtube {
    background-color: #FF0000;
}

.social-icon.linkedin {
    background-color: #0077b5;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #777;
    font-size: 0.85rem;
}

/* Responsive: mobilde sütunları alt alta getir */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        padding: 30px 15px;
    }

    .footer-column {
        max-width: 100%;
        min-width: auto;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .footer-column {
        flex: 1 1 100%;
        min-width: auto;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

.footer_payment_logo {
    margin: 10px;
}

/* --------- Product Detail Page --------- */
@media (min-width: 992px) {
    .product-info-container {
        display: flex;
        gap: 20px;
        padding: 15px;
        background: #f9f9f9;
    }

    .product-detail-image-container,
    .product-main-info {
        flex: 1;
        background: #fff;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 300px;
    }
}

/* Genel Stiller */
.product-detail-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 25px;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}

.product-main-info {
    flex: 1;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-meta {
    display: flex;
    align-items: end;
}

.author {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.author strong {
    color: #3498db;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stars {
    color: #f1c40f;
}

.rating-count {
    font-size: 0.85rem;
    color: #7f8c8d;
}

.product-short-desc {
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Fiyat Bilgisi */
.price-container {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #eee;
}

.buy-button {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.buy-button:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* Ürün Resmi - SAĞ TARAF */
.product-detail-image-container {
    flex: 1;
    max-width: 500px;
}

.product-detail-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Ürün Detayları (Alt Kısım) */
.product-details {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.details-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .product-info-container {
        flex-direction: column;
    }

    .product-detail-image-container {
        max-width: 100%;
        order: -1;
    }

    .product-title {
        font-size: 1.8rem;
        margin-top: 20px;
    }
}

.scrollable-breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    gap: 6px;
    font-size: 14px;
    padding: 5px;
}

/* Mobilde scroll barı gizle (isteğe bağlı) */
.scrollable-breadcrumb::-webkit-scrollbar {
    display: none;
}

.scrollable-breadcrumb {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollable-breadcrumb a,
.scrollable-breadcrumb span {
    color: #444;
    text-decoration: none;
    flex-shrink: 0;
}

.scrollable-breadcrumb a:hover {
    text-decoration: underline;
}

.kodablex-badge {
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    line-height: 1.4;
}

.kodablex-badge.success {
    background-color: #e6f4ea;
    color: #207544;
}

.kodablex-badge.success i {
    color: #2e7d32;
}

.kodablex-badge.info {
    background-color: #e3f2fd;
    color: #0d47a1;
}

.kodablex-badge.info i {
    color: #1976d2;
}

.product-detail-image-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.preview-btn,
.admin-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.preview-btn {
    background: #3498db;
    color: white;
}

.preview-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.admin-btn {
    background: #2ecc71;
    color: white;
}

.admin-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .product-detail-image-actions {
        flex-direction: column;
    }
}

.breadcrumb a {
    text-decoration: none;
    color: #5c67f2;
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
}

.meta-icon {
    font-size: 16px;
    color: #007bff;
    margin-right: 6px;
}

.meta-label {
    font-weight: 600;
    margin-right: 4px;
    color: #007bff;
}

.meta-value {
    color: #555;
}

@media (max-width: 600px) {
    .product-meta {
        flex-direction: row;
        gap: 10px;
    }
}

.tab-box {
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    flex: 1 1 auto;
    text-align: center;
    padding: 12px;
    min-width: 140px;
}

.pageviews {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: default;
    z-index: 9999;
    animation: slideLeftRight 5s linear infinite alternate;
    max-width: 300px;
    white-space: nowrap;
}

.page-title {
    margin: 40px 0 20px;
    text-align: center;
    font-weight: 700;
    font-size: 2.5rem;
    color: #5c67f2;
}

.seller-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    padding: 25px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.seller-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(92, 103, 242, 0.3);
}

.seller-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #5c67f2;
    margin: 0 auto 15px auto;
    display: block;
}

.seller-name {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #1f1f1f;
}

.seller-info {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.seller-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.seller-stats {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 15px;
}

.seller-stats span {
    display: inline-block;
    margin: 0 10px;
}

.btn-profile {
    background-color: #5c67f2;
    border: none;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-profile:hover {
    background-color: #4049d0;
}

.social-links a {
    margin: 0 8px;
    color: #5c67f2;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4049d0;
}