/* Admin Layout Styles */
/* Hide scrollbars in navigation */
nav::-webkit-scrollbar {
    display: none;
}

/* Ensure navigation doesn't overlap with user info */
#sidebar nav {
    max-height: calc(100vh - 80px);
    /* Account for header (64px) + padding (16px) */
}
/* Admin Tabs - Consistent styling and loading states */

/* Tab button base styles */
.tab-button {
    @apply px-3 py-2 text-sm font-medium text-orange-600 border-b-2 border-transparent hover:text-orange-800 hover:border-orange-300 transition-all duration-200;
}

.tab-button.active {
    @apply text-orange-900 border-orange-500;
}

.tab-button:disabled {
    @apply opacity-70 cursor-not-allowed;
}

/* Loading spinner animation */
.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Tab container transitions */
[data-tab-container] {
    transition: all 0.2s ease-in-out;
}

/* Smooth row filtering transitions */
.admin-table-row {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.admin-table-row[style*="display: none"] {
    opacity: 0;
    transform: translateY(-10px);
}

/* Loading state for tab buttons */
.tab-button.loading {
    @apply relative;
}

.tab-button.loading::after {
    content: '';
    @apply absolute inset-0 bg-orange-100 opacity-50 rounded;
}

/* Tab content fade transitions */
.tab-content {
    transition: opacity 0.2s ease-in-out;
}

.tab-content.loading {
    opacity: 0.7;
}

/* Consistent hover effects */
.tab-button:hover:not(:disabled) {
    @apply bg-orange-50;
}

/* Active tab indicator */
.tab-button.active::before {
    content: '';
    @apply absolute bottom-0 left-0 right-0 h-0.5 bg-orange-500;
}

/* Responsive tab layout */
@media (max-width: 768px) {
    .tab-button {
        @apply px-2 py-1 text-xs;
    }

    /* Stack tabs vertically on small screens */
    [data-tab-container] nav {
        @apply flex-col space-y-2 space-x-0;
    }
}

/* Focus states for accessibility */
.tab-button:focus {
    @apply outline-none ring-2 ring-orange-500 ring-offset-2;
}

/* Disabled state styling */
.tab-button:disabled {
    @apply text-gray-400 cursor-not-allowed;
}

.tab-button:disabled:hover {
    @apply bg-transparent border-transparent;
}

/* Review Action Button Overrides - Force override important styles */
.admin-action-btn.review-approve {
    background-color: transparent !important;
    color: rgb(22 163 74) !important;
    /* text-green-600 */
    border: none !important;
}

.admin-action-btn.review-approve:hover {
    background-color: transparent !important;
}

.admin-action-btn.review-unapprove {
    background-color: transparent !important;
    color: rgb(220 38 38) !important;
    /* text-red-600 */
    border: none !important;
}

.admin-action-btn.review-unapprove:hover {
    background-color: transparent !important;
}

.admin-action-btn.review-feature {
    background-color: transparent !important;
    color: rgb(245 158 11) !important;
    /* text-amber-500 - proper star color */
    border: none !important;
}

.admin-action-btn.review-feature:hover {
    background-color: transparent !important;
}

.admin-action-btn.review-unfeature {
    background-color: transparent !important;
    color: rgb(245 158 11) !important;
    /* text-amber-500 - proper star color */
    border: none !important;
}

.admin-action-btn.review-unfeature:hover {
    background-color: transparent !important;
}

.admin-action-btn.review-disabled {
    background-color: transparent !important;
    color: rgb(156 163 175) !important;
    /* text-gray-400 - but icon should be amber */
    border: none !important;
    cursor: not-allowed !important;
}

.admin-action-btn.review-disabled svg {
    color: rgb(245 158 11) !important;
    /* text-amber-500 - proper star color for disabled state */
}

/* Review Expand Toggle Button States */
.review-expand-toggle.active {
    background-color: rgb(255 237 213) !important;
    /* bg-orange-100 */
    color: rgb(194 65 12) !important;
    /* text-orange-800 */
}

/* Expandable Review Details Rows */
.review-expand-details {
    transition: all 0.3s ease-in-out;
}

tr.review-expand-details.review-row-collapsed {
    display: none !important;
}

/* Ensure the expandable rows are properly styled */
.review-expand-details td {
    padding: 1rem 1.5rem;
    background-color: rgb(255 247 237);
    /* bg-orange-50 */
    border-top: 1px solid rgb(254 215 170);
    /* border-orange-200 */
}
/* Custom Fonts */
@font-face {
    font-family: 'Munky';
    src: url(/assets/Munky-Bold-9c54f757aa41aa794f855175216434bc2ff28bc89dbef3431eb14aa84f0bcd8b.otf) format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Company Name Font Classes */
.company-name-font {
    font-family: 'Munky', 'Cooper Black', serif;
    font-weight: bold;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    text-rendering: geometricPrecision;
    font-feature-settings: "liga" 1, "kern" 1;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.01em;
}

/* Image Rendering Optimization */
.image-render-crisp {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
/* Animated Hero Section with Falling Crinkle SVGs - Original Version */

.hero-container {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 50%, #fb923c 100%);
    min-height: 100vh;
}

.falling-crinkle {
    position: absolute;
    width: 60px;
    height: 36px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    will-change: transform, opacity;
    transform: translateZ(0);
    /* Hardware acceleration */
}

/* All crinkles are now dynamic and styled by JavaScript */
.falling-crinkle.dynamic {
    animation: fall linear;
    /* Individual properties set by JavaScript */
}

.falling-crinkle.dynamic.float {
    animation: float-fall linear;
    /* Individual properties set by JavaScript */
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Floating animation for some crinkles */
@keyframes float-fall {
    0% {
        transform: translateY(-100px) translateX(0px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    50% {
        transform: translateY(50vh) translateX(20px) rotate(180deg);
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(100vh) translateX(-20px) rotate(360deg);
        opacity: 0;
    }
}

/* Hero content styling */
.hero-content {
    position: relative;
    z-index: 10;
}

/* Performance optimizations */
.falling-crinkle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .falling-crinkle {
        width: 40px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .falling-crinkle {
        width: 30px;
        height: 18px;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .falling-crinkle {
        animation: none !important;
        opacity: 0.1 !important;
    }
}

/* Loading state */
.hero-container.loading .falling-crinkle {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.hero-container.loaded .falling-crinkle {
    opacity: 0.3;
}

/* Intersection Observer support for better performance */
.hero-container:not(.in-viewport) .falling-crinkle {
    animation-play-state: paused;
}

/* Optimize for low-end devices */
@media (max-width: 768px) and (max-device-width: 768px) {
    .falling-crinkle {
        animation-duration: 8s !important;
    }

    .falling-crinkle.float {
        animation: fall linear infinite !important;
    }
}
/* Holiday Package Form Styles */
.holiday-preset-btn {
    @apply px-3 py-1 text-xs bg-orange-100 text-orange-700 rounded-full hover:bg-orange-200 transition-colors cursor-pointer;
}

.holiday-preset-btn:hover {
    @apply bg-orange-200;
}

.holiday-preset-btn:active {
    @apply bg-orange-300;
}

/* Holiday toggle title styling */
#holiday-toggle {
    @apply transition-colors duration-200 select-none;
}

#holiday-toggle:hover {
    @apply text-orange-700 bg-orange-50 rounded-md px-2 py-1;
}

#holiday-toggle svg {
    @apply transition-transform duration-200;
}

/* Make it more obvious it's clickable */
#holiday-toggle:active {
    @apply bg-orange-100;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* Admin Form Components */
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #c2410c;
    margin-bottom: 0.5rem;
}

/* Admin Status Section */
.admin-status-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #fff7ed;
    border-radius: 0.5rem;
    border: 1px solid #fed7aa;
}

.admin-status-info {
    flex: 1;
    padding-right: 1.5rem;
}

.admin-status-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #431407;
    margin-bottom: 0.25rem;
}

.admin-status-description {
    font-size: 0.75rem;
    color: #ea580c;
}

.admin-status-toggle {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Admin Toggle Switch */
.admin-toggle-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.admin-toggle-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.admin-toggle-slider {
    width: 3.5rem;
    height: 1.75rem;
    background-color: #e5e7eb;
    border-radius: 9999px;
    position: relative;
    transition: background-color 0.2s ease-in-out;
}

.admin-toggle-input:checked+.admin-toggle-slider {
    background-color: #ea580c;
}

.admin-toggle-slider::before {
    content: '';
    position: absolute;
    top: 0.125rem;
    left: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: white;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    transition: transform 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.admin-toggle-input:checked+.admin-toggle-slider::before {
    transform: translateX(1.75rem);
    border-color: white;
}

.admin-toggle-labels {
    margin-left: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #c2410c;
}

.admin-toggle-active {
    display: none;
}

.admin-toggle-inactive {
    display: inline;
}

.admin-toggle-input:checked~.admin-toggle-labels .admin-toggle-active {
    display: inline;
}

.admin-toggle-input:checked~.admin-toggle-labels .admin-toggle-inactive {
    display: none;
}

/* Primary Image Toggle - Orange Theme */
.admin-primary-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    background-color: #fff7ed;
    border-radius: 0.25rem;
    border: 1px solid #fed7aa;
    padding: 0.25rem 0.5rem;
    width: 5rem;
    /* matches h-20 w-20 (80px) image width */
    transition: all 0.15s ease-in-out;
    cursor: pointer;
}

.admin-primary-toggle:hover {
    background-color: #ffedd5;
    border-color: #fb923c;
}

.admin-primary-toggle:has(input:checked) {
    background-color: #ea580c;
    border-color: #ea580c;
    color: white;
}

.admin-primary-radio {
    appearance: none;
    width: 0.75rem;
    height: 0.75rem;
    border: 2px solid #fed7aa;
    border-radius: 50%;
    margin-right: 0.375rem;
    background-color: white;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    position: relative;
}

.admin-primary-radio:hover {
    border-color: #fb923c;
}

.admin-primary-radio:checked {
    background-color: #c2410c;
    border-color: #c2410c;
}

.admin-primary-toggle:has(input:checked) .admin-primary-radio {
    background-color: #fed7aa;
    border-color: #fed7aa;
}

.admin-primary-label {
    color: #c2410c;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.15s ease-in-out;
}

.admin-primary-toggle:has(input:checked) .admin-primary-label {
    color: white;
}

/* File Input Styling */
.admin-file-input {
    display: block;
    width: 100%;
    font-size: 0.875rem;
    color: #ea580c;
    border: 2px dashed #fed7aa;
    border-radius: 0.5rem;
    padding: 0.75rem;
    background-color: #fff7ed;
    cursor: pointer;
    transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.admin-file-input:hover {
    border-color: #fb923c;
    background-color: #ffedd5;
}

.admin-file-input::file-selector-button {
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    background-color: #ea580c;
    color: white;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

.admin-file-input::file-selector-button:hover {
    background-color: #dc2626;
}

/* Image Manager Component */
.image-manager {
    width: 100%;
    max-width: 100%;
}

.image-manager-header {
    margin-bottom: 1rem;
}

.image-manager-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.image-preview {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid #fed7aa;
    background-color: #fff7ed;
}

.image-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-thumbnail.primary-selected {
    border: 3px solid #ea580c;
}

.remove-image {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.remove-image:hover {
    background-color: rgba(220, 38, 38, 0.95);
    transform: scale(1.1);
}

.remove-image svg {
    width: 1rem;
    height: 1rem;
}

.primary-toggle {
    background-color: #fff7ed;
    border: 1px solid #fed7aa;
    color: #c2410c;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.primary-toggle:hover {
    background-color: #ffedd5;
    border-color: #fb923c;
}

.primary-toggle.selected {
    background-color: #ea580c;
    color: white;
    border-color: #ea580c;
}

.primary-label {
    display: block;
}

.image-manager-upload {
    width: 100%;
}

.upload-dropzone {
    border: 2px dashed #fed7aa;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    background-color: #fff7ed;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.upload-dropzone:hover,
.upload-dropzone.drag-over {
    border-color: #fb923c;
    background-color: #ffedd5;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.upload-icon {
    width: 3rem;
    height: 3rem;
    color: #ea580c;
}

.upload-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #c2410c;
    margin: 0;
}

.upload-subtext {
    font-size: 0.75rem;
    color: #ea580c;
    margin: 0;
}

/* User Management Tab Buttons */
.tab-button {
    padding: 0.75rem 1rem;
    border-bottom: 2px solid transparent;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ea580c;
    transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    cursor: pointer;
}

.tab-button:hover {
    color: #c2410c;
    border-color: #fed7aa;
}

.tab-button.active {
    border-color: #ea580c;
    color: #c2410c;
    background-color: #fff7ed;
}

/* Admin Status Badge Styling */
.admin-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
}

.admin-status-badge svg {
    flex-shrink: 0;
}

/* Review Expandable Row Styling */
.review-expand-details {
    transition: all 0.3s ease-in-out;
}

/* Review Action Button States */
.review-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #f3f4f6 !important;
    color: #9ca3af !important;
    border-color: #d1d5db !important;
}

.review-disabled:hover {
    opacity: 0.5;
    background-color: #f3f4f6 !important;
    color: #9ca3af !important;
    border-color: #d1d5db !important;
}

.review-disabled svg {
    color: #9ca3af !important;
}

/* Loading state for review buttons */
.review-approve[data-loading="true"],
.review-unapprove[data-loading="true"],
.review-feature[data-loading="true"],
.review-unfeature[data-loading="true"] {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: transparent !important;
}

/* Smooth transitions for review row updates */
.admin-table-row {
    transition: all 0.3s ease-in-out;
}

/* Animation for review row deletion */
.review-row-deleting {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease-out, height 0.3s ease-out;
}

/* Notification animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

.notification-slide-in {
    animation: slideInRight 0.3s ease-out;
}

.notification-slide-out {
    animation: slideOutRight 0.3s ease-out;
}

/* Scrollbar hide utility */
.scrollbar-hide {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
    /* WebKit */
}

/* Mobile menu styles */
#mobile-menu {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

/* Content type field visibility */
.content-type-field {
    transition: display 0.2s ease-in-out;
}

.content-type-field.hidden {
    display: none;
}

/* Debug info visibility */
.debug-info-hidden {
    display: none;
}

/* Honeypot field */
.honeypot-field {
    display: none;
}

/* Email template preview */
.email-template-preview {
    height: 500px;
    overflow-y: auto;
}

/* Image manager upload area */
.image-manager-upload-hidden {
    display: none;
}

.image-input-hidden {
    display: none;
}

/* Email template styles */
.email-section-title {
    color: #7e2a0c;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.email-table-total-right {
    text-align: right;
}

.email-address-box {
    background-color: #fff7ed;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #fed7aa;
    margin: 0;
}

.email-margin-top {
    margin-top: 20px;
}

/* Admin mailer styles */
.admin-email-section-title {
    color: #374151;
    margin-bottom: 12px;
}

/* Newsletter styles */
.newsletter-social-text {
    margin-bottom: 12px;
    color: #6b7280;
    font-size: 14px;
}

.newsletter-footer-margin {
    margin-top: 8px;
}

/* Contact response styles */
.contact-response-link {
    color: #1e40af;
}

/* Modal body styles */
.modal-body-overflow-hidden {
    overflow: hidden;
}

.modal-body-position-fixed {
    position: fixed;
}

.modal-body-width-full {
    width: 100%;
}

/* Display utilities */
.display-none {
    display: none;
}

.display-block {
    display: block;
}

/* Content field visibility */
.content-field-hidden {
    display: none;
}

.content-field-visible {
    display: block;
}

/* Chevron rotation */
.chevron-rotated {
    transform: rotate(180deg);
}

.chevron-normal {
    transform: rotate(0deg);
}

/* Hero animation styles using CSS custom properties */
.falling-crinkle.dynamic {
    position: absolute;
    left: var(--crinkle-left, 0%);
    top: var(--crinkle-top, -60px);
    animation-duration: var(--crinkle-duration, 10s);
    animation-delay: var(--crinkle-delay, 0s);
    transform: var(--crinkle-transform, none);
}

.falling-crinkle.dynamic img {
    width: 100%;
}

.crinkle-rotation-60 {
    transform: rotate(60deg);
}

.crinkle-rotation-75 {
    transform: rotate(75deg);
}

.crinkle-rotation-90 {
    transform: rotate(90deg);
}

.crinkle-rotation-105 {
    transform: rotate(105deg);
}

.crinkle-rotation-120 {
    transform: rotate(120deg);
}

.crinkle-rotation-135 {
    transform: rotate(135deg);
}

.crinkle-rotation-150 {
    transform: rotate(150deg);
}

.crinkle-rotation-165 {
    transform: rotate(165deg);
}

.crinkle-rotation-180 {
    transform: rotate(180deg);
}

.crinkle-rotation-195 {
    transform: rotate(195deg);
}

.crinkle-rotation-210 {
    transform: rotate(210deg);
}

.crinkle-rotation-225 {
    transform: rotate(225deg);
}

.crinkle-rotation-240 {
    transform: rotate(240deg);
}

.crinkle-rotation-255 {
    transform: rotate(255deg);
}

.crinkle-rotation-270 {
    transform: rotate(270deg);
}

.crinkle-rotation-285 {
    transform: rotate(285deg);
}

.crinkle-rotation-300 {
    transform: rotate(300deg);
}

.crinkle-rotation-315 {
    transform: rotate(315deg);
}

.crinkle-rotation-330 {
    transform: rotate(330deg);
}

.crinkle-rotation-345 {
    transform: rotate(345deg);
}

/* Hero animation flip classes */
.crinkle-flipped {
    transform: scaleX(-1);
}

.crinkle-flipped-vertical {
    transform: scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical {
    transform: scaleX(-1) scaleY(-1);
}

/* Combine rotation with flips */
.crinkle-flipped.crinkle-rotation-0 {
    transform: rotate(0deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-15 {
    transform: rotate(15deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-30 {
    transform: rotate(30deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-45 {
    transform: rotate(45deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-60 {
    transform: rotate(60deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-75 {
    transform: rotate(75deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-90 {
    transform: rotate(90deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-105 {
    transform: rotate(105deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-120 {
    transform: rotate(120deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-135 {
    transform: rotate(135deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-150 {
    transform: rotate(150deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-165 {
    transform: rotate(165deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-180 {
    transform: rotate(180deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-195 {
    transform: rotate(195deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-210 {
    transform: rotate(210deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-225 {
    transform: rotate(225deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-240 {
    transform: rotate(240deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-255 {
    transform: rotate(255deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-270 {
    transform: rotate(270deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-285 {
    transform: rotate(285deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-300 {
    transform: rotate(300deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-315 {
    transform: rotate(315deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-330 {
    transform: rotate(330deg) scaleX(-1);
}

.crinkle-flipped.crinkle-rotation-345 {
    transform: rotate(345deg) scaleX(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-0 {
    transform: rotate(0deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-15 {
    transform: rotate(15deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-30 {
    transform: rotate(30deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-45 {
    transform: rotate(45deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-60 {
    transform: rotate(60deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-75 {
    transform: rotate(75deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-90 {
    transform: rotate(90deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-105 {
    transform: rotate(105deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-120 {
    transform: rotate(120deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-135 {
    transform: rotate(135deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-150 {
    transform: rotate(150deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-165 {
    transform: rotate(165deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-180 {
    transform: rotate(180deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-195 {
    transform: rotate(195deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-210 {
    transform: rotate(210deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-225 {
    transform: rotate(225deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-240 {
    transform: rotate(240deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-255 {
    transform: rotate(255deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-270 {
    transform: rotate(270deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-285 {
    transform: rotate(285deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-300 {
    transform: rotate(300deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-315 {
    transform: rotate(315deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-330 {
    transform: rotate(330deg) scaleY(-1);
}

.crinkle-flipped-vertical.crinkle-rotation-345 {
    transform: rotate(345deg) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-0 {
    transform: rotate(0deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-15 {
    transform: rotate(15deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-30 {
    transform: rotate(30deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-45 {
    transform: rotate(45deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-60 {
    transform: rotate(60deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-75 {
    transform: rotate(75deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-90 {
    transform: rotate(90deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-105 {
    transform: rotate(105deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-120 {
    transform: rotate(120deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-135 {
    transform: rotate(135deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-150 {
    transform: rotate(150deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-165 {
    transform: rotate(165deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-180 {
    transform: rotate(180deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-195 {
    transform: rotate(195deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-210 {
    transform: rotate(210deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-225 {
    transform: rotate(225deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-240 {
    transform: rotate(240deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-255 {
    transform: rotate(255deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-270 {
    transform: rotate(270deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-285 {
    transform: rotate(285deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-300 {
    transform: rotate(300deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-315 {
    transform: rotate(315deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-330 {
    transform: rotate(330deg) scaleX(-1) scaleY(-1);
}

.crinkle-flipped.crinkle-flipped-vertical.crinkle-rotation-345 {
    transform: rotate(345deg) scaleX(-1) scaleY(-1);
}

/* Disabled field opacity */
.field-disabled {
    opacity: 0.5;
}

.field-enabled {
    opacity: 1;
}

/* SVG rotation states */
.svg-rotated {
    transform: rotate(180deg);
    transition: transform 0.2s ease-in-out;
}

.svg-normal {
    transform: rotate(0deg);
    transition: transform 0.2s ease-in-out;
}

/* Featured badge visibility */
.featured-badge-visible {
    display: inline-flex;
}

.featured-badge-hidden {
    display: none;
}

/* Review row animation states */
.review-row-deleting {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease-out, height 0.3s ease-out;
}

.expandable-row-collapsing {
    opacity: 0;
    height: 0;
    transition: opacity 0.3s ease-out, height 0.3s ease-out;
}

/* Dropdown visibility */
.dropdown-visible {
    display: block;
}

.dropdown-hidden {
    display: none;
}

/* Message fade animation */
.message-fading {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

/* Mobile menu animation states */
.mobile-menu-open {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-closing {
    opacity: 0;
    transform: translateY(-10px);
}

.mobile-menu-closed {
    display: none;
}

/* Row visibility */
.row-visible {
    display: table-row;
}

.row-hidden {
    display: none;
}

.pagination-hidden {
    display: none;
}

.pagination-visible {
    display: block;
}

/* Image opacity states */
.image-visible {
    opacity: 1;
}

.image-hidden {
    opacity: 0;
}

.arrow-visible {
    opacity: 1;
}

.arrow-hidden {
    opacity: 0;
}
