/* 
Professional Styles for CartFlows Design 
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #3b82f6;
    --secondary-color: #f59e0b;
    --bg-slate-900: #0f172a;
    --bg-slate-800: #1e293b;
    --text-gray-400: #94a3b8;
    --text-gray-200: #e2e8f0;
    --border-white-10: rgba(255, 255, 255, 0.1);
    --container-width: 1280px;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #020617;
    color: #fff;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.h-14 { height: 3.5rem; }
.h-12 { height: 3rem; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.bg-slate-900 { background-color: var(--bg-slate-900); }
.bg-slate-800\/50 { background-color: rgba(30, 41, 59, 0.5); }
.border-b { border-bottom-width: 1px; }
.border-white\/10 { border-color: var(--border-white-10); }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }

/* Header Links */
.text-sm { font-size: 0.875rem; }
.text-gray-400 { color: var(--text-gray-400); }
.text-gray-200 { color: var(--text-gray-200); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

a { text-decoration: none; color: inherit; }

.rounded-lg { border-radius: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

.hover\:bg-white\/5:hover { background-color: rgba(255, 255, 255, 0.05); }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }
.hover\:text-white:hover { color: #fff; }

/* Premium Button */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-amber-500 { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); }
.to-orange-500 { --tw-gradient-to: #f97316; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-amber-500\/25 { --tw-shadow-color: rgba(245, 158, 11, 0.25); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); }

.group:hover .fa-sparkles { animation: sparkle 1.5s infinite; }

@keyframes sparkle {
    0%, 100% { opacity: 0.75; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.main-navigation li a span {
    display: block;
}

/* Search */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }

/* Mobile Menu */
.max-h-0 { max-height: 0; }
.max-h-screen { max-height: 100vh; }

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-gray-200);
    transition: background-color 0.2s;
}

.mobile-nav li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* Utilities */
.hidden { display: none; }
@media (min-width: 1024px) {
    .lg\:block { display: block; }
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
}
@media (min-width: 1280px) {
    .xl\:inline { display: inline; }
    .xl\:hidden { display: none; }
}

/* Footer Styles */
.site-footer {
    border-top: 1px solid var(--border-white-10);
}

.bg-slate-950 { background-color: #020617; }
.from-slate-900 { --tw-gradient-from: #0f172a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 23, 42, 0)); }
.to-slate-950 { --tw-gradient-to: #020617; }

.text-xs { font-size: 0.75rem; }
.text-\[10px\] { font-size: 10px; }
.max-w-sm { max-width: 24rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.pt-12 { padding-top: 3rem; }
.pb-8 { padding-bottom: 2rem; }
.pt-8 { padding-top: 2rem; }

.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.text-green-400 { color: #4ade80; }
.text-blue-400 { color: #60a5fa; }
.text-orange-400 { color: #fb923c; }
.text-amber-400 { color: #fbbf24; }

.divide-white\/10 > * + * { border-color: var(--border-white-10); }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }

.pointer-events-none { pointer-events: none; }

@media (min-width: 768px) {
    .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .md\:flex-row { flex-direction: row; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-6 { grid-template-columns: repeat(6, 1fr); }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:col-span-4 { grid-column: span 4 / span 4; }
}

/* Homepage Section Styles */
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.text-transparent { color: transparent; }
.leading-tight { line-height: 1.25; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.rounded-3xl { border-radius: 1.5rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-xl { border-radius: 0.75rem; }

.aspect-square { aspect-ratio: 1 / 1; }

.brightness-110:hover { filter: brightness(1.1); }

/* Hero Specifics */
.from-pink-500\/60 { --tw-gradient-from: rgba(236, 72, 153, 0.6); }
.via-violet-500\/40 { --tw-gradient-to: rgba(139, 92, 246, 0.4); }
.to-pink-500\/20 { --tw-gradient-to: rgba(236, 72, 153, 0.2); }

.bg-amber-500\/10 { background-color: rgba(245, 158, 11, 0.1); }
.text-amber-300 { color: #fcd34d; }

.text-emerald-400 { color: #34d399; }

/* Product Cards */
.bg-slate-900\/50 { background-color: rgba(15, 23, 42, 0.5); }
.hover\:border-amber-500\/30:hover { border-color: rgba(245, 158, 11, 0.3); }

/* Brands */
.grayscale { filter: grayscale(100%); }
.grayscale:hover { filter: grayscale(0%); }

@media (min-width: 1024px) {
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
    .lg\:col-span-8 { grid-column: span 8 / span 8; }
    .lg\:col-span-4 { grid-column: span 4 / span 4; }
    .lg\:text-\[50px\] { font-size: 50px; }
    .lg\:text-\[28px\] { font-size: 28px; }
}
