/* ==========================================================================
   File: pressvik-core/assets/css/pressvik-utils.css
   Apple Poppins Design System (Purified Utilities)
   ========================================================================== */

/* 1. TYPOGRAPHY */
.font-poppins { font-family: 'Poppins', system-ui, -apple-system, sans-serif; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-tight { letter-spacing: -0.02em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-tight { line-height: 1.25; }
.leading-normal { line-height: 1.5; }
.leading-\[1\.05\] { line-height: 1.05; }
.leading-\[1\.4\] { line-height: 1.4; }
.leading-\[1\.5\] { line-height: 1.5; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.whitespace-nowrap { white-space: nowrap; }
.text-ellipsis { text-overflow: ellipsis; }
.no-underline { text-decoration: none; }
.italic { font-style: italic; }

/* Text Alignments */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

/* Font Sizes */
.text-\[2\.75rem\] { font-size: 2.75rem; }
.text-\[2\.5rem\] { font-size: 2.5rem; }
.text-\[2\.25rem\] { font-size: 2.25rem; }
.text-\[2rem\] { font-size: 2rem; }
.text-\[1\.75rem\] { font-size: 1.75rem; }
.text-\[1\.5rem\] { font-size: 1.5rem; }
.text-\[1\.25rem\] { font-size: 1.25rem; }
.text-\[1\.125rem\] { font-size: 1.125rem; }
.text-\[1rem\] { font-size: 1rem; }
.text-\[0\.875rem\] { font-size: 0.875rem; }
.text-\[0\.75rem\] { font-size: 0.75rem; }
.text-\[0\.7rem\] { font-size: 0.7rem; }
.text-\[0\.65rem\] { font-size: 0.65rem; }

/* 2. COLORS & BG */
/* Text Colors */
.text-\[\#1d1d1f\] { color: #1d1d1f; }
.text-\[\#86868b\] { color: #86868b; }
.text-\[\#424245\] { color: #424245; }
.text-\[\#f31ca1\] { color: #f31ca1; }
.text-\[\#ffffff\] { color: #ffffff; }
.text-\[\#34c759\] { color: #34c759; }
.text-\[\#0071e3\] { color: #0071e3; }
.text-\[\#ff3b30\] { color: #ff3b30; }
.text-\[\#16a34a\] { color: #16a34a; }
.text-\[\#166534\] { color: #166534; }
.text-\[\#dc2626\] { color: #dc2626; }
.text-\[\#cccccc\] { color: #cccccc; }
.text-white { color: #ffffff; }

/* Backgrounds */
.bg-\[\#ffffff\] { background-color: #ffffff; }
.bg-\[\#f5f5f7\] { background-color: #f5f5f7; }
.bg-\[\#1d1d1f\] { background-color: #1d1d1f; }
.bg-\[\#fff0f9\] { background-color: #fff0f9; }
.bg-\[\#f0fdf4\] { background-color: #f0fdf4; }
.bg-\[\#ebebef\] { background-color: #ebebef; }
.bg-\[\#0071e3\] { background-color: #0071e3; }
.bg-\[\#ff3b30\] { background-color: #ff3b30; }
.bg-\[\#000000\] { background-color: #000000; }
.bg-\[\#fcfcfc\] { background-color: #fcfcfc; }
.bg-\[\#fef2f2\] { background-color: #fef2f2; }
.bg-white { background-color: #ffffff; }
.bg-transparent { background-color: transparent; }

/* Opacity & Blur Backgrounds */
.bg-opacity-50 { --tw-bg-opacity: 0.5; background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); }
.bg-opacity-10 { --tw-bg-opacity: 0.1; background-color: rgba(255, 59, 48, var(--tw-bg-opacity)); }

/* 3. LAYOUT & POSITIONING */
/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.top-\[2rem\] { top: 2rem; }
.top-\[-10rem\] { top: -10rem; }
.right-0 { right: 0; }
.left-\[-10rem\] { left: -10rem; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-\[1\] { z-index: 1; }
.z-\[50\] { z-index: 50; }
.z-\[90\] { z-index: 90; }
.z-\[100\] { z-index: 100; }

/* Display & Flex/Grid */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }

/* Dimensions */
.w-\[100\%\] { width: 100%; }
.w-\[85vw\] { width: 85vw; }
.w-\[30rem\] { width: 30rem; }
.w-\[5rem\] { width: 5rem; }
.w-\[4rem\] { width: 4rem; }
.w-\[3\.5rem\] { width: 3.5rem; }
.w-\[1\.25rem\] { width: 1.25rem; }
.w-max { width: max-content; }
.w-\[max-content\] { width: max-content; }
.w-full { width: 100%; }

.h-\[100vh\] { height: 100vh; }
.h-\[100\%\] { height: 100%; }
.h-\[30rem\] { height: 30rem; }
.h-\[25rem\] { height: 25rem; }
.h-\[600px\] { height: 600px; }
.h-\[5rem\] { height: 5rem; }
.h-\[4rem\] { height: 4rem; }
.h-\[3\.5rem\] { height: 3.5rem; }
.h-\[3\.25rem\] { height: 3.25rem; }
.h-\[3rem\] { height: 3rem; }
.h-\[2\.5rem\] { height: 2.5rem; }
.h-\[1\.25rem\] { height: 1.25rem; }
.h-\[2px\] { height: 2px; }
.h-auto { height: auto; }

.min-h-\[10rem\] { min-height: 10rem; }
.min-h-\[6rem\] { min-height: 6rem; }
.min-w-\[50rem\] { min-width: 50rem; }

.max-h-\[90vh\] { max-height: 90vh; }
.max-h-\[70vh\] { max-height: 70vh; }

.max-w-\[90rem\] { max-width: 90rem; }
.max-w-\[85rem\] { max-width: 85rem; }
.max-w-\[75rem\] { max-width: 75rem; }
.max-w-\[70rem\] { max-width: 70rem; }
.max-w-\[65rem\] { max-width: 65rem; }
.max-w-\[60rem\] { max-width: 60rem; }
.max-w-\[500px\] { max-width: 500px; }
.max-w-\[50rem\] { max-width: 50rem; }
.max-w-\[48rem\] { max-width: 48rem; }
.max-w-\[45rem\] { max-width: 45rem; }
.max-w-\[40rem\] { max-width: 40rem; }
.max-w-\[35rem\] { max-width: 35rem; }
.max-w-\[30rem\] { max-width: 30rem; }
.max-w-\[28rem\] { max-width: 28rem; }
.max-w-\[24rem\] { max-width: 24rem; }
.max-w-\[80px\] { max-width: 80px; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* Spacing */
.m-0 { margin: 0; }
.mt-\[0\.25rem\] { margin-top: 0.25rem; }
.mt-\[0\.5rem\] { margin-top: 0.5rem; }
.mt-\[1rem\] { margin-top: 1rem; }
.mt-\[1\.5rem\] { margin-top: 1.5rem; }
.mt-\[2rem\] { margin-top: 2rem; }
.mt-\[5rem\] { margin-top: 5rem; }
.mb-\[4px\] { margin-bottom: 4px; }
.mb-\[0\.25rem\] { margin-bottom: 0.25rem; }
.mb-\[0\.5rem\] { margin-bottom: 0.5rem; }
.mb-\[1rem\] { margin-bottom: 1rem; }
.mb-\[1\.25rem\] { margin-bottom: 1.25rem; }
.mb-\[1\.5rem\] { margin-bottom: 1.5rem; }
.mb-\[2rem\] { margin-bottom: 2rem; }
.mb-\[2\.5rem\] { margin-bottom: 2.5rem; }
.mb-\[3rem\] { margin-bottom: 3rem; }
.mb-\[4rem\] { margin-bottom: 4rem; }
.ml-\[0\.5rem\] { margin-left: 0.5rem; }

.p-\[4rem\] { padding: 4rem; }
.p-\[3\.5rem\] { padding: 3.5rem; }
.p-\[3rem\] { padding: 3rem; }
.p-\[2\.5rem\] { padding: 2.5rem; }
.p-\[2rem\] { padding: 2rem; }
.p-\[1\.5rem\] { padding: 1.5rem; }
.p-\[1\.25rem\] { padding: 1.25rem; }
.p-\[1rem\] { padding: 1rem; }
.p-\[0\.4rem\] { padding: 0.4rem; }

.px-\[4rem\] { padding-left: 4rem; padding-right: 4rem; }
.px-\[3rem\] { padding-left: 3rem; padding-right: 3rem; }
.px-\[2\.5rem\] { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-\[2rem\] { padding-left: 2rem; padding-right: 2rem; }
.px-\[1\.5rem\] { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-\[1\.25rem\] { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-\[1rem\] { padding-left: 1rem; padding-right: 1rem; }
.px-\[0\.75rem\] { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-\[0\.6rem\] { padding-left: 0.6rem; padding-right: 0.6rem; }
.px-\[0\.5rem\] { padding-left: 0.5rem; padding-right: 0.5rem; }

.py-\[6rem\] { padding-top: 6rem; padding-bottom: 6rem; }
.py-\[4rem\] { padding-top: 4rem; padding-bottom: 4rem; }
.py-\[2rem\] { padding-top: 2rem; padding-bottom: 2rem; }
.py-\[1\.25rem\] { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-\[1rem\] { padding-top: 1rem; padding-bottom: 1rem; }
.py-\[0\.75rem\] { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-\[0\.5rem\] { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-\[0\.4rem\] { padding-top: 0.4rem; padding-bottom: 0.4rem; }
.py-\[0\.25rem\] { padding-top: 0.25rem; padding-bottom: 0.25rem; }

.pt-\[6rem\] { padding-top: 6rem; }
.pt-\[2rem\] { padding-top: 2rem; }
.pr-\[1\.5rem\] { padding-right: 1.5rem; }
.pb-\[8rem\] { padding-bottom: 8rem; }
.pb-\[1\.5rem\] { padding-bottom: 1.5rem; }
.pb-\[1rem\] { padding-bottom: 1rem; }

.gap-\[5rem\] { gap: 5rem; }
.gap-\[3rem\] { gap: 3rem; }
.gap-\[2rem\] { gap: 2rem; }
.gap-\[1\.5rem\] { gap: 1.5rem; }
.gap-\[1\.25rem\] { gap: 1.25rem; }
.gap-\[1rem\] { gap: 1rem; }
.gap-\[0\.75rem\] { gap: 0.75rem; }
.gap-\[0\.5rem\] { gap: 0.5rem; }

/* Overflow & Resize */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.resize-y { resize: vertical; }

/* 4. BORDERS & SHADOWS */
.border-none { border: none; }
.border-transparent { border-color: transparent; }
.border { border: 1px solid; }
.border-b { border-bottom: 1px solid; }
.border-t { border-top: 1px solid; }
.border-r { border-right: 1px solid; }
.border-t-\[6px\] { border-top: 6px solid; }
.border-collapse { border-collapse: collapse; }

/* Border Colors */
.border-\[\#0071e3\] { border-color: #0071e3; }
.border-t-\[\#0071e3\] { border-top-color: #0071e3; }
.border-\[\#cbd5e1\] { border-color: #cbd5e1; }
.border-\[\#f5f5f7\] { border-color: #f5f5f7; }
.border-\[\#ebebef\] { border-color: #ebebef; }
.border-\[\#e5e7eb\] { border-color: #e5e7eb; }
.border-\[\#f31ca1\] { border-color: #f31ca1; }
.border-\[\#bbf7d0\] { border-color: #bbf7d0; }
.border-\[\#fecaca\] { border-color: #fecaca; }
.border-\[\#ffffff1a\] { border-color: rgba(255, 255, 255, 0.1); }
.last\:border-0:last-child { border-width: 0; }

/* Border Radius */
.rounded-\[0\.5rem\] { border-radius: 0.5rem; }
.rounded-\[0\.75rem\] { border-radius: 0.75rem; }
.rounded-\[1rem\] { border-radius: 1rem; }
.rounded-\[1\.5rem\] { border-radius: 1.5rem; }
.rounded-\[2rem\] { border-radius: 2rem; }
.rounded-full { border-radius: 9999px; }

/* Box Shadows */
.shadow-apple { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04); }
.shadow-apple-hero { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); }
.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); }

/* 5. INTERACTIVE & EFFECTS */
/* General */
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }
.outline-none { outline: none; }
.opacity-0 { opacity: 0; }
.opacity-\[0\.15\] { opacity: 0.15; }
.opacity-25 { opacity: 0.25; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.blur-\[12rem\] { filter: blur(12rem); -webkit-filter: blur(12rem); }
.grayscale { filter: grayscale(100%); }
.empty\:hidden:empty { display: none; }

/* Transitions & Transforms */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: background-color 0.2s, color 0.2s, border-color 0.2s; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)); }
.translate-x-\[100\%\] { --tw-translate-x: 100%; transform: translateX(100%); }
.translate-x-0 { --tw-translate-x: 0px; transform: translateX(0px); }

/* Hover & Group States */
.hover\:underline:hover { text-decoration: underline; }
.hover\:bg-\[\#0071e3\]:hover { background-color: #0071e3; }
.hover\:bg-\[\#0077ed\]:hover { background-color: #0077ed; }
.hover\:bg-\[\#34c759\]:hover { background-color: #34c759; }
.hover\:bg-\[\#005bb5\]:hover { background-color: #005bb5; }
.hover\:bg-\[\#333336\]:hover { background-color: #333336; }
.hover\:bg-\[\#ff3b30\]:hover { background-color: #ff3b30; }
.hover\:bg-\[\#ebebef\]:hover { background-color: #ebebef; }
.hover\:bg-\[\#f5f5f7\]:hover { background-color: #f5f5f7; }
.hover\:text-\[\#1d1d1f\]:hover { color: #1d1d1f; }
.hover\:text-\[\#ffffff\]:hover { color: #ffffff; }
.hover\:border-\[\#d2d2d7\]:hover { border-color: #d2d2d7; }
.hover\:border-\[\#0071e333\]:hover { border-color: rgba(0, 113, 227, 0.2); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.group:hover .group-hover\:scale-\[1\.1\] { transform: scale(1.1); }

/* Focus States */
.focus\:border-\[\#0071e3\]:focus { border-color: #0071e3; }
.focus-within\:border-\[\#0071e3\]:focus-within { border-color: #0071e3; }
.focus\:bg-\[\#ffffff\]:focus { background-color: #ffffff; }
.focus\:ring-apple:focus { box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15); }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--tw-ring-color); }
.focus\:ring-\[\#0071e31a\]:focus { --tw-ring-color: rgba(0, 113, 227, 0.1); }
.pm-input-focus:focus { 
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15) !important; 
    border-color: #0071e3 !important;
    outline: none !important; 
}

/* Fixes & Hacks */
.js-invoice-form label input { display: none; }
#form-checkout__cardNumber, #form-checkout__expirationDate, #form-checkout__securityCode { width: 100% !important; height: 100% !important; padding: 0 !important; border: none !important; outline: none !important; background: transparent !important; }
#form-checkout__cardNumber iframe, #form-checkout__expirationDate iframe, #form-checkout__securityCode iframe { width: 100% !important; height: 100% !important; border: none !important; outline: none !important; }
#js-3ds-container iframe { border-radius: 1rem; }

/* Animation */
.animate-spin { animation: spin 1s linear infinite; }
.animate-fade-up { animation: pressvikFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pressvikFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* 6. MEDIA QUERIES */
/* Fix 3DS Responsive Mercado Pago */
@media only screen and (max-width: 980px) {
    #js-3ds-container { width: 100% !important; height: 440px !important; }
}

/* MD: Tablets */
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:flex-row { flex-direction: row; }
    .md\:mb-0 { margin-bottom: 0; }
    .md\:p-\[4rem\] { padding: 4rem; }
    .md\:py-\[10rem\] { padding-top: 10rem; padding-bottom: 10rem; }
    .md\:text-\[4\.5rem\] { font-size: 4.5rem; }
    .md\:text-\[3\.5rem\] { font-size: 3.5rem; }
    .md\:text-\[1\.5rem\] { font-size: 1.5rem; }
    .md\:p-\[3\.5rem\] { padding: 3.5rem; }
    .md\:px-\[1\.5rem\] { padding-left: 1.5rem; padding-right: 1.5rem; }
    .md\:w-max { width: max-content; }
    .md\:w-auto { width: auto; }
}

/* LG: Desktops */
@media (min-width: 1024px) {
    .lg\:hidden { display: none !important; }
    .lg\:flex { display: flex !important; }
    .lg\:grid { display: grid !important; }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .lg\:col-span-4 { grid-column: span 4 / span 4; }
    .lg\:col-span-8 { grid-column: span 8 / span 8; }
    .lg\:gap-\[3rem\] { gap: 3rem; }
    .lg\:px-\[3rem\] { padding-left: 3rem; padding-right: 3rem; }
}

/* ==========================================================================
   WordPress Native Overrides (Logo Fix)
   ========================================================================== */
.custom-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.custom-logo { max-height: 2.5rem; width: auto; object-fit: contain; }
@media (min-width: 1024px) { .custom-logo { max-height: 3rem; } }