:root {
    /* Color Palette */
    --primary-blue: #2563EB;
    /* More vibrant blue */
    --primary-orange: #FF6B4A;
    /* More vibrant orange */
    --accent-green: #10B981;
    /* New nature green */
    --soft-bg: #FFFBF0;
    /* Warm Cream background */
    --white: #FFFFFF;
    --text-dark: #1F2937;
    --text-light: #4B5563;

    /* Accents */
    --accent-yellow: #FCD34D;

    /* Spacing */
    --container-max-width: 1200px;
    --border-radius: 20px;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-card: 4px 4px 0px 0px rgba(0, 0, 0, 0.1);
    /* Tactile game card shadow */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--soft-bg);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /* Scavenger Hunt Pattern: Subtle dashed lines/dots */
    background-image:
        radial-gradient(#E5E7EB 1.5px, transparent 1.5px),
        radial-gradient(#E5E7EB 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
}

/* Utilities */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.logo .dot {
    color: var(--primary-orange);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-orange);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 30px 0 60px;
    position: relative;
    overflow: hidden;
}

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

.hero-text {
    z-index: 2;
}

.tag {
    display: inline-block;
    background: #EEF2FF;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--text-dark) 0%, #4B5563 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 450px;
    margin-bottom: 40px;
}

/* Tactile Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid var(--text-dark);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.2);
    background-color: var(--text-dark);
}

.btn-primary:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
}

/* ... existing hero image styles ... */

.hero-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    /* More organic, multi-color blob */
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(252, 211, 77, 0.15) 0%, transparent 70%);
    z-index: 1;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(40px);
}

/* How It Works Section */
.how-it-works {
    display: flex;
    flex-direction: column;
    padding: 80px 0;
    background-color: var(--white);
    border-radius: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.guide-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.guide-header {
    text-align: left;
    margin-bottom: 40px;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    background: var(--primary-orange);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.step-text h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.step-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.example-box {
    background: #FFF7ED;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
    margin-top: 10px;
}

.tip {
    font-size: 0.9rem !important;
    color: var(--accent-green) !important;
}

/* Guide Images */
.guide-images {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-img-wrapper {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hover removed as requested
.guide-img-wrapper:hover {
    z-index: 10;
    transform: scale(1.05) rotate(0deg) !important;
} */

.guide-img-sheet {
    width: 380px;
    /* Increased from 280px */
    height: auto;
    border-radius: 5px;
}

.guide-img-card {
    width: 340px;
    /* Increased from 180px */
    height: auto;
    border-radius: 10px;
}

.img-caption {
    margin-top: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.rotate-neg {
    transform: rotate(-5deg) translate(-10px, -150px);
    /* Move sheet left */
    z-index: 1;
}

.rotate-pos {
    transform: rotate(5deg) translate(20px, 220px);
    /* Move card right and down */
    z-index: 2;
}

/* Responsive Guide */
@media (max-width: 768px) {
    .guide-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .guide-images {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        order: -1;
        margin-bottom: 30px;
    }

    .guide-img-wrapper {
        position: relative;
        transform: none !important;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .guide-img-sheet,
    .guide-img-card {
        width: 100%;
        max-width: 100%;
    }

    .how-it-works {
        padding: 40px 0;
    }
}

/* Our Story Section */
.our-story {
    padding: 60px 0;
    text-align: center;
}

.story-card {
    background: #FFFBF0;
    /* Match warm cream or slightly different? Let's go with a very soft peach highlight indirectly */
    background: linear-gradient(135deg, #FFFBF0 0%, #FFF5ED 100%);
    border: 2px dashed var(--primary-orange);
    border-radius: 30px;
    padding: 50px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.story-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 20px;
}

.story-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-content .signature {
    font-family: 'Outfit', sans-serif;
    /* Could use a script font here if available, but Outfit bold is nice */
    font-weight: 700;
    color: var(--primary-orange);
    margin-top: 30px;
    font-size: 1.3rem;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 8px solid var(--white);
    box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
}

/* Responsive Story */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .story-image {
        max-width: 400px;
        margin: 0 auto;
        order: 2;
    }

    .story-card {
        padding: 40px 20px;
    }
}

.products {
    padding: 60px 0 100px;
    background-color: var(--white);
    border-radius: 30px;
}


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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--soft-bg);
    background-image:
        radial-gradient(#E5E7EB 1.5px, transparent 1.5px),
        radial-gradient(#E5E7EB 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid var(--text-dark);
    /* Hand-drawn feel border */
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.2);
}

.card-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--text-dark);
}

.product-badge {
    display: inline-block;
    background-color: var(--white);
    /* Light yellow sticker */
    color: var(--primary-orange);
    /* Dark brown/orange text */
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    border: 1px dashed var(--primary-orange);
    transform: rotate(-1deg);
    align-self: flex-start;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
}

.product-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-full-img {
    transform: scale(1.05);
}

/* Specific card accents */
.card-blue .card-image {
    background-color: #DBEAFE;
    /* Warmer blue */
}

.card-orange .card-image {
    background-color: #FFEDD5;
    /* Warmer orange */
}

.img-placeholder {
    font-size: 5rem;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

.product-card:hover .img-placeholder {
    transform: scale(1.1) rotate(5deg);
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.card-content .description {
    color: var(--text-light);
    margin-bottom: 25px;
    flex-grow: 1;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.price-original {
    font-size: 0.95rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 8px;
    font-weight: 600;
}

.price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
}

.btn-buy {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.card-blue .btn-buy {
    background-color: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.card-orange .btn-buy {
    background-color: var(--primary-orange);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(255, 107, 74, 0.3);
}

.btn-buy:hover {
    transform: scale(1.05);
    filter: brightness(110%);
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    margin: 0 10px;
}

.footer-links a:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image img {
        transform: rotate(0deg);
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }

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

/* Image Compositions */
.img-comp-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-comp-container img {
    position: absolute;
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* Product Card Layouts - Clean & Visible */
.product-box,
.product-card-single {
    position: absolute;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

/* Common Layout: Clean Overlap */
/* The Main Box/Background Image */
.img-comp-container .product-box {
    width: 80%;
    height: auto;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-3deg);
    border-radius: 4px;
    /* Slight rounding if it's a card */
}

/* The Single Card / Detail Image */
.img-comp-container .product-card-single {
    width: 45%;
    height: auto;
    z-index: 10;
    /* Always on top */
    right: 10px;
    bottom: 15px;
    transform: rotate(5deg);
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* Subtle highlight */
}

/* Hover Effects */
.product-card:hover .product-box {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.02);
}

.product-card:hover .product-card-single {
    transform: rotate(10deg) scale(1.1) translate(-5px, -5px);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
}

/* Hero specific */
.hero-comp-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-box-creative {
    position: absolute;
    width: 40%;
    left: 10%;
    bottom: 15%;
    z-index: 2;
    transform: rotate(-10deg);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

.hero-box-adventure {
    position: absolute;
    width: 40%;
    right: 5%;
    top: 15%;
    z-index: 1;
    transform: rotate(5deg);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

.hero-card-creative {
    position: absolute;
    width: 20%;
    left: 0;
    bottom: 30%;
    transform: rotate(-25deg);
    z-index: 3;
}

.hero-card-adventure {
    position: absolute;
    width: 20%;
    right: 0;
    top: 40%;
    transform: rotate(15deg);
    z-index: 3;
}

.hero-main-single {
    width: 100%;
    max-width: 750px;
    height: auto;
    position: relative;
    z-index: 5;
    transform: rotate(-3deg);
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.25));
    transition: transform 0.5s ease;
}

.hero-main-single:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Responsive adjustments for hero */
@media (max-width: 768px) {
    .hero-comp-container {
        height: 350px;
        margin-top: 20px;
    }

    .hero-box-creative {
        width: 50%;
        left: 5%;
    }

    .hero-box-adventure {
        width: 50%;
        right: 0;
        top: 5%;
    }

    .hero-card-creative {
        width: 25%;
        left: -5%;
    }

    .hero-card-adventure {
        width: 25%;
        right: -5%;
    }
}

/* Bundle Card Specifics */
.bundle-image-bg {
    background: linear-gradient(135deg, #DBEAFE 0%, #FFEDD5 100%) !important;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.bundle-label {
    position: absolute;
    top: 24px;
    right: -48px;
    background: var(--accent-yellow);
    color: var(--text-dark);
    padding: 8px 40px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    transform: rotate(35deg);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--text-dark);
}

.bundle-comp {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.bundle-img-1,
.bundle-img-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transition: transform 0.5s ease; */
}

.bundle-img-1 {
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 2;
}

.bundle-img-2 {
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

/* Diagonal separator */
.bundle-comp::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: linear-gradient(to bottom right, transparent calc(50% - 1.5px), var(--text-dark) 50%, transparent calc(50% + 1.5px));
    z-index: 3;
    pointer-events: none;
    transform: rotate(0deg);
    /* Fine-tune if needed */
}

.product-card:hover .bundle-img-1 {
    /* transform: scale(1.05) translate(-5px, -5px); */
}

.product-card:hover .bundle-img-2 {
    /* transform: scale(1.05) translate(5px, 5px); */
}