* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary: #0B4D57;
    --primary-light: #0f6b7a;
    --secondary: #17B8D8;
    --secondary-light: #3dc9e5;
    --cta: #D91818;
    --cta-hover: #ff3b3b;
    --bg-desktop: #efefef;
    --bg-app: #ffffff;
    --text-primary: #0B4D57;
    --text-secondary: #4a5568;
    --text-muted: #9ca3af;
    --border: #e8ecef;
    --success: #22c55e;
    --warning: #f59e0b;
}
<div class="popup-success">

    <div class="popup-box">

        <i class="fas fa-circle-check"></i>

        <h3>Đặt hàng thành công</h3>

        <p>Chúng tôi sẽ liên hệ xác nhận đơn hàng trong ít phút.</p>

    </div>

</div>
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-desktop);
    color: var(--text-primary);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 16px 8px;
}

.app-container {
    max-width: 410px;
    margin: 0 auto;
    background-color: var(--bg-app);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
}

.header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(11, 77, 87, 0.05);
    padding: 12px 14px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.logo i {
    color: var(--secondary);
    font-size: 22px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
    box-shadow: 0 3px 10px rgba(11, 77, 87, 0.2);
}

.phone-btn:active {
    transform: scale(0.96);
    box-shadow: 0 1px 4px rgba(11, 77, 87, 0.15);
}

.buy-btn {
    padding: 9px 16px;
    background: linear-gradient(135deg, var(--cta), var(--cta-hover));
    color: white;
    font-weight: 800;
    font-size: 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 3px 12px rgba(217, 24, 24, 0.3);
    letter-spacing: 0.2px;
}

.buy-btn:active {
    transform: scale(0.97);
    box-shadow: 0 1px 5px rgba(217, 24, 24, 0.2);
}

.main {
    padding: 0 14px;
}

.hero {
    padding-top: 12px;
}

.product-image-container {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f4f8 0%, #d0eef7 100%);
}

.product-image {
    width: 100%;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 100px;
    color: var(--primary);
    opacity: 0.7;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--cta), var(--cta-hover));
    color: white;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(217, 24, 24, 0.35);
}

.bestseller-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--warning), #fbbf24);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 10px;
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 14px 2px 0;
}

.product-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.35;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.rating i {
    color: var(--warning);
    font-size: 13px;
}

.rating-value {
    font-weight: 800;
    color: var(--primary);
    font-size: 13px;
    margin-left: 2px;
}

.rating-count {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.sold {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
}

.sold i {
    color: var(--cta);
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
}

.old-price {
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 600;
}

.new-price {
    font-size: 28px;
    font-weight: 900;
    color: var(--cta);
    letter-spacing: -0.8px;
}

.quick-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.quick-feature {
    background-color: #f8fafc;
    padding: 12px 6px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(11, 77, 87, 0.04);
    transition: all 0.2s ease;
}

.quick-feature:active {
    transform: scale(0.98);
}

.quick-feature i {
    color: var(--secondary);
    font-size: 18px;
}

.quick-feature span {
    font-size: 10px;
    color: var(--primary);
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 100%;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--cta), var(--cta-hover));
    color: white;
    text-align: center;
    font-weight: 900;
    font-size: 16px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(217, 24, 24, 0.35);
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.hero-cta .cta-text {
    font-size: 16px;
    font-weight: 900;
}

.hero-cta .cta-sub {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.95;
}

.hero-cta:active {
    transform: scale(0.98);
    box-shadow: 0 3px 10px rgba(217, 24, 24, 0.25);
}

.flash-sale {
    padding: 12px 0;
}

.flash-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 14px;
    padding: 16px 14px;
    box-shadow: 0 8px 24px rgba(11, 77, 87, 0.3);
    position: relative;
    overflow: hidden;
}

.flash-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--cta), var(--secondary));
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.flash-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: white;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.flash-header i {
    color: var(--secondary);
    font-size: 18px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.countdown-item {
    background-color: rgba(0, 0, 0, 0.25);
    color: white;
    padding: 8px 10px;
    border-radius: 10px;
    text-align: center;
    min-width: 54px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-item span {
    display: block;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.countdown-item small {
    font-size: 9px;
    opacity: 0.9;
    font-weight: 700;
    margin-top: 3px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.countdown-separator {
    color: white;
    font-size: 18px;
    font-weight: 900;
    margin-top: -6px;
}

.limited {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.limited i {
    color: var(--warning);
}

.limited strong {
    color: var(--secondary);
    font-weight: 900;
    font-size: 14px;
}

.benefits {
    padding: 10px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.benefit-card {
    background-color: #ffffff;
    padding: 14px 8px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    box-shadow: 0 2px 8px rgba(11, 77, 87, 0.05);
    border: 1px solid rgba(11, 77, 87, 0.03);
    text-align: center;
}

.benefit-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e8f4f8, #d0eef7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    color: var(--primary);
    font-size: 18px;
}

.benefit-text h4 {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.benefit-text p {
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 500;
}

.section-header {
    margin-bottom: 10px;
    padding-left: 2px;
}

.section-title {
    font-size: 13px;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.video {
    padding: 10px 0;
}

.video-container {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    background: #000;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(11,77,87,.2);

    overflow: hidden;

    aspect-ratio: 9 / 16;
    height: auto;
}
.video-container video{
    width:100%;
    height:100%;
    display:block;
    object-fit:contain;
}
.play-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:active {
    transform: scale(0.96);
}

.play-button i {
    font-size: 24px;
    color: white;
    margin-left: 3px;
}

.gallery {
    padding: 10px 0;
}

.gallerySwiper{
    width:100%;
    overflow:hidden;
    border-radius:14px;
}

.gallerySwiper .swiper-slide{
    display:flex;
    justify-content:center;
}

.gallerySwiper img{
    width:100%;
    display:block;
    border-radius:12px;
}

.swiper-pagination{
    margin-top:10px;
    position:relative;
}

.swiper-pagination-bullet{
    background:#999;
}

.swiper-pagination-bullet-active{
    background:#0B4D57;
}

.features {
    padding: 10px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.feature-card {
    background-color: #ffffff;
    padding: 14px 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(11, 77, 87, 0.05);
    border: 1px solid rgba(11, 77, 87, 0.03);
    transition: all 0.2s ease;
}

.feature-card:active {
    transform: scale(0.98);
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 9px;
    box-shadow: 0 4px 12px rgba(23, 184, 216, 0.28);
}

.feature-icon-wrapper i {
    font-size: 22px;
    color: white;
}

.feature-card h3 {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1.25;
}

.feature-card p {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.45;
}

.specs {
    padding: 10px 0;
}

.specs-card {
    background-color: #ffffff;
    padding: 14px 12px;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(11, 77, 87, 0.05);
    border: 1px solid rgba(11, 77, 87, 0.03);
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.spec-value {
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    text-align: right;
}

.reviews {
    padding: 10px 0;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-card {
    background-color: #ffffff;
    padding: 12px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(11, 77, 87, 0.05);
    border: 1px solid rgba(11, 77, 87, 0.03);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    font-size: 12px;
    color: var(--warning);
}

.verified-badge {
    color: var(--success);
    font-size: 17px;
}

.review-text {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 6px;
}

.review-date {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.faq {
    padding: 10px 0;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(11, 77, 87, 0.05);
    border: 1px solid rgba(11, 77, 87, 0.03);
}

.faq-question {
    width: 100%;
    padding: 12px 12px;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s ease;
}

.faq-question:active {
    background-color: #f8fafc;
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    color: var(--secondary);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 12px 12px;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.25s ease;
}

.order-section {
    padding: 10px 0 10px;
}

.order-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    padding: 18px 14px 16px;
    box-shadow: 0 10px 28px rgba(11, 77, 87, 0.35);
    position: relative;
    overflow: hidden;
}

.order-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--cta), var(--secondary));
    animation: shimmer 3s infinite;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.order-header h2 {
    color: white;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.4px;
}

.order-discount {
    background-color: var(--cta);
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 11px;
    box-shadow: 0 3px 10px rgba(217, 24, 24, 0.3);
}

.order-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.order-countdown-item {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 9px;
    border-radius: 10px;
    text-align: center;
    min-width: 52px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.order-countdown-item span {
    display: block;
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
}

.order-countdown-item small {
    font-size: 9px;
    opacity: 0.9;
    font-weight: 700;
    margin-top: 3px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.order-countdown-separator {
    color: white;
    font-size: 17px;
    font-weight: 900;
    margin-top: -6px;
}

#orderForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

#orderForm input,
#orderForm select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    outline: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

#orderForm input::placeholder {
    color: var(--text-muted);
}

#orderForm input:focus,
#orderForm select:focus {
    border-color: var(--secondary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(23, 184, 216, 0.15);
}

#orderForm select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230B4D57'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.submit-btn {
    width: 100%;
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--cta), var(--cta-hover));
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(217, 24, 24, 0.4);
    transition: all 0.2s ease;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    letter-spacing: 0.3px;
}

.submit-btn:active {
    transform: scale(0.98);
    box-shadow: 0 4px 12px rgba(217, 24, 24, 0.3);
}

.submit-btn i {
    font-size: 16px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: white;
}

.trust-badge i {
    font-size: 18px;
    color: var(--secondary);
}

.trust-badge span {
    font-size: 10px;
    font-weight: 600;
    opacity: 0.95;
}

.footer {
    padding: 18px 14px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.footer-logo i {
    color: var(--secondary);
    font-size: 19px;
}

.footer-contact a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-contact i {
    font-size: 13px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 500;
}

.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 410px;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 10px 14px 14px;
    box-shadow: 0 -6px 20px rgba(11, 77, 87, 0.12);
    z-index: 1000;
    border-top: 1px solid rgba(11, 77, 87, 0.05);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.bottom-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.bottom-price {
    display: flex;
    flex-direction: column;
}

.bottom-new {
    font-size: 22px;
    font-weight: 900;
    color: var(--cta);
    letter-spacing: -0.6px;
}

.bottom-old {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 600;
}

.bottom-cta {
    flex: 1;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--cta), var(--cta-hover));
    color: white;
    text-align: center;
    font-weight: 900;
    font-size: 14px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(217, 24, 24, 0.35);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.bottom-cta:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(217, 24, 24, 0.25);
}

.bottom-cta i {
    font-size: 15px;
}

@media (max-width: 480px) {
    body {
        padding: 0;
        background-color: var(--bg-app);
    }
    
    .app-container {
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
    }
    
    .bottom-bar {
        max-width: 100%;
        border-radius: 0;
    }
}
.video-section{
    padding:15px;
    background:#fff;
}

.video-wrapper{
    max-width:320px;
    margin:0 auto;
    border-radius:15px;
    overflow:hidden;
    background:#000;
    aspect-ratio:9/16;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.video-wrapper video{
    width:100%;
    height:100%;
    display:block;
    object-fit:contain;
}
/*=========================
VIDEO DỌC 9:16
=========================*/

.video{
    padding:15px;
    background:#fff;
}

.video-wrapper{

    width:100%;

    max-width:330px;

    margin:0 auto;

    aspect-ratio:9 / 16;

    background:#000;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.15);

}

.video-wrapper video{

    width:100%;

    height:100%;

    display:block;

    object-fit:contain;

}

/* =========================
   SWIPER GALLERY
========================= */

.gallerySwiper{
    width:100%;
    border-radius:15px;
    overflow:hidden;
}

.gallerySwiper .swiper-slide{
    display:flex;
    justify-content:center;
    align-items:center;
}

.gallerySwiper img{
    width:100%;
    display:block;
    border-radius:12px;
}

.swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#ccc;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:#0B4D57;
}

/* GALLERY FIX */
.gallerySwiper{
  width:100%;
  overflow:hidden;
  touch-action:pan-y;
}
.gallerySwiper .swiper-wrapper{
  align-items:center;
}
.gallerySwiper .swiper-slide{
  display:flex;
  justify-content:center;
  align-items:center;
}
.gallerySwiper .swiper-slide img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
  border-radius:12px;
}
/* Popup thành công */

.popup-success{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;

    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.popup-success.show{
    opacity:1;
    visibility:visible;
}

.popup-box{
    width:90%;
    max-width:320px;
    background:#fff;
    border-radius:18px;
    padding:28px;
    text-align:center;
}

.popup-box i{
    font-size:60px;
    color:#16a34a;
    margin-bottom:15px;
}

.popup-box h3{
    font-size:22px;
    margin-bottom:10px;
}

.popup-box p{
    color:#666;
    font-size:15px;
}
.form-note{
    width:100%;
    min-height:70px;
    padding:24px 16px;
    border:none;
    border-radius:12px;
    background:#fff;
    resize:none;
    box-sizing:border-box;
}