/* ============================================================
   Rhinocats Brand Website — Complete Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --color-orange: #E87722;
    --color-orange-dark: #C45D14;
    --color-orange-light: #FFF0E5;
    --color-charcoal: #1A1A2E;
    --color-gray-900: #2D2D3F;
    --color-gray-700: #55556D;
    --color-gray-500: #8888A0;
    --color-gray-300: #C4C4D4;
    --color-gray-100: #F0F0F5;
    --color-gray-50: #FAFAFC;
    --color-white: #FFFFFF;
    --color-green: #22C55E;
    --color-yellow: #FBBF24;
    --color-red: #EF4444;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--color-charcoal);
    background: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-orange);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(232, 119, 34, 0.35);
}
.btn-primary:hover {
    background: var(--color-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 119, 34, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--color-orange);
    color: var(--color-white);
    padding: 10px 22px;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(232, 119, 34, 0.3);
}
.btn-nav:hover {
    background: var(--color-orange-dark);
    transform: translateY(-1px);
}

.btn-shop {
    background: var(--color-white);
    color: var(--color-orange);
    padding: 16px 40px;
    font-size: 1.1rem;
    border: 2px solid var(--color-orange);
    box-shadow: var(--shadow-lg);
}
.btn-shop:hover {
    background: var(--color-orange-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ---------- Section Headers ---------- */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-orange);
    background: var(--color-orange-light);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--color-charcoal);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-gray-500);
    max-width: 500px;
    margin: 0 auto;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0);
    transition: all var(--transition);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    backdrop-filter: blur(16px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-white);
    transition: color var(--transition);
}
.navbar.scrolled .nav-logo { color: var(--color-charcoal); }

.logo-icon { font-size: 1.6rem; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--color-white); }
.navbar.scrolled .nav-links a { color: var(--color-gray-700); }
.navbar.scrolled .nav-links a:hover { color: var(--color-charcoal); }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--color-white);
    cursor: pointer;
}
.navbar.scrolled .mobile-menu-btn { color: var(--color-charcoal); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, #2A1A3E 40%, #1A0A20 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}
.hero-shape-1 {
    width: 500px; height: 500px;
    background: var(--color-orange);
    top: -150px; right: -100px;
    animation: heroPulse 8s ease-in-out infinite;
}
.hero-shape-2 {
    width: 350px; height: 350px;
    background: #8B5CF6;
    bottom: -80px; left: -80px;
    animation: heroPulse 10s ease-in-out infinite reverse;
}
.hero-shape-3 {
    width: 250px; height: 250px;
    background: #F59E0B;
    top: 40%; left: 50%;
    animation: heroPulse 12s ease-in-out infinite 2s;
}
@keyframes heroPulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.2); opacity: 0.25; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--color-orange) 0%, #F59E0B 50%, #EF4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
}

/* Floating magnets */
.hero-magnets {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.floating-magnet {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}
.magnet-1 { top: 15%; left: 8%; animation-delay: 0s; font-size: 3rem; }
.magnet-2 { top: 25%; right: 10%; animation-delay: 1s; font-size: 2.2rem; }
.magnet-3 { top: 60%; left: 5%; animation-delay: 2s; font-size: 1.8rem; }
.magnet-4 { top: 70%; right: 8%; animation-delay: 0.5s; font-size: 2.8rem; }
.magnet-5 { top: 40%; left: 20%; animation-delay: 3s; font-size: 1.6rem; }
.magnet-6 { top: 50%; right: 22%; animation-delay: 1.8s; font-size: 2rem; }
.magnet-7 { top: 80%; left: 40%; animation-delay: 2.5s; font-size: 1.5rem; }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

/* ================================================================
   OUR STORY
   ================================================================ */
.story {
    padding: 100px 0;
    background: var(--color-white);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

.story-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-100);
    transition: all var(--transition);
}
.story-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-orange);
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.story-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-charcoal);
}

.story-card p {
    color: var(--color-gray-500);
    font-size: 0.95rem;
    line-height: 1.65;
}

.story-quote {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--color-orange-light), #FFF7ED);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--color-orange);
}

.story-quote blockquote {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-charcoal);
    font-style: italic;
    line-height: 1.7;
}

/* ================================================================
   PRODUCTS
   ================================================================ */
.products {
    padding: 100px 0;
    background: var(--color-gray-50);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--color-gray-100);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    overflow: hidden;
}
.product-image-1 { background: linear-gradient(135deg, #FFE0CC, #FFD4B8); }
.product-image-2 { background: linear-gradient(135deg, #DCFCE7, #C8F5D0); }
.product-image-3 { background: linear-gradient(135deg, #E0E7FF, #C8D2FF); }
.product-image-4 { background: linear-gradient(135deg, #F3E8FF, #E0CCFF); }
.product-image-5 { background: linear-gradient(135deg, #FEE2E2, #FECACA); }
.product-image-6 { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }

.product-emoji {
    font-size: 3.5rem;
    transition: transform var(--transition);
}
.product-card:hover .product-emoji { transform: scale(1.15) rotate(-5deg); }

.product-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--color-orange);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 20px 22px 24px;
}

.product-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-charcoal);
}

.product-info p {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    margin-bottom: 14px;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-orange);
}

.rating {
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

/* ================================================================
   FEATURES
   ================================================================ */
.features {
    padding: 100px 0;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.feature-card:hover {
    background: var(--color-orange-light);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-charcoal);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* ================================================================
   REVIEWS
   ================================================================ */
.reviews {
    padding: 100px 0;
    background: var(--color-gray-50);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.review-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-100);
    transition: all var(--transition);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--color-gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--color-gray-100);
}

.author-avatar {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    border-radius: 50%;
}

.author-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-charcoal);
}

.author-info span {
    font-size: 0.78rem;
    color: var(--color-gray-500);
}

/* ================================================================
   SHOP CTA
   ================================================================ */
.shop {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
}

.shop-card {
    text-align: center;
    color: var(--color-white);
}

.shop-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.shop-desc {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 40px;
}

.shop-info {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
    font-size: 0.9rem;
    opacity: 0.75;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: 64px 0 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--color-orange);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--color-white); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .story-grid,
    .product-grid,
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .btn-nav { display: none; }
    .mobile-menu-btn { display: block; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: 24px;
        box-shadow: var(--shadow-lg);
        gap: 16px;
    }
    .nav-links.active a { color: var(--color-charcoal); }
    .navbar.scrolled .nav-links.active { background: var(--color-white); }

    .story-grid,
    .product-grid,
    .features-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }

    .hero-stats { gap: 24px; }
    .hero-cta { flex-direction: column; align-items: center; }

    .shop-info { gap: 16px; }

    .footer-container { flex-direction: column; gap: 36px; }
    .footer-links { gap: 36px; }

    .floating-magnet { display: none; }
    .floating-magnet:nth-child(-n+3) { display: block; font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .hero { padding: 140px 0 60px; }
    .section-title { font-size: 1.5rem; }
    .stat-number { font-size: 1.5rem; }
    .story-card, .feature-card { padding: 28px 18px; }
    .review-card { padding: 22px; }
}