/* =================================
   SHOWCASE STACK - POLAROID CAROUSEL
   Browser Window Mockups
   ================================= */

/* Stack Showcase Section */
.stack-showcase {
    padding: 4rem 0 8rem;
    min-height: 80vh;
}

.stack-showcase > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stack-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
    box-sizing: border-box;
}

/* Navigation Arrows - Base Styles */
.stack-nav {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(19, 24, 50, 0.8);
    backdrop-filter: blur(10px);
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.stack-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-text);
    transition: all 0.3s ease;
}

.stack-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.stack-nav:hover svg {
    stroke: var(--color-bg);
}

/* Card Stack Container */
.card-stack {
    position: relative;
    width: 100%;
    height: 580px;
    perspective: 1000px;
    display: block;
}

/* Individual Stack Cards */
.stack-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
    /* Hide cards by default until JS sets positions */
    opacity: 0;
    pointer-events: none;
}

/* First card visible by default (before JS loads) */
.stack-card[data-index="0"] {
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
}

/* Polaroid stack effect - cards behind are offset and rotated */
/* Top 2 cards are fully solid, only deeper cards show slight transparency */
.stack-card[data-position="0"] {
    z-index: 10;
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.stack-card[data-position="1"] {
    z-index: 9;
    transform: translateY(12px) translateX(8px) rotate(1.5deg) scale(0.98);
    opacity: 1;
    pointer-events: none;
}

.stack-card[data-position="2"] {
    z-index: 8;
    transform: translateY(24px) translateX(-6px) rotate(-1deg) scale(0.96);
    opacity: 1;
    pointer-events: none;
}

.stack-card[data-position="3"] {
    z-index: 7;
    transform: translateY(36px) translateX(4px) rotate(0.5deg) scale(0.94);
    opacity: 0.6;
    pointer-events: none;
}

.stack-card[data-position="4"],
.stack-card[data-position="5"],
.stack-card[data-position="6"],
.stack-card[data-position="7"] {
    z-index: 6;
    transform: translateY(44px) rotate(0deg) scale(0.92);
    opacity: 0;
    pointer-events: none;
}

/* Slide out animation */
.stack-card.sliding-out {
    transform: translateX(120%) rotate(15deg) scale(0.9) !important;
    opacity: 0 !important;
    z-index: 20 !important;
}

.stack-card.sliding-out-prev {
    transform: translateX(-120%) rotate(-15deg) scale(0.9) !important;
    opacity: 0 !important;
    z-index: 20 !important;
}

/* Browser Window Frame */
.browser-window {
    background: #1a1f3a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    width: 100%;
}

/* Browser Chrome (top bar) */
.browser-chrome {
    background: linear-gradient(180deg, #2d3354 0%, #252a45 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.dot--red {
    background: #ff5f57;
}

.dot--red:hover {
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 95, 87, 0.6);
}

.dot--yellow {
    background: #febc2e;
}

.dot--yellow:hover {
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(254, 188, 46, 0.6);
}

.dot--green {
    background: #28c840;
}

.dot--green:hover {
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(40, 200, 64, 0.6);
}

.browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 6px;
    max-width: 400px;
}

.url-icon {
    display: flex;
    align-items: center;
}

.url-icon svg {
    width: 14px;
    height: 14px;
    stroke: #28c840;
}

.url-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.browser-actions {
    display: flex;
    gap: 12px;
}

.browser-actions span {
    width: 16px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

/* Browser Content Area */
.browser-content {
    height: 450px;
    overflow: hidden;
}

/* Card Label */
.card-label {
    padding: 16px 20px;
    background: linear-gradient(180deg, #1a1f3a 0%, #131832 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label-style {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.label-desc {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Card Counter with Navigation */
.stack-counter {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* Desktop: Position buttons on sides of card stack */
@media (min-width: 769px) {
    .stack-counter {
        position: static;
    }

    .stack-nav--prev,
    .stack-nav--next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
    }

    .stack-nav--prev {
        left: 5px;
    }

    .stack-nav--next {
        right: 5px;
    }

    .stack-nav--prev:hover,
    .stack-nav--next:hover {
        transform: translateY(-50%) scale(1.1);
    }
}

.counter-text {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.counter-current {
    color: var(--color-primary);
    font-weight: 600;
}

.counter-sep {
    margin: 0 0.25rem;
}

/* =================================
   MOCKUP BASE STYLES
   ================================= */

.mockup {
    height: 100%;
    overflow: hidden;
    font-size: 14px;
}

.mockup-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.mockup-logo {
    font-weight: 700;
    font-size: 1.1rem;
}

.mockup-nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 0.8rem;
}

.mockup-nav-links span {
    opacity: 0.7;
}

/* =================================
   TECH/SAAS MOCKUP
   ================================= */

.mockup--tech {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    color: #fff;
}

.mockup--tech .mockup-nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup--tech .mockup-logo {
    color: #fff;
}

.mockup--tech .mockup-logo span {
    color: #00d4ff;
}

.mockup-btn-small {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.mockup-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px 20px 20px;
    align-items: center;
}

.mockup-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.mockup-hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.mockup-hero-content p {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-bottom: 15px;
    line-height: 1.5;
}

.mockup-cta-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.mockup-btn-primary {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.mockup-btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 18px;
    border-radius: 8px;
    color: #fff;
    font-size: 0.75rem;
    cursor: pointer;
}

.mockup-trust {
    font-size: 0.65rem;
    opacity: 0.5;
}

/* Tech Dashboard Graphic */
.tech-dashboard {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.dash-title {
    font-weight: 600;
    font-size: 0.8rem;
}

.dash-status {
    background: #10b981;
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 600;
}

.dash-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.dash-stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00d4ff;
}

.stat-label {
    font-size: 0.6rem;
    opacity: 0.6;
}

.dash-chart {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 3px 3px 0 0;
    min-height: 10px;
}

/* Tech Features */
.mockup-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 20px 20px;
}

.mockup--tech .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.mockup--tech .feature-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.mockup--tech .feature-card h3 {
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.mockup--tech .feature-card p {
    font-size: 0.65rem;
    opacity: 0.6;
    margin: 0;
}

/* =================================
   WEDDING MOCKUP
   ================================= */

.mockup--wedding {
    background: linear-gradient(180deg, #fdf8f5 0%, #f9f1eb 100%);
    color: #4a3f35;
    position: relative;
    text-align: center;
}

.wedding-decoration {
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 30'%3E%3Cpath d='M0,15 Q25,0 50,15 T100,15' fill='none' stroke='%23d4a574' stroke-width='0.5' opacity='0.3'/%3E%3C/svg%3E") repeat-x;
    background-size: 100px 30px;
    opacity: 0.5;
}

.wedding-decoration--top {
    top: 0;
    background-position: center top;
}

.wedding-decoration--bottom {
    bottom: 0;
    background-position: center bottom;
    transform: rotate(180deg);
}

.wedding-nav {
    justify-content: center;
    border-bottom: none;
    padding-top: 20px;
}

.wedding-links {
    gap: 30px;
}

.wedding-links span {
    font-family: var(--font-elegant);
    font-size: 0.8rem;
    color: #8b7355;
    letter-spacing: 0.05em;
}

.wedding-hero {
    padding: 20px 20px 15px;
}

.wedding-script {
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 0.9rem;
    color: #b8956e;
    margin-bottom: 10px;
}

.wedding-names {
    font-family: var(--font-elegant);
    font-size: 2.5rem;
    font-weight: 400;
    color: #4a3f35;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.wedding-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.wedding-divider span:first-child,
.wedding-divider span:last-child {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
}

.heart-icon {
    color: #d4a574;
    font-size: 1rem;
}

.wedding-date {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: #6b5d4d;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.wedding-venue {
    font-size: 0.8rem;
    color: #8b7355;
    margin-bottom: 15px;
}

.wedding-btn {
    background: #b8956e;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-family: var(--font-elegant);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wedding-btn:hover {
    background: #9a7a58;
}

.wedding-countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px;
    background: rgba(212, 165, 116, 0.1);
    margin: 0 20px 20px;
    border-radius: 8px;
}

.countdown-item {
    text-align: center;
}

.countdown-num {
    display: block;
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    color: #4a3f35;
}

.countdown-label {
    font-size: 0.65rem;
    color: #8b7355;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* =================================
   E-COMMERCE MOCKUP
   ================================= */

.mockup--ecommerce {
    background: #ffffff;
    color: #1a1a1a;
}

.ecom-nav {
    border-bottom: 1px solid #eee;
}

.ecom-logo {
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #1a1a1a;
}

.ecom-logo span {
    font-weight: 400;
}

.ecom-links span {
    color: #666;
    font-size: 0.75rem;
}

.ecom-icons {
    display: flex;
    gap: 15px;
    font-size: 1rem;
}

.icon-cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #e53935;
    color: #fff;
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecom-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.banner-tag {
    display: inline-block;
    background: #e53935;
    color: #fff;
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.ecom-banner h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.ecom-banner p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.ecom-btn {
    background: #fff;
    color: #1a1a1a;
    border: none;
    padding: 12px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ecom-btn:hover {
    background: #f0f0f0;
}

.ecom-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
}

.mockup--ecommerce .product-card {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.mockup--ecommerce .product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #1a1a1a;
    color: #fff;
    padding: 3px 8px;
    font-size: 0.6rem;
    font-weight: 600;
    z-index: 1;
}

.mockup--ecommerce .product-badge.sale {
    background: #e53935;
}

.mockup--ecommerce .product-image {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: #f0f0f0;
}

.mockup--ecommerce .product-info {
    padding: 10px;
}

.product-name {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-price {
    font-size: 0.8rem;
    font-weight: 700;
}

.product-price s {
    color: #999;
    font-weight: 400;
    margin-left: 5px;
}

/* =================================
   PORTFOLIO MOCKUP
   ================================= */

.mockup--portfolio {
    background: #0a0a0a;
    color: #fff;
}

.portfolio-nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b9d, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.portfolio-links span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.portfolio-hero {
    padding: 30px 20px 20px;
}

.intro-label {
    display: block;
    color: #ff6b9d;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

.portfolio-hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.portfolio-hero p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    max-width: 300px;
}

.portfolio-link {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 10px;
    padding: 0 20px 20px;
    height: 180px;
}

.portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.item-bg {
    position: absolute;
    inset: 0;
}

.item-bg--1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.item-bg--2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.item-bg--3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
}

.item-category {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.item-title {
    font-size: 0.8rem;
    font-weight: 600;
}

/* =================================
   RESTAURANT MOCKUP (Ivy Asia Luxury Style)
   ================================= */

.mockup--restaurant {
    background: #0d0d0d;
    color: #f5ebe0;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.mockup--restaurant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.restaurant-nav {
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
}

/* Stacked nav variant for Olive Garden */
.restaurant-nav--stacked {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
}

.restaurant-links--centered {
    justify-content: center;
    flex: none;
    gap: 25px;
}

/* Force equal widths on left and right nav sections to center logo */
.restaurant-nav .restaurant-links {
    flex: 1;
}

.restaurant-nav .restaurant-links:first-child {
    text-align: left;
    justify-content: flex-start;
}

.restaurant-nav .restaurant-links:last-child {
    text-align: right;
    justify-content: flex-end;
}

.restaurant-logo {
    font-family: var(--font-elegant);
    font-size: 1.4rem;
    color: #d4af37;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.restaurant-links span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s ease;
}

.restaurant-hero {
    padding: 45px 25px 30px;
    position: relative;
    z-index: 1;
}

.restaurant-tagline {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: 500;
}

.restaurant-hero h1 {
    font-family: var(--font-elegant);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.15;
    letter-spacing: 0.03em;
    color: #fff;
}

.restaurant-hero p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
    font-style: italic;
    letter-spacing: 0.02em;
}

.restaurant-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.restaurant-btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #b8962c 100%);
    color: #0d0d0d;
    border: none;
    padding: 14px 30px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.restaurant-btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 14px 30px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Ivy Asia style divider */
.restaurant-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
    position: relative;
    z-index: 1;
}

.restaurant-divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.restaurant-divider-icon {
    color: #d4af37;
    font-size: 0.8rem;
}

.restaurant-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 22px 20px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    margin: 0;
    position: relative;
    z-index: 1;
}

.restaurant-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.restaurant-feature .feature-icon {
    font-size: 1.3rem;
    color: #d4af37;
}

.restaurant-feature span:last-child {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.restaurant-hours {
    padding: 15px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* =================================
   REAL ESTATE MOCKUP
   ================================= */

.mockup--realestate {
    background: #f8f9fa;
    color: #1a1a2e;
}

.realestate-nav {
    background: #1a1a2e;
    padding: 12px 20px;
}

.realestate-logo {
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.realestate-logo span {
    color: #c9a962;
    font-weight: 400;
}

.realestate-links span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

.realestate-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5a 100%);
    color: #fff;
    padding: 35px 20px 30px;
    text-align: center;
}

.realestate-hero h1 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.realestate-hero p {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    max-width: 450px;
    margin: 0 auto 15px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 0.8rem;
    color: #1a1a2e;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: #c9a962;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.search-tags {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
}

.search-tags > span:first-child {
    opacity: 0.6;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 15px;
    cursor: pointer;
}

.property-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
}

.mockup--realestate .property-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.mockup--realestate .property-image {
    height: 80px;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
}

.property-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #c9a962;
    color: #fff;
    padding: 3px 8px;
    font-size: 0.6rem;
    font-weight: 600;
}

.property-details {
    padding: 12px;
}

.property-price {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.property-address {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 8px;
}

.property-specs {
    display: flex;
    gap: 12px;
    font-size: 0.7rem;
    color: #999;
}

/* =================================
   VIEW STYLES HINT
   ================================= */

.view-styles-hint {
    color: var(--color-primary);
    font-size: 1rem;
    margin-top: 1.5rem;
    font-weight: 500;
}

/* =================================
   CRM DASHBOARD MOCKUP
   ================================= */

.mockup--crm {
    background: #f5f7fa;
    color: #1e293b;
    display: flex;
    height: 100%;
}

.crm-sidebar {
    width: 180px;
    background: #1e293b;
    color: #fff;
    padding: 15px;
    flex-shrink: 0;
}

.crm-logo {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #3b82f6;
}

.crm-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.crm-menu-item {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #94a3b8;
    cursor: pointer;
}

.crm-menu-item.active {
    background: #3b82f6;
    color: #fff;
}

.crm-main {
    flex: 1;
    padding: 20px;
    overflow: hidden;
}

.crm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.crm-header h1 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.crm-user {
    width: 35px;
    height: 35px;
    background: #3b82f6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.crm-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.crm-stat-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.crm-stat-label {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
    margin-bottom: 5px;
}

.crm-stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
}

.crm-stat-change {
    font-size: 0.65rem;
    font-weight: 600;
}

.crm-stat-change.positive {
    color: #10b981;
}

.crm-stat-change.negative {
    color: #ef4444;
}

.crm-table {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.crm-table-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.crm-table-header span:last-child {
    color: #3b82f6;
    font-size: 0.7rem;
    cursor: pointer;
}

.crm-table-row {
    display: grid;
    grid-template-columns: 100px 65px 1fr;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #f1f5f9;
    font-size: 0.75rem;
}

.deal-name {
    font-weight: 500;
}

.deal-value {
    color: #64748b;
}

.deal-status {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    text-align: center;
    justify-self: end;
}

.deal-status.won {
    background: #dcfce7;
    color: #16a34a;
}

.deal-status.pending {
    background: #fef3c7;
    color: #d97706;
}

.deal-status.negotiation {
    background: #dbeafe;
    color: #2563eb;
}

/* =================================
   AI TOOL MOCKUP (Obviously AI-Powered)
   ================================= */

.mockup--ai-tool {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #0f172a 100%);
    color: #fff;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Video background for AI tool mockup */
.ai-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Neural network animated background */
.mockup--ai-tool::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* Floating particles effect */
.mockup--ai-tool::after {
    content: '✨';
    position: absolute;
    top: 15%;
    right: 10%;
    font-size: 0.8rem;
    animation: aiFloat 3s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes aiFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-10px) rotate(10deg); opacity: 1; }
}

@keyframes aiPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(139, 92, 246, 0.5), 0 0 15px rgba(139, 92, 246, 0.3); }
    50% { box-shadow: 0 0 10px rgba(139, 92, 246, 0.8), 0 0 25px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3); }
}

@keyframes aiGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes typewriter {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.ai-tool-nav {
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding: 12px 20px;
    position: relative;
    z-index: 1;
}

.ai-tool-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
}

.ai-tool-icon {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: aiGlow 2s ease-in-out infinite;
}

.ai-tool-links span {
    font-size: 0.75rem;
    color: #94a3b8;
}

.ai-tool-links span.active {
    color: #fff;
    font-weight: 600;
}

.ai-tool-credits {
    font-size: 0.7rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    color: #a78bfa;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.ai-tool-hero {
    text-align: center;
    padding: 25px 20px 15px;
    position: relative;
    z-index: 1;
}

/* AI Badge */
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.4);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: #a78bfa;
    margin-bottom: 15px;
    animation: aiPulse 2s ease-in-out infinite;
}

.ai-badge-sparkle {
    animation: aiGlow 1.5s ease-in-out infinite;
}

.ai-tool-hero h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-tool-hero p {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* AI Input with typing cursor */
.ai-input-container {
    position: relative;
    max-width: 400px;
    margin: 15px auto 0;
}

.ai-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 12px 50px 12px 15px;
    color: #94a3b8;
    font-size: 0.8rem;
    font-style: italic;
}

.ai-input-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    color: #fff;
    font-size: 0.75rem;
    cursor: pointer;
}

.ai-cursor {
    display: inline-block;
    width: 2px;
    height: 14px;
    background: #8b5cf6;
    margin-left: 2px;
    animation: typewriter 1s step-end infinite;
    vertical-align: middle;
}

.ai-tool-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 15px 20px;
    position: relative;
    z-index: 1;
}

.ai-tool-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.ai-tool-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(59, 130, 246, 0.5));
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.ai-tool-card:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.ai-tool-card:hover::before {
    opacity: 0.15;
}

.ai-tool-card-icon {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 8px;
}

.ai-tool-card h3 {
    font-size: 0.75rem;
    margin-bottom: 3px;
    color: #fff;
}

.ai-tool-card p {
    font-size: 0.6rem;
    color: #64748b;
    margin: 0;
}

/* AI sparkle indicator on cards */
.ai-sparkle {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6rem;
    animation: aiGlow 2s ease-in-out infinite;
}

.ai-tool-status {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    margin: 0 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.ai-status-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: aiGlow 1.5s ease-in-out infinite;
}

.ai-status-text {
    font-size: 0.7rem;
    color: #94a3b8;
}

.ai-status-model {
    font-size: 0.65rem;
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    padding: 4px 10px;
    border-radius: 12px;
}

.ai-tool-recent {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    margin: 0 20px;
    border-radius: 10px;
}

.ai-tool-recent-label {
    font-size: 0.65rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 10px;
}

.ai-tool-recent-items {
    display: flex;
    gap: 10px;
}

.ai-tool-recent-items span {
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    color: #94a3b8;
}

/* =================================
   LAW FIRM MOCKUP (KPMG Corporate Style)
   ================================= */

.mockup--law {
    background: #ffffff;
    color: #1a1a2e;
    height: 100%;
}

.law-nav {
    background: #00338D;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.law-logo {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
}

.law-links {
    display: flex;
    gap: 25px;
}

.law-links span {
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.law-hero {
    background: linear-gradient(135deg, #00338D 0%, #001f5c 100%);
    color: #fff;
    padding: 35px 25px 30px;
    position: relative;
    overflow: hidden;
}

.law-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.05) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.law-hero h1 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.law-hero h1 strong {
    font-weight: 700;
}

.law-hero p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    max-width: 350px;
}

.law-btn {
    background: #fff;
    color: #00338D;
    border: none;
    padding: 12px 28px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* KPMG-style Stats Row */
.law-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.law-stat {
    background: #fff;
    padding: 20px 15px;
    text-align: center;
}

.law-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00338D;
    line-height: 1;
    margin-bottom: 5px;
}

.law-stat-label {
    font-size: 0.65rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.law-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
}

.law-service {
    background: #fff;
    text-align: left;
    padding: 18px 15px;
    border-left: 3px solid #00338D;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.law-service-icon {
    font-size: 1.3rem;
    margin-bottom: 8px;
    display: block;
}

.law-service h3 {
    font-size: 0.8rem;
    margin-bottom: 4px;
    color: #1a1a2e;
    font-weight: 600;
}

.law-service p {
    font-size: 0.65rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.law-accreditations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 12px 20px;
    background: #00338D;
}

.law-accreditations span {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* =================================
   CLEAN E-COMMERCE MOCKUP
   ================================= */

.mockup--ecommerce-clean {
    background: #faf9f7;
    color: #2c2c2c;
}

.ecom-clean-nav {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.ecom-clean-logo {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: #2c2c2c;
}

.ecom-clean-links span {
    font-size: 0.75rem;
    color: #666;
}

.ecom-clean-icons {
    font-size: 0.75rem;
    color: #666;
    display: flex;
    gap: 15px;
}

.ecom-clean-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45)), url('images/furniture.jpeg') center/cover;
    padding: 50px 30px;
    position: relative;
}

.ecom-clean-hero-text {
    max-width: 350px;
}

.ecom-clean-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a962;
    margin-bottom: 12px;
}

.ecom-clean-hero h1 {
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.2;
    color: #fff;
}

.ecom-clean-hero p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.ecom-clean-btn {
    background: #2c2c2c;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 0.8rem;
    cursor: pointer;
}

.ecom-clean-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 25px 20px;
    background: #fff;
}

.ecom-clean-product {
    text-align: center;
}

.ecom-clean-img {
    height: 80px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.ecom-clean-name {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.ecom-clean-price {
    font-size: 0.85rem;
    font-weight: 600;
}

/* =================================
   FURNITURE FULL BACKGROUND VARIANT
   ================================= */

.mockup--furniture-fullbg {
    background: url('images/furniture.jpeg') center/cover;
    position: relative;
    display: flex;
    flex-direction: column;
}

.furniture-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 30%,
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0, 0, 0, 0.85) 100%);
    pointer-events: none;
    z-index: 1;
}

.furniture-nav-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.furniture-nav-overlay .ecom-clean-logo,
.furniture-nav-overlay .ecom-clean-links span,
.furniture-nav-overlay .ecom-clean-icons span {
    color: #fff;
}

.furniture-content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 30px 40px;
    position: relative;
    z-index: 2;
}

.furniture-text-right {
    max-width: 280px;
    text-align: right;
}

.furniture-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a962;
    margin-bottom: 12px;
}

.furniture-text-right h1 {
    font-family: var(--font-elegant);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.15;
    color: #fff;
}

.furniture-text-right p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.5;
}

.furniture-btn {
    background: #c9a962;
    color: #1a1a1a;
    border: none;
    padding: 14px 28px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.furniture-btn:hover {
    background: #1a1a1a;
    color: #c9a962;
    transform: translateY(-2px);
}

/* =================================
   BAKERY MOCKUP
   ================================= */

.mockup--bakery {
    background: #fdf8f4;
    color: #4a3728;
}

.bakery-nav {
    padding: 15px 20px;
    border-bottom: 1px solid #e8ddd4;
}

.bakery-logo {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: #8b5a2b;
}

.bakery-links span {
    font-size: 0.75rem;
    color: #8b7355;
}

.bakery-hero {
    background: linear-gradient(rgba(75, 55, 40, 0.6), rgba(75, 55, 40, 0.7)), url('images/bakery.jpeg') center/cover;
    color: #fff;
    padding: 50px 25px;
    text-align: center;
}

.bakery-hero h1 {
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.2;
}

.bakery-hero p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.bakery-btn {
    background: #fff;
    color: #8b5a2b;
    border: none;
    padding: 12px 25px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.bakery-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 25px 20px;
}

.bakery-item {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.bakery-img {
    font-size: 2rem;
    margin-bottom: 10px;
}

.bakery-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.bakery-price {
    font-size: 0.85rem;
    color: #8b5a2b;
    font-weight: 600;
}

.bakery-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 15px;
    font-size: 0.7rem;
    color: #8b7355;
    background: #f5ede5;
}

/* =================================
   FITNESS MOCKUP
   ================================= */

.mockup--fitness {
    background: #0a0a0a;
    color: #fff;
}

.fitness-nav {
    padding: 15px 20px;
    border-bottom: 1px solid #222;
}

.fitness-logo {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #fff;
}

.fitness-links span {
    font-size: 0.75rem;
    color: #888;
}

.fitness-hero {
    padding: 50px 25px 40px;
    text-align: center;
}

.fitness-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.1;
}

.fitness-hero p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 25px;
}

.fitness-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.fitness-btn-primary {
    background: #ef4444;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.fitness-btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #444;
    padding: 12px 25px;
    font-size: 0.8rem;
    cursor: pointer;
}

.fitness-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 30px 20px;
    background: linear-gradient(rgba(17, 17, 17, 0.85), rgba(17, 17, 17, 0.9)), url('images/gym.jpeg') center/cover;
}

.fitness-stat {
    text-align: center;
}

.fitness-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ef4444;
}

.fitness-stat-label {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.fitness-hours {
    text-align: center;
    padding: 15px;
    font-size: 0.7rem;
    color: #666;
}

/* =================================
   INTERACTIVE HOVER EFFECTS
   All mockup interactive elements
   ================================= */

/* Make card NOT use pointer cursor by default - only interactive elements */
.stack-card[data-position="0"] {
    cursor: default;
}

/* Interactive element class - applied via JS */
.mockup-interactive {
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Universal nav link hover effects */
.mockup-nav-links span {
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.mockup-nav-links span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.2s ease;
}

.mockup-nav-links span:hover::after {
    width: 100%;
}

.mockup-nav-links span:hover {
    opacity: 1 !important;
}

/* CRM specific hovers */
.crm-menu-item {
    cursor: pointer;
    transition: all 0.2s ease;
}

.crm-menu-item:hover:not(.active) {
    background: rgba(59, 130, 246, 0.2);
    color: #fff;
}

.crm-table-header span:last-child:hover {
    text-decoration: underline;
}

.crm-table-row {
    cursor: pointer;
    transition: background 0.2s ease;
}

.crm-table-row:hover {
    background: rgba(59, 130, 246, 0.05);
}

/* E-commerce hovers */
.ecom-clean-product {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.ecom-clean-product:hover {
    transform: translateY(-3px);
}

.ecom-clean-product:hover .ecom-clean-img {
    background: #eee;
}

.ecom-clean-btn:hover {
    background: #1a1a1a;
}

.ecom-clean-icons span {
    cursor: pointer;
    transition: color 0.2s ease;
}

.ecom-clean-icons span:hover {
    color: #2c2c2c;
}

/* Bakery hovers */
.bakery-item {
    cursor: pointer;
    transition: all 0.2s ease;
}

.bakery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bakery-btn:hover {
    background: #f5ede5;
}

.bakery-links span {
    cursor: pointer;
    transition: color 0.2s ease;
}

.bakery-links span:hover {
    color: #4a3728;
}

/* Law Firm hovers */
.law-links span:hover {
    color: #fff;
}

.law-btn:hover {
    background: #e5e5e5;
    transform: translateY(-1px);
}

.law-service {
    cursor: pointer;
    transition: all 0.2s ease;
}

.law-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-left-color: #001f5c;
}

/* Restaurant hovers */
.restaurant-links span:hover {
    color: #fff;
}

.restaurant-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.restaurant-btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}

/* Fitness hovers */
.fitness-links span {
    cursor: pointer;
    transition: color 0.2s ease;
}

.fitness-links span:hover {
    color: #fff;
}

.fitness-btn-primary:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

.fitness-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #888;
}

/* Wedding hovers */
.wedding-links span {
    cursor: pointer;
    transition: color 0.2s ease;
}

.wedding-links span:hover {
    color: #4a3f35;
}

.wedding-btn:hover {
    background: #a67c52;
    transform: translateY(-1px);
}

/* All buttons get pointer cursor */
.mockup button,
.mockup .btn,
[class*="-btn"] {
    cursor: pointer;
}

/* =================================
   E-COMMERCE STORE MOCKUP
   ================================= */

.mockup--store {
    background: #ffffff;
    color: #1a1a1a;
    height: 100%;
}

.store-nav {
    background: #ffffff;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.store-nav .store-logo {
    justify-self: start;
}

.store-nav .store-links {
    justify-self: center;
}

.store-nav .store-icons {
    justify-self: end;
}

.store-logo {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

.store-links {
    gap: 20px;
}

.store-links span {
    font-size: 0.75rem;
    color: #666;
    cursor: pointer;
}

.store-icons {
    display: flex;
    gap: 15px;
    font-size: 1.1rem;
}

.store-icon {
    cursor: pointer;
}

.store-cart {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ef4444;
    color: white;
    font-size: 0.55rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.store-sale-banner {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    padding: 25px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.store-sale-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.03) 10px,
        rgba(255,255,255,0.03) 20px
    );
    pointer-events: none;
}

.sale-content {
    position: relative;
    z-index: 1;
}

.sale-tag {
    display: inline-block;
    background: #fbbf24;
    color: #1a1a1a;
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    border-radius: 4px;
}

.store-sale-banner h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.store-sale-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.sale-countdown {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.sale-countdown-item {
    background: rgba(0,0,0,0.2);
    padding: 8px 12px;
    border-radius: 6px;
    min-width: 55px;
}

.sale-countdown-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.sale-countdown-label {
    display: block;
    font-size: 0.55rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.store-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
    background: #f9fafb;
}

.store-product {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.store-product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    z-index: 1;
}

.store-product-badge.sale {
    background: #ef4444;
    color: white;
}

.store-product-badge.new {
    background: #10b981;
    color: white;
}

.store-product-img {
    height: 85px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.store-product-info {
    padding: 12px;
}

.store-product-name {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.store-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-product-price .price-current {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.store-product-price .price-old {
    font-size: 0.8rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.store-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    font-size: 0.7rem;
    color: #6b7280;
}

/* =================================
   LIGHT SAAS SUBSCRIPTION MOCKUP
   ================================= */

.mockup--saas-light {
    background: linear-gradient(180deg, #faf9f8 0%, #f5f3f0 100%);
    color: #1a1a1a;
    height: 100%;
}

.saas-light-nav {
    background: white;
    padding: 12px 20px;
    border-bottom: 1px solid #e8e5e1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.saas-light-nav .saas-light-logo {
    justify-self: start;
}

.saas-light-nav .saas-light-links {
    justify-self: center;
}

.saas-light-nav .saas-light-cta {
    justify-self: end;
}

.saas-light-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.saas-logo-icon {
    color: #f97316;
    font-size: 1.2rem;
}

.saas-light-links {
    gap: 25px;
}

.saas-light-links span {
    font-size: 0.8rem;
    color: #64748b;
    cursor: pointer;
}

.saas-light-cta {
    display: flex;
    gap: 10px;
}

.saas-light-btn-login {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 6px 12px;
}

.saas-light-btn-signup {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.saas-light-hero {
    text-align: center;
    padding: 25px 20px 15px;
}

.saas-light-badge {
    display: inline-block;
    background: #fef3c7;
    color: #b45309;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.saas-light-hero h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    color: #1a1a1a;
}

.saas-light-hero p {
    font-size: 0.8rem;
    color: #64748b;
    max-width: 350px;
    margin: 0 auto;
    line-height: 1.5;
}

.saas-light-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 15px 20px 20px;
}

.saas-pricing-card {
    background: white;
    border: 1px solid #e8e5e1;
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.saas-pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.saas-pricing-card.popular {
    border-color: #f97316;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.15);
}

.saas-popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f97316;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 600;
    white-space: nowrap;
}

.saas-pricing-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.saas-price {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.saas-currency {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
}

.saas-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.saas-amount.custom {
    font-size: 1.1rem;
}

.saas-period {
    font-size: 0.8rem;
    color: #64748b;
}

.saas-features {
    list-style: none;
    text-align: left;
    margin-bottom: 15px;
}

.saas-features li {
    font-size: 0.7rem;
    color: #64748b;
    padding: 4px 0;
}

.saas-plan-btn {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f3f4f6;
    color: #1a1a1a;
    border: none;
}

.saas-plan-btn.primary {
    background: #1a1a1a;
    color: white;
}

.saas-plan-btn:hover {
    transform: translateY(-1px);
}

/* =================================
   BROWSER BUTTON ANIMATIONS
   Close, Minimize, Maximize effects
   ================================= */

/* Close animation - shrinks and fades */
@keyframes closeAnimation {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(0) rotate(45deg); opacity: 0; }
}

/* Minimize animation - bounces down */
@keyframes minimizeAnimation {
    0% { transform: translateY(0) scale(1); }
    40% { transform: translateY(10px) scale(0.95); }
    60% { transform: translateY(5px) scale(0.97); }
    80% { transform: translateY(8px) scale(0.96); }
    100% { transform: translateY(100vh) scale(0.9); }
}

/* Card close animation */
.stack-card.closing {
    animation: closeAnimation 0.4s ease-out forwards;
}

/* Card minimize animation */
.stack-card.minimizing {
    animation: minimizeAnimation 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Browser dot tooltip hints on hover */
.dot--red::before,
.dot--yellow::before,
.dot--green::before {
    content: attr(data-tooltip);
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.6rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.dot--red:hover::before,
.dot--yellow:hover::before,
.dot--green:hover::before {
    opacity: 1;
}

/* =================================
   RESPONSIVE STYLES
   ================================= */

@media (max-width: 900px) {
    .stack-container {
        padding: 0 50px;
    }

    .card-stack {
        height: 520px;
    }

    .browser-content {
        height: 400px;
    }

    .mockup-hero {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mockup-hero-graphic {
        display: none;
    }

    .mockup-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .stack-showcase {
        padding: 2rem 0 6rem;
    }

    .stack-container {
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Card stack adjustments */
    .card-stack {
        height: 500px;
        margin-bottom: 20px;
        width: 100%;
    }

    .browser-content {
        height: 390px;
    }

    .browser-chrome {
        padding: 8px 10px;
    }

    .browser-url {
        display: none;
    }

    .browser-dots {
        gap: 6px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    /* Navigation buttons - horizontal layout below cards */
    .stack-nav {
        position: static;
        transform: none;
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        max-width: 50px;
        max-height: 50px;
        border-radius: 50%;
        flex-shrink: 0;
        flex-grow: 0;
        aspect-ratio: 1;
    }

    .stack-nav svg {
        width: 20px;
        height: 20px;
    }

    .stack-nav--prev,
    .stack-nav--next {
        position: static;
    }

    /* Counter styling for mobile */
    .stack-counter {
        margin-top: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        width: 100%;
    }

    .counter-text {
        font-size: 1.1rem;
    }

    .counter-text .counter-current,
    .counter-text .counter-total,
    .counter-text .counter-sep {
        font-size: 1.1rem;
    }

    .card-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 12px;
    }

    .label-style {
        font-size: 0.8rem;
    }

    .label-desc {
        font-size: 0.75rem;
    }

    /* Hide some nav links on mobile */
    .mockup-nav-links {
        gap: 10px;
    }

    .mockup-nav-links span {
        font-size: 0.65rem;
    }

    /* CRM mobile */
    .crm-sidebar {
        width: 45px;
        padding: 8px;
        overflow: hidden;
    }

    .crm-logo {
        font-size: 0;
        margin-bottom: 12px;
        visibility: hidden;
    }

    .crm-logo::after {
        content: 'P';
        visibility: visible;
        font-size: 0.9rem;
        font-weight: 700;
        color: #3b82f6;
    }

    .crm-menu-item {
        padding: 5px;
        font-size: 0;
    }

    .crm-main {
        padding: 12px;
    }

    .crm-header h1 {
        font-size: 1rem;
    }

    .crm-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 12px;
    }

    .crm-stat-card {
        padding: 10px 8px;
    }

    .crm-stat-value {
        font-size: 1rem;
    }

    .crm-stat-label {
        font-size: 0.6rem;
    }

    .crm-table {
        padding: 10px;
    }

    .crm-table-row {
        font-size: 0.65rem;
    }

    /* E-commerce mobile */
    .ecom-clean-nav {
        padding: 10px 12px;
    }

    .ecom-clean-logo {
        font-size: 0.95rem;
    }

    .ecom-clean-links span {
        font-size: 0.65rem;
    }

    .ecom-clean-icons {
        font-size: 0.65rem;
        gap: 10px;
    }

    .ecom-clean-hero {
        padding: 30px 15px;
    }

    .ecom-clean-hero h1 {
        font-size: 1.3rem;
    }

    .ecom-clean-btn {
        padding: 10px 20px;
        font-size: 0.7rem;
    }

    .ecom-clean-products {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 15px 12px;
    }

    .ecom-clean-img {
        height: 60px;
        font-size: 1.5rem;
    }

    .ecom-clean-name {
        font-size: 0.7rem;
    }

    .ecom-clean-price {
        font-size: 0.75rem;
    }

    /* Furniture fullbg mobile */
    .furniture-content-wrapper {
        padding: 20px 15px;
    }

    .furniture-text-right {
        max-width: 200px;
    }

    .furniture-text-right h1 {
        font-size: 1.5rem;
    }

    .furniture-text-right p {
        font-size: 0.75rem;
        margin-bottom: 18px;
    }

    .furniture-btn {
        padding: 10px 20px;
        font-size: 0.7rem;
    }

    /* Restaurant stacked nav mobile */
    .restaurant-nav--stacked {
        gap: 8px;
        padding: 10px 12px;
    }

    .restaurant-links--centered {
        gap: 12px;
        flex-wrap: wrap;
    }

    /* Bakery mobile */
    .bakery-nav {
        padding: 10px 12px;
    }

    .bakery-logo {
        font-size: 1rem;
    }

    .bakery-links span {
        font-size: 0.65rem;
    }

    .bakery-hero {
        padding: 35px 15px;
    }

    .bakery-hero h1 {
        font-size: 1.4rem;
    }

    .bakery-btn {
        padding: 10px 20px;
        font-size: 0.7rem;
    }

    .bakery-featured {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 15px 12px;
    }

    .bakery-item {
        padding: 10px;
    }

    .bakery-img {
        font-size: 1.5rem;
    }

    .bakery-name {
        font-size: 0.7rem;
    }

    .bakery-price {
        font-size: 0.75rem;
    }

    .bakery-info {
        font-size: 0.6rem;
        gap: 15px;
        padding: 10px;
    }

    /* Store mobile */
    .store-nav {
        padding: 10px 12px;
    }

    .store-logo {
        font-size: 0.9rem;
    }

    .store-links {
        display: none;
    }

    .store-icons {
        font-size: 0.95rem;
        gap: 10px;
    }

    .cart-badge {
        width: 14px;
        height: 14px;
        font-size: 0.5rem;
    }

    .store-sale-banner {
        padding: 18px 15px;
    }

    .store-sale-banner h2 {
        font-size: 1.4rem;
    }

    .store-sale-banner p {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .sale-countdown {
        gap: 8px;
    }

    .sale-countdown-item {
        padding: 6px 10px;
        min-width: 45px;
    }

    .sale-countdown-value {
        font-size: 1.1rem;
    }

    .sale-countdown-label {
        font-size: 0.5rem;
    }

    .store-products {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 12px;
    }

    .store-product-badge {
        padding: 2px 6px;
        font-size: 0.5rem;
    }

    .store-product-img {
        height: 65px;
        font-size: 1.8rem;
    }

    .store-product-info {
        padding: 8px;
    }

    .store-product-name {
        font-size: 0.65rem;
        margin-bottom: 4px;
    }

    .store-product-price .price-current {
        font-size: 0.8rem;
    }

    .store-product-price .price-old {
        font-size: 0.65rem;
    }

    .store-footer {
        padding: 10px 12px;
        font-size: 0.6rem;
    }

    /* SaaS Light mobile */
    .saas-light-nav {
        padding: 10px 12px;
    }

    .saas-light-logo {
        font-size: 0.95rem;
    }

    .saas-light-links {
        display: none;
    }

    .saas-light-btn-login {
        display: none;
    }

    .saas-light-btn-signup {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .saas-light-hero {
        padding: 15px 12px 10px;
    }

    .saas-light-badge {
        font-size: 0.6rem;
        padding: 4px 10px;
        margin-bottom: 10px;
    }

    .saas-light-hero h1 {
        font-size: 1.2rem;
    }

    .saas-light-hero p {
        font-size: 0.7rem;
    }

    .saas-light-pricing {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 10px 12px 15px;
    }

    .saas-pricing-card {
        padding: 12px 8px;
        border-radius: 8px;
    }

    .saas-pricing-card h3 {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }

    .saas-popular-badge {
        font-size: 0.5rem;
        padding: 3px 8px;
        top: -8px;
    }

    .saas-price {
        margin-bottom: 8px;
    }

    .saas-currency {
        font-size: 0.7rem;
    }

    .saas-amount {
        font-size: 1.4rem;
    }

    .saas-amount.custom {
        font-size: 0.8rem;
    }

    .saas-period {
        font-size: 0.6rem;
    }

    .saas-features {
        margin-bottom: 10px;
    }

    .saas-features li {
        font-size: 0.55rem;
        padding: 2px 0;
    }

    .saas-plan-btn {
        padding: 8px 6px;
        font-size: 0.6rem;
    }

    /* AI Tool mobile */
    .ai-tool-nav {
        padding: 10px 12px;
    }

    .ai-tool-logo {
        font-size: 0.9rem;
    }

    .ai-tool-links {
        display: none;
    }

    .ai-tool-credits {
        font-size: 0.6rem;
        padding: 4px 10px;
    }

    .ai-tool-hero {
        padding: 15px 12px 10px;
    }

    .ai-badge {
        font-size: 0.6rem;
        padding: 4px 10px;
        margin-bottom: 10px;
    }

    .ai-tool-hero h1 {
        font-size: 1.2rem;
    }

    .ai-tool-hero p {
        font-size: 0.7rem;
    }

    .ai-input-container {
        margin: 10px auto 0;
    }

    .ai-input {
        padding: 10px 45px 10px 12px;
        font-size: 0.7rem;
    }

    .ai-input-btn {
        padding: 6px 10px;
        font-size: 0.65rem;
    }

    .ai-tool-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        padding: 10px 12px;
    }

    .ai-tool-card {
        padding: 10px 6px;
    }

    .ai-tool-card-icon {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }

    .ai-tool-card h3 {
        font-size: 0.6rem;
    }

    .ai-tool-card p {
        display: none;
    }

    .ai-sparkle {
        display: none;
    }

    .ai-tool-status {
        margin: 5px 12px;
        padding: 8px 12px;
    }

    .ai-status-text {
        font-size: 0.6rem;
    }

    .ai-status-model {
        font-size: 0.55rem;
        padding: 3px 8px;
    }

    /* Law Firm mobile */
    .law-nav {
        padding: 10px 12px;
    }

    .law-logo {
        font-size: 0.85rem;
    }

    .law-links {
        display: none;
    }

    .law-hero {
        padding: 25px 15px 20px;
    }

    .law-hero h1 {
        font-size: 1.3rem;
    }

    .law-hero p {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }

    .law-btn {
        padding: 10px 20px;
        font-size: 0.7rem;
    }

    .law-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .law-stat {
        padding: 12px 8px;
    }

    .law-stat-number {
        font-size: 1.3rem;
    }

    .law-stat-label {
        font-size: 0.55rem;
    }

    .law-services {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 12px;
    }

    .law-service {
        padding: 10px 8px;
    }

    .law-service-icon {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .law-service h3 {
        font-size: 0.65rem;
    }

    .law-service p {
        display: none;
    }

    .law-accreditations {
        gap: 12px;
        padding: 8px 12px;
    }

    .law-accreditations span {
        font-size: 0.55rem;
    }

    /* Restaurant mobile */
    .restaurant-nav {
        gap: 12px;
        padding: 12px 10px;
        flex-wrap: nowrap;
    }

    .restaurant-logo {
        font-size: 1rem;
    }

    .restaurant-links span {
        font-size: 0.55rem;
        letter-spacing: 0.08em;
    }

    .restaurant-hero {
        padding: 25px 15px 15px;
    }

    .restaurant-tagline {
        font-size: 0.55rem;
        margin-bottom: 12px;
    }

    .restaurant-hero h1 {
        font-size: 1.5rem;
    }

    .restaurant-hero p {
        font-size: 0.75rem;
        margin-bottom: 18px;
    }

    .restaurant-cta {
        gap: 10px;
    }

    .restaurant-btn-primary,
    .restaurant-btn-secondary {
        padding: 10px 18px;
        font-size: 0.6rem;
    }

    .restaurant-divider {
        margin: 15px 0;
    }

    .restaurant-features {
        gap: 25px;
        padding: 15px;
    }

    .restaurant-feature .feature-icon {
        font-size: 1rem;
    }

    .restaurant-feature span:last-child {
        font-size: 0.55rem;
    }

    .restaurant-hours {
        font-size: 0.55rem;
        padding: 10px;
    }

    /* Fitness mobile */
    .fitness-nav {
        padding: 10px 12px;
    }

    .fitness-logo {
        font-size: 0.9rem;
    }

    .fitness-links span {
        font-size: 0.65rem;
    }

    .fitness-hero {
        padding: 30px 15px 25px;
    }

    .fitness-hero h1 {
        font-size: 1.5rem;
    }

    .fitness-hero p {
        font-size: 0.75rem;
        margin-bottom: 18px;
    }

    .fitness-cta {
        gap: 10px;
    }

    .fitness-btn-primary,
    .fitness-btn-secondary {
        padding: 10px 18px;
        font-size: 0.7rem;
    }

    .fitness-stats {
        gap: 30px;
        padding: 20px 15px;
    }

    .fitness-stat-num {
        font-size: 1.4rem;
    }

    .fitness-stat-label {
        font-size: 0.6rem;
    }

    .fitness-hours {
        font-size: 0.6rem;
    }

    /* Wedding mobile */
    .wedding-nav {
        padding-top: 15px;
    }

    .wedding-links {
        gap: 15px;
    }

    .wedding-links span {
        font-size: 0.7rem;
    }

    .wedding-hero {
        padding: 15px 15px 10px;
    }

    .wedding-script {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }

    .wedding-names {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .wedding-date {
        font-size: 1rem;
    }

    .wedding-venue {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    .wedding-btn {
        padding: 8px 20px;
        font-size: 0.75rem;
    }

    .wedding-countdown {
        gap: 20px;
        margin: 0 12px 15px;
        padding: 10px;
    }

    .countdown-num {
        font-size: 1.3rem;
    }

    .countdown-label {
        font-size: 0.55rem;
    }
}

@media (max-width: 480px) {
    .stack-showcase {
        padding: 1.5rem 0 5rem;
    }

    .card-stack {
        height: 460px;
    }

    .browser-content {
        height: 360px;
    }

    .browser-chrome {
        padding: 6px 8px;
    }

    .mockup {
        font-size: 11px;
    }

    .mockup-nav {
        padding: 8px 10px;
    }

    .stack-nav {
        width: 60px;
        height: 40px;
    }

    .stack-counter {
        gap: 12px;
    }

    /* CRM - hide some elements */
    .crm-table-row:last-child {
        display: none;
    }

    /* E-commerce - 2 columns */
    .ecom-clean-products {
        grid-template-columns: repeat(2, 1fr);
    }

    .ecom-clean-products .ecom-clean-product:last-child {
        display: none;
    }

    /* Furniture fullbg 480px */
    .furniture-text-right h1 {
        font-size: 1.3rem;
    }

    .furniture-text-right p {
        font-size: 0.7rem;
    }

    .furniture-tag {
        font-size: 0.55rem;
    }

    /* Bakery - 2 columns */
    .bakery-featured {
        grid-template-columns: repeat(2, 1fr);
    }

    .bakery-featured .bakery-item:last-child {
        display: none;
    }

    /* AI Tool - 2 columns */
    .ai-tool-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-tool-grid .ai-tool-card:nth-child(n+3) {
        display: none;
    }

    /* Wedding adjustments */
    .wedding-hero {
        padding: 10px 10px 8px;
    }

    .wedding-script {
        font-size: 0.7rem;
        margin-bottom: 3px;
    }

    .wedding-names {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .wedding-divider {
        margin-bottom: 8px;
    }

    .wedding-date {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .wedding-venue {
        font-size: 0.65rem;
        margin-bottom: 8px;
    }

    .wedding-btn {
        padding: 6px 16px;
        font-size: 0.7rem;
    }

    .wedding-countdown {
        gap: 12px;
        margin: 0 10px 10px;
        padding: 8px;
    }

    .countdown-num {
        font-size: 1rem;
    }

    .countdown-label {
        font-size: 0.5rem;
    }

    /* Restaurant - hide some items */
    .restaurant-links span:nth-child(2) {
        display: none;
    }
}

/* Swipe hint animation */
@keyframes swipeHint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

.stack-card[data-position="0"]:not(.sliding-out):not(.sliding-out-prev) {
    animation: swipeHint 2s ease-in-out 3s 2;
}
