#azcam-slider-wrapper {
    width: 100%;
    padding: 0;
}
#azcam-camera-frame {
    position: relative !important;
    width: 100%;
    overflow: hidden;
    background: #000;
}
#azcam-camera-frame img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 100vh;
    object-fit: cover;
}
#azcam-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 60px 50px 30px 50px;
    display: flex !important;
    justify-content: space-between;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%) !important;
    z-index: 1 !important;
}
#azcam-overlay .brand {
    display: flex;
    flex-direction: column;
}
#azcam-overlay .brand .logo {
    font-family: "Product sans", Arial, sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    text-transform: lowercase;
}
#azcam-overlay .brand .model {
    font-family: "Product sans", Arial, sans-serif;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 2px;
}
#azcam-overlay .datetime {
    font-family: "Consolas", "Monaco", monospace;
    font-size: 1.3rem;
    color: #fff;
}
#azcam-overlay .device-type {
    font-family: "Consolas", "Monaco", monospace;
    font-size: 1rem;
    color: #fff;
    letter-spacing: 2px;
}

/* ===== FEATURES SECTION - LIGHT THEME ===== */
#azcam-features-section {
    background: #f5f8fc;
    padding: 60px 40px 20px 40px;
}
.azcam-features-container {
    max-width: 1400px;
    margin: 0 auto;
}
.azcam-features-header {
    text-align: left;
    margin-bottom: 45px;
}
.azcam-features-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 18px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}
.azcam-features-header h2::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    transform: none;
    width: 100px;
    height: 4px;
    background: #0454eb;
    border-radius: 2px;
}
.azcam-features-header p {
    font-size: 1.15rem;
    color: #666;
    /* max-width: 750px; */
    margin: 10px 0 0;
    line-height: 1.7;
}

/* Feature Icon */
.azcam-features-header h2 .feature-icon {
    width: 45px;
    height: 32px;
    background: #0454eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.azcam-features-header h2 .feature-icon::before {
    content: "⭐";
    font-size: 1.2rem;
    line-height: 1;
}

/* Product Icon */
.azcam-products-header h2 .product-icon {
    width: 45px;
    height: 32px;
    background: #0454eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.azcam-products-header h2 .product-icon::before {
    content: "🛍️";
    font-size: 1.2rem;
    line-height: 1;
}

/* Review Icon */
.azcam-reviews-header h2 .review-icon {
    width: 45px;
    height: 32px;
    background: #0454eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.azcam-reviews-header h2 .review-icon::before {
    content: "💬";
    font-size: 1.2rem;
    line-height: 1;
}
.azcam-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.azcam-feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 28px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid #e8f0f8;
}
.azcam-feature-card:hover {
    transform: translateY(-10px);
    border-color: #0454eb;
    box-shadow: 0 20px 50px rgba(4, 84, 235, 0.15);
}
.azcam-feature-card:hover .azcam-feature-icon {
    transform: scale(1.1);
}
.azcam-feature-card:hover h3 {
    color: #0454eb;
}
.azcam-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #0454eb 0%, #2d7aff 100%);
}
.azcam-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}
.azcam-feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

.azcam-products-dark {
    background: #f5f8fc;
    padding: 40px 40px;
}
.azcam-products-container {
    max-width: 1400px;
    margin: 0 auto;
}
.azcam-products-header {
    text-align: left;
    margin-bottom: 35px;
}
.azcam-products-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}
.azcam-products-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    transform: none;
    width: 100px;
    height: 4px;
    background: #0454eb;
    border-radius: 2px;
}
.azcam-products-header p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}
/* Featured Product (Large) */
.azcam-product-featured {
    background: #fff;
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 35px;
    border: 2px solid #e8f0f8;
    box-shadow: 0 10px 40px rgba(4, 84, 235, 0.08);
}
.azcam-product-featured .product-info {
    flex: 1;
    text-align: left;
}
.azcam-product-featured .product-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.azcam-product-featured .product-image img {
    max-width: 520px;
    height: auto;
    border-radius: 12px;
}
.azcam-badge-new {
    display: inline-block;
    background: #51ff00;
    color: #000;
    padding: 10px 22px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.azcam-product-title {
    font-size: 3.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    text-align: left;
}
.azcam-product-subtitle {
    font-size: 1.7rem;
    color: #666;
    margin-bottom: 22px;
    line-height: 1.6;
    text-align: left;
}
.azcam-product-price-large {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0454eb;
    margin-bottom: 22px;
    text-align: left;
}
.azcam-btn-buy {
    display: inline-block;
    background: #0454eb;
    border: 2px solid #0454eb;
    color: #fff;
    padding: 12px 120px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 22px;
}
.azcam-btn-buy:hover {
    background: #0340b8;
    border-color: #0340b8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(4, 84, 235, 0.3);
}
.azcam-product-note {
    font-size: 1.35rem;
    color: #666;
    line-height: 1.7;
    text-align: left;
}
.azcam-product-note a {
    color: #0454eb;
    text-decoration: none;
    font-style: italic;
}
.azcam-product-note a:hover {
    text-decoration: underline;
}
/* Products Grid (4 small) */
.azcam-products-small-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}
.azcam-product-small {
    background: #fff;
    border-radius: 20px;
    padding: 45px;
    display: flex;
    align-items: center;
    gap: 35px;
    transition: all 0.3s ease;
    border: 2px solid #e8f0f8;
}
.azcam-product-small:hover {
    border-color: #0454eb;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(4, 84, 235, 0.12);
}
.azcam-product-small .info {
    flex: 1;
}
.azcam-product-small .thumb {
    flex-shrink: 0;
}
.azcam-product-small .thumb img {
    width: 260px;
    height: auto;
    border-radius: 12px;
}
.azcam-product-small .title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
}
.azcam-product-small .desc {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}
.azcam-product-small .price {
    font-size: 1.7rem;
    font-weight: 700;
    color: #0454eb;
    margin-bottom: 18px;
}
.azcam-product-small .btn-small {
    display: inline-block;
    background: #0454eb;
    border: 2px solid #0454eb;
    color: #fff;
    padding: 10px 85px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.azcam-product-small .btn-small:hover {
    background: #0340b8;
    border-color: #0340b8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(4, 84, 235, 0.3);
}
.azcam-reviews-section {
    background: #fff;
    padding: 70px 40px;
}
.azcam-reviews-container {
    max-width: 1400px;
    margin: 0 auto;
}
.azcam-reviews-header {
    text-align: left;
    margin-bottom: 50px;
}
.azcam-reviews-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}
.azcam-reviews-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    transform: none;
    width: 100px;
    height: 4px;
    background: #0454eb;
    border-radius: 2px;
}
.azcam-reviews-header p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}
.azcam-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.azcam-review-card {
    background: linear-gradient(145deg, #f0f7ff 0%, #e8f4fd 100%);
    border-radius: 16px;
    padding: 30px;
    border: 2px solid #d0e3f5;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.azcam-review-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 4rem;
    color: rgba(4, 84, 235, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}
.azcam-review-card:hover {
    border-color: #0454eb;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(4, 84, 235, 0.15);
    background: linear-gradient(145deg, #e8f4fd 0%, #d0e8f9 100%);
}
.azcam-review-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
}
.azcam-review-text {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.azcam-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.azcam-review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0454eb, #2d7aff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}
.azcam-review-info h4 {
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
}
.azcam-review-info span {
    color: #666;
    font-size: 0.85rem;
}
/* ==================================
   AZCAM MODERN STYLES
   Phong cách: Modern, Clean, Lively
   Màu chủ đạo: Xanh dương, Trắng, Đen
   ================================== */

/* ===== AZCAM CAMERA DISPLAY SLIDER ===== */
.azcam-camera-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.azcam-camera-display {
    position: relative !important;
    width: 100%;
    border-radius: 8px;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid #444;
    background: #000;
    display: block;
}

.azcam-camera-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
    position: relative;
    z-index: 1;
}

/* Camera Overlay - Giống giao diện camera thật */
.azcam-camera-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    padding: 30px 30px 20px 30px;
    display: flex !important;
    justify-content: space-between;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 40%, transparent 100%) !important;
    pointer-events: none;
    z-index: 1 !important;
    box-sizing: border-box;
}

/* Left: Brand + Model */
.azcam-camera-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.azcam-camera-logo {
    font-family: "Product sans", Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: lowercase;
}

.azcam-camera-model {
    font-family: "Product sans", Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
}

/* Center: DateTime */
.azcam-camera-datetime {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.azcam-camera-time,
.azcam-camera-date {
    font-family: "Consolas", "Monaco", monospace;
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 1px;
}

/* Right: Device Type */
.azcam-camera-type {
    font-family: "Consolas", "Monaco", monospace;
    font-size: 0.95rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== FEATURES BANNER ===== */
.azcam-features-banner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: -4px; /* Liền với slider */
}

.azcam-features-text {
    background: #1a1a1a !important;
    color: #ffffff !important;
    font-family: "Gilroy", Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    font-style: italic;
    text-align: center;
    padding: 50px 30px;
    margin: 0;
    border-radius: 0 0 8px 8px;
    letter-spacing: 1px;
}

/* Responsive for Camera Slider */

/* Products Section - Style Mới Hoàn Toàn */
.azcam-products-section {
    max-width: 1600px;
    margin: 6rem auto;
    padding: 0 3rem;
    position: relative;
}

/* Decorative background */
.azcam-products-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.azcam-section-header {
    text-align: left;
    margin-bottom: 5rem;
    position: relative;
}

.azcam-section-title {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #0066cc 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.azcam-section-title::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    transform: none;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0066cc);
    border-radius: 2px;
}

.azcam-section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    transform: none;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, transparent);
}

.azcam-section-subtitle {
    color: #555;
    font-size: 1.2rem;
    margin-top: 2rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Products Grid - Staggered Layout (Lệch tầng) */
.azcam-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

/* Tạo hiệu ứng lệch tầng */
.azcam-product-card:nth-child(1) {
    margin-top: 0;
}

.azcam-product-card:nth-child(2) {
    margin-top: 3rem;
}

.azcam-product-card:nth-child(3) {
    margin-top: 0;
}

.azcam-product-card:nth-child(4) {
    margin-top: 3rem;
}

/* Product Card - Staggered Style với Border Gradient */
.azcam-product-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8feff 100%);
    border-radius: 24px;
    overflow: visible;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.08);
}

/* Border gradient effect */
.azcam-product-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0066cc, #00d4ff, #0066cc);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.azcam-product-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 24px;
    z-index: -1;
}

.azcam-product-card:hover::before {
    opacity: 1;
}

.azcam-product-card:hover {
    transform: translateY(-15px) rotate(1deg);
    box-shadow: 0 30px 70px rgba(0, 102, 204, 0.25);
}

/* Highlight effect cho từng sản phẩm khác nhau */
.azcam-product-card:nth-child(1):hover {
    transform: translateY(-15px) rotate(-1deg);
}

.azcam-product-card:nth-child(2):hover {
    transform: translateY(-15px) rotate(1.5deg);
}

.azcam-product-card:nth-child(3):hover {
    transform: translateY(-15px) rotate(-1.5deg);
}

.azcam-product-card:nth-child(4):hover {
    transform: translateY(-15px) rotate(1deg);
}

/* Product Image Container - Rounded Corner Style */
.azcam-product-image {
    width: 100%;
    height: 260px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    border-radius: 24px 24px 0 0;
}

/* Decorative corner */
.azcam-product-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), transparent);
    border-radius: 0 0 100% 0;
    z-index: 1;
}

.azcam-product-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 102, 204, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.azcam-product-card:hover .azcam-product-image::after {
    opacity: 1;
}

.azcam-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.azcam-product-card:hover .azcam-product-image img {
    transform: scale(1.12);
}

/* Product Badge - Colorful Style */
.azcam-product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    padding: 0.45rem 1.1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
    animation: azcam-badge-float 3s ease-in-out infinite;
}

/* Màu khác nhau cho mỗi badge */
.azcam-product-card:nth-child(1) .azcam-product-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.azcam-product-card:nth-child(2) .azcam-product-badge {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.azcam-product-card:nth-child(3) .azcam-product-badge {
    background: linear-gradient(135deg, #0066cc, #0052a3);
}

.azcam-product-card:nth-child(4) .azcam-product-badge {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

@keyframes azcam-badge-float {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

/* Product Info - Layout mới */
.azcam-product-info {
    padding: 1.5rem 1.5rem;
    background: white;
    position: relative;
}

.azcam-product-name {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.azcam-product-card:hover .azcam-product-name {
    transform: translateX(5px);
}

.azcam-product-desc {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

/* Feature Tags - Colorful Pills */
.azcam-product-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.3rem;
}

.azcam-feature-tag {
    background: white;
    color: #0066cc;
    padding: 0.4rem 0.9rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid #0066cc;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

/* Màu khác nhau cho từng tag theo vị trí */
.azcam-feature-tag:nth-child(1) {
    border-color: #0066cc;
    color: #0066cc;
}

.azcam-feature-tag:nth-child(2) {
    border-color: #00d4ff;
    color: #00d4ff;
}

.azcam-feature-tag:nth-child(3) {
    border-color: #0052a3;
    color: #0052a3;
}

.azcam-feature-tag:nth-child(4) {
    border-color: #4ecdc4;
    color: #4ecdc4;
}

.azcam-feature-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.25);
}

.azcam-feature-tag:nth-child(1):hover {
    background: #0066cc;
    color: white;
}

.azcam-feature-tag:nth-child(2):hover {
    background: #00d4ff;
    color: white;
}

.azcam-feature-tag:nth-child(3):hover {
    background: #0052a3;
    color: white;
}

.azcam-feature-tag:nth-child(4):hover {
    background: #4ecdc4;
    color: white;
}

/* Product Footer - Style mới */
.azcam-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, #e0e0e0, transparent) 1;
}

.azcam-product-price {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* Buy Button - Style mới hoàn toàn */
.azcam-buy-button {
    background: linear-gradient(135deg, #0066cc 0%, #00d4ff 100%);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.azcam-buy-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.azcam-buy-button:hover::before {
    width: 300px;
    height: 300px;
}

.azcam-buy-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
}

.azcam-buy-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Featured Videos Section */
.azcam-featured-section {
    background: linear-gradient(135deg, #0066cc 0%, #004d9f 100%);
    padding: 6rem 0;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.azcam-featured-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.azcam-featured-section .azcam-section-header {
    text-align: left;
    margin-bottom: 4rem;
}

.azcam-featured-section .azcam-section-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
}

.azcam-featured-section .azcam-section-title::before,
.azcam-featured-section .azcam-section-title::after {
    background: linear-gradient(90deg, #00d4ff, white);
}

.azcam-featured-section .azcam-section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* Video Carousel */
.azcam-videos-carousel {
    position: relative;
    margin-top: 3rem;
    width: 100%;
}

.azcam-videos-wrapper {
    overflow: hidden;
    padding: 3rem 0;
    width: 100%;
    position: relative;
}

.azcam-videos-track {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    will-change: transform;
    padding: 0 2rem;
}

.azcam-video-slide {
    flex-shrink: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.5;
    transform: scale(0.85);
    filter: brightness(0.6);
    position: relative;
}

/* Center/Active slide - TO HƠN */
.azcam-video-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
    z-index: 10;
}

/* Side slides - NHỎ HƠN, có thể click */
.azcam-video-slide.prev,
.azcam-video-slide.next {
    opacity: 0.7;
    transform: scale(0.85);
    filter: brightness(0.75);
    z-index: 5;
    cursor: pointer;
}

.azcam-video-slide.prev:hover,
.azcam-video-slide.next:hover {
    opacity: 0.85;
    filter: brightness(0.85);
}

/* Video Card - Redesigned */
.azcam-video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 450px;
}

.azcam-video-slide.active .azcam-video-card {
    width: 800px;
    box-shadow: 0 30px 70px rgba(0, 102, 204, 0.35);
}

.azcam-video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.25);
}

/* Video Thumbnail */
.azcam-video-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #000;
    transition: height 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.azcam-video-slide.active .azcam-video-thumbnail {
    height: 450px;
}

.azcam-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.3s ease;
}

.azcam-video-card:hover .azcam-video-thumbnail img {
    transform: scale(1.15);
    opacity: 0.8;
}

/* Play Button */
.azcam-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 102, 204, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 3;
}

.azcam-play-button::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 26px solid white;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    margin-left: 5px;
}

.azcam-video-card:hover .azcam-play-button {
    transform: translate(-50%, -50%) scale(1.2);
    background: rgba(0, 212, 255, 0.95);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.7);
}

.azcam-play-button::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.7);
    animation: azcam-pulse 2s infinite;
}

/* Video Overlay */
.azcam-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.azcam-video-card:hover .azcam-video-overlay {
    opacity: 1;
}

/* Video Info */
.azcam-video-info {
    padding: 2rem 1.8rem;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.azcam-video-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.azcam-video-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.azcam-video-stats {
    display: flex;
    gap: 1.5rem;
    color: #999;
    font-size: 0.88rem;
    margin-top: auto;
}

.azcam-video-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.azcam-video-stat svg {
    width: 16px;
    height: 16px;
    fill: #0066cc;
}

/* Carousel Navigation Buttons */
.azcam-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    color: #0066cc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.azcam-carousel-nav:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.5);
    background: white;
}

.azcam-carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.azcam-carousel-nav.prev {
    left: 1rem;
}

.azcam-carousel-nav.next {
    right: 1rem;
}

.azcam-carousel-nav::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid #0066cc;
    border-right: 3px solid #0066cc;
}

.azcam-carousel-nav.prev::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.azcam-carousel-nav.next::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

/* Carousel Indicators */
.azcam-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
}

.azcam-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.azcam-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.azcam-carousel-dot.active {
    background: white;
    border-color: white;
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

/* Dealers Section */
.azcam-dealers-section {
    background: white;
    padding: 2rem 3rem 4rem 3rem;
}

.azcam-dealers-container {
    max-width: 1400px;
    margin: 0 auto;
}

.azcam-dealers-section .azcam-section-title {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #1a1a2e;
    background-clip: unset;
    color: #1a1a2e;
    font-size: 2.2rem;
}

.azcam-dealers-section .azcam-section-title::before {
    display: none;
}

.azcam-dealers-section .azcam-section-title::after {
    background: #0454eb;
}

.azcam-dealers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.azcam-dealer-card {
    background: white;
    transition: transform 0.3s ease;
}

.azcam-dealer-card:hover {
    transform: translateY(-5px);
}

.azcam-dealer-header {
    display: flex;
    align-items: stretch;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.azcam-dealer-number {
    width: 48px;
    height: 48px;
    background: #1a365d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}

.azcam-dealer-name-bar {
    flex: 1;
    background: #0454eb;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.azcam-dealer-name {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.azcam-dealer-info {
    padding: 0 15px;
}

.azcam-dealer-info-item {
    margin-bottom: 0.6rem;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.6;
}

.azcam-dealer-info-label {
    font-weight: 600;
    color: #0454eb;
    margin-right: 0.4rem;
}

.azcam-dealer-info-value {
    color: #555;
}

.azcam-dealer-info-value a {
    color: #333;
    text-decoration: none;
}

.azcam-dealer-info-value a:hover {
    color: #0454eb;
}

.azcam-dealers-viewall {
    text-align: center;
    margin-top: 2rem;
}

.azcam-btn-viewall {
    display: inline-block;
    padding: 12px 80px;
    background: #0454eb;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.azcam-btn-viewall:hover {
    background: #1a365d;
    color: #fff;
    transform: translateY(-2px);
}

/* Animations */
@keyframes azcam-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes azcam-slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes azcam-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Responsive Design */

/* ==================================
   DARK MODE TOGGLE BUTTON
   ================================== */
.azcam-dark-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    width: 36px;
    height: 36px;
    z-index: 9999;
}
.azcam-dark-toggle:hover {
    background: rgba(4, 84, 235, 0.1);
}
.azcam-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: color 0.3s ease;
    width: 100%;
    height: 100%;
    position: relative;
}
.azcam-toggle-icon,
.azcam-toggle-icon svg,
.azcam-toggle-icon * {
    pointer-events: none;
}
.azcam-toggle-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.azcam-sun-icon {
    opacity: 1;
}
.azcam-moon-icon {
    opacity: 0;
}

/* ==================================
   DARK MODE STYLES
   Tông màu: Đen, Trắng, Xanh (#0454eb)
   ================================== */
body.dark-mode {
    background: #0a0a0a !important;
    color: #ffffff !important;
}

/* Dark Mode - Toggle Icon */
body.dark-mode .azcam-dark-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}
body.dark-mode .azcam-toggle-icon {
    color: #fff;
}
body.dark-mode .azcam-sun-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg);
}
body.dark-mode .azcam-moon-icon {
    opacity: 1;
}

/* Dark Mode - Header */
body.dark-mode .col-left {
    background: #0a0a0a !important;
    border-bottom: 1px solid #1a1a1a;
}
body.dark-mode .col-left a,
body.dark-mode .col-left .font-weight-bold,
body.dark-mode #menu_pc li a {
    color: #ffffff !important;
}
body.dark-mode #menu_pc li a:hover {
    color: #0454eb !important;
}
body.dark-mode .lvdiv {
    background: #111 !important;
    border: 1px solid #222;
}
body.dark-mode .lvdiv li a {
    color: #ccc !important;
}
body.dark-mode .lvdiv li a:hover {
    color: #0454eb !important;
    background: rgba(4, 84, 235, 0.1);
}
body.dark-mode .head_svg svg {
    color: #fff !important;
    stroke: #fff;
}
body.dark-mode .left-search input {
    background: #1a1a1a !important;
    border-color: #333 !important;
    color: #fff !important;
}
body.dark-mode .left-search input::placeholder {
    color: #666 !important;
}

/* Dark Mode - Slider (Already dark, no major changes needed) */

/* Dark Mode - Features Section */
body.dark-mode #azcam-features-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%) !important;
}
body.dark-mode .azcam-features-header h2 {
    color: #ffffff !important;
}
body.dark-mode .azcam-features-header p {
    color: #888 !important;
}
body.dark-mode .azcam-feature-card {
    background: #141414 !important;
    border: 1px solid #222 !important;
}
body.dark-mode .azcam-feature-card:hover {
    border-color: #0454eb !important;
    box-shadow: 0 10px 30px rgba(4, 84, 235, 0.2);
}
body.dark-mode .azcam-feature-card h3 {
    color: #ffffff !important;
}
body.dark-mode .azcam-feature-card p {
    color: #999 !important;
}

/* Dark Mode - Products Section */
body.dark-mode .azcam-products-dark {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%) !important;
}
body.dark-mode .azcam-section-header .azcam-section-title {
    color: #ffffff !important;
}
body.dark-mode .azcam-section-header .azcam-section-subtitle {
    color: #888 !important;
}
body.dark-mode .azcam-product-featured {
    background: #141414 !important;
    border: 2px solid #1e1e1e !important;
}
body.dark-mode .azcam-product-featured:hover {
    border-color: #0454eb !important;
}
body.dark-mode .azcam-product-featured .product-name {
    color: #ffffff !important;
}
body.dark-mode .azcam-product-featured .product-description {
    color: #bbb !important;
}
body.dark-mode .azcam-product-featured .azcam-product-note {
    color: #00d4ff !important;
}
body.dark-mode .azcam-product-small {
    background: #141414 !important;
    border: 2px solid #1e1e1e !important;
}
body.dark-mode .azcam-product-small:hover {
    border-color: #0454eb !important;
}
body.dark-mode .azcam-product-small .product-name {
    color: #ffffff !important;
}
body.dark-mode .azcam-product-small .product-description {
    color: #999 !important;
}
body.dark-mode .product-badge {
    background: #22c55e !important;
}
body.dark-mode .product-price,
body.dark-mode .azcam-product-price-large {
    color: #22c55e !important;
}
body.dark-mode .btn-buy,
body.dark-mode .azcam-btn-buy,
body.dark-mode .btn-small {
    background: #0454eb !important;
    border: 2px solid #0454eb !important;
    color: #ffffff !important;
}
body.dark-mode .btn-buy:hover,
body.dark-mode .azcam-btn-buy:hover,
body.dark-mode .btn-small:hover {
    background: #0366fc !important;
    border-color: #0366fc !important;
    color: #ffffff !important;
}

/* Dark Mode - Reviews Section */
body.dark-mode .azcam-reviews-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%) !important;
}
body.dark-mode .azcam-reviews-header h2 {
    color: #ffffff !important;
}
body.dark-mode .azcam-reviews-header p {
    color: #888 !important;
}
body.dark-mode .azcam-review-card {
    background: linear-gradient(145deg, #141414 0%, #1a1a1a 100%) !important;
    border: 2px solid #222 !important;
}
body.dark-mode .azcam-review-card::before {
    color: rgba(4, 84, 235, 0.15) !important;
}
body.dark-mode .azcam-review-card:hover {
    border-color: #0454eb !important;
    background: linear-gradient(145deg, #1a1a1a 0%, #222 100%) !important;
}
body.dark-mode .azcam-review-text {
    color: #ccc !important;
}
body.dark-mode .azcam-review-info h4 {
    color: #ffffff !important;
}
body.dark-mode .azcam-review-info span {
    color: #888 !important;
}

/* Dark Mode - Small Product Cards */
body.dark-mode .azcam-products-small-grid .title {
    color: #ffffff !important;
    font-weight: 700;
}
body.dark-mode .azcam-products-small-grid .desc {
    color: #ffffff !important;
}
body.dark-mode .azcam-products-small-grid .price {
    color: #22c55e !important;
}

/* Dark Mode - Dealers Section */
body.dark-mode .azcam-dealers-section {
    background: #0a0a0a !important;
}
body.dark-mode .azcam-dealers-section .azcam-section-title {
    color: #ffffff !important;
}
body.dark-mode .azcam-dealer-card {
    background: #111 !important;
    border: 1px solid #222 !important;
}
body.dark-mode .azcam-dealer-card:hover {
    border-color: #0454eb !important;
}
body.dark-mode .azcam-dealer-info-label {
    color: #0454eb !important;
}
body.dark-mode .azcam-dealer-info-value,
body.dark-mode .azcam-dealer-info-value a {
    color: #ccc !important;
}
body.dark-mode .azcam-dealer-info-value a:hover {
    color: #22c55e !important;
}
body.dark-mode .azcam-btn-viewall {
    background: #0454eb !important;
    color: #fff !important;
}
body.dark-mode .azcam-btn-viewall:hover {
    background: #22c55e !important;
}

/* Dark Mode - Footer */
body.dark-mode footer,
body.dark-mode .bottom_footer {
    background: #050505 !important;
    border-top: 1px solid #1a1a1a;
}
body.dark-mode footer h4,
body.dark-mode footer .h4,
body.dark-mode footer a {
    color: #ccc !important;
}
body.dark-mode footer a:hover {
    color: #0454eb !important;
}
body.dark-mode footer p,
body.dark-mode footer span,
body.dark-mode footer li {
    color: #888 !important;
}

/* Dark Mode - Scrollbar */
body.dark-mode::-webkit-scrollbar {
    width: 8px;
}
body.dark-mode::-webkit-scrollbar-track {
    background: #0a0a0a;
}
body.dark-mode::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
body.dark-mode::-webkit-scrollbar-thumb:hover {
    background: #0454eb;
}

/* Dark Mode - General Text & Links */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #ffffff;
}
body.dark-mode p {
    color: #bbb;
}
body.dark-mode a {
    color: #0454eb;
}
body.dark-mode a:hover {
    color: #3377ff;
}

/* Dark Mode Animation */
body,
body.dark-mode,
body *,
body.dark-mode * {
    transition: background 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Visual Features Grid - 5 Images */
.azcam-visual-features {
    display: grid;
    /* 40% for first col, then remaining 60% split into 2 cols (30% each) */
    grid-template-columns: 4fr 3fr 3fr;
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
    margin-top: 3rem;
}

.azcam-visual-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.azcam-visual-item.item-large {
    grid-column: span 1;
    grid-row: span 2;
}

.azcam-visual-item img,
.azcam-visual-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.azcam-visual-item:hover img,
.azcam-visual-item:hover video {
    transform: scale(1.1);
}

.azcam-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    height: 50%;
    pointer-events: none;
}

.azcam-visual-overlay h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: transform 0.3s ease;
    color: #fff;
}

.azcam-visual-overlay p {
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    color: #fff;
    line-height: 1.4;
    opacity: 0.95;
}

/* Specific styling for the large item text to match reference */
.azcam-visual-item.item-large .azcam-visual-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #fff;
}

.azcam-visual-item.item-large .azcam-visual-overlay p {
    font-size: 1rem;
}

/* Override background for large item overlay to be darker so white text is visible */
.azcam-visual-item.item-large .azcam-visual-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

.azcam-visual-item.item-large .azcam-visual-overlay h3 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.azcam-visual-item:hover .azcam-visual-overlay h3 {
    transform: translateY(-5px);
}

/* Responsive Visual Features */

/* Before/After Comparison Styles */
.azcam-comparison-wrapper {
    margin-top: 4rem;
    margin-bottom: 2rem;
    width: 100%;
    position: relative;
}

.azcam-comparison-container {
    position: relative;
    width: 100%;
    height: 580px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
}

.azcam-comparison-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Bottom Image (After) */
.azcam-image-after {
    z-index: 1;
}

/* Top Image (Before) - Clipped */
.azcam-image-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0); /* Show left 50% initially */
}

/* Slider Handle Line */
.azcam-slider-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #fff;
    z-index: 3;
    transform: translateX(-50%);
    pointer-events: none;
}

/* Slider Circle Button */
.azcam-slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #333;
    z-index: 4;
}

/* Ensure comparison container doesn't overlap header/menu */
.azcam-comparison-wrapper {
    position: relative;
    z-index: 1;
}

.azcam-comparison-container {
    position: relative;
    z-index: 1;
}

/* Labels */
.azcam-label-badge {
    position: absolute;
    top: 0;
    padding: 12px 25px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: none;
}

.azcam-label-before {
    left: 0;
    background: #e11d2b; /* Red */
    border-bottom-right-radius: 20px;
}

.azcam-label-after {
    right: 0;
    background: #0454eb; /* Blue */
    border-bottom-left-radius: 20px;
}

.azcam-label-text {
    position: absolute;
    bottom: 25px;
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    z-index: 5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    pointer-events: none;
}

.azcam-text-normal {
    left: 25px;
}

.azcam-text-sinjet {
    right: 25px;
}

/* ==================================
   RESPONSIVE DESIGN - TẤT CẢ MEDIA QUERY
   Sắp xếp theo breakpoint từ lớn đến nhỏ
   ================================== */

/* Tablet Large & Desktop Small */
@media (max-width: 1400px) {
    .azcam-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    /* Reset margin-top cho 2x2 grid */
    .azcam-product-card:nth-child(1),
    .azcam-product-card:nth-child(2) {
        margin-top: 0;
    }

    .azcam-product-card:nth-child(3) {
        margin-top: 2rem;
    }

    .azcam-product-card:nth-child(4) {
        margin-top: 2rem;
    }

    .azcam-video-card {
        width: 400px;
    }

    .azcam-video-slide.active .azcam-video-card {
        width: 700px;
    }

    .azcam-video-thumbnail {
        height: 220px;
    }

    .azcam-video-slide.active .azcam-video-thumbnail {
        height: 400px;
    }
}

/* Desktop Medium - 1200px */
@media (max-width: 1200px) {
    .azcam-product-small {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 35px;
        gap: 25px;
    }

    .azcam-product-small .info {
        width: 100%;
        text-align: left;
        order: 2;
    }

    .azcam-product-small .thumb {
        width: 100%;
        display: flex;
        justify-content: center;
        order: 1;
    }

    .azcam-product-small .thumb img {
        width: 100%;
        max-width: 280px;
        height: auto;
    }

    .azcam-product-small .title {
        font-size: 2.2rem;
        margin-bottom: 12px;
        text-align: left;
    }

    .azcam-product-small .desc {
        font-size: 1rem;
        margin-bottom: 12px;
        text-align: left;
    }

    .azcam-product-small .price {
        font-size: 1.5rem;
        margin-bottom: 16px;
        text-align: left;
    }

    .azcam-product-small .btn-small {
        padding: 10px 60px;
        font-size: 1rem;
        width: auto;
        display: inline-block;
    }
}

/* Desktop Large - 1201px to 1420px */
@media (min-width: 1201px) and (max-width: 1420px) {
    .azcam-product-small .btn-small {
        padding: 10px 70px;
        font-size: 1.05rem;
        width: auto;
        display: inline-block;
        white-space: nowrap;
    }
    .azcam-product-featured {
        padding: 45px;
    }
    .azcam-product-small {
        padding: 20px;
    }
    .azcam-product-small .title {
        font-size: 2.8rem;
    }
    .azcam-product-small .thumb img {
        width: 240px;
    }
}

/* Tablet & Desktop Medium */
@media (max-width: 1100px) {
    .azcam-product-featured {
        padding: 50px 45px;
        gap: 50px;
    }

    .azcam-product-featured .product-image img {
        max-width: 450px;
    }

    .azcam-product-title {
        font-size: 3.2rem;
    }

    .azcam-product-subtitle {
        font-size: 1.5rem;
    }

    .azcam-product-price-large {
        font-size: 2.1rem;
    }

    .azcam-btn-buy {
        padding: 12px 100px;
        font-size: 1.1rem;
    }

    .azcam-product-small .thumb img {
        width: 300px;
    }

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

/* Tablet */
@media (max-width: 1024px) {
    .azcam-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .azcam-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .azcam-dealers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .azcam-video-card {
        width: 350px;
    }

    .azcam-video-slide.active .azcam-video-card {
        width: 600px;
    }

    .azcam-video-thumbnail {
        height: 200px;
    }

    .azcam-video-slide.active .azcam-video-thumbnail {
        height: 350px;
    }

    .azcam-product-image {
        height: 240px;
    }

    .azcam-product-info {
        padding: 1.5rem;
    }

    .azcam-carousel-nav {
        width: 50px;
        height: 50px;
    }
}

/* Tablet Small */
@media (max-width: 992px) {
    .azcam-visual-features {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 1rem;
    }

    .azcam-visual-item.item-large {
        grid-column: span 2;
        height: 300px;
    }

    .azcam-visual-item {
        height: 200px;
    }

    .azcam-comparison-container {
        height: 500px;
    }
}

/* iPad & Tablet Portrait */
@media (max-width: 900px) {
    .azcam-product-featured {
        flex-direction: column;
        text-align: left;
        padding: 35px 28px;
        gap: 28px;
        border-radius: 20px;
    }

    .azcam-product-featured .product-info {
        order: 2;
        text-align: left;
        width: 100%;
    }

    .azcam-product-featured .product-image {
        order: 1;
        width: 100%;
        margin-bottom: 0;
    }

    .azcam-product-featured .product-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .azcam-product-title {
        font-size: 2.3rem;
        margin-bottom: 14px;
        text-align: left !important;
        line-height: 1.2;
    }

    .azcam-product-subtitle {
        font-size: 1.25rem;
        margin-bottom: 16px;
        text-align: left !important;
        line-height: 1.5;
    }

    .azcam-product-price-large {
        font-size: 1.8rem;
        margin-bottom: 16px;
        text-align: left !important;
    }

    .azcam-btn-buy {
        padding: 12px 65px;
        font-size: 1rem;
        width: auto;
        max-width: 300px;
        margin-bottom: 16px;
        display: inline-block;
    }

    .azcam-product-note {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left !important;
    }

    .azcam-badge-new {
        font-size: 0.85rem;
        padding: 7px 16px;
        margin-bottom: 14px;
        display: inline-block;
    }

    .azcam-products-small-grid {
        grid-template-columns: 1fr;
    }

    .azcam-product-small {
        padding: 28px 25px;
        flex-direction: column;
        text-align: left;
        gap: 20px;
    }

    .azcam-product-small .info {
        order: 2;
        text-align: left;
    }

    .azcam-product-small .thumb {
        order: 1;
    }

    .azcam-product-small .thumb img {
        width: 100%;
        max-width: 350px;
    }

    .azcam-product-small .title {
        font-size: 1.9rem;
        margin-bottom: 10px;
    }

    .azcam-product-small .desc {
        font-size: 0.98rem;
        margin-bottom: 12px;
    }

    .azcam-product-small .price {
        font-size: 1.35rem;
        margin-bottom: 12px;
    }

    .azcam-product-small .btn-small {
        padding: 10px 55px;
        font-size: 0.92rem;
        width: auto;
        max-width: 250px;
    }
}

/* Mobile Large & Tablet Small */
@media (max-width: 768px) {
    /* Camera Overlay */
    #azcam-overlay {
        padding: 40px 25px 20px 25px;
    }

    #azcam-overlay .brand .model {
        font-size: 1.4rem;
    }

    #azcam-overlay .datetime {
        font-size: 1rem;
    }

    /* Features Section */
    #azcam-features-section {
        padding: 60px 20px;
    }

    .azcam-features-header h2 {
        font-size: 1.9rem;
    }

    .azcam-products-header h2 {
        font-size: 1.9rem;
    }

    .azcam-reviews-header h2 {
        font-size: 1.9rem;
    }

    .azcam-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .azcam-feature-card {
        padding: 30px 25px;
    }
    .azcam-products-dark {
        padding: 20px 20px;
    }
    /* Camera Slider */
    .azcam-camera-slider {
        padding: 10px;
    }

    .azcam-camera-overlay {
        padding: 10px 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .azcam-camera-logo {
        font-size: 0.9rem;
    }

    .azcam-camera-model {
        font-size: 1.2rem;
    }

    .azcam-camera-time,
    .azcam-camera-date {
        font-size: 1rem;
    }

    .azcam-camera-type {
        font-size: 0.8rem;
    }

    .azcam-features-text {
        font-size: 1.3rem;
        padding: 35px 20px;
    }

    /* Products Section */
    .azcam-products-section,
    .azcam-featured-section,
    .azcam-dealers-section {
        padding: 2rem 1rem;
    }

    .azcam-featured-container {
        padding: 0;
    }

    .azcam-section-title {
        font-size: 2.2rem;
    }

    .azcam-section-subtitle {
        font-size: 1rem;
    }

    .azcam-products-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .azcam-product-card {
        max-width: 500px;
        margin: 0 auto !important;
    }

    /* Reset margin-top cho mobile */
    .azcam-product-card:nth-child(1),
    .azcam-product-card:nth-child(2),
    .azcam-product-card:nth-child(3),
    .azcam-product-card:nth-child(4) {
        margin-top: 0 !important;
    }

    .azcam-product-image {
        height: 280px;
    }

    .azcam-product-name {
        font-size: 1.4rem;
    }

    .azcam-product-price {
        font-size: 1.5rem;
    }

    .azcam-buy-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .azcam-feature-tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.8rem;
    }

    /* Dealers Grid - Chuyển sang 1 cột ở mobile */
    .azcam-dealers-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    /* Product Featured */
    .azcam-product-featured {
        padding: 28px 20px;
        gap: 22px;
        border-radius: 18px;
        text-align: left;
    }

    .azcam-product-featured .product-info {
        order: 2;
        text-align: left;
        width: 100%;
    }

    .azcam-product-featured .product-image {
        order: 1;
        width: 100%;
    }

    .azcam-product-featured .product-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .azcam-product-title {
        font-size: 2.1rem;
        margin-bottom: 13px;
        text-align: left !important;
        line-height: 1.2;
    }

    .azcam-product-subtitle {
        font-size: 1.15rem;
        margin-bottom: 15px;
        text-align: left !important;
        line-height: 1.5;
    }

    .azcam-product-price-large {
        font-size: 1.65rem;
        margin-bottom: 15px;
        text-align: left !important;
    }

    .azcam-btn-buy {
        padding: 11px 55px;
        font-size: 0.92rem;
        width: auto;
        max-width: 290px;
        margin-bottom: 15px;
        display: inline-block;
    }

    .azcam-product-note {
        font-size: 0.92rem;
        line-height: 1.6;
        text-align: left !important;
    }

    .azcam-badge-new {
        font-size: 0.82rem;
        padding: 6px 15px;
        margin-bottom: 13px;
        display: inline-block;
    }

    .azcam-product-small {
        padding: 25px 20px;
        flex-direction: column;
        text-align: left;
        gap: 20px;
    }

    .azcam-product-small .info {
        order: 2;
        text-align: left;
    }

    .azcam-product-small .thumb {
        order: 1;
    }

    .azcam-product-small .thumb img {
        width: 100%;
        max-width: 350px;
    }

    .azcam-product-small .title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .azcam-product-small .desc {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .azcam-product-small .price {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .azcam-product-small .btn-small {
        padding: 10px 50px;
        font-size: 0.9rem;
        width: auto;
        max-width: 250px;
    }

    /* Videos */
    .azcam-video-card {
        width: 300px;
    }

    .azcam-video-slide.active .azcam-video-card {
        width: 500px;
    }

    .azcam-video-thumbnail {
        height: 170px;
    }

    .azcam-video-slide.active .azcam-video-thumbnail {
        height: 280px;
    }

    .azcam-video-slide {
        opacity: 0.35;
        transform: scale(0.7);
    }

    .azcam-video-slide.active {
        opacity: 1;
        transform: scale(1);
    }

    .azcam-carousel-nav {
        width: 45px;
        height: 45px;
    }

    .azcam-carousel-nav.prev {
        left: 0.5rem;
    }

    .azcam-carousel-nav.next {
        right: 0.5rem;
    }

    /* Comparison */
    .azcam-comparison-container {
        height: 400px;
    }

    .azcam-label-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .azcam-label-text {
        font-size: 0.8rem;
        bottom: 15px;
    }

    .azcam-text-normal {
        left: 15px;
    }

    .azcam-text-sinjet {
        right: 15px;
    }

    .azcam-slider-button {
        width: 36px;
        height: 36px;
    }
}

/* Reviews */
@media (max-width: 700px) {
    .azcam-reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Medium */
@media (max-width: 576px) {
    .azcam-visual-features {
        display: flex;
        flex-direction: column;
    }

    .azcam-visual-item.item-large,
    .azcam-visual-item {
        height: 220px;
        width: 100%;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    /* Camera Overlay */
    .azcam-camera-overlay {
        padding: 8px 12px;
    }

    .azcam-camera-logo {
        font-size: 0.75rem;
    }

    .azcam-camera-model {
        font-size: 1rem;
    }

    .azcam-camera-datetime {
        gap: 5px;
    }

    .azcam-camera-time,
    .azcam-camera-date {
        font-size: 0.85rem;
    }

    .azcam-camera-type {
        font-size: 0.7rem;
    }

    .azcam-features-text {
        font-size: 1.1rem;
        padding: 25px 15px;
    }

    /* Section Title */
    .azcam-section-title {
        font-size: 1.8rem;
    }

    /* Products */
    .azcam-product-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .azcam-buy-button {
        width: 100%;
        text-align: center;
    }

    /* Product Featured */
    .azcam-product-featured {
        padding: 22px 16px;
        gap: 20px;
        border-radius: 16px;
        text-align: left;
    }

    .azcam-product-featured .product-info {
        order: 2;
        text-align: left;
        width: 100%;
    }

    .azcam-product-featured .product-image {
        order: 1;
        width: 100%;
    }

    .azcam-product-featured .product-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .azcam-product-title {
        font-size: 1.8rem;
        margin-bottom: 11px;
        text-align: left !important;
        line-height: 1.2;
    }

    .azcam-product-subtitle {
        font-size: 1rem;
        margin-bottom: 13px;
        text-align: left !important;
        line-height: 1.5;
    }

    .azcam-product-price-large {
        font-size: 1.45rem;
        margin-bottom: 13px;
        text-align: left !important;
    }

    .azcam-btn-buy {
        padding: 10px 40px;
        font-size: 0.88rem;
        width: auto;
        max-width: 100%;
        margin-bottom: 13px;
        display: inline-block;
    }

    .azcam-product-note {
        font-size: 0.88rem;
        line-height: 1.5;
        text-align: left !important;
    }

    .azcam-badge-new {
        font-size: 0.78rem;
        padding: 6px 13px;
        margin-bottom: 11px;
        display: inline-block;
    }

    .azcam-product-small {
        padding: 20px 15px;
        gap: 15px;
        flex-direction: column;
        text-align: left;
    }

    .azcam-product-small .info {
        order: 2;
        text-align: left;
    }

    .azcam-product-small .thumb {
        order: 1;
    }

    .azcam-product-small .thumb img {
        max-width: 280px;
    }

    .azcam-product-small .title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .azcam-product-small .desc {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .azcam-product-small .price {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .azcam-product-small .btn-small {
        padding: 9px 40px;
        font-size: 0.85rem;
        width: auto;
        max-width: 250px;
    }

    /* Videos */
    .azcam-video-thumbnail {
        height: 220px;
    }

    .azcam-carousel-nav {
        width: 40px;
        height: 40px;
    }

    /* Comparison */
    .azcam-comparison-container {
        height: 300px;
    }
}