/* Product Pages Specific Styles */

.product-hero {
    margin-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.product-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.animated-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    animation: gradientShift 10s ease infinite;
}

.vending-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('vending-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vending-bg-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(20, 20, 40, 0.92) 0%, 
        rgba(40, 60, 90, 0.88) 50%,
        rgba(85, 153, 204, 0.85) 100%);
}

.hero-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('comedor.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(30, 30, 50, 0.9) 0%, 
        rgba(80, 40, 120, 0.85) 50%,
        rgba(140, 60, 150, 0.8) 100%);
}

.cantina-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('cantina.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cantina-bg-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(20, 40, 60, 0.92) 0%, 
        rgba(40, 80, 120, 0.88) 50%,
        rgba(79, 172, 254, 0.85) 100%);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.product-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.vending-hero .product-hero-content {
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

@media (max-width: 1024px) {
    .vending-hero .product-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .packaging-showcase {
        margin-top: 2rem;
    }
    
    .packaging-image {
        max-width: 400px;
    }
}

.vending-hero .product-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vending-hero .hero-features {
    justify-content: center;
}

.vending-hero .product-hero-buttons {
    justify-content: center;
}

.product-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.product-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.product-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 500;
}

.product-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Packaging Showcase for Vending */
.packaging-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.packaging-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.packaging-image.animate-float {
    animation: floatCard 4s ease-in-out infinite;
}

.packaging-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.packaging-badge svg {
    color: #4CAF50;
}

/* Floating Cards for Vending */
.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20px;
    left: -50px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -50px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20px;
    left: 0;
    animation-delay: 2s;
}

.card-icon {
    font-size: 1.5rem;
}

.card-text {
    font-weight: 600;
    color: var(--text-dark);
}

/* Payment Methods Section */
.payment-methods {
    padding: 5rem 0;
    background: white;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.method-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.method-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Features Detailed Section */
.features-detailed {
    padding: 5rem 0;
    background: var(--bg-light);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse .feature-content {
    direction: ltr;
}

.feature-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-list svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    display: flex;
    gap: 2rem;
}

.visual-stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Dashboard Preview */
.dashboard-preview {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.preview-header {
    background: #f3f4f6;
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
}

.preview-content {
    display: flex;
    padding: 1rem;
    gap: 1rem;
}

.preview-sidebar {
    width: 60px;
    background: var(--bg-light);
    border-radius: 10px;
    height: 200px;
}

.preview-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.preview-card {
    background: var(--bg-light);
    height: 50px;
    border-radius: 8px;
}

/* Integration Icons */
.integration-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.integration-icon {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.integration-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.integration-icon span {
    display: block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Integration Section */
.integration-section {
    padding: 5rem 0;
    background: white;
}

.integrations-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.integration-item {
    padding: 1rem 2rem;
    background: var(--bg-light);
    border-radius: 25px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.integration-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Food Page Specific Styles */
.kitchen-illustration {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.kitchen-illustration svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Kitchen Stats Bar */
.kitchen-stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(147, 51, 234, 0.05));
    border-radius: 0 0 20px 20px;
    padding: 1.5rem;
    margin-top: -2px;
    border-top: 2px solid rgba(79, 70, 229, 0.1);
}

.kitchen-stat {
    text-align: center;
    flex: 1;
    position: relative;
}

.kitchen-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: rgba(0, 0, 0, 0.1);
}

.kitchen-stat .stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.kitchen-stat .stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Keep old classes for backwards compatibility */
.menu-overlay-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.menu-float-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatCard 3s ease-in-out infinite;
}

.menu-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.menu-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.05));
    border-radius: 0 20px 0 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    background: white;
}

.benefit-card:hover::before {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.08));
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-stat {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 1;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.1);
}

.benefit-card:hover .benefit-stat {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Workflow Section */
.workflow-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.workflow-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.workflow-tab {
    padding: 0.75rem 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.workflow-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.workflow-panel {
    display: none;
}

.workflow-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.workflow-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Features Food Section */
.features-food {
    padding: 5rem 0;
    background: white;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-food {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-card-food:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-header svg {
    color: var(--primary-color);
}

/* Cantina Page Specific Styles */
.pos-interface {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    max-width: 400px;
}

.pos-screen {
    background: #1f2937;
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
}

.pos-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #9ca3af;
}

.pos-products {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pos-product {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.pos-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pos-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.pos-btn {
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pos-btn.pay {
    background: #10b981;
    color: white;
}

.pos-btn.cancel {
    background: #ef4444;
    color: white;
}

.pos-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.pos-stat {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

/* Speed Section */
.speed-section {
    padding: 5rem 0;
    background: white;
}

.speed-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.comparison-card {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.comparison-card.traditional {
    background: #fee2e2;
    border: 2px solid #ef4444;
}

.comparison-card.paypoint {
    background: #dcfce7;
    border: 2px solid #10b981;
}

.time-display {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
}

.comparison-card.traditional .time-display {
    color: #ef4444;
}

.comparison-card.paypoint .time-display {
    color: #10b981;
}

.comparison-list {
    list-style: none;
    text-align: left;
}

.comparison-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-list li.negative::before {
    content: "✗";
    color: #ef4444;
    font-weight: bold;
}

.comparison-list li.positive::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
}

.vs-divider {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
}

/* Interface Section */
.interface-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.interface-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.interface-feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.interface-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Payment Integration */
.payment-integration {
    padding: 5rem 0;
    background: white;
}

/* Payment Methods Grid for Cantina */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payment-method-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.payment-method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method-icon svg {
    color: white;
}

.payment-method-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.payment-method-card p {
    color: var(--text-light);
    line-height: 1.5;
}

.payment-integration-footer {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

.integration-stat {
    text-align: center;
}

.integration-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.integration-stat .stat-label {
    color: var(--text-light);
    margin-top: 0.5rem;
    display: block;
}

/* Workflow Columns Layout */
.workflow-columns {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.workflow-column {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
}

.workflow-column-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.workflow-column-title svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.workflow-divider {
    width: 2px;
    background: linear-gradient(to bottom, transparent, #e0e0e0 20%, #e0e0e0 80%, transparent);
    align-self: stretch;
    position: relative;
}

.workflow-divider::after {
    content: "VS";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 0.5rem;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    font-weight: 700;
    color: var(--text-light);
    font-size: 0.875rem;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.workflow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 45px;
    width: 2px;
    height: calc(100% + 1rem);
    background: #e0e0e0;
}

.step-number {
    min-width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 1;
    position: relative;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .workflow-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .workflow-divider {
        display: none;
    }
    
    .workflow-column {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

/* Old payment flow styles */
.payment-flow {
    position: relative;
    height: 400px;
    margin-top: 3rem;
}

.payment-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.center-logo {
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.center-logo span {
    font-weight: 700;
    margin-top: 0.5rem;
}

.payment-methods-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.payment-method-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(calc(var(--i) * 60deg)) translateX(200px) rotate(calc(var(--i) * -60deg));
    transition: all 0.3s ease;
}

.payment-method-item:hover {
    transform: rotate(calc(var(--i) * 60deg)) translateX(200px) rotate(calc(var(--i) * -60deg)) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.payment-icon {
    font-size: 1.5rem;
}

.payment-method-item span {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
}

/* Use Cases */
.use-cases {
    padding: 5rem 0;
    background: var(--bg-light);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.use-case-stats {
    margin-top: 1rem;
    padding: 0.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Reporting Section */
.reporting-section {
    padding: 5rem 0;
    background: white;
}

.reporting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.report-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.report-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

/* Testimonial Section */
.testimonial-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.quote-icon {
    display: inline-block;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .kitchen-stats-bar {
        padding: 1rem;
    }
    
    .kitchen-stat .stat-value {
        font-size: 1.25rem;
    }
    
    .kitchen-stat .stat-label {
        font-size: 0.75rem;
    }
    
    .product-hero-title {
        font-size: 2.5rem;
    }
    
    .product-hero-image {
        order: -1;
    }
    
    .floating-card {
        display: none;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .speed-comparison {
        grid-template-columns: 1fr;
    }
    
    .vs-divider {
        display: none;
    }
    
    .payment-flow {
        height: 600px;
    }
    
    .payment-method-item {
        transform: none;
        position: static;
        margin: 0.5rem;
        display: inline-flex;
    }
    
    .payment-methods-circle {
        position: static;
        width: auto;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 2rem;
    }
}