/* Mobile-only fix for circular shape animation - REMOVED TO RESTORE ORIGINAL THEME BEHAVIOR */
/* 
@media (max-width: 600px) {
  .circular-shape-section {
    display: none !important;
  }
  .circular-shape-wrapper {
    display: none !important;
  }
  .circular-shape-wrapper .shape-thumb,
  .circular-shape-wrapper .shape-thumb img {
    display: none !important;
  }
}
*/

/* Verified styles from Original Theme */
.circular-shape-wrapper {
    height: 100vh;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.circular-shape-wrapper .shape-thumb img {
    transform: scale(1) rotate(0);
    opacity: 0.9;
}
