/* ============================================
   CANVA PRO SHOP - MODERN BLACK & WHITE DESIGN
   Font: Montserrat
   ============================================ */

:root {
    --color-black: #0e1318;
    --color-white: #FFFFFF;
    --color-gray-100: #F8F9FA;
    --color-gray-200: #E9ECEF;
    --color-gray-300: #DEE2E6;
    --color-gray-600: #6C757D;
    --color-gray-700: #495057;
    --color-gray-900: #212529;
    --color-canva-cyan: #00a0a8;
    --color-canva-purple: #7d2ae8;
    --color-canva-button: #7731d8;
    --gradient-primary: linear-gradient(90deg, #00a0a8, #7d2ae8);
    --gradient-accent: linear-gradient(90deg, #00a0a8, #7d2ae8);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition-base: 0.3s ease;
    --font-primary: 'Varela Round', sans-serif;
    --font-heading: 'Varela Round', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.fw-bold {
    font-family: var(--font-heading) !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray-900);
    background: var(--color-white);
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
}

/* Ensure font applies to all elements */
body, body * {
    font-family: var(--font-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-black);
}

h1 { 
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}
h2 { 
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
}
h3 { 
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}
h4 {
    font-weight: 500;
}
h5 {
    font-weight: 500;
}
h6 {
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: var(--color-gray-700);
    font-weight: 400;
}

/* Apply font to common elements */
input, textarea, select, button, .btn, .form-control, .form-select, 
.card, .badge, .alert, label, span, a, div {
    font-family: var(--font-primary) !important;
}

.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    position: relative;
    z-index: 5;
    background: var(--color-white);
}

/* ==================== NAVIGATION ==================== */
#mainNav {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

#mainNav.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

/* Navbar Toggler (Hamburger Menu) */
.navbar-toggler {
    border: 2px solid var(--color-black) !important;
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-black) !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
}

.brand-text {
    background: linear-gradient(90deg, rgb(0, 160, 168), rgb(125, 42, 232));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.navbar-nav .nav-link {
    color: var(--color-gray-700) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1.25rem !important;
    position: relative;
    text-transform: none;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition-base);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.btn-login {
    border: 2px solid var(--color-canva-button) !important;
    background: transparent;
    color: var(--color-black) !important;
    border-radius: var(--radius-sm);
    padding: 0.5rem 1.25rem !important;
    margin-right: 0.5rem;
}

.btn-login:hover {
    background: var(--color-canva-button);
    color: var(--color-white) !important;
}

.btn-register {
    background: var(--color-canva-button) !important;
    color: var(--color-white) !important;
    border-radius: var(--radius-sm);
    border: 2px solid transparent !important;
    padding: 0.5rem 1.25rem !important;
    margin-left: 0.5rem;
}

.btn-register:hover {
    background: var(--color-canva-purple) !important;
    color: var(--color-white) !important;
}

.nav-link.btn-register {
    color: var(--color-white) !important;
}

.nav-link.btn-register:hover {
    color: var(--color-white) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem;
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--color-gray-100);
    color: var(--color-accent);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 120px 0 80px;
    overflow: hidden;
    z-index: 1;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 10;
}

.hero-section h1 {
    color: var(--color-white);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.text-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.fa-star.text-accent {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: #ffc107 !important;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

/* ==================== MOCKUP ==================== */
.mockup-browser {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: 0.5s ease;
}

.mockup-browser:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    background: var(--color-gray-200);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dots span:nth-child(1) { background: #FF5F56; }
.dots span:nth-child(2) { background: #FFBD2E; }
.dots span:nth-child(3) { background: #27C93F; }

.url {
    flex: 1;
    background: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--color-gray-600);
}

.mockup-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    min-height: 400px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.feature-box i {
    color: #7731d8;
}

.feature-box:nth-child(1) { animation-delay: 0s; }
.feature-box:nth-child(2) { animation-delay: 0.5s; }
.feature-box:nth-child(3) { animation-delay: 1s; }
.feature-box:nth-child(4) { animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==================== FEATURE CARDS ==================== */
.feature-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-base);
    height: 100%;
    position: relative;
    z-index: 10;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card:hover {
    border-color: var(--color-black);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--color-white);
    flex-shrink: 0;
}

.feature-card h5 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==================== PRODUCT CARDS ==================== */
.product-card {
    background: #e7dbff !important;
    border: 1.25px solid #d6c2ff;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card .card-body {
    background: #e7dbff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: #c5a9ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(119, 49, 216, 0.15);
}

.product-icon {
    width: 60px;
    height: 60px;
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
    box-shadow: none;
}

/* Icon colors */
.product-icon .fa-font {
    color: var(--color-canva-purple);
}

.product-icon .fa-crown {
    color: #ffc107;
}

.product-icon .fa-image,
.product-icon .fa-shapes,
.product-icon .fa-magic {
    color: #7731d8;
}

/* Product card badge */
.product-card .badge {
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    border: none;
    background-color: #fff !important;
    color: #0d1216 !important;
}

/* Product card typography */
.product-card h5 {
    font-weight: 600;
}

.product-card .text-muted {
    font-weight: 400;
}

.product-card .btn {
    font-weight: 500;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7731d8;
}

.features {
    text-align: left;
}

.features .feature-item {
    background: transparent;
    padding: 0.5rem 0;
    margin: 0;
    border: none;
    justify-content: flex-start;
}

.features .feature-item span {
    font-weight: 400;
}

.features .feature-item i {
    font-size: 1.2rem;
    color: var(--color-accent);
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 6rem;
    color: var(--color-accent);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stars i {
    color: #FFD700;
    font-size: 1.25rem;
}

.author {
    border-top: 2px solid var(--color-gray-200);
    padding-top: 1rem;
    margin-top: 1rem;
}

/* ==================== BUTTONS ==================== */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--color-canva-button);
    color: var(--color-white);
    border: none;
}

.btn-primary:hover {
    background: var(--color-canva-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Badge Primary */
.badge.bg-primary {
    background-color: #7731d8 !important;
}

.btn-warning {
    background: var(--color-canva-button);
    color: var(--color-white);
    border: none;
}

.btn-warning:hover {
    background: var(--color-canva-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-outline-primary {
    border: 2px solid var(--color-canva-button);
    color: var(--color-black);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--color-canva-button);
    color: var(--color-white);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 4rem 0 0;
    margin-top: 80px;
}

.text-gradient-light {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.footer-top {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h4, .footer h6 {
    color: var(--color-white);
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.7);
}

.footer a:hover {
    color: var(--color-accent);
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-right: 1rem;
    transition: var(--transition-base);
}

.social-btn:hover {
    background: var(--color-accent);
    transform: translateY(-5px);
    color: var(--color-white);
}

.footer-bottom {
    padding: 2rem 0;
}

.footer-links a {
    display: block;
    padding: 0.5rem 0;
    transition: var(--transition-base);
}

.footer-links a:hover {
    transform: translateX(5px);
    color: var(--color-accent);
}

.heartbeat {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        min-height: 260px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
    
    .feature-card h5 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .mockup-browser {
        margin-top: 3rem;
    }
    
    .feature-card {
        padding: 1.75rem 1.25rem;
        min-height: 240px;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h5 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }

    /* Navbar buttons spacing on mobile */
    .navbar-nav .nav-item {
        margin: 0.25rem 0;
    }

    .btn-login,
    .btn-register {
        display: block;
        text-align: center;
        margin: 0.5rem 0 !important;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0 30px;
    }
    
    .main-content {
        margin-top: 70px;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
        min-height: 220px;
        border-width: 2px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.35rem;
    }
    
    .feature-card h5 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

/* ==================== UTILITIES ==================== */
.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.bg-light {
    background: var(--color-gray-100) !important;
}

.bg-white {
    background: var(--color-white) !important;
    position: relative;
    z-index: 5;
}

.text-warning {
    color: var(--color-accent) !important;
}

.text-white {
    color: var(--color-white) !important;
}

.text-muted {
    color: var(--color-gray-600) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* Section spacing */
section {
    position: relative;
    z-index: 5;
}

section.hero-section {
    z-index: 1;
}

/* Ensure proper stacking */
.container {
    position: relative;
    z-index: 10;
}

/* ==================== ANIMATIONS ==================== */
[data-aos] {
    pointer-events: auto;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-gray-200);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gray-600);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-black);
}

/* ==================== ORDER PAGE STYLES ==================== */
/* Order Card Header */
.card-header.bg-primary {
    background: #0e1318 !important;
}

.card-header.bg-primary h3,
.card-header.bg-primary .card-title {
    color: white !important;
    font-weight: 400 !important;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    align-items: center;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.progress-step .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #7731d8;
    border: 3px solid #7731d8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
    z-index: 2;
}

.progress-step.active .step-number {
    background: #7731d8;
    border-color: #7731d8;
    color: white;
}

.progress-step .step-label {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-600);
}

.progress-step.active .step-label {
    color: var(--color-black);
}

.progress-line {
    width: 100px;
    height: 3px;
    background: var(--color-gray-300);
    margin: 0 -5px;
    position: relative;
    top: -15px;
}

/* Step Section */
.step-section {
    padding: 30px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-gray-200);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-black), var(--color-gray-700));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 24px;
    flex-shrink: 0;
}

.step-header h5 {
    margin: 0;
    line-height: 1.2;
}

/* Selected Product Card */
.selected-product-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid var(--color-gray-300) !important;
    transition: all 0.3s ease;
}

.selected-product-card:hover {
    border-color: var(--color-black) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.product-icon-large {
    width: 80px;
    height: 80px;
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.product-icon-large .fa-crown {
    color: #ffc107;
}

.features-inline .badge {
    font-weight: 500;
    padding: 6px 12px;
}

/* Product Radio Cards */
.product-radio-card {
    display: block;
    position: relative;
    cursor: pointer;
}

.product-radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.product-radio-card .card-content {
    padding: 20px;
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    background: var(--color-white);
}

.product-radio-card input[type="radio"]:checked + .card-content {
    border-color: var(--color-black);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.product-radio-card:hover .card-content {
    border-color: var(--color-gray-700);
    transform: translateY(-2px);
}

/* Email List */
.email-list {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.email-input-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.email-number {
    width: 40px;
    height: 40px;
    background: var(--color-black);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 10px;
}

/* Order Summary */
.order-summary {
    padding: 20px;
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.summary-item .label {
    color: var(--color-gray-700);
    font-weight: 500;
}

.summary-item .value {
    font-weight: 600;
    color: var(--color-black);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

.summary-total .label {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
}

.summary-total .value {
    font-size: 24px;
    font-weight: 900;
}

/* Benefits List */
.benefits-list {
    padding: 20px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 2px dashed var(--color-gray-300);
}

.benefits-list h6 {
    color: var(--color-black);
    margin-bottom: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--color-gray-700);
}

.benefit-item i {
    font-size: 18px;
    flex-shrink: 0;
}

/* Support Icon */
.support-icon {
    width: 60px;
    height: 60px;
    background: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 28px;
    margin: 0 auto;
}

/* Input Groups */
.input-group-text {
    background: var(--color-gray-100);
    border-color: var(--color-gray-300);
    color: var(--color-gray-700);
}

.form-control:focus {
    border-color: var(--color-black);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .progress-steps {
        gap: 10px;
    }
    
    .progress-step .step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .progress-line {
        width: 50px;
    }
    
    .progress-step .step-label {
        font-size: 12px;
    }
    
    .step-section {
        padding: 20px;
    }
    
    .step-header {
        flex-direction: column;
        gap: 10px;
    }
}

/* ======================================
   CANVA PRO FEATURES SECTION
   ====================================== */

/* Feature Cards Icons */
.feature-icon .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon .icon-circle:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Feature Cards Hover Effects */
.feature-icon + h5 {
    transition: color 0.3s ease;
}

.card:hover .feature-icon + h5 {
    color: var(--color-primary);
}

/* ======================================
   COMPARISON TABLE SECTION
   ====================================== */

.comparison-table {
    font-size: 15px;
}

.comparison-table thead th {
    padding: 20px 15px;
    font-size: 16px;
    border-bottom: 3px solid var(--color-primary);
    vertical-align: middle;
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background-color: rgba(0,0,0,0.02);
    transform: scale(1.01);
}

.comparison-table tbody td {
    padding: 18px 15px;
    vertical-align: middle;
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    background-color: rgba(0,0,0,0.03);
}

.comparison-table .badge {
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 600;
}

.comparison-table i.fa-check-circle,
.comparison-table i.fa-exclamation-circle {
    font-size: 20px;
}

/* Mobile Responsive Table */
@media (max-width: 768px) {
    .comparison-table {
        font-size: 13px;
    }
    
    .comparison-table thead th {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .comparison-table tbody td {
        padding: 12px 8px;
    }
    
    .comparison-table tbody td:first-child {
        font-size: 12px;
    }
    
    .comparison-table .badge {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .comparison-table i.fa-check-circle,
    .comparison-table i.fa-exclamation-circle {
        font-size: 16px;
    }
    
    /* Stack table on very small screens */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Feature Icon Circles - Color Variants */
.icon-circle.bg-primary { 
    background: var(--gradient-primary);
    color: white;
}
.icon-circle.bg-success { 
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
}
.icon-circle.bg-warning { 
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: white;
}
.icon-circle.bg-info { 
    background: var(--gradient-primary);
    color: white;
}
.icon-circle.bg-danger { 
    background: linear-gradient(135deg, #dc3545 0%, #bd2130 100%);
    color: white;
}
.icon-circle.bg-secondary { 
    background: var(--gradient-primary);
    color: white;
}

/* ======================================
   CHECKOUT PAGE STYLES
   ====================================== */

/* QR Code Card Header */
.card-header.bg-success {
    background: #0e1318 !important;
}

.card-header.bg-success h5 {
    color: white !important;
    font-weight: 400 !important;
}

/* Status Icons in Hero */
.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.status-icon.pending {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

.status-icon.success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.status-icon.completed {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.status-icon.cancelled {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.status-icon i {
    font-size: 40px;
    color: white;
}

/* Countdown Banner */
.countdown-banner {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.countdown-banner i {
    font-size: 20px;
}

/* Auto Check Banner */
.auto-check-banner {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1565c0;
}

/* QR Code Container */
.qr-code-container {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.qr-image {
    max-width: 280px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Bank Info Items */
.bank-info-item {
    padding: 15px 20px;
    margin-bottom: 15px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-300);
    transition: all var(--transition-smooth);
}

.bank-info-item:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
}

.bank-info-item.highlight {
    background: #e7dbff;
    border: 2px solid #d6c2ff;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gray-600);
    font-size: 14px;
    margin-bottom: 8px;
}

.info-label i {
    color: var(--color-accent);
}

.info-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: var(--color-black);
}

.copy-btn {
    transition: all var(--transition-smooth);
}

.copy-btn:hover {
    transform: scale(1.1);
}

/* Success/Completed/Cancelled Icons (Large) */
.success-icon,
.completed-icon,
.cancelled-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
}

.success-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.success-icon i {
    font-size: 60px;
    color: white;
}

.completed-icon {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.completed-icon i {
    font-size: 60px;
    color: white;
}

.cancelled-icon {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.cancelled-icon i {
    font-size: 60px;
    color: white;
}

/* Sticky Summary */
.sticky-summary {
    position: sticky;
    top: 100px;
}

/* Order Summary Items */
.order-summary-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.order-summary-item:last-child {
    border-bottom: none;
}

.order-summary-total {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--radius-md);
    margin-top: 10px;
}

.email-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.customer-info {
    padding: 15px;
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
}

/* Instructions List */
.instructions-list {
    padding: 0;
}

.instruction-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.step-number.active {
    background: #7731d8;
    color: white;
    box-shadow: 0 0 15px rgba(119, 49, 216, 0.4);
    animation: pulse 2s infinite;
}

.step-number.completed {
    background: #28a745;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(119, 49, 216, 0.4);
    }
    50% {
        box-shadow: 0 0 25px rgba(119, 49, 216, 0.6);
    }
}

.delivery-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    white-space: pre-line;
    line-height: 1.8;
}

/* Progress Steps Section - NEW LAYOUT */
.progress-steps-container {
    max-width: 100%;
}

.progress-step-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.progress-step-card.active {
    border-color: #7731d8;
    background: linear-gradient(135deg, #f8f5ff 0%, #fff 100%);
    box-shadow: 0 4px 15px rgba(119, 49, 216, 0.2);
}

.progress-step-card.completed {
    border-color: #28a745;
    background: linear-gradient(135deg, #f1f9f3 0%, #fff 100%);
}

.step-number-lg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.step-number-lg.active {
    background: #7731d8;
    color: white;
    box-shadow: 0 0 20px rgba(119, 49, 216, 0.5);
    animation: pulse-lg 2s infinite;
}

.step-number-lg.completed {
    background: #28a745;
    color: white;
}

@keyframes pulse-lg {
    0%, 100% {
        box-shadow: 0 0 20px rgba(119, 49, 216, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(119, 49, 216, 0.7);
        transform: scale(1.05);
    }
}

.step-title {
    font-weight: 700;
    font-size: 15px;
    color: #0e1318;
    margin-bottom: 5px;
}

.step-desc {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

.progress-step-card.active .step-title {
    color: #7731d8;
}

.progress-step-card.completed .step-title {
    color: #28a745;
}

/* Responsive Progress Steps */
@media (max-width: 767px) {
    .progress-step-card {
        padding: 15px 10px;
    }
    
    .step-number-lg {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .step-title {
        font-size: 13px;
    }
    
    .step-desc {
        font-size: 11px;
    }
}

.step-content strong {
    display: block;
    color: var(--color-black);
    margin-bottom: 5px;
}

/* Responsive for Checkout */
@media (max-width: 991px) {
    .sticky-summary {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .status-icon {
        width: 60px;
        height: 60px;
    }
    
    .status-icon i {
        font-size: 30px;
    }
    
    .qr-image {
        max-width: 200px;
    }
    
    .success-icon,
    .completed-icon,
    .cancelled-icon {
        width: 90px;
        height: 90px;
    }
    
    .success-icon i,
    .completed-icon i,
    .cancelled-icon i {
        font-size: 45px;
    }
}

/* ======================================
   FLOATING CHAT BUTTON
   ====================================== */

/* ======================================
   WARRANTY POLICY PAGE STYLES
   ====================================== */

/* Hero Section Small */
.hero-section-sm {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
}

.hero-section-sm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-section-sm .container {
    position: relative;
    z-index: 2;
}

/* Warranty Icon */
.warranty-icon {
    font-size: 24px;
    margin-right: 15px;
    min-width: 30px;
}

.warranty-item {
    transition: transform 0.3s ease;
}

.warranty-item:hover {
    transform: translateX(5px);
}

/* Refund Tiers */
.refund-tier {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.refund-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.refund-header {
    border-radius: 8px 8px 0 0;
}

.refund-body {
    border-radius: 0 0 8px 8px;
}

.refund-badge {
    padding: 20px;
}

.formula-box {
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
}

/* Process Steps */
.process-step {
    padding: 20px;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* background: var(--color-canva-button); */
    /* color: var(--color-canva-button); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    /* box-shadow: 0 5px 15px rgba(0, 160, 168, 0.3); */
}

/* Policy Section */
.policy-section {
    margin-bottom: 3rem;
}

/* Trust Badges */
.trust-badge {
    background: white;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.trust-badge .badge-icon {
    transition: transform 0.3s ease;
}

.trust-badge:hover .badge-icon {
    transform: scale(1.1);
}

/* ======================================
   FLOATING CHAT BUTTON
   ====================================== */

.floating-chat-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

/* Chat Button */
.floating-chat-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 160, 168, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    position: relative;
    animation: pulse 2s infinite;
}

.floating-chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(125, 42, 232, 0.6);
}

.floating-chat-btn.active {
    background: linear-gradient(135deg, #dc3545 0%, #bd2130 100%);
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
}

.floating-chat-btn i {
    transition: transform 0.3s ease;
}

.floating-chat-btn.active i {
    transform: rotate(360deg);
}

/* Online Badge */
.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #28a745;
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
    animation: blink 2s infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(0, 123, 255, 0.7), 0 0 0 10px rgba(0, 123, 255, 0.1);
    }
}

/* Blink Animation */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Chat Popup */
.chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.chat-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Popup Header */
.chat-popup-header {
    background: #7731d8;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-popup-header h6 {
    margin: 0;
    font-size: 16px;
    color: white !important;
}

.chat-popup-header small {
    font-size: 12px;
    opacity: 0.9;
    color: white !important;
}

.chat-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Popup Body */
.chat-popup-body {
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
}

/* Contact List */
.chat-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.chat-contact-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.chat-contact-item.facebook:hover {
    border-left-color: #1877f2;
}

.chat-contact-item.zalo:hover {
    border-left-color: #0068ff;
}

.chat-contact-item.phone:hover {
    border-left-color: #28a745;
}

.chat-contact-item.email:hover {
    border-left-color: #dc3545;
}

.chat-contact-item.support:hover {
    border-left-color: #ffc107;
}

/* Contact Icon */
.chat-contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: white;
}

.chat-contact-item.facebook .chat-contact-icon {
    background: linear-gradient(135deg, #1877f2 0%, #0e5fc7 100%);
}

.chat-contact-item.zalo .chat-contact-icon {
    background: linear-gradient(135deg, #0068ff 0%, #0052cc 100%);
}

.chat-contact-item.phone .chat-contact-icon {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

.chat-contact-item.email .chat-contact-icon {
    background: linear-gradient(135deg, #dc3545 0%, #bd2130 100%);
}

.chat-contact-item.support .chat-contact-icon {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
}

/* Contact Info */
.chat-contact-info {
    flex: 1;
}

.chat-contact-info strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.chat-contact-info small {
    display: block;
    color: #6c757d;
    font-size: 12px;
}

.chat-contact-item > i.fa-chevron-right {
    color: #adb5bd;
    font-size: 14px;
}

/* Popup Footer */
.chat-popup-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.chat-popup-footer small {
    font-size: 11px;
    color: #6c757d;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .floating-chat-container {
        bottom: 20px;
        right: 20px;
    }

    .floating-chat-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .chat-popup {
        width: 300px;
        bottom: 75px;
    }

    .chat-contact-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .chat-contact-info strong {
        font-size: 13px;
    }

    .chat-contact-info small {
        font-size: 11px;
    }
}

/* Scrollbar for Chat Popup */
.chat-popup-body::-webkit-scrollbar {
    width: 6px;
}

.chat-popup-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.chat-popup-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.chat-popup-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ======================================
   AUTH PAGES (LOGIN & REGISTER)
   ====================================== */

/* Simple Hero for Auth Pages */
.hero-section-simple {
    background: var(--gradient-primary);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 160, 168, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(125, 42, 232, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* Auth Icon */
.auth-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Guest Checkout Icon */
.guest-checkout-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto;
}

/* Divider with Text */
.divider-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
}

.divider-with-text::before,
.divider-with-text::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.divider-with-text span {
    padding: 0 15px;
    color: #6c757d;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 1px;
}

/* Benefit Items */
.benefit-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.benefit-item i {
    font-size: 18px;
    flex-shrink: 0;
}

/* Form Enhancements */
.form-control-lg {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 8px;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

.input-group-lg .btn {
    padding: 12px 16px;
}

.form-label {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Auth Page Cards */
.card.shadow-lg {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Password Toggle Button */
.input-group .btn-outline-secondary {
    border-color: #ced4da;
}

.input-group .btn-outline-secondary:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
}

/* Responsive Auth Pages */
@media (max-width: 768px) {
    .hero-section-simple {
        padding: 60px 0 40px;
    }

    .hero-section-simple h1 {
        font-size: 28px;
    }

    .hero-section-simple .lead {
        font-size: 16px;
    }

    .auth-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .card-body.p-md-5 {
        padding: 2rem !important;
    }

    .benefit-item {
        font-size: 13px;
    }
}

/* ======================================
   POPULAR RIBBON & SOCIAL PROOF
   ====================================== */

/* Popular Card with Green Border */
.popular-card {
    border: 3px solid var(--color-canva-cyan) !important;
    box-shadow: 0 10px 40px rgba(0, 160, 168, 0.3) !important;
}

.popular-card:hover {
    box-shadow: 0 15px 50px rgba(0, 160, 168, 0.4) !important;
    transform: translateY(-5px);
}

/* Popular Ribbon */
.popular-ribbon {
    position: absolute;
    top: 15px;
    right: -5px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 15px 8px 20px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 15px rgba(125, 42, 232, 0.5);
    z-index: 10;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10px 50%);
    animation: ribbon-glow 2s infinite;
}

.popular-ribbon::before {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid var(--color-canva-purple);
    border-bottom: 5px solid transparent;
}

@keyframes ribbon-glow {
    0%, 100% {
        box-shadow: 0 3px 15px rgba(125, 42, 232, 0.5);
    }
    50% {
        box-shadow: 0 3px 25px rgba(125, 42, 232, 0.8);
    }
}

.popular-ribbon .fa-fire {
    animation: fire-flicker 1s infinite;
}

@keyframes fire-flicker {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Social Proof */
.social-proof {
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
}

.social-proof small {
    font-size: 13px;
    display: inline-block;
    animation: fade-in-up 1s ease;
}

.social-proof strong {
    color: #dc3545;
    font-weight: 700;
}

.social-proof .fa-fire {
    animation: flicker 1.5s infinite;
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .popular-ribbon {
        font-size: 9px;
        padding: 6px 12px 6px 15px;
        top: 12px;
        right: -3px;
    }

    .social-proof small {
        font-size: 12px;
    }
}

/* ============================================
   Recent Sales Popup (Social Proof)
   ============================================ */
.recent-sales-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 16px;
    min-width: 320px;
    max-width: 350px;
    z-index: 1040;
    opacity: 0;
    transform: translateX(-400px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid #7731d8;
}

.recent-sales-popup.show {
    opacity: 1;
    transform: translateX(0);
}

.recent-sales-popup.hide {
    opacity: 0;
    transform: translateX(-400px);
}

.recent-sales-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    color: #6c757d;
}

.recent-sales-close:hover {
    background: #e9ecef;
    color: #495057;
    transform: rotate(90deg);
}

.recent-sales-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.recent-sales-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00a0a8, #7d2ae8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.recent-sales-info {
    flex: 1;
    padding-right: 20px;
}

.recent-sales-name {
    font-weight: 600;
    color: #0e1318;
    font-size: 15px;
    margin-bottom: 4px;
}

.recent-sales-product {
    color: #7731d8;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
}

.recent-sales-time {
    color: #6c757d;
    font-size: 12px;
}

.recent-sales-location {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
    color: #6c757d;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.recent-sales-location i {
    color: #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
    .recent-sales-popup {
        left: 15px;
        bottom: 15px;
        min-width: 280px;
        max-width: calc(100% - 30px);
    }
}
