/* ========================================================================
   Freiheitskanzlei - Local CSS (Tailwind CDN Replacement)
   ======================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

/* ========================================================================
   CSS Custom Properties (Brand Colors from Tailwind Config)
   ======================================================================== */
:root {
    --color-brand: #008b55;
    --color-dark: #0a0a0a;
    --color-cta: #dc2626;
    --color-cta-hover: #b91c1c;
}

/* ========================================================================
   Reset & Base
   ======================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
}

html.scroll-smooth {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg, video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: inherit;
}

ul {
    list-style: none;
}

/* ========================================================================
   Antialiased
   ======================================================================== */
.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================================================
   Background Colors
   ======================================================================== */
.bg-white { background-color: #ffffff; }
.bg-dark { background-color: var(--color-dark); }
.bg-brand { background-color: var(--color-brand); }
.bg-cta { background-color: var(--color-cta); }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-50 { background-color: #f9fafb; }

/* Brand with opacity */
.bg-brand\/5 { background-color: rgba(0, 139, 85, 0.05); }
.bg-brand\/20 { background-color: rgba(0, 139, 85, 0.2); }

/* White with opacity */
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }

/* Dark with opacity */
.bg-dark\/85 { background-color: rgba(10, 10, 10, 0.85); }

/* ========================================================================
   Text Colors
   ======================================================================== */
.text-white { color: #ffffff; }
.text-dark { color: var(--color-dark); }
.text-brand { color: var(--color-brand); }
.text-cta { color: var(--color-cta); }
.text-gray-400 { color: #9ca3af; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }

/* White with opacity */
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }

/* ========================================================================
   Typography
   ======================================================================== */
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.uppercase { text-transform: uppercase; }

.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* ========================================================================
   Layout & Sizing
   ======================================================================== */
.w-full { width: 100%; }
.w-4 { width: 1rem; }
.w-8 { width: 2rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-64 { width: 16rem; }

.h-4 { height: 1rem; }
.h-1 { height: 0.25rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-64 { height: 16rem; }
.h-full { height: 100%; }

.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

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

/* ========================================================================
   Spacing (Padding & Margin)
   ======================================================================== */
.p-1 { padding: 0.25rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-4 { padding-top: 1rem; }
.pt-12 { padding-top: 3rem; }
.pb-24 { padding-bottom: 6rem; }
.pb-12 { padding-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mr-4 { margin-right: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.-mt-20 { margin-top: -5rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }

/* Space utilities */
.space-x-4 > * + * { margin-left: 1rem; }
.-space-x-4 > * + * { margin-left: -1rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* ========================================================================
   Flexbox
   ======================================================================== */
.flex { display: flex; }
.inline-block { display: inline-block; }
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-baseline { align-items: baseline; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* ========================================================================
   Grid
   ======================================================================== */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-10 { gap: 2.5rem; }

/* ========================================================================
   Borders
   ======================================================================== */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-l-8 { border-left-width: 8px; border-left-style: solid; }
.border-t-4 { border-top-width: 4px; border-top-style: solid; }
.border-t-8 { border-top-width: 8px; border-top-style: solid; }

.border-brand { border-color: var(--color-brand); }
.border-cta { border-color: var(--color-cta); }
.border-dark { border-color: var(--color-dark); }
.border-white { border-color: #ffffff; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }

/* ========================================================================
   Border Radius
   ======================================================================== */
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

/* ========================================================================
   Shadows
   ======================================================================== */
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* ========================================================================
   Positioning
   ======================================================================== */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.-bottom-6 { bottom: -1.5rem; }
.-left-6 { left: -1.5rem; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.-z-10 { z-index: -10; }

/* ========================================================================
   Overflow & Object Fit
   ======================================================================== */
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* ========================================================================
   Aspect Ratio
   ======================================================================== */
.aspect-\[4\/3\] {
    aspect-ratio: 4 / 3;
}
.aspect-video {
    aspect-ratio: 16 / 9;
}

/* ========================================================================
   Background Image & Sizing
   ======================================================================== */
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-fixed { background-attachment: fixed; }

/* ========================================================================
   Backdrop Blur
   ======================================================================== */
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-\[2px\] { backdrop-filter: blur(2px); }

/* ========================================================================
   Blur
   ======================================================================== */
.blur-3xl { filter: blur(64px); }

/* ========================================================================
   Transforms
   ======================================================================== */
.transform { transform: var(--tw-transform); }
.scale-110 { transform: scale(1.1); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-x-1\/2 { transform: translateX(50%); }
.-translate-y-1\/2.translate-x-1\/2 {
    transform: translateY(-50%) translateX(50%);
}

/* ========================================================================
   Opacity
   ======================================================================== */
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-80 { opacity: 0.8; }
.opacity-60 { opacity: 0.6; }

/* ========================================================================
   Transitions
   ======================================================================== */
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-1000 { transition-duration: 1000ms; }

/* ========================================================================
   Gradients
   ======================================================================== */
.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-from, transparent), var(--tw-gradient-via, transparent), var(--tw-gradient-to, transparent));
}
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-from, transparent), var(--tw-gradient-via, transparent), var(--tw-gradient-to, transparent));
}
.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-from, transparent), var(--tw-gradient-via, transparent), var(--tw-gradient-to, transparent));
}

/* Gradient color stops for brand */
.from-brand { --tw-gradient-from: var(--color-brand); }
.via-transparent { --tw-gradient-via: transparent; }
.to-brand { --tw-gradient-to: var(--color-brand); }
.to-transparent { --tw-gradient-to: transparent; }
.from-dark\/80 { --tw-gradient-from: rgba(10, 10, 10, 0.8); }
.from-white\/10 { --tw-gradient-from: rgba(255, 255, 255, 0.1); }

/* Radial gradient for glow effect */
.bg-\[radial-gradient\(circle_at_center\,_var\(--tw-gradient-stops\)\)\] {
    background-image: radial-gradient(circle at center, var(--tw-gradient-from, transparent), var(--tw-gradient-to, transparent));
}

/* ========================================================================
   Text Alignment
   ======================================================================== */
.text-center { text-align: center; }

/* ========================================================================
   Display (Hidden)
   ======================================================================== */
.hidden { display: none; }

/* ========================================================================
   Hover States
   ======================================================================== */
.hover\:bg-cta:hover { background-color: var(--color-cta); }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-white:hover { color: #ffffff; }

/* Group hover */
.group:hover .group-hover\:opacity-40 { opacity: 0.4; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }

/* ========================================================================
   Custom Components (from original <style> block)
   ======================================================================== */

/* Erweiterte Hover-Animation für Buttons (Shine-Effekt, Scale & Click-Feedback) */
.btn-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Der Lichtreflex (Shine) */
.btn-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

/* Bewegung des Lichtreflexes beim Hover */
.btn-hover:hover::after {
    left: 200%;
}

/* Vergrößerung und Schatten beim Hover */
.btn-hover:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.4);
}

/* Nachgeben beim Klicken */
.btn-hover:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

/* Text-Umbruch erzwingen für lange Wörter */
.break-words { word-wrap: break-word; overflow-wrap: break-word; hyphens: auto; }

/* Group class */
.group { position: relative; }

/* ========================================================================
   Responsive Breakpoints
   ======================================================================== */

/* md: 768px */
@media (min-width: 768px) {
    .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
    .md\:p-12 { padding: 3rem; }
    .md\:p-14 { padding: 3.5rem; }
    .md\:p-8 { padding: 2rem; }
    .md\:pt-20 { padding-top: 5rem; }
    .md\:pb-32 { padding-bottom: 8rem; }
    .md\:pl-16 { padding-left: 4rem; }

    .md\:h-12 { height: 3rem; }

    .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
    .md\:text-6xl { font-size: 3.75rem; line-height: 1; }

    .md\:inline-block { display: inline-block; }

    .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\:text-left { text-align: left; }

    .md\:items-start { align-items: flex-start; }

    .md\:border-l { border-left-width: 1px; border-left-style: solid; }

    .md\:space-y-6 > * + * { margin-top: 1.5rem; }

    .md\:w-24 { width: 6rem; }
    .md\:h-24 { height: 6rem; }
    .md\:w-28 { width: 7rem; }
    .md\:h-28 { height: 7rem; }
}

/* lg: 1024px */
@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ========================================================================
   Purchase Modal (Glassmorphism Overlay + Product Box)
   ======================================================================== */

/* Modal Overlay */
.ft-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ft-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Card */
.ft-modal-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px 0 28px;
    max-width: 440px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ft-modal-overlay.active .ft-modal-card {
    transform: scale(1) translateY(0);
}

/* Close Button */
.ft-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.ft-modal-close:hover {
    background: #f3f4f6;
    color: #333;
}

/* Modal Title */
.ft-modal-title {
    margin: 8px 0 0 0;
    color: #2c3e50;
    font-size: 26px;
    text-align: center;
    font-weight: 700;
}

/* Billing Toggle */
.ft-billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0;
    gap: 14px;
    background-color: #f8f9fa;
    padding: 8px 12px;
    border-radius: 10px;
}

.ft-toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
    user-select: none;
}

.ft-toggle-label.active {
    color: #333;
    font-weight: 700;
}

/* Toggle Switch */
.ft-switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 22px;
    flex-shrink: 0;
}

.ft-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ft-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.ft-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 16px;
    left: 3px;
    bottom: 2px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.ft-switch input:checked + .ft-slider {
    background-color: var(--color-brand);
}

.ft-switch input:checked + .ft-slider:before {
    transform: translateX(20px);
}

/* Price Section */
.ft-price-section {
    text-align: center;
    margin-bottom: 24px;
}

.ft-price {
    color: var(--color-brand);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.ft-price span {
    font-size: 16px;
    color: #6c757d;
    font-weight: normal;
}

.ft-term-text {
    color: #6c757d;
    font-size: 14px;
}

/* Terms Checkbox */
.ft-terms {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 12px;
    margin-bottom: 4px;
}

.ft-terms label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #495057;
    line-height: 1.5;
}

.ft-terms input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.ft-terms a {
    color: var(--color-brand);
    text-decoration: underline;
}

.ft-error-message {
    color: #D9534F;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.ft-terms.ft-error .ft-error-message {
    display: block;
}

.ft-terms.ft-error {
    border: 1px solid #D9534F;
}

/* Buy Button */
.ft-buy-btn {
    width: 100%;
    background: var(--color-brand);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.15s;
    font-size: 18px;
    margin-top: 10px;
}

.ft-buy-btn:hover {
    background: #006d43;
    transform: translateY(-1px);
}

.ft-buy-btn:active {
    transform: translateY(0);
}

.ft-buy-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Saving Badge */
.ft-saving-badge {
    background: var(--color-brand);
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    font-weight: 600;
}

/* Details Section */
.ft-details-section {
    margin-top: 20px;
}

.ft-details-section h4 {
    margin-bottom: 12px;
    color: #495057;
    font-size: 16px;
}

/* Benefits List */
.ft-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

.ft-benefits-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
}

.ft-benefits-list li:last-child {
    border-bottom: none;
}

.ft-benefits-list li span:first-child {
    color: var(--color-brand);
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Details Dropdown */
.ft-details-dropdown {
    margin-top: 15px;
    margin-left: -28px;
    margin-right: -28px;
    width: calc(100% + 56px);
    background: #5a6268;
    border-radius: 0 0 16px 16px;
}

.ft-details-dropdown summary {
    cursor: pointer;
    background-color: #6c757d;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 0 0 16px 16px;
    list-style: none;
    margin: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s;
}

.ft-details-dropdown summary::-webkit-details-marker { display: none; }
.ft-details-dropdown summary::marker { display: none; }

.ft-details-dropdown summary::before {
    content: "\25BC";
    font-size: 12px;
    transition: transform 0.3s;
}

.ft-details-dropdown[open] summary::before {
    transform: rotate(180deg);
}

.ft-details-dropdown summary:hover {
    background-color: #5a6268;
}

.ft-details-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 15px;
    font-size: 14px;
    color: #f8f9fa;
}

.ft-details-dropdown ul li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ft-details-dropdown ul li:last-child {
    border-bottom: none;
}

.ft-col1 {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 40%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.ft-col2 {
    flex: 1;
    text-align: right;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Mobile adjustments for modal */
@media (max-width: 480px) {
    .ft-modal-card {
        padding: 24px 18px 0 18px;
        width: 95%;
        max-height: 95vh;
    }

    .ft-details-dropdown {
        margin-left: -18px;
        margin-right: -18px;
        width: calc(100% + 36px);
    }

    .ft-modal-title {
        font-size: 22px;
    }

    .ft-price {
        font-size: 24px;
    }
}
