:root {
    --primary: #0a1628;
    --primary-light: #1b3a5c;
    --accent: #00b4d8;
    --accent-hover: #0096b7;
    --accent-glow: rgba(0, 180, 216, 0.3);
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #d63031;
    --light: #f0f7ff;
    --dark: #0d1b2a;
    --gray-100: #f0f4f8;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(10,22,40,0.06);
    --shadow: 0 4px 12px rgba(10,22,40,0.1);
    --shadow-lg: 0 8px 30px rgba(10,22,40,0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   Typography
================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    color: var(--gray-600);
}

/* ================================
   Buttons
================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* ================================
   Header
================================ */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.demo-btn {
    background: var(--primary-light);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
}

.logo span {
    color: var(--accent);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-icon {
    font-size: 1.25rem;
    color: var(--gray-600);
    position: relative;
}

.header-icon:hover {
    color: var(--primary);
}

.header-icon .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 999;
    padding: 80px 20px 20px;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-size: 1.25rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
}

/* ================================
   Hero Section
================================ */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 80px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-height: 500px;
    object-fit: contain;
}

.hero-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* ================================
   Section Styles
================================ */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

.section-gray {
    background: var(--gray-100);
}

/* ================================
   Categories
================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    height: 200px;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.category-card h3 {
    padding: 20px;
    font-size: 1.125rem;
}

/* ================================
   Products
================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    z-index: 2;
}

.product-badge.sale {
    background: var(--danger);
}

.product-badge.new {
    background: var(--success);
}

.product-image {
    height: 260px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255,255,255,0.95);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    bottom: 0;
}

.product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-action-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.product-info {
    padding: 16px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.product-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}

.product-title a:hover {
    color: var(--accent);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.stars {
    color: #ffc107;
    font-size: 0.85rem;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.original-price {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

/* ================================
   Promo Banners
================================ */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.promo-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.promo-banner.accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
}

.promo-content h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.promo-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.promo-icon {
    font-size: 6rem;
    opacity: 0.3;
}

/* ================================
   Features
================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-card h4 {
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
}

/* ================================
   Newsletter
================================ */
.newsletter {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0;
}

.newsletter .container {
    text-align: center;
}

.newsletter h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.newsletter p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: 2px solid var(--accent);
}

/* ================================
   Footer
================================ */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col p {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}

@media (max-width: 480px) {
  .footer-col p {
    justify-content: center;
  }
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-col h3 span {
    color: var(--accent);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    padding: 4px 0;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
}

/* ================================
   Page Header (Breadcrumb)
================================ */
.page-header {
    background: var(--gray-100);
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 8px;
}

.breadcrumb {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--gray-600);
}

.breadcrumb a:hover {
    color: var(--accent);
}

/* ================================
   Shop Page
================================ */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 60px 0;
}

.shop-sidebar {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-200);
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-section h4 {
    margin-bottom: 16px;
    font-size: 1rem;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.filter-options input[type="checkbox"],
.filter-options input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.price-inputs {
    display: flex;
    gap: 12px;
    align-items: center;
}

.price-inputs input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.results-count {
    color: var(--gray-600);
}

.sort-select {
    padding: 10px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    min-width: 200px;
}

.filter-toggle {
    display: none;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
}

.shop-content {
    min-height: 600px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-300);
    color: var(--gray-600);
    font-weight: 500;
}

.pagination a:hover,
.pagination .active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ================================
   Product Detail Page
================================ */
.product-detail {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-gallery {
    display: flex;
    gap: 16px;
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.thumb {
    width: 80px;
    height: 80px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    background: var(--gray-100);
    transition: var(--transition);
}

.thumb:hover,
.thumb.active {
    border-color: var(--accent);
}

.gallery-main {
    flex: 1;
    height: 500px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}

.product-detail-info h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.product-detail-price .current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.product-detail-price .original {
    font-size: 1.25rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

.product-detail-price .discount {
    background: var(--danger);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-description {
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.8;
}

.product-options {
    margin-bottom: 28px;
}

.option-group {
    margin-bottom: 20px;
}

.option-label {
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-option {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

.color-option:hover,
.color-option.active {
    border-color: var(--primary);
}

.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-option {
    padding: 10px 20px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.size-option:hover,
.size-option.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    width: fit-content;
}

.qty-btn {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    background: var(--gray-100);
    color: var(--primary);
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--gray-200);
}

.qty-input {
    width: 60px;
    height: 44px;
    text-align: center;
    border: none;
    font-weight: 600;
    font-size: 1rem;
}

.product-actions-detail {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.product-tabs {
    margin-top: 60px;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 24px;
}

.tab-btn {
    padding: 16px 28px;
    font-weight: 500;
    color: var(--gray-600);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--primary);
    border-color: var(--accent);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content p {
    line-height: 1.8;
}

.specs-table {
    width: 100%;
}

.specs-table tr {
    border-bottom: 1px solid var(--gray-200);
}

.specs-table td {
    padding: 12px 0;
}

.specs-table td:first-child {
    font-weight: 500;
    width: 200px;
}

/* ================================
   Cart Page
================================ */
.cart-section {
    padding: 60px 0;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.cart-items {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr auto;
    padding: 16px 24px;
    background: var(--gray-100);
    font-weight: 600;
    gap: 16px;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr auto;
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
    align-items: center;
    gap: 16px;
}

.cart-product {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cart-product-image {
    width: 100px;
    height: 100px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.cart-product-info h4 {
    margin-bottom: 4px;
}

.cart-product-info p {
    font-size: 0.9rem;
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty button {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: var(--radius);
    font-size: 1rem;
}

.cart-qty span {
    width: 40px;
    text-align: center;
    font-weight: 600;
}

.cart-total {
    font-weight: 600;
    color: var(--primary);
}

.cart-remove {
    color: var(--gray-500);
    font-size: 1.25rem;
}

.cart-remove:hover {
    color: var(--danger);
}

.cart-summary {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    padding-top: 16px;
    border-top: 2px solid var(--gray-200);
    margin-top: 16px;
}

.coupon-form {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}

.coupon-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

/* ================================
   Checkout Page
================================ */
.checkout-section {
    padding: 60px 0;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.checkout-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.form-section {
    margin-bottom: 32px;
}

.form-section h3 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shipping-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.shipping-option:hover,
.shipping-option.selected {
    border-color: var(--accent);
}

.shipping-option input {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
}

.shipping-info {
    flex: 1;
}

.shipping-info strong {
    display: block;
}

.shipping-price {
    font-weight: 600;
    color: var(--primary);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.payment-method {
    padding: 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.payment-method:hover,
.payment-method.selected {
    border-color: var(--accent);
}

.payment-method-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.order-summary {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.order-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.order-item-image {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.order-item-info {
    flex: 1;
}

.order-item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.order-item-info p {
    font-size: 0.85rem;
}

.order-item-price {
    font-weight: 600;
}

/* ================================
   Account Page
================================ */
.account-section {
    padding: 60px 0;
}

.account-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
}

.account-sidebar {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    height: fit-content;
}

.account-user {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: var(--gray-200);
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.account-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius);
    color: var(--gray-600);
    transition: var(--transition);
}

.account-nav a:hover,
.account-nav a.active {
    background: var(--gray-100);
    color: var(--primary);
}

.account-nav a span {
    font-size: 1.25rem;
}

.account-content {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 32px;
}

.account-content h2 {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--gray-100);
    flex-wrap: wrap;
    gap: 12px;
}

.order-status {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.order-status.delivered {
    background: rgba(0, 184, 148, 0.1);
    color: var(--success);
}

.order-status.processing {
    background: rgba(253, 203, 110, 0.2);
    color: #e17055;
}

.order-status.shipped {
    background: rgba(45, 52, 54, 0.1);
    color: var(--primary);
}

.order-card-body {
    padding: 20px;
}

.order-products {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.order-product {
    display: flex;
    gap: 12px;
    align-items: center;
}

.order-product-image {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* ================================
   Wishlist Page
================================ */
.wishlist-section {
    padding: 60px 0;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wishlist-item {
    position: relative;
}

.wishlist-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--danger);
    box-shadow: var(--shadow);
    z-index: 5;
    cursor: pointer;
    transition: var(--transition);
}

.wishlist-remove:hover {
    background: var(--danger);
    color: var(--white);
}

/* ================================
   Login / Register Pages
================================ */
.auth-section {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: var(--gray-100);
}

.auth-container {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h1 {
    margin-bottom: 8px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.remember-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.remember-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.forgot-link {
    color: var(--accent);
    font-size: 0.9rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 28px 0;
    color: var(--gray-500);
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-300);
}

.social-login {
    display: flex;
    gap: 12px;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--gray-100);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    color: var(--gray-600);
}

.auth-footer a {
    color: var(--accent);
    font-weight: 500;
}

/* ================================
   About Page
================================ */
.about-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.about-hero p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.about-story {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    height: 400px;
    background: var(--gray-200);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 32px;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.value-card h4 {
    margin-bottom: 8px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 150px;
    height: 150px;
    background: var(--gray-200);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.team-card h4 {
    margin-bottom: 4px;
}

.team-card p {
    font-size: 0.9rem;
}

/* ================================
   Contact Page
================================ */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.contact-card-icon {
    font-size: 2rem;
}

.contact-card h4 {
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-links h4 {
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    margin-bottom: 24px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.map-section {
    margin-top: 60px;
}

.map-placeholder {
    height: 400px;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gray-500);
}

.faq-cta {
    background: var(--gray-100);
    padding: 60px 0;
    text-align: center;
}

.faq-cta h2 {
    margin-bottom: 12px;
}

.faq-cta p {
    margin-bottom: 24px;
}

/* ================================
   FAQ Page
================================ */
.faq-section {
    padding: 20px 0;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 10px 24px;
    border: 2px solid var(--gray-300);
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 20px;
    line-height: 1.8;
}

.faq-contact {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
}

.faq-contact h3 {
    margin-bottom: 12px;
}

.faq-contact p {
    margin-bottom: 20px;
}

/* ================================
   Responsive Design
================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .categories-grid,
    .products-grid,
    .wishlist-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100%;
        z-index: 1001;
        border-radius: 0;
        transition: var(--transition);
        overflow-y: auto;
    }

    .shop-sidebar.active {
        left: 0;
    }

    .filter-toggle {
        display: block;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary,
    .order-summary {
        position: static;
    }

    .account-layout {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: static;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-actions {
        gap: 12px;
    }

    .categories-grid,
    .products-grid,
    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .product-gallery {
        flex-direction: column-reverse;
    }

    .gallery-thumbs {
        flex-direction: row;
        overflow-x: auto;
    }

    .gallery-main {
        height: 350px;
    }

    .cart-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cart-product {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .auth-container {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 60px 0;
    }

    .section {
        padding: 48px 0;
    }

    .categories-grid,
    .products-grid,
    .wishlist-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 220px;
    }

    .btn {
        padding: 10px 20px;
    }

    .promo-banner {
        padding: 32px 24px;
        flex-direction: column;
        text-align: center;
    }

    .promo-icon {
        display: none;
    }

    .product-actions-detail {
        flex-direction: column;
    }

    .tabs-header {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1;
        text-align: center;
        padding: 12px;
    }
}

/* ================================
   Utility Classes
================================ */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-4 { margin-top: 32px; }

/* Overlay for mobile sidebar */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.sidebar-overlay.active {
    display: block;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ================================
   WEBSITE BUILDER - Landing Page Styles
================================ */

/* Google Font Override */
body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}
h1, h2, h3, .logo, .pricing-amount .price, .stats-number, .offer-discount {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes floatReverse {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-15px) translateX(10px); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(0, 180, 216, 0); }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes barGrow {
    from { height: 0; }
}
@keyframes countUp {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}
@keyframes slideInRight {
    from { transform: translateX(80px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
/* Scroll animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-on-scroll.delay-100 { transition-delay: 0.1s; }
.animate-on-scroll.delay-200 { transition-delay: 0.2s; }
.animate-on-scroll.delay-300 { transition-delay: 0.3s; }

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--accent), #0077b6, #48cae4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.section-badge.accent {
    background: rgba(0, 180, 216, 0.1);
    color: var(--accent);
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
    animation: slideDown 0.6s ease;
}

/* ================================
   Builder Hero
================================ */
.builder-hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 50%, #0a2540 100%);
    color: var(--white);
}
.builder-hero .container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.builder-hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 30px;
    max-width: 520px;
    animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s 0.4s ease both;
}
.pulse-btn {
    animation: pulse-glow 2s infinite;
    position: relative;
}
.pulse-btn .btn-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.pulse-btn:hover .btn-arrow {
    transform: translateX(4px);
}
.play-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-right: 8px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s 0.6s ease both;
}
.stat-item {
    text-align: left;
}
.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--white);
}
.stat-item span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* Dashboard Preview */
.builder-hero-visual {
    animation: fadeInRight 1s 0.3s ease both;
}
.dashboard-preview {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}
.preview-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}
.preview-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.preview-url {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-left: 8px;
    background: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    flex: 1;
}
.preview-body {
    display: flex;
    min-height: 300px;
}
.preview-sidebar {
    width: 160px;
    background: var(--gray-100);
    padding: 16px 12px;
    border-right: 1px solid var(--gray-200);
}
.preview-menu-item {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 4px;
    transition: var(--transition);
}
.preview-menu-item.active {
    background: var(--accent);
    color: var(--white);
}
.preview-main {
    flex: 1;
    padding: 20px;
}
.preview-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.preview-stat {
    padding: 14px;
    border-radius: 8px;
    text-align: center;
}
.preview-stat.green-bg { background: rgba(0, 180, 216, 0.1); }
.preview-stat.blue-bg { background: rgba(0, 119, 182, 0.1); }
.preview-stat.orange-bg { background: rgba(72, 202, 228, 0.1); }
.preview-stat-num {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}
.preview-stat-label {
    font-size: 0.7rem;
    color: var(--gray-500);
}
.preview-chart {
    background: var(--gray-100);
    border-radius: 8px;
    padding: 20px;
    height: 120px;
    display: flex;
    align-items: flex-end;
}
.chart-bars {
    display: flex;
    gap: 8px;
    width: 100%;
    align-items: flex-end;
    height: 100%;
}
.chart-bars .bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent), #48cae4);
    border-radius: 4px 4px 0 0;
    animation: barGrow 1s ease both;
    min-height: 10px;
}

/* Hero Background Shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background: var(--white);
}
.shape-1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: -100px; left: -50px; }
.shape-3 { width: 200px; height: 200px; top: 50%; left: 30%; }

/* ================================
   Trusted Section
================================ */
.trusted-section {
    padding: 40px 0;
    background: var(--gray-100);
    text-align: center;
}
.trusted-label {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}
.trust-logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-400);
    transition: var(--transition);
}
.trust-logo:hover { color: var(--primary); }

/* ================================
   Features Showcase
================================ */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-card-lg {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card-lg::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #0077b6, #48cae4);
    opacity: 0;
    transition: var(--transition);
}
.feature-card-lg:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-card-lg:hover::before { opacity: 1; }
.feature-icon-lg {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.feature-card-lg h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.feature-card-lg p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}
.feature-list {
    list-style: none;
}
.feature-list li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
}

/* ================================
   Offers Section
================================ */
.offers-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
}
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.offer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}
.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.offer-card.featured {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 180, 216, 0.15);
}
.offer-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.offer-card.featured .offer-badge {
    background: rgba(0, 180, 216, 0.1);
    color: var(--accent);
}
.offer-discount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
    line-height: 1;
}
.offer-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.offer-card p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}
.offer-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}
.timer-box {
    background: var(--gray-100);
    border-radius: 8px;
    padding: 10px 16px;
    text-align: center;
}
.timer-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}
.timer-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
}
.offer-perks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.offer-perks span {
    font-size: 0.9rem;
    color: var(--success);
}
.offer-features-mini {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.offer-features-mini div {
    font-size: 0.9rem;
    color: var(--gray-700);
}

/* ================================
   Pricing Section
================================ */
.section-dark {
    background: linear-gradient(135deg, #0d1b2a 0%, #0a2540 100%);
}
.section-header.light h2,
.section-header.light p {
    color: var(--white);
}
.section-header.light p {
    color: rgba(255,255,255,0.7);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}
.toggle-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: var(--transition);
}
.toggle-label.active {
    color: var(--white);
    font-weight: 600;
}
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--gray-600);
    border-radius: 26px;
    cursor: pointer;
    transition: var(--transition);
}
.toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}
.toggle-switch input:checked + .toggle-slider {
    background: var(--accent);
}
.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}
.save-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--success);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 4px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-8px);
}
.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 180, 216, 0.2);
    transform: scale(1.05);
}
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}
.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}
.pricing-header p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.pricing-amount {
    margin-bottom: 30px;
}
.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    line-height: 1.5;
}
.pricing-amount .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.pricing-amount .period {
    font-size: 0.95rem;
    color: var(--gray-500);
}
.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}
.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-100);
}
.pricing-features li.included { color: var(--dark); }
.pricing-features li.excluded { color: var(--gray-400); }

/* ================================
   Testimonials
================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.testimonial-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, #f0f7ff 0%, var(--white) 100%);
}
.testimonial-stars {
    color: #f9a825;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial-text {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
}
.author-info span {
    font-size: 0.8rem;
    color: var(--gray-500);
}
.testimonial-revenue {
    background: var(--gray-100);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.revenue-label {
    font-size: 0.8rem;
    color: var(--gray-500);
}
.revenue-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--success);
}

/* ================================
   Blog Section
================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}
.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.blog-content {
    padding: 24px;
}
.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--gray-500);
}
.blog-content h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-content h3 a:hover {
    color: var(--accent);
}
.blog-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.blog-link {
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9rem;
}
.blog-link:hover {
    text-decoration: underline;
}

/* ================================
   CTA Section
================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0077b6, var(--accent), #48cae4);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    text-align: center;
    color: var(--white);
}
.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 16px;
}
.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 30px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}
.btn-white {
    background: var(--white);
    color: var(--dark);
    padding: 14px 36px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}
.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}
.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    padding: 12px 36px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}
.cta-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* ================================
   Auth Split Layout
================================ */
.auth-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding: 0;
}
.auth-left {
    background: linear-gradient(135deg, #0d1b2a 0%, #0a2540 50%, #1b3a5c 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}
.auth-left.register-left {
    background: linear-gradient(135deg, #0a2540 0%, #0d1b2a 50%, #1b3a5c 100%);
}
.auth-left-content {
    max-width: 480px;
}
.auth-left-content h1 {
    font-size: 2.2rem;
    color: var(--white);
    margin: 24px 0 12px;
    line-height: 1.2;
}
.auth-left-content > p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    font-size: 1.05rem;
}
.auth-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.auth-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.auth-feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.auth-feature-item strong {
    display: block;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 2px;
}
.auth-feature-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}
.auth-testimonial {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.auth-testimonial > p {
    color: rgba(255,255,255,0.85);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}
.auth-testimonial-author {
    display: flex;
    gap: 12px;
    align-items: center;
}
.auth-testimonial-author > span {
    font-size: 1.5rem;
}
.auth-testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
}
.auth-testimonial-author span span,
.auth-testimonial-author div span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}
.auth-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: var(--white);
    overflow-y: auto;
}
.auth-right .auth-container {
    max-width: 460px;
    width: 100%;
}

/* Password Strength */
.password-wrapper {
    position: relative;
}
.password-wrapper input {
    padding-right: 50px;
}
.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.5;
    transition: var(--transition);
}
.password-toggle:hover { opacity: 1; }
.password-strength {
    margin-top: 8px;
}
.strength-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 4px;
}
.strength-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease, background 0.3s ease;
    width: 0;
}
.strength-text {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Form Elements */
.required { color: var(--danger); }
.form-error {
    display: block;
    font-size: 0.8rem;
    color: var(--danger);
    margin-top: 4px;
    min-height: 0;
}
.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 12px;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-600);
}
.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}
select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    background: var(--white);
    color: var(--dark);
    transition: var(--transition);
    appearance: auto;
}
select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

/* Footer 5 column grid */
.footer-grid-5 {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}
.footer-brand p {
    color: var(--gray-500);
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.social-icon {
    width: 36px;
    height: 36px;
    background: var(--gray-700);
    color: var(--gray-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}
.social-icon:hover {
    background: var(--accent);
    color: var(--white);
}
.footer-payments {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Btn outline-light for hero */
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
}
.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* ================================
   Announcement Bar
================================ */
.announcement-bar {
    background: linear-gradient(90deg, #0d1b2a, #0a2540, #1b3a5c);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    text-align: center;
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
}
.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.announcement-bar p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}
.announcement-bar a {
    color: var(--accent);
    font-weight: 600;
    margin-left: 8px;
}
.announcement-bar a:hover { text-decoration: underline; }
.code-highlight {
    background: rgba(0, 180, 216, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-weight: 700;
    color: #48cae4;
}
.announcement-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition);
}
.announcement-close:hover { color: var(--white); }

/* Header Scroll */
.header {
    transition: all 0.3s ease;
}
.header-scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
}

/* ================================
   Hero Particles
================================ */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.particle {
    position: absolute;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

/* Hero Trust Row */
.hero-trust-row {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    animation: fadeInUp 0.8s 0.5s ease both;
}

/* Hero Stat Divider */
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}
.star-accent {
    color: #f9a825;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
}
.floating-card.show {
    opacity: 1;
    transform: translateX(0);
}
.floating-card.card-orders {
    bottom: 140px;
    right: -20px;
    animation: floatReverse 5s ease-in-out infinite;
    animation-play-state: paused;
}
.floating-card.card-orders.show { animation-play-state: running; }
.floating-card.card-revenue {
    top: 120px;
    left: -30px;
    animation: float 6s ease-in-out infinite;
    animation-play-state: paused;
}
.floating-card.card-revenue.show { animation-play-state: running; }
.floating-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.floating-card strong {
    display: block;
    font-size: 0.85rem;
    color: var(--dark);
}
.floating-card span {
    font-size: 0.75rem;
    color: var(--gray-500);
}
.preview-stat-change {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    margin-top: 2px;
}
.preview-stat-change.positive { color: var(--success); }

/* ================================
   How It Works — Steps
================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}
.step-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}
.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #0077b6);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0,180,216,0.3);
}
.step-icon-wrapper {
    margin-bottom: 20px;
}
.step-icon {
    font-size: 3rem;
    display: inline-block;
    animation: float 4s ease-in-out infinite;
}
.step-card:nth-child(2) .step-icon { animation-delay: 0.5s; }
.step-card:nth-child(3) .step-icon { animation-delay: 1s; }
.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.step-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}
.step-connector {
    position: absolute;
    top: 50%;
    right: -30px;
    width: 20px;
    height: 2px;
    background: var(--gray-300);
}
.step-connector::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: -8px;
    color: var(--accent);
    font-size: 1rem;
}

/* ================================
   Integrations
================================ */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.integration-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-700);
    transition: var(--transition);
    cursor: default;
}
.integration-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.integration-item span {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

/* ================================
   Offer Ribbon
================================ */
.offer-ribbon {
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

/* Timer Separator */
.timer-sep {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-400);
    display: flex;
    align-items: center;
}

/* ================================
   Stats Section
================================ */
.stats-section {
    background: linear-gradient(135deg, #0d1b2a 0%, #0a2540 100%);
    padding: 80px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.stats-card {
    text-align: center;
    padding: 30px 20px;
}
.stats-number {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1;
}
.stats-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 4px;
}
.stats-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* ================================
   Comparison Table
================================ */
.comparison-toggle {
    text-align: center;
    margin-top: 40px;
}
.comparison-table-wrapper {
    margin-top: 30px;
    overflow-x: auto;
    animation: fadeInUp 0.5s ease;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.comparison-table th,
.comparison-table td {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
}
.comparison-table th {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--dark);
}
.comparison-table td:first-child,
.comparison-table th:first-child {
    text-align: left;
    font-weight: 500;
}
.comparison-table td.highlight,
.comparison-table th.highlight {
    background: rgba(0, 180, 216, 0.05);
}
.comparison-table th.highlight {
    background: rgba(0, 180, 216, 0.15);
    color: var(--accent);
}

/* ================================
   Video Modal
================================ */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.video-modal.active {
    display: flex;
}
.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
}
.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    animation: scaleIn 0.3s ease;
}
.video-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 2;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.video-modal-close:hover { background: rgba(255,255,255,0.2); }
.video-placeholder {
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 16px;
}
.video-placeholder-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0,180,216,0.2);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    cursor: pointer;
    transition: var(--transition);
}
.video-placeholder-icon:hover {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
}
.video-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}
.video-placeholder span {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

/* ================================
   Marquee Track
================================ */
.marquee-track {
    overflow: hidden;
    position: relative;
}

/* ================================
   Inline Registration Section
================================ */
.register-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f4fd 50%, #f0f7ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.register-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.register-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,119,182,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.register-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.register-info {
    position: relative;
    z-index: 1;
}
.register-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 36px;
    line-height: 1.7;
}
.register-perks {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}
.register-perk {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.perk-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: var(--transition);
}
.register-perk:hover .perk-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,180,216,0.15);
}
.register-perk strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 2px;
}
.register-perk p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin: 0;
}
.register-social-proof {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.avatars-stack {
    display: flex;
}
.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 2px solid var(--white);
    margin-left: -10px;
}
.avatar-circle:first-child { margin-left: 0; }
.register-social-proof p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}
.register-social-proof strong {
    color: var(--accent);
}

/* Registration Form Card */
.register-form-wrapper {
    position: relative;
    z-index: 1;
}
.register-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}
.register-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #0077b6, #48cae4);
}
.register-form-header {
    text-align: center;
    margin-bottom: 28px;
}
.register-form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}
.register-form-header p {
    color: var(--gray-500);
    font-size: 0.9rem;
}
.register-form .form-group {
    margin-bottom: 16px;
}
.register-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.register-submit-btn {
    font-size: 1.05rem;
    padding: 16px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.register-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,180,216,0.3);
}
.register-submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.register-submit-btn:hover::after {
    left: 100%;
}

/* Registration success state */
.register-success {
    text-align: center;
    padding: 40px 20px;
    animation: scaleIn 0.4s ease;
}
.register-success-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: float 3s ease-in-out infinite;
}
.register-success h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 8px;
}
.register-success p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ================================
   Responsive - Builder Pages
================================ */
@media (max-width: 1024px) {
    .builder-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-subtitle { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-trust-row { justify-content: center; }
    .features-showcase { grid-template-columns: repeat(2, 1fr); }
    .offers-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.popular { transform: scale(1); }
    .pricing-card.popular:hover { transform: translateY(-8px); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid-5 { grid-template-columns: 2fr 1fr 1fr; }
    .auth-split { grid-template-columns: 1fr; }
    .auth-left { display: none; }
    .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .step-connector { display: none; }
    .integrations-grid { grid-template-columns: repeat(4, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .floating-card { display: none; }
    .register-split { grid-template-columns: 1fr; gap: 40px; }
    .register-section { padding: 60px 0; }
}

@media (max-width: 768px) {
    .announcement-bar { font-size: 0.75rem; padding: 8px 0; }
    .announcement-bar .container { padding-right: 40px; }
    .builder-hero { padding: 100px 0 60px; }
    .builder-hero-content h1 { font-size: 2rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .hero-trust-row { flex-wrap: wrap; justify-content: center; gap: 12px; font-size: 0.8rem; }
    .stat-divider { display: none; }
    .preview-sidebar { display: none; }
    .preview-stat-row { grid-template-columns: 1fr; }
    .features-showcase { grid-template-columns: 1fr; }
    .offers-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-trust { flex-direction: column; align-items: center; gap: 8px; }
    .footer-grid-5 { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-payments { justify-content: center; }
    .auth-right { padding: 40px 20px; }
    .integrations-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .video-placeholder { height: 280px; }
    .register-form-card { padding: 28px 20px; }
    .register-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .builder-hero-content h1 { font-size: 1.7rem; }
    .dashboard-preview { border-radius: 8px; }
    .offer-timer { gap: 6px; }
    .timer-box { padding: 8px 10px; }
    .footer-grid-5 { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; gap: 0; }
    .integrations-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stats-grid { grid-template-columns: 1fr; }
    .comparison-table th, .comparison-table td { padding: 10px 8px; font-size: 0.8rem; }
    .hero-trust-row { flex-direction: column; gap: 6px; }
}

/* ================================
   CSS-ONLY INTERACTIVITY (No JS)
================================ */

/* Hidden toggle inputs */
.css-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* ---- Announcement Bar Close ---- */
#announcementToggle:not(:checked) ~ .announcement-bar {
    transform: translateY(-100%);
    opacity: 0;
    max-height: 0;
    padding: 0;
    overflow: hidden;
}
#announcementToggle:checked ~ .announcement-bar {
    max-height: 60px;
    transition: all 0.3s ease;
}

/* ---- Mobile Menu Toggle ---- */
#mobileMenuToggle:checked ~ .mobile-nav {
    display: flex;
}

/* ---- Video Modal Toggle ---- */
#videoModalToggle:checked ~ .video-modal-css {
    display: flex;
}
.video-modal-css {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.video-modal-overlay-css {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
    cursor: pointer;
}
.video-modal-close-css {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 2;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.video-modal-close-css:hover { background: rgba(255,255,255,0.2); }

/* ---- Pricing Toggle (Monthly/Annual) ---- */
.monthly-price { display: inline; }
.annual-price { display: none; }
#pricingToggle:checked ~ .section-dark .annual-price,
#pricingToggle:checked ~ * .section-dark .annual-price {
    display: inline;
}
#pricingToggle:checked ~ .section-dark .monthly-price,
#pricingToggle:checked ~ * .section-dark .monthly-price {
    display: none;
}

/* Since sibling selectors from body-level checkbox can't reach deeply nested elements,
   use the :has() selector for modern browsers */
body:has(#pricingToggle:checked) .annual-price {
    display: inline;
}
body:has(#pricingToggle:checked) .monthly-price {
    display: none;
}
body:has(#pricingToggle:checked) .toggle-label[data-period="annually"] {
    color: var(--white);
    font-weight: 600;
}
body:has(#pricingToggle:checked) .toggle-label[data-period="monthly"] {
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}
body:has(#pricingToggle:checked) .toggle-slider {
    background: var(--accent);
}
body:has(#pricingToggle:checked) .toggle-slider::before {
    transform: translateX(24px);
}

/* Default state: monthly active */
.toggle-label[data-period="monthly"] {
    color: var(--white);
    font-weight: 600;
}

/* ---- Comparison Table Toggle ---- */
.comparison-table-wrapper {
    display: none;
    overflow: hidden;
    animation: fadeInUp 0.5s ease;
}
body:has(#comparisonToggle:checked) .comparison-table-wrapper {
    display: block;
}

/* ---- FAQ with details/summary (CSS only) ---- */
.faq-item-css {
    border-bottom: 1px solid var(--gray-200);
}
.faq-question-css {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    list-style: none;
}
.faq-question-css::-webkit-details-marker {
    display: none;
}
.faq-question-css::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item-css[open] .faq-question-css::after {
    transform: rotate(45deg);
}
.faq-answer-css {
    padding-bottom: 20px;
    line-height: 1.8;
    color: var(--gray-600);
    animation: fadeInUp 0.3s ease;
}

/* ---- CSS-only Animations (replace JS scroll animations) ---- */
.anim-fade-up {
    animation: fadeInUp 0.8s ease both;
}
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }

/* ---- Typing Effect (CSS only) ---- */
.typing-css {
    display: inline-block;
    border-right: 3px solid var(--accent);
    animation: typing-blink 0.8s step-end infinite;
}
@keyframes typing-blink {
    0%, 100% { border-color: var(--accent); }
    50% { border-color: transparent; }
}

/* ---- Scroll to Top (CSS only, always visible) ---- */
.scroll-top-css {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}
.scroll-top-css:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* ---- Floating cards show via CSS animation ---- */
.floating-card {
    animation: slideInRight 0.6s ease both;
}
.card-orders { animation-delay: 2s; }
.card-revenue { animation-delay: 3.5s; }

/* ---- Mobile menu via CSS ---- */
body:has(#mobileMenuToggle:checked) .mobile-nav {
    display: flex;
}

/* ================================
   IMAGE CAROUSEL (JS-powered)
================================ */
.carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10,22,40,0.18);
}
.carousel-viewport {
    position: relative;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.carousel-slide {
    min-width: 100%;
    position: relative;
}
.carousel-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* Caption Overlay */
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 36px 32px;
    background: linear-gradient(0deg, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.4) 60%, transparent 100%);
    color: var(--white);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s ease 0.2s;
}
.carousel-slide.active .carousel-caption {
    transform: translateY(0);
    opacity: 1;
}
.caption-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.carousel-caption h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.carousel-caption p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}
.carousel:hover .carousel-arrow {
    opacity: 1;
}
.carousel-arrow:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 18px 0;
    background: var(--white);
}
.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.carousel-dot:hover {
    border-color: var(--accent);
}
.carousel-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}

/* Progress Bar */
.carousel-progress {
    height: 3px;
    background: var(--gray-200);
}
.carousel-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), #0096b7);
    transition: width 0.1s linear;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-img { height: 300px; }
    .carousel-caption { padding: 24px 20px 20px; }
    .carousel-caption h3 { font-size: 1.2rem; }
    .carousel-caption p { font-size: 0.85rem; }
    .carousel-arrow { width: 38px; height: 38px; font-size: 1rem; opacity: 1; }
    .carousel-prev { left: 8px; }
    .carousel-next { right: 8px; }
}
@media (max-width: 480px) {
    .carousel-img { height: 220px; }
    .carousel-caption { padding: 16px 14px 14px; }
    .carousel-caption h3 { font-size: 1rem; }
    .caption-badge { font-size: 0.65rem; padding: 3px 10px; }
    .carousel-dots { gap: 6px; padding: 12px 0; }
    .carousel-dot { width: 10px; height: 10px; }
}

.subdomain-preview {
  margin-top: 5px;
  font-size: 0.95rem;
  color: #555;
}
.subdomain-preview span {
  font-weight: bold;
  color: #2575fc;
}