/* ========== RESET & GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f5f5;
    overflow-x: hidden;
    width: 100%;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: linear-gradient(135deg, #ff9eb7 0%, #ffb3c6 100%);
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* Marquee Text */
.marquee-container {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    max-width: 900px;
    margin: 0 15px;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 12s linear infinite;
    color: white;
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.marquee-container:hover .marquee-text {
    animation-play-state: paused;
}

/* ========== MAIN HEADER ========== */
.main-header {
    background: linear-gradient(135deg, #ffb3c6 0%, #ffc9d6 100%);
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(255, 158, 183, 0.2);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    white-space: nowrap;
    text-decoration: none;
}

.search-bar {
    flex: 1;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

.search-bar button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 20px;
    background: #ff6b9d;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

.search-bar button:hover {
    background: #ff5a8f;
}

/* ========== NAVIGATION MENU ========== */
.nav-menu {
    background: white;
    border-bottom: 1px solid #ffcdd9;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 25px;
    overflow-x: auto;
    white-space: nowrap;
}

.nav-content::-webkit-scrollbar {
    height: 0;
}

.nav-item {
    padding: 12px 0;
    color: #ff6b9d;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.nav-item:hover {
    color: #ff5a8f;
    border-bottom-color: #ff6b9d;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #ff6b9d;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ========== PRODUCT DETAIL CONTAINER ========== */
.product-detail {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.product-main {
    background: white;
    border-radius: 8px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
}

/* ========== PRODUCT IMAGES ========== */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 0;
    width: 100%;
}

.main-image {
    width: 100%;
    aspect-ratio: 1/1;
    border: 2px solid #ffe4ec;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

/* Navigation Arrows - Nằm bên trong ảnh */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #ff6b9d;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-arrow:hover {
    background: #ff6b9d;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow-left {
    left: 15px;
}

.nav-arrow-right {
    right: 15px;
}

.thumbnail-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px 0;
    scroll-behavior: smooth;
    flex-wrap: nowrap;
    white-space: nowrap;
    max-width: 100%;
    width: 100%;
}

.thumbnail-list::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.thumbnail-list::-webkit-scrollbar-thumb {
    background: #ffb3c6;
    border-radius: 3px;
}

.thumbnail-list::-webkit-scrollbar-thumb:hover {
    background: #ff6b9d;
}

.thumbnail {
    min-width: 80px;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border: 2px solid #ffe4ec;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #ff6b9d;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

/* Video Thumbnail Styles */
.video-thumbnail {
    position: relative;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 107, 157, 0.9);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    pointer-events: none;
}

.video-thumbnail:hover .play-icon {
    background: rgba(255, 90, 143, 1);
    transform: translate(-50%, -50%) scale(1.1);
    transition: all 0.3s;
}

/* ========== PRODUCT INFO ========== */
.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-title {
    font-size: 24px;
    color: #333;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ffe4ec;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.star-value {
    font-size: 16px;
    font-weight: bold;
    color: #ff6b9d;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

.rating-count {
    color: #666;
    font-size: 14px;
}

/* ========== FLASH SALE BANNER ========== */
.flash-sale-banner {
    background: linear-gradient(135deg, #ff6b9d, #ff9eb7);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flash-sale-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.flash-countdown {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.countdown-box {
    background: rgba(255,255,255,0.3);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
}

/* ========== PRICE SECTION ========== */
.price-section {
    background: #fff5f8;
    padding: 20px;
    border-radius: 8px;
}

.current-price {
    font-size: 32px;
    color: #ff6b9d;
    font-weight: bold;
}

.original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.discount-badge {
    display: inline-block;
    background: #ff6b9d;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    margin-left: 10px;
}

/* ========== VOUCHER SECTION ========== */
.voucher-section {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.voucher-title {
    font-size: 14px;
    color: #666;
    width: 100%;
    margin-bottom: 5px;
}

.voucher-item {
    padding: 8px 15px;
    background: #fff0f5;
    border: 1px solid #ff6b9d;
    border-radius: 4px;
    color: #ff6b9d;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.voucher-item:hover {
    background: #ff6b9d;
    color: white;
}

/* ========== SHIPPING INFO ========== */
.shipping-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    flex-wrap: wrap;
    width: 100%;
}

.shipping-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.shipping-text {
    font-size: 14px;
    color: #333;
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
}

/* Animation cho xe tải */
.truck-animation {
    display: inline-block;
    animation: truckMove 2s linear infinite;
}

@keyframes truckMove {
    0% {
        transform: translateX(10px);
    }
    50% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(10px);
    }
}

/* ========== QUANTITY SELECTOR ========== */
.quantity-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-label {
    font-size: 14px;
    color: #666;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ffe4ec;
    border-radius: 4px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 18px;
    color: #ff6b9d;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background: #fff5f8;
}

.quantity-input {
    width: 50px;
    height: 35px;
    border: none;
    text-align: center;
    font-size: 16px;
}

/* ========== ACTION BUTTONS ========== */
.action-buttons {
    display: flex;
    gap: 15px;
}

.btn-add-cart {
    flex: 1;
    padding: 15px;
    background: white;
    border: 2px solid #ff6b9d;
    color: #ff6b9d;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-cart:hover {
    background: #fff5f8;
}

.btn-buy-now {
    flex: 1;
    padding: 15px;
    background: #ff6b9d;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-buy-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    33.33% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.btn-buy-now:hover {
    background: #ff5a8f;
    transform: translateY(-2px);
}

/* ========== PRODUCT DESCRIPTION ========== */
.product-description {
    background: white;
    border-radius: 8px;
    padding: 30px;
}

.description-title {
    font-size: 20px;
    color: #ff6b9d;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffe4ec;
    text-transform: uppercase;
}

.description-content {
    line-height: 1.8;
    color: #555;
}

.description-content h3 {
    color: #ff6b9d;
    margin-top: 20px;
    margin-bottom: 10px;
}

.description-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.description-content li {
    margin-bottom: 8px;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, #fff5f8, #ffe4ec);
    padding: 40px 0 20px 0;
    margin-top: 50px;
    border-top: 2px solid #ffcdd9;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ff6b9d;
}

/* Payment & Shipping Icons */
.payment-icons, .shipping-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.payment-icon, .shipping-icon {
    background: white;
    padding: 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.payment-icon img, .shipping-icon img {
    max-width: 100%;
    height: 30px;
    object-fit: contain;
}

/* Social & App Download */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.social-link:hover {
    color: #ff6b9d;
}

.app-download {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.qr-code {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-button {
    background: white;
    padding: 8px 12px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.app-button:hover {
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.2);
}

.app-button img {
    height: 24px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ffcdd9;
    color: #888;
    font-size: 12px;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .top-bar-content {
        font-size: 11px;
        gap: 10px;
        padding: 0 10px;
    }

    .top-bar-left, .top-bar-right {
        gap: 8px;
    }

    .marquee-container {
        max-width: calc(100vw - 180px);
        margin: 0 10px;
        font-size: 11px;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 15px;
        padding: 0 10px;
    }

    .logo {
        font-size: 24px;
    }

    .search-bar {
        width: 100%;
        order: 3;
    }

    .nav-content {
        padding: 0 10px;
        gap: 15px;
    }

    .nav-item {
        font-size: 13px;
    }

    .breadcrumb {
        padding: 0 10px;
        margin: 15px 10px;
        font-size: 12px;
    }

    .product-detail {
        padding: 0 10px;
    }

    .product-main {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 20px;
    }

    .product-images {
        width: 100%;
    }

    .main-image {
        max-width: 100%;
    }

    .thumbnail-list {
        gap: 8px;
    }

    .thumbnail {
        min-width: 70px;
        width: 70px;
        height: 70px;
    }

    .product-title {
        font-size: 18px;
    }

    .product-rating {
        flex-wrap: wrap;
        gap: 10px;
    }

    .rating-count {
        font-size: 12px;
    }

    /* FLASH SALE BANNER */
    .flash-sale-banner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 15px;
    }

    .flash-sale-text {
        font-size: 15px;
        width: 100%;
    }

    .flash-countdown {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        width: 100%;
    }

    /* Chữ "KẾT THÚC TRONG" xuống dòng riêng */
    .flash-countdown > span:first-child {
        width: 100%;
        text-align: center;
        font-size: 11px;
        margin-bottom: 8px;
    }

    .countdown-box {
        padding: 6px 10px;
        font-size: 18px;
        min-width: 45px;
        text-align: center;
    }

    /* Dấu hai chấm */
    .flash-countdown > span:not(.countdown-box):not(:first-child) {
        font-size: 18px;
        font-weight: bold;
    }

    .price-section {
        padding: 15px;
    }

    .current-price {
        font-size: 24px;
    }

    .original-price {
        font-size: 16px;
    }

    .discount-badge {
        font-size: 12px;
        padding: 3px 6px;
    }

    .voucher-item {
        padding: 6px 12px;
        font-size: 12px;
    }

    .shipping-info {
        padding: 12px;
    }

    .shipping-icon {
        font-size: 20px;
    }

    .shipping-text {
        font-size: 12px;
    }

    .quantity-section {
        flex-wrap: wrap;
    }

    .quantity-label {
        font-size: 13px;
    }

    .quantity-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .quantity-input {
        width: 45px;
        height: 32px;
        font-size: 14px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-add-cart,
    .btn-buy-now {
        font-size: 14px;
        padding: 12px;
    }

    .product-description {
        padding: 20px 15px;
    }

    .description-title {
        font-size: 18px;
    }

    .description-content {
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .payment-icons, .shipping-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ========== VIEW COUNT ========== */
.view-count {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.eye-icon {
    font-size: 18px;
    animation: blink 3s infinite;
}

@keyframes blink {
    0%, 49%, 100% {
        opacity: 1;
    }
    50%, 99% {
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .marquee-container {
        max-width: calc(100vw - 150px);
        font-size: 10px;
    }

    .top-bar-content {
        font-size: 10px;
        padding: 0 5px;
    }

    .header-content,
    .nav-content {
        padding: 0 5px;
    }

    .logo {
        font-size: 20px;
    }

    .breadcrumb {
        padding: 0 5px;
        margin: 15px 5px;
        font-size: 11px;
    }

    .product-detail {
        padding: 0 5px;
    }

    .product-main {
        padding: 10px;
    }

    .thumbnail {
        min-width: 60px;
        width: 60px;
        height: 60px;
    }

    /* FLASH SALE - MÀN HÌNH NHỎ */
    .flash-sale-banner {
        padding: 12px 10px;
    }

    .flash-sale-text {
        font-size: 13px;
    }

    .flash-countdown > span:first-child {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .countdown-box {
        padding: 5px 8px;
        font-size: 16px;
        min-width: 40px;
    }

    .flash-countdown > span:not(.countdown-box):not(:first-child) {
        font-size: 16px;
    }

    .current-price {
        font-size: 22px;
    }

    .original-price {
        font-size: 14px;
        margin-left: 5px;
    }

    .discount-badge {
        font-size: 11px;
        margin-left: 5px;
    }

    .product-title {
        font-size: 16px;
    }

    .voucher-item {
        padding: 5px 10px;
        font-size: 11px;
    }

    .shipping-info {
        padding: 10px;
    }

    .shipping-text {
        font-size: 11px;
    }

    .product-description {
        padding: 15px 10px;
    }

    .description-title {
        font-size: 16px;
    }

    .description-content {
        font-size: 13px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-column h3 {
        font-size: 13px;
    }

    .footer-column ul li a {
        font-size: 12px;
    }
}
.view-count {
    font-size: 12px;
}

.eye-icon {
    font-size: 16px;
}
/* ========== POPUP ẢNH ========== */
.image-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.5);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.popup-close:hover {
    color: #ff6b9d;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-content {
        max-width: 95%;
        max-height: 80%;
    }
    
    .popup-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
}
/* ========== VERIFIED BADGE ========== */
.verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border: 1px solid #4caf50;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.verified-badge:hover {
    background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.verified-badge img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.verified-badge span {
    font-size: 13px;
    color: #2e7d32;
    font-weight: 600;
}

/* ========== VERIFIED POPUP ========== */
.verified-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.verified-popup-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.4s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.verified-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #999;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.verified-popup-close:hover {
    color: #ff6b9d;
}

.verified-popup-header {
    background: linear-gradient(135deg, #ff6b9d, #ff6b9d);
    color: white;
    padding: 25px 30px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.verified-popup-header img {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    padding: 8px;
}

.verified-popup-header h2 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}

.verified-popup-body {
    padding: 30px;
    line-height: 1.8;
    color: #333;
}

.verified-popup-body p {
    margin-bottom: 20px;
    font-size: 15px;
}

.verified-popup-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.verified-popup-body ul li {
    padding: 12px 15px;
    margin-bottom: 10px;
    background: #f5f5f5;
    border-radius: 8px;
    border-left: 4px solid #cd1db8;
    font-size: 14px;
}

.verified-popup-body ul li strong {
    color: #d008bc;
}

.verified-note {
    background: #fff9e6;
    border-left: 4px solid #ff6b9d;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

/* Mobile */
@media (max-width: 768px) {
    .product-rating {
        gap: 10px;
    }
    
    .view-count {
        font-size: 12px;
    }
    
    .verified-badge {
        padding: 3px 8px;
        gap: 4px;
    }
    
    .verified-badge img {
        width: 18px;
        height: 18px;
    }
    
    .verified-badge span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .product-rating {
        gap: 8px;
    }
    
    .view-count {
        font-size: 11px;
    }
    
    .eye-icon {
        font-size: 16px;
    }
    
    .verified-badge {
        padding: 2px 6px;
    }
    
    .verified-badge img {
        width: 16px;
        height: 16px;
    }
    
    .verified-badge span {
        font-size: 10px;
    }
}


