:root {
    --bg-color: #FCF7EE;
    --text-color: #020202;
    --accent-orange: #FC800A;
    --accent-teal: #0099A1;
    --accent-blue: #2D9CDB;
    --accent-yellow: #F2C94C;
    --accent-red: #EB5757;
    --accent-purple: #9B51E0;

    --font-display: 'Fira Sans', sans-serif;
    --font-heading: 'Fira Sans', sans-serif;
    --font-body: 'Fira Sans', sans-serif;

    --container-width: 1200px;
    --spacing-unit: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300; /* Fira Sans Light */
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400; /* Fira Sans Regular */
    line-height: 1.2;
    color: var(--accent-teal);
}

h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400; /* Fira Sans Regular */
    color: var(--accent-orange);
    text-align: center;
}

h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400; /* Fira Sans Regular */
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text-confetti {
    color: var(--accent-orange);
    position: relative;
    display: inline-block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.main-header {
    background-color: rgba(252, 247, 238, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--accent-orange);
}

/* Dropdown */
.dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    /* Bridge gap */
    background: transparent;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    /* Position right below the item */
    left: 0;
    margin-top: 10px;
    /* Gap from nav item */
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem;
    min-width: 200px;
    list-style: none;
    z-index: 1000;
}

.dropdown-item:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease;
}

.dropdown-menu li {
    margin-bottom: 0.5rem;
}

.dropdown-menu a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    color: var(--accent-teal);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-teal);
    border-radius: 3px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--accent-orange);
    color: white !important;
}

.btn-secondary {
    background-color: var(--accent-teal);
    color: white !important;
}

.btn-outline {
    border: 2px solid var(--accent-teal);
    color: var(--accent-teal);
    background: transparent;
}

/* Hero Section */
.hero-section {
    padding: 2rem 0 0;
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 10;
    padding-bottom: 4rem;
}

.hero-content {
    text-align: left;
    max-width: 600px;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    color: black;
    margin-bottom: 1.5rem;
    text-transform: none;
    /* Ensure case sensitivity if needed */
}

.hero-sub-line {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.slogan-text {
    font-family: var(--font-heading);
    /* Nunito or Fira */
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    padding-bottom: 15px;
    /* Align with checkmark bottom */
}

.slogan-graphic-wrapper {
    width: 150px;
    height: 100px;
    /* Adjust based on SVG natural size */
    transform: translateY(10px);
    /* Push down slightly to align checkmark */
}

.slogan-svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.1));
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Confetti Canvas */
#confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-divider svg path {
    fill: var(--accent-teal);
    opacity: 0.2;
}

/* Circles Section / Features */
.circles-section {
    background-color: #FFFFFF;
    padding: 4rem 0 6rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.circles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.circle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.circle-card:hover .circle-icon {
    transform: scale(1.1) rotate(5deg);
}

.circle-icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

.circle-icon .material-symbols-outlined {
    font-size: 64px;
    color: white;
}

.color-peach .material-symbols-outlined,
.color-bright-yellow .material-symbols-outlined {
    color: var(--text-color);
    /* Accessibility Contrast Fix */
}

.color-orange {
    background-color: var(--accent-orange);
}

.color-peach {
    background-color: #fce4d6;
}

.color-periwinkle {
    background-color: #849cd6;
}

.color-bright-yellow {
    background-color: #fdf55f;
}

.color-crane-orange {
    background-color: #fa9534;
}

/* Detailed Services / Tiles */
.detailed-services {
    padding: 6rem 0;
    background-image: url('../assets/text-bg.webp');
    /* Pattern background */
    background-size: cover;
}

.service-tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-tile {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-top: 10px solid transparent;
}

.service-tile:hover {
    transform: translateY(-10px);
}

.tile-blue {
    border-color: var(--accent-blue);
}

.tile-orange {
    border-color: var(--accent-orange);
}

.tile-teal {
    border-color: var(--accent-teal);
}

.tile-yellow {
    border-color: var(--accent-yellow);
}

.tile-red {
    border-color: var(--accent-red);
}

.tile-purple {
    border-color: var(--accent-purple);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: white;
}

.team-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    max-width: 300px;
}

.member-photo-wrapper {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 8px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.role-text {
    color: var(--accent-teal);
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.team-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    text-align: center;
    padding: 0 1rem;
}

.connector-content {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.connector-title {
    font-family: var(--font-display);
    color: var(--accent-orange);
    font-size: 1.8rem;
    margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: rotate(-2deg);
}

.connector-icon {
    font-size: 2rem;
    display: block;
    margin-top: 1rem;
}

.connector-line {
    width: 2px;
    height: 30px;
    background: var(--accent-teal);
    margin: 0 auto;
    opacity: 0.3;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
    background-color: rgba(12, 192, 223, 0.1);
    /* Matches wave divider teal opacity */
    text-align: center;
}

.testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    margin: 4rem 0;
    padding-bottom: 2rem;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    font-style: italic;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 0 0 calc(90% - 2rem);
    min-width: 280px;
    max-width: 400px;
    scroll-snap-align: center;
}

.quote {
    font-size: 1.2rem;
    color: var(--text-color);
}

.cta-box {
    background-color: var(--accent-teal);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 4rem;
}

.cta-box h2 {
    color: white;
    margin-bottom: 2rem;
}

/* Footer */
.main-footer {
    background-color: var(--accent-teal);
    color: white;
    padding: 6rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
}

.footer-bag {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    opacity: 0.8;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.footer-col h3 {
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.footer-col a {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    background-color: #007A80;
    /* Darker Teal */
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .team-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* InPetto Page Styles */
.page-hero {
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    background-color: var(--bg-color);
    background-image: radial-gradient(#E0E0E0 2px, transparent 2px);
    background-size: 30px 30px;
    overflow: hidden;
}

.page-title {
    font-size: 3rem;
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--accent-orange);
    font-family: var(--font-display);
    margin-bottom: 3rem;
    display: block;
}

.inpetto-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-teal);
    margin-bottom: 2rem;
}

.deco-star {
    position: absolute;
    width: 60px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.star-left {
    top: 20%;
    left: 10%;
    transform: rotate(-15deg);
}

.star-right {
    top: 30%;
    right: 10%;
    transform: rotate(15deg);
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.tile-link {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid transparent;
}

.tile-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tile-link h3 {
    color: inherit;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tile-blue {
    border-color: var(--accent-blue);
}

.tile-blue h3 {
    color: var(--accent-blue);
}

.tile-orange {
    border-color: var(--accent-orange);
}

.tile-orange h3 {
    color: var(--accent-orange);
}

.tile-teal {
    border-color: var(--accent-teal);
}

.tile-teal h3 {
    color: var(--accent-teal);
}

.tile-yellow {
    border-color: var(--accent-yellow);
}

.tile-yellow h3 {
    color: var(--accent-yellow);
}

.tile-red {
    border-color: var(--accent-red);
}

.tile-red h3 {
    color: var(--accent-red);
}

.tile-purple {
    border-color: var(--accent-purple);
}

.tile-purple h3 {
    color: var(--accent-purple);
}

.link-arrow {
    align-self: flex-end;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
    transition: transform 0.2s ease;
    background: #f5f5f5;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tile-link:hover .link-arrow {
    transform: translateX(5px);
    background: var(--text-color);
    color: white;
}

.infographic-section {
    padding: 6rem 0;
    text-align: center;
}

.infographic-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: white;
    padding: 2rem;
    border-top: 5px solid var(--accent-orange);
}

/* Subpage Content Styles */
.content-section {
    padding: 4rem 0;
    background-color: white;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.content-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .content-grid-2 {
        grid-template-columns: 1fr;
    }
}


/* Gallery Styles */
.gallery-section {
    padding-bottom: 6rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
    background-color: white;
    padding: 1rem;
}

/* Shop Layout */
.shop-layout-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    /* Products left, sidebar right */
    gap: 2rem;
    align-items: start;
}

.shop-products {
    min-width: 0;
    /* Prevention flex/grid blowout */
}

/* Sidebar */
.shop-sidebar {
    position: sticky;
    top: 100px;
    /* Below header */
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--accent-orange);
}

.sidebar-wrapper h3 {
    margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--accent-teal);
    font-size: 1.3rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.cart-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px dotted #eee;
    font-size: 0.95rem;
}

.cart-item-name {
    flex-grow: 1;
    margin-right: 10px;
}

.cart-item-qty {
    font-weight: bold;
    color: var(--accent-orange);
}

.btn-block {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    text-align: center;
}

/* Responsive sidebar */
@media (max-width: 900px) {
    .shop-layout-grid {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: fixed;
        bottom: 0;
        top: auto;
        left: 0;
        width: 100%;
        max-height: 50vh;
        overflow-y: auto;
        z-index: 999;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .shop-sidebar.active {
        transform: translateY(0);
    }
}

/* Updated Product Card Scaling */
.product-card {
    height: 100%;
}



.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 153, 161, 0.7);
    /* Teal with opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0
    }
    to {
        transform: scale(1);
        opacity: 1
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2020;
}

.lightbox-close:hover {
    color: var(--accent-orange);
}

/* Lightbox Navigation Buttons */
#prev-btn, #next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2010;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

#prev-btn { left: -80px; }
#next-btn { right: -80px; }

#prev-btn:hover, #next-btn:hover {
    background: var(--accent-teal);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 1100px) {
    #prev-btn { left: 10px; }
    #next-btn { right: 10px; }
    #prev-btn, #next-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        background: rgba(255, 255, 255, 0.9);
    }
}

.product-card[data-category="module"] {
    border-top: 5px solid var(--accent-blue);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-blue);
}

.product-price {
    color: var(--accent-orange);
    font-weight: bold;
    margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.view-examples-btn {
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.order-controls {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.qty-input {
    width: 60px;
    padding: 0.5rem;
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 1rem;
    text-align: center;
}

.floating-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(100px);
    transition: transform 0.3s ease;
}

.floating-cart-btn.visible {
    transform: translateY(0);
}

.cart-count {
    background: white;
    color: var(--accent-orange);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
}

.contact-details-list {
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-detail-item.socials-item {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.contact-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-social-btn {
    padding: 6px 15px 6px 8px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    color: white !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-social-btn .btn-icon {
    background: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.contact-social-btn.linkedin {
    background: #0077b5;
}

.contact-social-btn.linkedin .btn-icon { color: #0077b5; }
.contact-social-btn.facebook .btn-icon { color: #1877f2; }

.contact-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    filter: brightness(1.1);
}

.contact-social-btn.facebook {
    background: #1877f2;
}


/* Inspiration Generator (Grabbelton) */
.inspiration-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-orange);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.inspiration-fab:hover {
    transform: translateY(-5px) scale(1.05);
    /* Override float on hover */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: none;
}

.fab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-icon img {
    width: 40px;
    height: auto;
    animation: wiggle 2s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-10deg);
    }

    20% {
        transform: rotate(10deg);
    }

    30% {
        transform: rotate(-10deg);
    }

    40% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    /* Pause for the rest of the valid cycle */
}

.fab-text {
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-top: 10px solid var(--accent-teal);
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 2rem;
    cursor: pointer;
    color: #aaa;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--text-color);
}

.modal-header h3 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: var(--font-heading);
}

.modal-body p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-style: italic;
}


/* Lead Magnet Section */
.lead-magnet-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    background-image: radial-gradient(var(--accent-teal-light) 1px, transparent 1px);
    background-size: 20px 20px;
}

.lead-magnet-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .lead-magnet-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.lead-magnet-content h2 {
    color: var(--accent-orange);
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.lead-magnet-content h3 {
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
}

.lead-checklist {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.lead-checklist li {
    margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.lead-magnet-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent-yellow);
    position: relative;
    overflow: hidden;
}

.lead-magnet-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal));
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

.privacy-note {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-top: 1rem;
}

/* VAK-dagen Section Responsive */
@media (min-width: 768px) {
    .vak-dagen-section {
        flex-direction: row !important;
        align-items: center;
    }

    .vak-img-wrapper {
        width: 50% !important;
        height: 350px !important;
    }

    .vak-content {
        width: 50%;
        text-align: left !important;
        padding: 4rem !important;
    }
}

/* Lead Magnet Form Styles */
.lead-magnet-form .form-group {
    margin-bottom: 1.5rem;
}

.lead-magnet-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-color);
}

.lead-magnet-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lead-magnet-form input:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}


/* Mini-Game Styles */
.mini-game-section {
    padding: 2rem 0;
}

.game-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    border-bottom: 5px solid var(--accent-orange);
}

.game-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.progress-bar-wrapper {
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--accent-orange);
    width: 0%;
    transition: width 0.3s ease;
}

.question-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 2rem;
    min-height: 60px;
    /* Prevent jump */
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
}

.option-btn {
    background: white;
    border: 2px solid var(--accent-teal);
    color: var(--accent-teal);
    padding: 1.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: normal;
    line-height: 1.4;
}

.option-btn:hover {
    background: var(--accent-teal);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.option-btn:active {
    transform: translateY(0);
}

/* Mobile Menu Responsive Styles */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 2000;
        /* Above nav */
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1999;
        /* Hidden state */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-list a {
        font-size: 1.5rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        padding: 1rem 0;
        min-width: auto;
        display: block !important;
        /* Always show sub-items on mobile */
        text-align: center;
        opacity: 1;
        transform: none;
    }

    .dropdown-menu li {
        margin-bottom: 0.5rem;
    }

    .dropdown-menu a {
        font-size: 1.2rem;
        color: var(--accent-teal);
    }

    .dropdown-item::after {
        display: none;
    }
}

/* Hamburger Animation */
.mobile-menu-toggle span {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Animations: Fade-in on Scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-delay-1 {
    transition-delay: 0.1s;
}

.fade-delay-2 {
    transition-delay: 0.2s;
}

.fade-delay-3 {
    transition-delay: 0.3s;
}

.fade-delay-4 {
    transition-delay: 0.4s;
}

/* Product Filter Animations */
.product-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (max-width: 768px) {
    .nav-list {
        display: flex !important;
    }
}

/* ==========================================================================
   Aanbod Page Overhaul (Phase 10)
   ========================================================================== */

/* Part 1: Quadrant Grid */
.quadrant-section {
    padding: 6rem 0;
    text-align: center;
}

.quadrant-wrapper {
    position: relative;
    max-width: 900px;
    margin: 4rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}

.quadrant-box {
    background: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    border: 6px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quadrant-box:hover {
    transform: scale(1.02);
}

.q-tools {
    border-color: #00B4D8;
}

.q-themas {
    border-color: #FFEE93;
}

.q-inspirerend {
    border-color: #FFC09F;
}

.q-ontzorgen {
    border-color: #A0CED9;
}

.quadrant-box .tagline {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #444;
}

.quadrant-box h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 0;
    text-transform: uppercase;
    color: var(--text-color);
}

.center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: white;
    border: 4px solid #00B4D8;
    /* Example teal */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.center-badge span {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
}

.center-badge .badge-top {
    font-size: 1.2rem;
    display: block;
}

.center-badge .badge-mid {
    font-size: 1.8rem;
    color: #00B4D8;
    font-style: italic;
    display: block;
    margin: 5px 0;
}

.center-badge .badge-logo {
    width: 60px;
    margin-top: 5px;
}

/* Part 2: Venn Diagram */
.venn-section {
    padding: 6rem 0;
    background-color: white;
    overflow: hidden;
}

.venn-container {
    position: relative;
    max-width: 900px;
    height: 750px;
    margin: 4rem auto;
}

.venn-circle {
    position: absolute;
    border-radius: 50%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.circle-themes {
    width: 480px;
    height: 480px;
    background-color: rgba(160, 206, 217, 0.85);
    /* Light Blue */
    left: 0;
    top: 0;
    z-index: 1;
}

.circle-bag {
    width: 440px;
    height: 440px;
    background-color: rgba(255, 192, 159, 0.85);
    /* Peach/Orange */
    right: 0;
    top: 40px;
    z-index: 2;
}

.circle-custom {
    width: 550px;
    height: 550px;
    background-color: rgba(255, 238, 147, 0.85);
    /* Yellow */
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 3;
}

.venn-circle h3 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.venn-circle ul {
    list-style: none;
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.4;
}

.venn-circle ul li {
    margin-bottom: 8px;
}

.venn-circle ul li::before {
    content: '•';
    margin-right: 8px;
    color: var(--accent-orange);
    font-weight: bold;
}

.bag-img-small {
    width: 160px;
    margin-bottom: 15px;
}

/* Part 3: Training & Nascholing */
.training-section {
    padding: 6rem 0;
}

.training-layout {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 4rem;
}

.training-content h2 {
    text-align: left;
    font-family: var(--font-display);
    font-size: 3rem;
    text-transform: uppercase;
    color: #4A4A8F;
    /* Darker blue/purple */
    margin-bottom: 3rem;
}

.training-list-group {
    background: rgba(255, 255, 255, 0.5);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 10px 10px 0px var(--accent-teal);
}

.licence-item {
    margin-bottom: 3rem;
}

.licence-item h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333;
}

.licence-item p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #666;
}

.licence-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.licence-logo {
    height: 70px;
    object-fit: contain;
}

.experience-list h4 {
    color: var(--accent-teal);
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    text-transform: uppercase;
}

.experience-list ul {
    list-style: none;
    font-size: 1.2rem;
}

.experience-list li {
    margin-bottom: 10px;
}

.experience-list li::before {
    content: '•';
    margin-right: 12px;
    color: var(--accent-teal);
    font-weight: bold;
}

.contact-flyer {
    position: relative;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.blue-arrow {
    position: absolute;
    top: -40px;
    right: -20px;
    width: 140px;
    transform: rotate(15deg);
    z-index: 5;
}

.contact-box h3 {
    color: var(--accent-teal);
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.contact-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 900px) {
    .quadrant-wrapper {
        grid-template-columns: 1fr;
    }

    .center-badge {
        position: static;
        transform: none;
        margin: 2rem auto;
    }

    .venn-container {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .venn-circle {
        position: static;
        width: 100% !important;
        height: auto !important;
        border-radius: 40px;
        transform: none !important;
        padding: 3rem 2rem;
    }

    .training-layout {
        grid-template-columns: 1fr;
    }

    .blue-arrow {
        width: 100px;
        top: -30px;
    }
}

/* ==========================================================================
   Bestelpagina Overhaul (Phase 11)
   ========================================================================== */

.bestel-hero {
    padding: 6rem 0 3rem;
    background-color: #fdfaf5;
    text-align: center;
}

.bestel-hero h1 {
    font-size: 4rem;
    color: #4A4A8F;
    margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bestel-circles-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 4rem auto;
    flex-wrap: wrap;
    position: relative;
    max-width: 1000px;
}

.bestel-circle {
  width: 475px;
  height: 475px;
  border-radius: 50%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  opacity: 1;
  position: relative;
  transition: transform 0.3s ease;
  z-index: 1;
}

.bestel-circle:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

/* Glow pseudo-element verwijderd voor een 'platte' look */

.bc-workshops {
    background-color: rgba(160, 206, 217, 1);
}

.bc-maatwerk {
    background-color: rgba(255, 238, 147, 1);
}

.bestel-circle h3 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    font-family: var(--font-display);
}

.bestel-circle ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.bestel-circle ul li {
    margin-bottom: 6px;
    font-size: 1rem;
    line-height: 1.3;
}

/* Overlapping Mini Circle for Tas in Workshops */
.workshop-tas-badge {
    position: absolute;
    top: 50px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: #FFC09F;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 5;
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.9;
}

.workshop-tas-badge strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.bestel-circle ul li::before {
    content: '•';
    margin-right: 10px;
    color: var(--accent-orange);
    font-weight: bold;
}

/* Thema Tas Circle */
.tas-section {
    padding: 4rem 0;
    text-align: center;
}

.tas-circle-content {
  background-color: #FCF7EE;
  width: 475px;
  max-width: 100%;
  height: 475px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin: 0 auto 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 4px solid white;
}

.price-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent-teal);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Bestel Product Grid */
.bestel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 4rem;
}

.bestel-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1), 
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bestel-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 30px -5px rgba(0, 0, 0, 0.15), 
        0 10px 10px -5px rgba(0, 0, 0, 0.08);
}

.bestel-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.bestel-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bestel-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-teal);
    font-weight: 800;
}

.card-actions {
    margin-top: auto;
}

/* Quantity Controls Styling */
.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fdfaf5;
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--accent-teal);
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.qty-btn:hover {
    background: var(--accent-teal);
    color: white;
    transform: scale(1.1);
}

.qty-btn.minus:hover {
    background: var(--accent-orange);
}

.qty-input {
    width: 45px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-color);
    outline: none;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.order-box {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fdfaf5;
    padding: 10px 15px;
    border-radius: 50px;
}

.order-box label {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.order-box input {
    width: 60px;
    padding: 5px 10px;
    border: 2px solid var(--accent-teal);
    border-radius: 10px;
    font-weight: 800;
    text-align: center;
}

/* --- Phase 12: Clarity & Overview Improvements --- */

/* 1. Step-by-Step Order Workflow (Shop) */
.order-workflow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 2rem auto 4rem;
    max-width: 900px;
    position: relative;
    padding: 0 1rem;
}

.order-workflow::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #eee;
    z-index: 1;
}

.workflow-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 44px;
    height: 44px;
    background: white;
    border: 3px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #999;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    font-family: var(--font-display);
}

.workflow-step.active .step-number {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    box-shadow: 0 0 15px rgba(252, 128, 10, 0.2);
}

.workflow-step span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    max-width: 120px;
}

.workflow-step.active span {
    color: var(--text-color);
}

/* 2. Jump-to Navigation (Aanbod) */
.jump-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.jump-link {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid #eee;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.jump-link:hover {
    border-color: var(--accent-teal);
    color: var(--accent-teal);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 153, 161, 0.1);
}

.jump-link .material-symbols-outlined {
    font-size: 1.2rem;
}

/* 3. Group Headers with Numbers */
.section-num-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.num-badge {
    min-width: 36px;
    height: 36px;
    background: var(--accent-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

/* --- Subpage Hero (Consistency) --- */
.subpage-hero {
    position: relative;
    padding: 6rem 0 8rem;
    background-color: var(--bg-color);
    overflow: hidden;
    text-align: center;
}

.subpage-hero .page-title {
    font-size: 3.5rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.subpage-hero .page-subtitle {
    font-size: 1.5rem;
    color: var(--accent-teal);
    font-weight: 600;
}

.subpage-hero #confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
}

/* --- Shop Filters --- */
.shop-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: var(--accent-teal);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 153, 161, 0.2);
}

/* --- Thema Tas Section Redesign (Bestelpagina deel 2) --- */
.tas-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 4rem auto;
    max-width: 900px;
}

.bestel-circles-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.tas-circle-content {
  background-color: #FCF7EE;
  width: 475px;
  max-width: 100%;
  height: 475px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin: 0 auto 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 4px solid white;
}

.tas-circle-content img {
  width: 250px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tas-circle-content ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 0;
}

.tas-circle-content ul li {
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tas-circle-content ul li::before {
    content: '•';
    color: #4A4A8F;
    font-weight: bold;
}

.tas-price-bottom {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-teal);
    font-family: var(--font-display);
    margin-top: 1rem;
}

/* --- Product Cards with Example Buttons --- */
.product-card {
  background: #FCF7EE;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card .bestel-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1), 
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bestel-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 30px -5px rgba(0, 0, 0, 0.15), 
        0 10px 10px -5px rgba(0, 0, 0, 0.08);
}

.bestel-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.bestel-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bestel-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-teal);
    font-weight: 800;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.view-examples-btn {
    background: transparent;
    border: 2px solid var(--accent-teal);
    color: var(--accent-teal);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: var(--font-body);
    width: fit-content;
}

.view-examples-btn:hover {
    background-color: var(--accent-teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 153, 161, 0.2);
}

/* Quantity Controls Styling */
.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fdfaf5;
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--accent-teal);
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.qty-btn:hover {
    background: var(--accent-teal);
    color: white;
    transform: scale(1.1);
}

.qty-btn.minus:hover {
    background: var(--accent-orange);
}

.qty-input {
    transition: all 0.3s ease;
}

.qty-input:focus {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 153, 161, 0.2);
}

.tas-circle-content {
    border-radius: 40px;
    padding: 3rem 1.5rem;
}

.reset-btn-premium {
    font-size: 0.8rem;
    padding: 8px 15px;
    border-color: #ddd;
    color: #888;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.reset-btn-premium:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(252, 128, 10, 0.2);
}


/* --- GDPR Cookie Banner --- */
#cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 153, 161, 0.1);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-text span {
    font-size: 2rem;
    color: var(--accent-orange);
}

.cookie-text p {
    font-size: 0.95rem;
    color: #444;
    margin: 0;
    line-height: 1.5;
}

.cookie-actions button {
    white-space: nowrap;
}

@media (max-width: 768px) {
    #cookie-banner {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}
