.divTable { display: table; width: 100%; }
.divTableRow { display: table-row; }
.divTableCell { display: table-cell; padding: 1px 2px; }
.divTableBody { display: table-row-group; }
/* ===== TOPBAR ===== */
  #topbar,
  #topbar .container,
  #topbar .contact-info,
  #topbar .languages,
  #topbar .contact-info i,
  #topbar .languages ul {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: transparent !important;
  }

  /* ===== CHATBOT ===== */
  #sirtaki-chat-button {
    position: fixed;
    bottom: 80px;
    right: 15px;
    width: 52px;
    height: 52px;
    background-color: #cda45e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 997;
    animation: pulse 2.5s infinite;
  }

  #sirtaki-chat-button:hover {
    background-color: #1a1814;
    color: #cda45e;
    transform: scale(1.1);
  }

  #sirtaki-chat-button i {
    font-size: 22px;
  }

  #sirtaki-chat-widget {
    position: fixed;
    bottom: 140px;
    right: 15px;
    width: 380px;
    height: 560px;
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    display: none;
    z-index: 998;
  }

  #sirtaki-chat-widget.active {
    display: block;
  }

  /* ===== ANIMATIONS ===== */
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(205, 164, 94, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(205, 164, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(205, 164, 94, 0); }
  }

  /* ===== ACCORDION ===== */
  .accordion {
    --bs-accordion-bg: #1a1a1a;
    --bs-accordion-border-color: rgba(205, 164, 94, 0.3);
    --bs-accordion-btn-color: #f8f9fa;
    --bs-accordion-btn-bg: #2a2a2a;
    --bs-accordion-active-bg: #cda45e;
    --bs-accordion-active-color: #1a1a1a;
    --bs-accordion-btn-focus-border-color: #cda45e;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(205, 164, 94, 0.25);
  }

  .accordion-button {
    background-color: #2a2a2a;
    color: #f8f9fa;
    font-weight: 500;
    border: none;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
  }

  .accordion-button:not(.collapsed) {
    background-color: #cda45e !important;
    color: #1a1a1a !important;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(205, 164, 94, 0.3);
  }

  .accordion-button::after {
    filter: invert(1);
  }

  .accordion-button:not(.collapsed)::after {
    filter: invert(0);
  }

  .accordion-button:hover {
    background-color: #3a3a3a;
    color: #cda45e;
  }

  .accordion-body {
    background-color: #2a2a2a;
    color: #e9ecef;
    border-top: 1px solid rgba(205, 164, 94, 0.2);
    padding: 1.5rem;
  }

  .accordion-item {
    border: 1px solid rgba(205, 164, 94, 0.3);
    margin-bottom: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
  }

  /* ===== BUTTONS ===== */
  .btn-outline-light {
    border-color: #cda45e;
    color: #cda45e !important;
    background-color: transparent;
    transition: all 0.3s ease;
  }

  .btn-outline-light:hover {
    background-color: #cda45e;
    border-color: #cda45e;
    color: #1a1a1a !important;
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #cda45e;
    color: #1d1b16 !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    border: none;
    cursor: pointer;
  }

  .cta-button:hover {
    background: #d4b87e;
    color: #1d1b16 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(205, 164, 94, 0.3);
    text-decoration: none;
  }

  .book-a-table-btn:hover {
    background: #b89346 !important;
    transform: translateY(-2px);
    transition: all 0.3s ease;
  }

  /* ===== RESERVATION OPTIONS ===== */
  .reservation-options {
/*    background: linear-gradient(135deg, #1d1b16 0%, #2a261e 10%);*/
    border-radius: 12px;
/*    padding: 2rem;*/
    margin: 2rem 0;
    border: 1px solid rgba(205, 164, 94, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

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

  .reservation-card {
    background: rgba(40, 38, 30, 0.95);
    border: 1px solid rgba(205, 164, 94, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .reservation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #cda45e;
    transition: width 0.3s ease;
  }

  .reservation-card:hover {
    transform: translateY(-5px);
    border-color: #cda45e;
    box-shadow: 0 10px 25px rgba(205, 164, 94, 0.15);
  }

  .reservation-card:hover::before {
    width: 6px;
  }

  .reservation-card h4 {
    color: #cda45e;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .reservation-card p {
    color: #e9ecef;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  /* ===== CONTACT COMPONENTS ===== */
  .contact-info {
    background: rgba(205, 164, 94, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    border-left: 3px solid #cda45e;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #e9ecef;
  }

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

  .contact-item i {
    color: #cda45e;
    font-size: 1.1em;
    min-width: 20px;
  }

  .contact-item a {
    color: #cda45e;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
  }

  .contact-item a:hover {
    color: #d4b87e;
    text-decoration: underline;
  }

  /* ===== BADGES & TAGS ===== */
  .hours-badge {
    display: inline-block;
    background: rgba(205, 164, 94, 0.2);
    color: #cda45e;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 500;
    margin: 0.25rem 0.5rem 0.25rem 0;
    border: 1px solid rgba(205, 164, 94, 0.3);
  }

  .special-events {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0;
  }

  .event-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #e9ecef;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8em;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
  }

  .payment-method {
    background: rgba(205, 164, 94, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    border: 1px solid rgba(205, 164, 94, 0.3);
  }

  /* ===== ACCORDION SPECIFIC ===== */
  .meze-highlight {
    background: rgba(205, 164, 94, 0.1);
    border-left: 3px solid #cda45e;
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
  }

  .term-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .term-item:last-child {
    border-bottom: none;
  }

  /* ===== LOCATION COMPONENTS ===== */
  .location-card, 
  .transportation-card {
    border-radius: 12px;
    overflow: hidden;
  }

  .hotel-item:hover {
    background-color: rgba(184, 147, 70, 0.1) !important;
    transition: background-color 0.3s ease;
  }

  .areas-section .btn:hover {
    background-color: #b89346 !important;
    color: #1a1a1a !important;
  }

  /* ===== UTILITY CLASSES ===== */
  .reservation-highlight-box {
    border-left: 4px solid #cda45e;
  }

  .text-light {
    color: #e9ecef !important;
  }

  .text-muted {
    color: #adb5bd !important;
  }

  .accordion-body .col-md-6:hover {
    background: #f8f9fa;
    border-radius: 4px;
  }

  /* ===== RESPONSIVE DESIGN ===== */
  @media (max-width: 768px) {
    .reservation-options {
      padding: 1.5rem;
      margin: 1rem 0;
    }
    
    .reservation-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .reservation-card {
      padding: 1.25rem;
    }
  }