/* 
  Global Variable
*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --bs-gutter-x: 1.5rem; /* Horizontal gutter */
  --bs-gutter-y: 0; /* Vertical gutter */
  /* Font Family */
  --font-roboto: "Roboto", sans-serif;
}

/* Media Query Variable */
body,
html {
  font-family: var(--font-roboto);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: unset;
  text-decoration: none;
}

a:focus {
  outline: 0 solid;
}

a:hover {
  text-decoration: none;
}

/* unlockafe-container */
.unlockafe-container {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .unlockafe-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .unlockafe-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .unlockafe-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .unlockafe-container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .unlockafe-container {
    max-width: 1320px;
  }
}
/* unlockafe-row Flex */
.unlockafe-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

/* unlockafe-columns */
[class*="unlockafe-col-"],
[class*="unlockafe-col-lg-"],
[class*="unlockafe-col-md-"] {
  position: relative;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

@media (min-width: 768px) {
  .unlockafe-col-md-6 {
    flex: 0 0 auto;
    width: 46.7%;
  }
}
@media (min-width: 992px) {
  .unlockafe-col-lg-4 {
    flex: 0 0 auto;
    max-width: 30%;
  }
  .unlockafe-col-lg-3 {
    flex: 0 0 auto;
    width: 22.5%;
  }
  .unlockafe-col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
/* unlockafe-row Grid */
.unlockafe-grid {
  display: grid;
  row-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}

@media only screen and (min-width: 768px) {
  .unlockafe-grid.md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .unlockafe-grid.lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .unlockafe-grid.lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .unlockafe-grid.lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Utilities */
.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.ds-flx {
  display: flex;
}

.ds-align-center {
  align-items: center;
}

.ps-relative {
  position: relative;
}

.ps-absolute {
  position: absolute;
}

.z-indx-plus {
  z-index: 1;
}

.z-indx-minus {
  z-index: -1;
}

.width-content {
  width: -moz-max-content;
  width: max-content;
}

.wd-100 {
  width: 100%;
}

.ht-100 {
  height: 100%;
}

.object-cvr {
  -o-object-fit: cover;
  object-fit: cover;
}

.top-section-0 {
  top: 0;
}

.bottom-section-0 {
  bottom: 0;
}

.left-section-0 {
  left: 0;
}

.right-section-0 {
  right: 0;
}

.overflow-hide {
  overflow: hidden;
}

.custom-ul {
  margin: 0;
  padding: 0;
  list-style: none;
} /* 
  Global Variable End
*/
;/* ============================================
   Business Hour Widget - Base Styles
   ============================================ */

.unlockafe-business-hour-wrapper {
    width: 100%;
}

.unlockafe-business-hour-title {
    margin: 0 0 24px 0;
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    text-align: left;
    line-height: 1.3;
}

.unlockafe-business-hour-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.unlockafe-business-hour-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    box-sizing: border-box;
}

.unlockafe-business-hour-item:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.unlockafe-business-hour-day {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    flex: 1;
}

.unlockafe-business-hour-time {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
    margin: 0 15px;
    text-align: right;
}

.unlockafe-business-hour-status {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.unlockafe-business-hour-status.status-open {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.unlockafe-business-hour-status.status-closed {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Today Highlight */
.unlockafe-business-hour-item.today {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.unlockafe-business-hour-item.today .unlockafe-business-hour-day,
.unlockafe-business-hour-item.today .unlockafe-business-hour-time {
    color: #ffffff;
    font-weight: 700;
}

.unlockafe-business-hour-item.today:hover {
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Closed Items */
.unlockafe-business-hour-item.is-closed {
    opacity: 0.6;
}

.unlockafe-business-hour-item.is-closed .unlockafe-business-hour-time {
    color: #ef4444;
    font-weight: 600;
}

/* ============================================
   Layout 1 - Simple List
   ============================================ */

.unlockafe-business-hour-layout-1 .unlockafe-business-hour-item {
    border-left: 3px solid transparent;
}

.unlockafe-business-hour-layout-1 .unlockafe-business-hour-item.today {
    border-left-color: #667eea;
}

/* ============================================
   Layout 2 - Card Style
   ============================================ */

.unlockafe-business-hour-layout-2 .unlockafe-business-hour-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.unlockafe-business-hour-layout-2 .unlockafe-business-hour-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.unlockafe-business-hour-layout-2 .unlockafe-business-hour-item.today {
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

/* ============================================
   Layout 3 - Modern Box
   ============================================ */

.unlockafe-business-hour-layout-3 .unlockafe-business-hour-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.unlockafe-business-hour-layout-3 .unlockafe-business-hour-item:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.unlockafe-business-hour-layout-3 .unlockafe-business-hour-item.today {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    color: #ffffff;
}

.unlockafe-business-hour-layout-3 .unlockafe-business-hour-item.today .unlockafe-business-hour-day,
.unlockafe-business-hour-layout-3 .unlockafe-business-hour-item.today .unlockafe-business-hour-time {
    color: #ffffff;
    font-weight: 600;
}

.unlockafe-business-hour-layout-3 .unlockafe-business-hour-item.today:hover {
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.unlockafe-business-hour-layout-3 .unlockafe-business-hour-day {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.unlockafe-business-hour-layout-3 .unlockafe-business-hour-time {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
}

/* ============================================
   Layout 4 - Minimal
   ============================================ */

.unlockafe-business-hour-layout-4 .unlockafe-business-hour-item {
    background: transparent;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0;
    padding: 12px 0;
}

.unlockafe-business-hour-layout-4 .unlockafe-business-hour-item:last-child {
    border-bottom: none;
}

.unlockafe-business-hour-layout-4 .unlockafe-business-hour-item:hover {
    background: transparent;
    transform: none;
    padding-left: 10px;
}

.unlockafe-business-hour-layout-4 .unlockafe-business-hour-item.today {
    background: transparent;
    border-bottom-color: #667eea;
    border-bottom-width: 2px;
}

.unlockafe-business-hour-layout-4 .unlockafe-business-hour-item.today .unlockafe-business-hour-day,
.unlockafe-business-hour-layout-4 .unlockafe-business-hour-item.today .unlockafe-business-hour-time {
    color: #667eea;
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 768px) {
    .unlockafe-business-hour-item {
        flex-wrap: wrap;
        padding: 12px 15px;
    }

    .unlockafe-business-hour-day {
        width: 100%;
        margin-bottom: 5px;
        font-size: 15px;
    }

    .unlockafe-business-hour-time {
        flex: 1;
        margin: 0;
        text-align: left;
        font-size: 14px;
    }

    .unlockafe-business-hour-status {
        margin-left: auto;
    }

    .unlockafe-business-hour-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .unlockafe-business-hour-item {
        padding: 10px 12px;
    }

    .unlockafe-business-hour-day {
        font-size: 14px;
    }

    .unlockafe-business-hour-time {
        font-size: 13px;
    }

    .unlockafe-business-hour-status {
        font-size: 10px;
        padding: 3px 8px;
    }

    .unlockafe-business-hour-title {
        font-size: 18px;
    }
}



;