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

body, h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", sans-serif!important;
}  

img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.restaurant-setup-page {
    padding: 80px 0;
}
  
  .bs_container {
            max-width: 830px;
            margin:55px auto;
            width: 100%;
        }

        .step-indicator {
            display: flex;
            justify-content: center;
            gap: 70px;
        }
        
        .step-indicator--review .step {
            cursor:pointer;
        }

        .step {
            display: flex;
            align-items: center;
            font-size: 22px;
            gap: 10px;
            font-weight: 700;
          color: #747474;
        }

        .step.active {
            color: #429288;
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #B9B9B9;
            color: white;
            display: flex;;
            align-items: center;
            justify-content: center;
            margin-right: 8px;
            font-size: 16px;
            font-weight: 600;
        }

        .step.active .step-number {
            background: #429288;
        }

        .step-content {
            display: none;
        }

        .step-content.active {
            display: block;
        }

        .accordion-header {
            padding: 24px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            
             border-bottom: 1px solid #B5B5B5;
        }

        .accordion-header span, .table-header, .joined-header {
          font-size: 20px;
          color: #1E293A;
          font-weight: 500;
        }
        
       .accordion-header .day-status-badge {
            font-size: 16px;
            margin-left: 30px;
        }
        
        .day-header-controls {
            margin-left: auto;
            margin-right: 20px;
        }
        
        .day-header-controls button {
            font-size: 14px;
        }

        .accordion-content {
            padding: 20px 0;
            display: none;
        }

        .accordion-content.active {
            display: block;
        }

        .accordion-arrow {
          width: 18px;
            transition: transform 0.3s ease;
        }
        
        .accordion-arrow svg {
          width: 100%;
          height: 100%;
        }

        .accordion-arrow.rotated {
            transform: rotate(180deg);
        }
        
        .copy-dropdown {     position: relative;
    display: inline-block;
    width: 150px;
}

.copy-dropdown__panel {
  position: absolute;
  z-index: 10;
  top: 100%;
  right: 0;
  min-width: 220px;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
  display: none;
}
.copy-dropdown__panel.is-open { display: block; }
.copy-dropdown__item {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 0;
}
.copy-dropdown__actions { margin-top: 8px; text-align: right; }

        /* Form Elements */

         .form-wrap {
          padding: 50px 0;
         }

         .form-wrap:last-child {
          padding-bottom: 0;
         }

         .form-wrap:not(:last-child) {
          border-bottom: 1px solid #B5B5B5;
         }

       .form-wrap .form-group {
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        }
        .form-row {
            display: flex;
            gap: 16px;
            margin-bottom: 16px;
        }

         .form-wrap .form-group label {
          margin-bottom: 10px;
         }

        .restaurant-setup-page label, .joined-row div {
            display: block;
            font-weight: 500;
            font-size: 20px;
           color: #1E293A;
           margin-bottom: 20px;
        }

        .form-wrap p {
          color: #656565;
          font-size: 18px;
          font-style: italic;
          max-width: 425px;
          width: 100%;
        }

         .restaurant-setup-page .form-wrap .form-group  select, .restaurant-setup-page .form-wrap .form-group input {
          width: 312px;
         }

        .accordion-content .form-row .form-col:first-child {
          width: 284px;
        }

        .accordion-content .form-row .form-col {
          width: 255px;
          position: relative;
        }
        
        .accordion-content .form-row .form-col .error {
    color: red;
    font-size: 11px;
    line-height: 1;
        }


        .restaurant-setup-page input[type="text"], .restaurant-setup-page input[type="email"],.restaurant-setup-page select, .restaurant-setup-page textarea, .restaurant-setup-page input[type="time"] {
            width: 100%;
            padding: 14px 16px;
           border: 1px solid #5C5C5C;
            color: #888888;
            border-radius: 9px;
            font-size: 18px;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

       .restaurant-setup-page input[type="text"]:focus, .restaurant-setup-page input[type="email"]:focus, .restaurant-setup-page select:focus, .restaurant-setup-page textarea:focus, .restaurant-setup-page input[type="time"]:focus {
            outline: none;
            border-color: #429288;
            box-shadow: 0 0 0 3px rgba(74, 144, 164, 0.1);
        }

        .restaurant-setup-page textarea {
            min-height: 90px;
            resize: none;
        }

        /* Table Layout Styles */
        .table-section {
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #B5B5B5;
        }

        .area-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
            color: #495057;
        }

        .table-header {
    
            padding: 30px 0 25px;
            border-bottom: 2px solid #e9ecef;
            margin-bottom: 16px;
        }

        .table-header,  .table-row {
        display: grid;
          grid-template-columns:200px 200px 200px 1fr;
            gap: 52px;
        }

        .table-row {
          align-items: center;
          margin-bottom: 12px;
        }

        .table-actions {
            display: flex;
            gap: 25px;
                margin-left: auto;
        }

        .table-header div:last-child {
          text-align: end;
        }

        .btn-icon {
            width: 25px;
            height: 25px;
            border: none;
            background: transparent;
            cursor: pointer;
        }
        
        .btn-add-table.btn-primary{
            margin-top: 30px;
    max-width: 280px;
        }

        .btn-add-area {
         border: 2px solid #429288;
border-radius: 9px;
            color: #429288;
            padding: 12px 24px;
            background: transparent;
            width: 276px;
            margin: auto;
            cursor: pointer;
            display: block;
            font-size: 16px;
            transition: background-color 0.2s ease;
        }

        .btn-add-area:hover {
            background: #3d7a8c;
            color: #fff;
        }

        /* Table Joins Styles */
        .checkbox-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-bottom: 1px solid #B5B5B5;
            gap: 32px;
            padding-bottom: 50px;
            margin-bottom: 50px;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .checkbox-item label, .joined-row div {
          margin-bottom: 0;
        }

        .checkbox-item input[type="checkbox"] {
            width: 20px;
            height: 20px;
        }

        .joined-tables {
            margin-top: 30px;
        }

        .joined-tables h3 {
          font-size: 24px;
          color: #1E293A;
          font-weight: 500;
          margin-bottom: 30px;
        }

        .joined-header {
            display: grid;
            grid-template-columns: 1fr 1fr 100px;
            gap: 16px;
            padding: 0 0 15px;
            border-bottom: 2px solid #e9ecef;
        }

        .joined-row {
            display: grid;
            grid-template-columns: 1fr 1fr 100px;
            gap: 16px;
            align-items: center;
            padding: 20px 0;
            border-bottom:2px solid #e9ecef;
        }

        .joined-row .table-actions {
          margin: auto;
        }

        /* Navigation Buttons */
        .form-navigation {
            display: flex;
            gap: 20px;
            justify-content: space-between;
            margin-top: 75px;
        }

        .btn {
            padding: 12px 32px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.2s ease;
            max-width: 430px;
            width: 100%;
            margin: auto;
            text-align: center;
                       border: 2px solid transparent;
            display: block;
        }

        .btn-primary {
   
            background: #429288;
            color: white;
        }

        .btn-primary:hover {
            background: #3d7a8c;
        }

        .btn-secondary {
            border: 2px solid #429288;
            color: #429288;
            background: transparent;
        }

        .btn-secondary:hover {
            background: #429288;
            color: #fff;
        }

        .btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .copy-settings {
          margin-top: 40px;
          margin-left: auto;
          width: max-content;
        }

        .copy-settings label {
            display: flex;
            align-items: center;
            font-weight: normal;
          font-size: 17px;
            color: #1E293A;
            gap: 20px;
        }

        .copy-settings select {
          width: 225px;
          color: #429288;
          border: none;
          border-bottom: 1px solid #429288;
          border-radius: 0;
          padding: 0 0 10px;
          font-size: 17px;
          font-weight: 500;
        }

        /* Referral Block Styles */
        .referral-block {
            margin-top: 40px;
            padding: 30px 25px;
            border: 2px solid rgba(34, 194, 175, 0.5);
            border-radius: 9px;
            text-align: center;
        }

        .referral-block h3 {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            padding: 0;
        }

        .referral-subtitle {
            font-size: 16px;
            font-weight: 500;
            color: #495057;
        }

        .referral-description {
            font-size: 16px;
            color: #1E293A;
            line-height: 25px;
            max-width: 610px;
           margin: 23px auto 30px;
        }

        .referral-description a {
            color: #429288;
            font-weight: 600;
        }

        .referral-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .referral-buttons .btn {
            max-width: 232px;
            margin: 0;
        }

        .btn-outline {
            background: transparent;
            color: #419287;
            padding: 12px 32px;
           border: 2px solid #419287;
            border-radius: 9px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .btn-outline:hover {
            background: #419287;
            color: white;
        }

        /* Review Page Styles */
        .review-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .review-header h2 {
            font-size: 38px;
            font-weight: 700;
            color: #1E293A;
            margin-bottom: 12px;
        }

        .review-header p {
            font-size: 14px;
           color: #1E293A;
           line-height: 24px;
            max-width: 700px;
            width: 100%;
            margin: 0 auto;
        }

        .review-section {
            padding-bottom: 30px;
        }

        .review-section:last-of-type {
            border-bottom: none;
        }

        .review-section h3 {
            font-size: 20px;
            font-weight: 600;
           color: #429288;
            margin-bottom: 35px;
        }

        /* Opening Times Review Table */
        .review-table {
            width: 100%;
        }

        .review-table-header {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 100px;
            gap: 16px;
            font-size: 20px;
            padding: 12px 0;
            border-bottom: 2px solid #e9ecef;
            font-weight: 600;
            color: #495057;
            margin-bottom: 16px;
        }

        .review-table-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 100px;
            gap: 16px;
            margin-bottom: 16px;
            min-height: 80px;
            color: #1E293A;
            font-size: 18px;
            line-height: 29px;
            font-weight: 500;
        }

        .day-cell {
            display: flex;
            flex-direction: column;
        }

        .day-name {
            font-weight: 500;
            margin-bottom: 8px;
        }

        .meal-row {
            height: 16px;
            margin-bottom: 2px;
        }

        .meal-cell, .time-cell {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .same-as-row {
            min-height: auto;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid #f1f3f4;
        }

        .same-as {
            color: #429288;
            font-style: italic;
        }

        /* Booking Preferences Grid */
        .preference-grid {
            display: flex;
            gap: 40px;
            flex-direction: column;
        }

        .preference-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
                    font-weight: 500;
            font-size: 18px;
            color: #1E293A;
        }

        /* Table Layouts Review */
        .area-section {
            margin-bottom: 32px;
        }

        .area-section .area-title {
            font-size: 20px;
            font-weight: 500;
           color: #000000;
            margin-bottom: 20px;
        }

        .table-layout-grid {
            width: 100%;
        }

        .table-layout-header {
            display: grid;
            grid-template-columns: 1fr 1fr 129px;
            gap: 16px;
            padding: 12px 0;
            font-size: 20px;
            border-bottom: 2px solid #e9ecef;
            font-weight: 700;
           color: #1E293A;
            margin-bottom: 16px;
        }

        .table-layout-row {
            display: grid;
            grid-template-columns: 1fr 1fr 129px;
            gap: 16px;
            padding: 12px 0;
            font-size: 18px;
          color: #1E293A;
        }

        /* Table Joins Review */
        .joins-grid {
            width: 100%;
        }

        .joins-header {
            display: grid;
            grid-template-columns: 1.5fr 1fr 129px;
            gap: 16px;
            padding: 12px 0;
            font-size: 20px;
            border-bottom: 2px solid #e9ecef;
            font-weight: 700;
           color: #1E293A;
        }

        .joins-row {
            display: grid;
            grid-template-columns: 1.5fr 1fr 129px;
            gap: 16px;
            padding: 30px 0;
            font-size: 18px;
          color: #1E293A;
             border-bottom: 2px solid #e9ecef;
        }

        /* Review Actions */


    .success-icon {
        width: 60px;
    margin: auto auto 20px;
    }


.success-icon svg {
    width: 40px;
    height: 40px;
    fill: #10b981;
}

.success-container {
    max-width: 500px;
    width: 100%;
    margin: auto;
}

.success-head {
    background: #CBFAF1;
border-radius: 9px;
padding: 27px;
margin-bottom: 50px;
text-align: center;
}

.success-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    color: #1E293A;
}

.success-subtitle {
    font-size: 16px;
    color: #1E293A;
    line-height: 25px;
}

.next-steps {
    margin: 50px 0;
}

.next-steps-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-bullet {
    width: 13px;
    height: 13px;
    background: #1EB7A6;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-text {
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    color: #1E293A;
}

.contact-section {
    border-top: 1px solid #B5B5B5;
    padding-top: 35px;
    margin-bottom: 40px;
}

.contact-title {
    font-size: 20px;
    font-weight: 500;
   color: #1E293A;
    margin-bottom: 20px;
}

.contact-text {
    font-size: 18px;
    line-height: 25px;
  color: #1E293A;
  font-weight: 500;
}

.contact-email {
    color: #429288;
    text-decoration: none;
    font-weight: 500;
}

.contact-email:hover {
    text-decoration: underline;
}

.action-buttons {
    margin: 40px auto 0;
    display: flex;
    gap: 30px;
}

.copy-controls {
        width: max-content;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: auto 0 35px auto;
}
.copy-controls label {
        margin: 0;
    font-size: 16px;
}

.copy-controls select, .copy-dropdown__toggle {
    flex: 1;
    border: none;
    border-bottom: 1px solid;
    border-radius: 0;
    padding: 8px 5px;
    background: transparent;
    cursor: pointer;
    width: 100%;
    text-align: start;
    color: #419287;
    font-size: 16px;
    padding: 0 0 5px;
}

.joins-controls {
        margin: 0 0 70px;
}

@media screen and (max-width:1200px) {
    .step-indicator {
        gap: 20px;
    }
    .step {
        font-size: 18px;
        gap: 0px;
    }

    .bokking-system {
        padding: 20px;
    }
}


@media screen and (max-width:992px) {
    .step-number {
        width: 30px;
        height: 30px;   
        font-size: 14px;
    }

    label, .joined-row div {
        font-size: 17px;
    }

    .form-wrap p {
        font-size: 15px;
    }
        
}

@media screen and (max-width:768px) {
    .step-indicator {
        flex-wrap: wrap;
        max-width: 500px;
        width: 100%;
        justify-content: center;
        margin: auto;
    }

    .accordion-header span, .table-header, .joined-header {
        font-size: 17px;
    }

    .accordion-header {
        padding: 18px 0;
    }

    .form-navigation {
        margin-top: 40px;
    }

    .btn {
        max-width: 270px;
    }

   .restaurant-setup-page input[type="text"], .restaurant-setup-page select, .restaurant-setup-page textarea, .restaurant-setup-page input[type="time"] {
        padding: 14px 12px;
        font-size: 15px;
    }

    .form-wrap .form-group select, .form-wrap .form-group input {
        width: 260px;
    }

    .table-header, .table-row {
        grid-template-columns:1.4fr 1.4fr 1.4fr 0.6fr;
        gap: 13px;
    }

    .joined-tables h3 {
            margin-bottom: 20px;
        font-size: 20px;
    }

    .checkbox-list {
        margin-bottom: 30px;
    }

}

@media screen and (max-width:576px) {

    .step-indicator {
        flex-direction: column;
    }

    .step {
        margin: auto;
    }

    .accordion-content .form-row .form-col {
        width: 170px;
    }

    .form-wrap .form-group {
        flex-direction: column;
        align-items: start;
    }

    .form-wrap .form-group select, .form-wrap .form-group input {
        width: 100%;
    }

    .form-navigation {
        gap: 5px;
    }

    .form-wrap {
        padding: 30px 0;
    }

    .table-header, .joined-header {
        font-size: 14px;
    }

    .btn-icon {
        width: 17px;
        height: 17px;
    }

    .table-actions {
        gap: 16px;
    }

    .table-section {
        margin-bottom: 27px;
        padding-bottom: 18px;
    }

    label {
        margin-bottom: 14px;
    }

    .table-header {
            padding: 25px 0 16px;
        margin-bottom: 16px;
    }

    .checkbox-list {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 35px;
        padding-bottom: 35px;
    }

    .checkbox-item {
        gap: 10px;
    }

    .joined-header, .joined-row {
        grid-template-columns: 190px 1fr 50px;
    }
                
}