
/* Container for overall content width */
/* Header Section */
header {
  background-color: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.logo-and-city {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.city-select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background-color: #f8f8f8;
  font-size: 0.9em;
  color: #555;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd" /></svg>');
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 1em;
  padding-right: 28px;
}

.search-bar {
  flex-grow: 1;
  margin: 10px 0;
  max-width: 500px;
}

.search-bar input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 1em;
  outline: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
  flex-wrap: wrap;
}

.user-icons {
  display: flex;
  gap: 10px;
}

.icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background-color: #f8f8f8;
  color: #555;
  font-size: 1.2em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  position: relative;
  cursor: pointer;
}

.icon-button:hover {
  background-color: #e0e0e0;
  color: #2053CD;
  border-color: #2053CD;
}

.icon-button .count-badge {
  background-color: #FF250A;
  color: white;
  font-size: 0.6em;
  font-weight: 700;
  border-radius: 50%;
  padding: 2px 5px;
  position: absolute;
  top: -5px;
  right: -5px;
  line-height: 1;
  min-width: 18px;
  text-align: center;
}

.partner-button {
  background-color: #FF250A;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.partner-button:hover {
  background-color: #D01F08;
}

/* Main Navigation */
.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-list li a {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  transition: background-color 0.2s ease;
  border-radius: 5px;
}

.nav-list li a:hover {
  background-color: #4A72E8;
}

/* Store Detail Specific Layout */
.store-banner {
  width: 100%;
  /*height: 300px;  Fixed height for banner */
  min-height: 250px; /* Fixed height for banner */
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.store-page-content {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.store-page-content i {
  color: #FF2508;
}
.store-page-content a {
  color: #666;
  text-decoration: none;
}
.store-page-content a:hover {
  color: #FF2508;
}
.store-page-content p {
  max-height: 65px !important;
}
.store-page-content .title {
  font-weight: 600;
  min-height: 44px;
}
.store-page-content .secondary-btn {
  background-color: #2153CC;
  color: #fff;
}
.store-page-content .secondary-btn::before {
  background-color: #FF2508;
}
.store-page-content .store-service-info .accordion-item.terms ul {
  padding-left: 20px;
}
.store-page-content .store-service-info .accordion-item.terms ul li {
  margin-bottom: 10px;
  list-style: outside;
}
.store-page-content .store-service-info .accordion-item.terms ul li::marker {
  color: #FF2508;
  font-size: 24px;
}
.store-page-content .store-service-info .accordion-item ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.store-page-content .store-service-info .accordion-item ul li i {
  margin-right: 10px;
}
.store-page-content .store-service-info .accordion-item ul li .day {
  display: inline-block;
  width: 100px;
  font-weight: 600;
}

.store-category {
  background-color: rgba(33, 84, 204, 0.0745098039);
  color: #2153CC !important;
  padding: 5px 10px;
  display: inline !important;
  border-radius: 10px;
  max-width: 90%;
  width: -moz-fit-content;
  width: fit-content;
}

.left-sidebar {
  flex: 1; /* Takes 1 part of the available space */
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 280px; /* Minimum width for sidebar */
}

.right-main-content {
  flex: 3; /* Takes 3 parts of the available space */
  display: flex;
  flex-direction: column;
  gap: 30px; /* Space between sections in main content */
}

.right-main-content .deal-card h3 {
  color: #212121 !important;
  height: 24px;
}

.store-info-box { /* New container for store logo, title, description, contact, book now */
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.store-info-box .title {
  color: #FF2508;
}

.store-logo {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
  border: 2px solid #eee;
  padding: 5px;
  background-color: white;
  /*margin-top: -80px;*/ /* Overlap with banner, adjusted for sidebar */
  /*margin-bottom: 20px;*/
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.store-category {
  font-size: 1.1em;
  color: #777;
  margin-bottom: 20px;
}

.store-description {
  font-size: 1em;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.store-contact-info {
  display: grid;
  grid-template-columns: 1fr; /* Stack contact items vertically in sidebar */
  gap: 10px;
  width: 100%;
  text-align: left;
  margin-bottom: 30px;
}

.contact-item {
  background-color: #f8f8f8;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item .icon {
  font-size: 1.5em;
  color: #FF250A;
}

.contact-item p {
  margin: 0;
  color: #555;
  font-size: 0.95em;
}

.contact-item a {
  color: #2053CD;
  text-decoration: none;
  font-weight: 600;
}

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

.book-now-button {
  background-color: #2053CD;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.2s ease;
  margin-top: 20px;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.book-now-button:hover {
  background-color: #1A44B0;
}

/* Tab styling for Terms, Timings, Amenities */
.tab-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.tab-buttons {
  display: flex;
  justify-content: space-around;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.tab-button {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: 10px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  color: #555;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  margin: 5px; /* Add margin for spacing when wrapped */
}

.tab-button.active {
  background-color: #2053CD;
  color: white;
  border-color: #2053CD;
}

.tab-button:hover:not(.active) {
  background-color: #e0e0e0;
  color: #333;
}

.tab-content {
  display: none; /* Hidden by default */
  padding: 10px;
  border-top: 1px solid #eee; /* Separator for content */
}

.tab-content.active {
  display: block; /* Show active tab content */
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card ul li {
  margin-bottom: 8px;
  color: #555;
  font-size: 0.95em;
}

.info-card ul li:last-child {
  margin-bottom: 0;
}

/* Section Title (reused) */
.section-title {
  font-size: 2em;
  color: #2053CD;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

/* Specific styling for deal-grid within deal-listings-section to be 1 column */
.deal-listings-section .deal-grid {
  display: grid;
  grid-template-columns: 1fr !important; /* Force single column */
  gap: 20px;
}

/* NEW Deal Card Styling for horizontal layout (Available Deals) */
.deal-listings-section .deal-card {
  display: flex; /* Use flexbox for horizontal layout */
  flex-direction: row; /* Arrange items in a row */
  align-items: center; /* Vertically align items in the center */
  padding: 10px; /* Add padding to the card */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* Lighter shadow */
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.deal-listings-section .deal-card:hover {
  transform: translateY(-3px); /* Slightly less hover effect */
}

.deal-listings-section .deal-card .deal-image-wrapper {
  position: relative;
  flex-shrink: 0; /* Prevent image from shrinking */
  width: 120px; /* Fixed width for the image container */
  height: 120px; /* Fixed height for the image container */
  margin-right: 15px; /* Space between image and content */
  border-radius: 8px; /* Rounded corners for image wrapper */
  overflow: hidden; /* Hide overflow for rounded corners */
}

.deal-listings-section .deal-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Ensure image covers the area */
  border-radius: 8px; /* Rounded corners for the image itself */
}

.deal-listings-section .deal-card .deal-offer-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: #FF250A; /* Red badge */
  color: white;
  font-size: 0.8em;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 4px;
  z-index: 1; /* Ensure badge is above image */
  white-space: nowrap; /* Prevent text wrapping */
}

.deal-listings-section .deal-card .deal-content {
  flex-grow: 1; /* Allow content to take remaining space */
  padding: 0; /* Remove internal padding as card has padding */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
}

.deal-listings-section .deal-content h3 {
  font-size: 1.2em; /* Smaller title for horizontal layout */
  margin-bottom: 5px; /* Less space below title */
  color: #2053CD; /* Primary blue for deal title */
}

.deal-listings-section .deal-content p {
  font-size: 0.85em; /* Smaller description text */
  color: #666;
  margin-bottom: 10px; /* Space below description */
  line-height: 1.4;
  flex-grow: unset; /* Don't let it grow */
}

.deal-listings-section .deal-content .action-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.deal-listings-section .deal-content .btn-redeem {
  background-color: #FF250A; /* Red background for redeem button */
  color: white;
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 0.9em;
  font-weight: 600;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.deal-listings-section .deal-content .btn-redeem:hover {
  background-color: #D01F08;
}

.deal-listings-section .deal-content .see-more-link {
  color: #2053CD;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8em;
  transition: color 0.2s ease;
  align-self: center; /* Center the link */
}

.deal-listings-section .deal-content .see-more-link:hover {
  text-decoration: underline;
}

/* Remove price info and buy button from these specific deal cards */
.deal-listings-section .deal-price-info,
.deal-listings-section .buy-button {
  display: none;
}

/* More Store Offers section */
.more-store-offers-section {
  background-color: #fff; /* Added background for consistency */
  padding: 25px; /* Added padding */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-top: 40px; /* Add margin above this section */
}

/* Specific styling for More Store Offers to be 1 row with horizontal scroll */
.more-store-offers-section .deal-grid {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping */
  overflow-x: auto; /* Enable horizontal scrolling */
  gap: 20px;
  padding-bottom: 10px; /* Space for scrollbar */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.more-store-offers-section .deal-card {
  flex-shrink: 0; /* Prevent cards from shrinking */
  width: 280px; /* Fixed width for each card */
  /* Revert to original deal-card styling for vertical layout */
  flex-direction: column; /* Ensure vertical stacking of image and content */
  padding: 0; /* Reset padding as it's set on the container */
}

.more-store-offers-section .deal-card img {
  width: 100%;
  height: 200px; /* Standard height for these cards */
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px 8px 0 0; /* Rounded top corners */
}

.more-store-offers-section .deal-content {
  padding: 15px; /* Re-add padding inside content */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.more-store-offers-section .deal-content h3 {
  font-size: 1.4em; /* Revert to larger title */
  color: #333;
  margin-top: 0;
  margin-bottom: 10px;
  text-align: left; /* Align text left */
}

.more-store-offers-section .deal-content p {
  font-size: 0.9em; /* Revert to larger description */
  color: #666;
  margin-bottom: 10px;
  flex-grow: 1;
  text-align: left; /* Align text left */
}

.more-store-offers-section .deal-price-info {
  display: flex; /* Show price info again */
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
}

.more-store-offers-section .buy-button {
  display: block; /* Show buy button again */
  width: 100%;
  padding: 12px 15px;
  background-color: #FF250A;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: 600;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.more-store-offers-section .buy-button:hover {
  background-color: #D01F08;
}

/* Footer - Reusing styles from main page */
footer {
  background-color: #1A203F;
  color: white;
  padding: 30px 0;
  font-size: 0.9em;
  text-align: center;
}

.footer-content-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: left;
  margin-bottom: 30px;
}

.footer-col h4 {
  color: #FF250A;
  font-size: 1.1em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #FF250A;
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  margin-bottom: 10px;
  text-align: left;
}

.footer-logo img {
  height: 50px;
  width: auto;
  display: block;
  margin: 0;
}

.footer-logo-text {
  font-size: 0.85em;
  color: #bbb;
  line-height: 1.4;
  text-align: left;
}

.app-download-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.app-download-buttons img {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.social-icons {
  margin-bottom: 15px;
}

.social-icons a {
  color: white;
  font-size: 1.5em;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-icons a:hover {
  color: #FF250A;
}

/* Custom Modal Styles */
.custom-modal-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000; /* High z-index to be on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
  justify-content: center;
  align-items: center;
}

.custom-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 500px;
  position: relative;
  animation-name: animatetop;
  animation-duration: 0.4s;
  text-align: center;
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

.close-button:hover,
.close-button:focus {
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

.modal-shop-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-direction: column;
}

.modal-shop-info img {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
  border: 1px solid #eee;
}

.modal-shop-info h4 {
  margin: 0;
  color: #333;
  font-size: 1.3em;
}

.modal-coupon-title {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 15px;
  font-weight: 600;
}

.modal-form-group {
  margin-bottom: 20px;
}

.modal-form-label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.modal-form-control {
  width: calc(100% - 30px); /* Adjust for padding */
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
  outline: none;
  box-sizing: border-box; /* Include padding in width */
}

.modal-form-text {
  font-size: 0.85em;
  color: #777;
  margin-top: 10px;
  margin-bottom: 15px; /* Added margin for spacing */
}

.btn-redeem-now {
  background-color: #2053CD;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-redeem-now:hover {
  background-color: #1A44B0;
}

/* Responsive Adjustments */
@media (max-width: 991px) { /* Adjust breakpoint for sidebar stacking */
  .store-page-content {
    flex-direction: column; /* Stack sidebar and main content vertically */
  }
  .left-sidebar {
    min-width: unset; /* Remove min-width when stacked */
    width: 100%;
  }
  .right-main-content {
    flex: none; /* Remove flex sizing */
    width: 100%;
  }
  .store-logo {
    margin-top: -60px; /* Adjust overlap for smaller banner */
    width: 100px;
    height: 100px;
  }
  .store-title {
    font-size: 1.8em;
  }
  .store-contact-info {
    grid-template-columns: 1fr; /* Stack contact info vertically */
    text-align: center;
  }
  .contact-item {
    flex-direction: column;
    gap: 5px;
  }
  .deal-listings-section .deal-card {
    flex-direction: column; /* Stack image and content vertically on small screens */
    align-items: center;
    text-align: center;
  }
  .deal-listings-section .deal-card .deal-image-wrapper {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .deal-listings-section .deal-content h3 {
    text-align: center;
  }
  .deal-listings-section .deal-content p {
    text-align: center;
  }
  .deal-listings-section .deal-content .action-buttons {
    justify-content: center; /* Center buttons on small screens */
  }
  .deal-listings-section .deal-content .see-more-link {
    display: block;
    text-align: center;
    margin-top: 10px;
  }
  .deal-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust deal grid for smaller screens */
  }
  .tab-buttons {
    justify-content: center; /* Center tabs when wrapped */
  }
  .more-store-offers-section .deal-grid {
    flex-wrap: nowrap; /* Keep horizontal scrolling */
  }
  .more-store-offers-section .deal-card {
    width: 250px; /* Adjust card width for better fit on tablets */
  }
}
@media (max-width: 767px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .logo {
    margin-bottom: 10px;
  }
  .search-bar {
    width: 100%;
    max-width: none;
    margin-bottom: 10px;
  }
  .header-right {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
  .user-icons {
    gap: 5px;
  }
  .icon-button {
    width: 32px;
    height: 32px;
    font-size: 1em;
  }
  .icon-button .count-badge {
    font-size: 0.5em;
    top: -3px;
    right: -3px;
    min-width: 15px;
  }
  .logo-and-city {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
  .city-select {
    margin-left: 10px;
  }
  .header-left {
    width: 100%;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 5px;
  }
  .nav-list {
    flex-direction: column;
  }
  .nav-list li a {
    text-align: center;
    padding: 8px 15px;
  }
  .store-banner {
    height: 200px;
  }
  .deal-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
  .footer-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col ul {
    align-items: center;
  }
  .app-download-buttons {
    align-items: center;
  }
  .footer-logo-col {
    align-items: center;
  }
  .footer-logo {
    text-align: center;
  }
  .footer-logo img {
    margin: 0 auto;
  }
  .footer-logo-text {
    text-align: center;
  }
  .more-store-offers-section .deal-card {
    width: 90%; /* Make cards almost full width on very small screens */
    margin: 0 auto; /* Center them */
  }
}
.reedem-modal i {
  color: #FF2508;
}
.reedem-modal .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.reedem-modal .offer-label {
  font-size: 24px;
  color: #FF2508;
  font-weight: 600;
  text-align: center;
}
.reedem-modal .modal-form-label {
  font-weight: 400;
}/*# sourceMappingURL=store-detail.css.map */