

:root {
    --restaurant-primary: #ff6b35;
    --restaurant-secondary: #f7931e;
    --restaurant-dark: #2c1810;
    --restaurant-accent: #ff4757;
    --restaurant-success: #26de81;
    --restaurant-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --restaurant-shadow: 0 10px 40px rgba(255, 107, 53, 0.15);
}

/* Hero Section */
.restaurant-page .hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f09 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.restaurant-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.restaurant-page .hero-content {
    position: relative;
    z-index: 2;
}

.restaurant-page .badge-custom {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: var(--restaurant-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.restaurant-page .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.restaurant-page .hero-title .highlight {
    background: var(--restaurant-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.restaurant-page .hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.8;
}

.restaurant-page .hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.restaurant-page .comparison-table .featured-col {
    background: rgba(255, 107, 53, 0.05);
    color: var(--restaurant-primary);
}
.restaurant-page .feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: #fff;
    font-size: 0.95rem;
}

.restaurant-page .feature-badge i {
    color: var(--restaurant-primary);
}

.restaurant-page .hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.restaurant-page .hero-actions .btn-primary {
    background: var(--restaurant-gradient);
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.restaurant-page .hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.restaurant-page .hero-actions .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 13px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.restaurant-page .hero-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.restaurant-page .hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.restaurant-page .stat-mini {
    display: flex;
    flex-direction: column;
}

.restaurant-page .stat-mini strong {
    font-size: 1.5rem;
    color: var(--restaurant-primary);
    font-weight: 700;
}

.restaurant-page .stat-mini span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Mockup */
.restaurant-page .hero-mockup {
    position: relative;
    z-index: 2;
}

.restaurant-page .mockup-container {
    position: relative;
    border-radius: 20px;
  
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.restaurant-page .mockup-container .main-image {
    border-radius: 20px;
    width: 100%;
    height: auto;
}

.restaurant-page .floating-order {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: floatAnimation 3s ease-in-out infinite;
}

.restaurant-page .order-1 {
    top: 10%;
    right: -10%;
    width: 300px;
    animation-delay: 0s;
}

.restaurant-page .order-2 {
    bottom: 30%;
    left: -15%;
    width: 250px;
    animation-delay: 1s;
}

.restaurant-page .order-3 {
    bottom: 10%;
    right: -5%;
    width: 280px;
    animation-delay: 2s;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.restaurant-page .order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.restaurant-page .order-badge {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.restaurant-page .order-badge.new {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.restaurant-page .order-time {
    font-size: 0.8rem;
    color: #666;
}

.restaurant-page .order-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.restaurant-page .order-item img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.restaurant-page .order-item h6 {
    font-size: 0.9rem;
    margin: 0;
    color: #2c1810;
    font-weight: 600;
}

.restaurant-page .order-item span {
    font-size: 0.75rem;
    color: #999;
}

.restaurant-page .order-item strong {
    margin-right: auto;
    color: var(--restaurant-primary);
    font-size: 0.95rem;
}

.restaurant-page .order-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.restaurant-page .stat-icon {
    width: 50px;
    height: 50px;
    background: var(--restaurant-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.restaurant-page .order-stats h6 {
    font-size: 1.1rem;
    margin: 0;
    color: #2c1810;
    font-weight: 700;
}

.restaurant-page .order-stats span {
    font-size: 0.8rem;
    color: #666;
}

.restaurant-page .stat-chart {
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--restaurant-success);
    font-weight: 600;
}

.restaurant-page .table-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.restaurant-page .table-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.restaurant-page .table-icon.occupied {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
}

.restaurant-page .table-status h6 {
    font-size: 1rem;
    margin: 0;
    color: #2c1810;
    font-weight: 600;
}

.restaurant-page .status-text {
    font-size: 0.8rem;
    color: #666;
}

.restaurant-page .table-time {
    margin-right: auto;
    font-weight: 600;
    color: var(--restaurant-primary);
}

/* Trusted Section */
.restaurant-page .trusted-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.restaurant-page .trusted-title {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.restaurant-page .trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.restaurant-page .logo-item img {
    height: 40px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.restaurant-page .logo-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* Features Grid Section */
.restaurant-page .features-grid-section {
    padding: 100px 0;
    background: #fff;
}

.restaurant-page .section-header {
    margin-bottom: 60px;
}

.restaurant-page .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50px;
    color: var(--restaurant-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.restaurant-page .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c1810;
    margin-bottom: 15px;
}

.restaurant-page .section-description {
    font-size: 1.1rem;
    color: #666;
}

.restaurant-page .feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.restaurant-page .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--restaurant-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.restaurant-page .feature-card:hover::before {
    opacity: 0.05;
}

.restaurant-page .feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--restaurant-primary);
    box-shadow: var(--restaurant-shadow);
}

.restaurant-page .feature-card.featured {
    border: 2px solid var(--restaurant-primary);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.15);
    transform: scale(1.05);
}

.restaurant-page .popular-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--restaurant-gradient);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.restaurant-page .feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.restaurant-page .icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: inherit;
    filter: blur(15px);
    opacity: 0.4;
    z-index: -1;
}

.restaurant-page .menu-icon {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.restaurant-page .order-icon {
    background: linear-gradient(135deg, #f7931e, #ffc837);
    color: white;
}

.restaurant-page .table-icon {
    background: linear-gradient(135deg, #ff4757, #ff6b35);
    color: white;
}

.restaurant-page .kitchen-icon {
    background: linear-gradient(135deg, #ff6348, #ff4757);
    color: white;
}

.restaurant-page .inventory-icon {
    background: linear-gradient(135deg, #26de81, #20bf6b);
    color: white;
}

.restaurant-page .delivery-icon {
    background: linear-gradient(135deg, #4b7bec, #3867d6);
    color: white;
}

.restaurant-page .crm-icon {
    background: linear-gradient(135deg, #a55eea, #8854d0);
    color: white;
}

.restaurant-page .accounting-icon {
    background: linear-gradient(135deg, #45aaf2, #2d98da);
    color: white;
}

.restaurant-page .analytics-icon {
    background: linear-gradient(135deg, #fc5c65, #eb3b5a);
    color: white;
}

.restaurant-page .feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.restaurant-page .feature-desc {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.restaurant-page .feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.restaurant-page .feature-list li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
}

.restaurant-page .feature-list i {
    color: var(--restaurant-success);
    margin-left: 10px;
}

.restaurant-page .feature-link {
    color: var(--restaurant-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.restaurant-page .feature-link:hover {
    gap: 12px;
    color: var(--restaurant-secondary);
}

/* Restaurant Types Section */
.restaurant-page .restaurant-types-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.restaurant-page .type-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.restaurant-page .type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.restaurant-page .type-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.restaurant-page .type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.restaurant-page .type-card:hover .type-image img {
    transform: scale(1.1);
}

.restaurant-page .type-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.restaurant-page .type-card:hover .type-overlay {
    opacity: 1;
}

.restaurant-page .type-overlay i {
    font-size: 3rem;
    color: white;
}

.restaurant-page .type-card h5 {
    padding: 20px 20px 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c1810;
    margin: 0;
}

.restaurant-page .type-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Integration Section */
.restaurant-page .integration-section {
    padding: 100px 0;
    background: #fff;
}

.restaurant-page .integration-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.restaurant-page .integration-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.restaurant-page .integration-item:hover {
    border-color: var(--restaurant-primary);
    background: white;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.restaurant-page .integration-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.restaurant-page .integration-icon.delivery {
    background: linear-gradient(135deg, #4b7bec, #3867d6);
}

.restaurant-page .integration-icon.payment {
    background: linear-gradient(135deg, #26de81, #20bf6b);
}

.restaurant-page .integration-icon.accounting {
    background: linear-gradient(135deg, #a55eea, #8854d0);
}

.restaurant-page .integration-icon.sms {
    background: linear-gradient(135deg, #fc5c65, #eb3b5a);
}

.restaurant-page .integration-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c1810;
    margin: 0 0 5px 0;
}

.restaurant-page .integration-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.restaurant-page .badge-status {
    margin-right: auto;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.restaurant-page .badge-status.active {
    background: rgba(38, 222, 129, 0.1);
    color: var(--restaurant-success);
}

/* Integration Visual */
.restaurant-page .integration-visual {
    position: relative;
    height: 500px;
}

.restaurant-page .central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--restaurant-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    z-index: 10;
}

.restaurant-page .hub-icon {
    font-size: 2rem;
    margin-bottom: 5px;
}

.restaurant-page .central-hub span {
    font-size: 0.8rem;
    font-weight: 600;
}

.restaurant-page .connected-service {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

.restaurant-page .connected-service i {
    font-size: 1.5rem;
    color: var(--restaurant-primary);
    margin-bottom: 5px;
}

.restaurant-page .connected-service span {
    font-size: 0.7rem;
    color: #666;
    font-weight: 600;
}

.restaurant-page .service-1 { top: 10%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.restaurant-page .service-2 { top: 30%; right: 10%; animation-delay: 0.3s; }
.restaurant-page .service-3 { bottom: 30%; right: 10%; animation-delay: 0.6s; }
.restaurant-page .service-4 { bottom: 10%; left: 50%; transform: translateX(-50%); animation-delay: 0.9s; }
.restaurant-page .service-5 { bottom: 30%; left: 10%; animation-delay: 1.2s; }
.restaurant-page .service-6 { top: 30%; left: 10%; animation-delay: 1.5s; }

.restaurant-page .connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--restaurant-primary), transparent);
    transform-origin: center;
}

.restaurant-page .line-1 { top: 18%; left: 50%; width: 100px; transform: rotate(-90deg); }
.restaurant-page .line-2 { top: 35%; right: 25%; width: 120px; transform: rotate(-40deg); }
.restaurant-page .line-3 { bottom: 35%; right: 25%; width: 120px; transform: rotate(40deg); }
.restaurant-page .line-4 { bottom: 18%; left: 50%; width: 100px; transform: rotate(90deg); }
.restaurant-page .line-5 { bottom: 35%; left: 25%; width: 120px; transform: rotate(-40deg); }
.restaurant-page .line-6 { top: 35%; left: 25%; width: 120px; transform: rotate(40deg); }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================
   PRICING SECTION - FIXED & IMPROVED
   ============================================ */
.restaurant-page .pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    overflow: hidden;
}

.restaurant-page .pricing-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Pricing Header */
.restaurant-page .pricing-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.restaurant-page .pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c1810;
    margin-bottom: 15px;
}

.restaurant-page .pricing-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Pricing Toggle */
.restaurant-page .pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.restaurant-page .toggle-label {
    font-weight: 600;
    color: #666;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.restaurant-page .toggle-label.active {
    color: var(--restaurant-primary);
}

.restaurant-page .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.restaurant-page .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.restaurant-page .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.restaurant-page .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.restaurant-page input:checked + .slider {
    background: var(--restaurant-gradient);
}

.restaurant-page input:checked + .slider:before {
    transform: translateX(30px);
}

.restaurant-page .discount-badge {
    background: var(--restaurant-gradient);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Pricing Cards Grid */
.restaurant-page .pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
}

/* Individual Pricing Card */
.restaurant-page .pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.restaurant-page .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--restaurant-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.restaurant-page .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.restaurant-page .pricing-card:hover::before {
    opacity: 1;
}

.restaurant-page .pricing-card.featured {
    border: 2px solid var(--restaurant-primary);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
    transform: scale(1.02);
}

.restaurant-page .pricing-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.restaurant-page .popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--restaurant-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

/* Card Header */
.restaurant-page .pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.restaurant-page .plan-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.restaurant-page .plan-icon.starter {
    background: linear-gradient(135deg, #4b7bec, #3867d6);
}

.restaurant-page .plan-icon.professional {
    background: var(--restaurant-gradient);
}

.restaurant-page .plan-icon.enterprise {
    background: linear-gradient(135deg, #a55eea, #8854d0);
}

.restaurant-page .plan-icon.custom-icon {
    background: linear-gradient(135deg, #2c1810, #1a0f09);
}

.restaurant-page .pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 10px;
}

.restaurant-page .pricing-subtitle {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Price Display */
.restaurant-page .pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.restaurant-page .currency {
    font-size: 1.2rem;
    color: #999;
    font-weight: 600;
}

.restaurant-page .amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--restaurant-primary);
    line-height: 1;
}

.restaurant-page .period {
    font-size: 1rem;
    color: #666;
}

.restaurant-page .yearly-price,
.restaurant-page .yearly-period {
    display: none;
}

.restaurant-page .custom-price .amount {
    font-size: 1.8rem;
}

.restaurant-page .custom-price .period {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Features List */
.restaurant-page .pricing-features {
    margin: 25px 0;
}

.restaurant-page .pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.restaurant-page .pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid #f5f5f5;
}

.restaurant-page .pricing-features li:last-child {
    border-bottom: none;
}

.restaurant-page .pricing-features i {
    margin-top: 2px;
    font-size: 1rem;
    flex-shrink: 0;
}

.restaurant-page .pricing-features .fa-check {
    color: var(--restaurant-success);
}

.restaurant-page .pricing-features .fa-times {
    color: #ddd;
}

.restaurant-page .pricing-features li.disabled {
    opacity: 0.4;
}

/* CTA Button */
.restaurant-page .btn-pricing {
    width: 100%;
    padding: 15px 24px;
    background: var(--restaurant-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
    box-sizing: border-box;
}

.restaurant-page .btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.35);
}

.restaurant-page .btn-pricing.outline {
    background: transparent;
    border: 2px solid var(--restaurant-primary);
    color: var(--restaurant-primary);
    box-shadow: none;
}

.restaurant-page .btn-pricing.outline:hover {
    background: var(--restaurant-gradient);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

.restaurant-page .pricing-note {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
}

/* Comparison Table */
.restaurant-page .comparison-table {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-top: 60px;
    overflow-x: auto;
}

.restaurant-page .comparison-table h3 {
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 30px;
    text-align: center;
}

.restaurant-page .comparison-table .table {
    margin-bottom: 0;
    width: 100%;
}

.restaurant-page .comparison-table thead th {
    background: #f8f9fa;
    font-weight: 700;
    color: #2c1810;
    border: none;
    padding: 20px 15px;
    text-align: center;
    white-space: nowrap;
}

.restaurant-page .comparison-table tbody td {
    padding: 12px 15px;
    vertical-align: middle;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.restaurant-page .comparison-table tbody tr:hover {
    background: #f8f9fa;
}

/* ============================================
   Success & CTA Sections remain unchanged
   ============================================ */

/* Responsive Fixes */
@media (max-width: 1200px) {
    .restaurant-page .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .restaurant-page .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .restaurant-page .pricing-section {
        padding: 60px 0;
    }
    .restaurant-page .pricing-header h2 {
        font-size: 2rem;
    }
    .restaurant-page .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .restaurant-page .pricing-card {
        padding: 30px 20px;
    }
    .restaurant-page .amount {
        font-size: 2.2rem;
    }
}

 
 