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

:root {
    --primary-color: #ea580c; /* Tailwind orange-600 */
    --primary-dark: #c2410c; /* Tailwind orange-700 */
    --primary-light: #ffedd5; /* Tailwind orange-100 */
    --dark-bg: #111827; /* Tailwind gray-900 */
    --light-bg: #f9fafb; /* Tailwind gray-50 */
    --text-dark: #1f2937; /* Tailwind gray-800 */
    --text-light: #6b7280; /* Tailwind gray-500 */
    --accent: #f59e0b; /* Tailwind amber-500 */
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Typography & Colors */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.text-muted { color: var(--text-light) !important; }

/* Buttons */
.btn-primary { 
    background: linear-gradient(to right, var(--primary-color), var(--accent));
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: linear-gradient(to right, var(--primary-dark), #d97706);
    transform: scale(0.98);
}
.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.navbar-brand img {
    height: 40px;
    object-fit: contain;
}
.navbar-brand-text {
    line-height: 1.1;
    align-items: flex-start;
}
.navbar-brand-text .brand-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}
.navbar-brand-text .brand-tagline {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-top: 2px;
}
.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* TV Player Overlay */
.tv-player-container {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tv-player-container.hidden {
    display: none !important;
}

.tv-player-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    border: none;
    outline: none;
    display: block;
}

.tv-player-empty {
    position: absolute;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    color: #666;
    font-size: 1.1rem;
    background: #000;
}

.tv-play-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: #fff;
    cursor: pointer;
    user-select: none;
}

.tv-play-overlay.hidden {
    display: none !important;
}

.tv-play-overlay .play-icon {
    width: 80px;
    height: 80px;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-play-overlay .play-icon::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-style: solid;
    border-width: 14px 0 14px 24px;
    border-color: transparent transparent transparent #fff;
}

.tv-play-overlay span {
    font-size: 1rem;
    opacity: 0.8;
}

/* Hero Section */
.hero-wrapper {
    background: linear-gradient(to bottom right, #fff7ed, #fffbeb);
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
}
.hero-shapes div {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
}
.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 600;
    color: #374151;
}

/* Shuffling Grid */
.shuffle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
    height: 400px;
}
.shuffle-item {
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
    will-change: transform;
}
.shuffle-item.is-swapping {
    transform: scale(0.88) rotate(4deg);
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

/* Product Cards */
.product-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}
.product-card:hover {
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

/* Badges */
.offer-badge {
    position: absolute;
    top: -15px;
    right: -10px;
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(12deg);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    z-index: 10;
}

/* Contact Page */
.contact-icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.bg-light-primary { background-color: var(--primary-light); color: var(--primary-color); }
.bg-light-success { background-color: #dcfce7; color: #16a34a; }
.bg-light-info { background-color: #e0f2fe; color: #0284c7; }
.bg-light-purple { background-color: #f3e8ff; color: #9333ea; }

/* Testimonials */
.testimonials-section {
    background-color: var(--dark-bg);
    color: white;
    padding: 5rem 0;
}
.testimonial-text {
    font-style: italic;
    font-size: 1.25rem;
    color: #d1d5db;
}

/* Footer */
.site-footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
}
.site-footer a {
    color: #ffedd5;
    text-decoration: none;
    transition: color 0.3s;
}
.site-footer a:hover {
    color: white;
}
.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Testimonial carousel */
.testimonial-control {
    width: auto;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}
.testimonial-control:hover {
    opacity: 1;
}
.testimonial-avatar,
.testimonial-tab-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 700;
}
.testimonial-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
}
.testimonial-tab-avatar {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
}
.testimonial-tab {
    background: transparent;
    color: inherit;
    opacity: 0.75;
    transition: all 0.2s ease;
}
.testimonial-tab.active,
.testimonial-tab:hover {
    background: rgba(0, 0, 0, 0.35);
    opacity: 1;
    box-shadow: inset 0 0 0 1px var(--accent);
}

.contact-map {
    height: 400px;
    min-height: 280px;
    background-color: #f3f4f6;
}

.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}
.floating-contact-btn:hover {
    transform: scale(1.1);
    color: white;
}
.btn-whatsapp { background-color: #25D366; }
