/* 
  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
*/
;/* ============================================
   360° Photo Viewer Widget - Base Styles
   ============================================ */

.unlockafe-360-viewer {
    position: relative;
    width: 100%;
    min-height: 200px;
    height: 500px;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.unlockafe-360-viewer:active {
    cursor: grabbing;
}

.unlockafe-360-viewer .viewer-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.unlockafe-360-viewer .viewer-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 1;
}

.unlockafe-360-viewer .viewer-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2;
}

.unlockafe-360-viewer .viewer-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: #ffffff;
    pointer-events: none;
}

.unlockafe-360-viewer .viewer-loading p {
    margin: 1rem 0 0 0;
    font-size: 1rem;
    font-weight: 500;
}

.unlockafe-360-viewer .loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.unlockafe-360-viewer.loaded .viewer-loading {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.unlockafe-360-viewer.loaded .viewer-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* ============================================
   Controls
   ============================================ */

.unlockafe-360-viewer .viewer-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.unlockafe-360-viewer.no-controls .viewer-controls {
    display: none;
}

.unlockafe-360-viewer .viewer-controls button {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.unlockafe-360-viewer .viewer-controls button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.unlockafe-360-viewer .viewer-controls button:active {
    transform: scale(0.95);
}

.unlockafe-360-viewer .viewer-controls button.active {
    background: rgba(102, 126, 234, 0.8);
    color: #ffffff;
}

/* ============================================
   Style 1 - Standard
   ============================================ */

.unlockafe-360-viewer.viewer-style-1 {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Style 2 - Fullscreen
   ============================================ */

.unlockafe-360-viewer.viewer-style-2 {
    border-radius: 0;
    height: 100vh;
}

.unlockafe-360-viewer.viewer-style-2 .viewer-controls {
    bottom: 30px;
    right: 30px;
}

/* ============================================
   Style 3 - Minimal
   ============================================ */

.unlockafe-360-viewer.viewer-style-3 {
    background: transparent;
    border: 1px solid #e5e7eb;
}

.unlockafe-360-viewer.viewer-style-3 .viewer-controls {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.unlockafe-360-viewer.viewer-style-3 .viewer-controls button {
    background: rgba(0, 0, 0, 0.05);
    color: #333333;
}

.unlockafe-360-viewer.viewer-style-3 .viewer-controls button:hover {
    background: rgba(0, 0, 0, 0.1);
}

.unlockafe-360-viewer.viewer-style-3 .viewer-controls button.active {
    background: #667eea;
    color: #ffffff;
}

/* ============================================
   Fullscreen Mode
   ============================================ */

.unlockafe-360-viewer.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    border-radius: 0;
}

.unlockafe-360-viewer.fullscreen .viewer-btn-fullscreen i::before {
    content: "\f066"; /* fa-compress */
}

/* ============================================
   Touch Indicators
   ============================================ */

.unlockafe-360-viewer .touch-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 5;
    transition: opacity 0.3s ease;
}

.unlockafe-360-viewer.touching .touch-indicator {
    opacity: 1;
}

/* ============================================
   Responsive Design - Tablet (≤768px)
   ============================================ */

@media (max-width: 768px) {
    .unlockafe-360-viewer {
        height: 400px;
    }

    .unlockafe-360-viewer .viewer-controls {
        bottom: 15px;
        right: 15px;
        padding: 8px;
        gap: 8px;
    }

    .unlockafe-360-viewer .viewer-controls button {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .unlockafe-360-viewer .viewer-loading p {
        font-size: 0.9rem;
    }

    .unlockafe-360-viewer .loading-spinner {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
}

/* ============================================
   Responsive Design - Mobile (≤480px)
   ============================================ */

@media (max-width: 480px) {
    .unlockafe-360-viewer {
        height: 300px;
        border-radius: 6px;
    }

    .unlockafe-360-viewer .viewer-controls {
        bottom: 10px;
        right: 10px;
        padding: 6px;
        gap: 6px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .unlockafe-360-viewer .viewer-controls button {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .unlockafe-360-viewer .viewer-loading {
        padding: 0 1rem;
    }

    .unlockafe-360-viewer .viewer-loading p {
        font-size: 0.85rem;
    }

    .unlockafe-360-viewer .loading-spinner {
        width: 35px;
        height: 35px;
        border-width: 3px;
    }
}

/* ============================================
   Loading States
   ============================================ */

.unlockafe-360-viewer.loading .viewer-canvas {
    opacity: 0;
}

.unlockafe-360-viewer.loaded .viewer-canvas {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* ============================================
   Error State
   ============================================ */

.unlockafe-360-viewer.error .viewer-loading {
    color: #ef4444;
}

.unlockafe-360-viewer.error .viewer-loading p::before {
    content: "⚠ ";
}


;