:root {
    /* Primary Colors */
    --primary-900: #028D2D;
    --primary-800: #029e32;
    --primary-700: #02af37;
    --primary-600: #03b038;
    --primary-500: #03b038;
    --primary-400: #35C060;
    --primary-300: #68D088;
    --primary-200: #9ADFAF;
    --primary-100: #E2F4E8;
    --primary-50: #e8f8ed;

    /* Secondary Colors */
    --secondary-900: #0B3147;
    --secondary-800: #1a3f55;
    --secondary-700: #3C5A6C;
    --secondary-600: #547080;
    --secondary-500: #6D8491;
    --secondary-400: #8a9eaa;
    --secondary-300: #a7b8c2;
    --secondary-200: #c4d1d9;
    --secondary-100: #e1eaee;
    --secondary-50: #f0f4f7;

    /* Neutral Colors */
    --gray-900: #1a1a1a;
    --gray-700: #4a4a4a;
    --gray-500: #9EADB6;
    --gray-300: #CED6DA;
    --gray-100: #F4F5F5;
    --white: #FFFFFF;
    --black: #000000;

    /* Font Family */
    --font-family-primary: 'IRx', sans-serif;

    /* Font Size */
    --text-xs: 0.75rem; /* 12px */
    --text-sm: 0.875rem; /* 14px */
    --text-base: 1rem; /* 16px */
    --text-lg: 1.125rem; /* 18px */
    --text-xl: 1.25rem; /* 20px */
    --text-2xl: 1.5rem; /* 24px */
    --text-3xl: 1.875rem; /* 30px */
    --text-4xl: 2.25rem; /* 36px */
    --text-5xl: 3rem; /* 48px */

    /* Font Weight */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 700;

    /* Line Height */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-loose: 1.75;
}

@font-face {
    font-family: 'IRx';
    src: url('../fonts/IRANSansXV.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.text-gray-900 {
    color: var(--gray-900);
}

.text-gray-700 {
    color: var(--gray-700);
}

.text-gray-500 {
    color: var(--gray-500);
}

.text-primary-700 {
    color: var(--primary-700);
}

.font-regular {
    font-weight: var(--font-regular);
}

.font-medium {
    font-weight: var(--font-medium);
}

.font-bold {
    font-weight: var(--font-bold);
}


.rounded-xs { border-radius: 4px; }   /* خیلی کم */
.rounded-sm { border-radius: 8px; }   /* کم */
.rounded-md { border-radius: 12px; }  /* متوسط (معمولاً برای کارت‌ها) */
.rounded-lg { border-radius: 16px; }  /* زیاد */
.rounded-xl { border-radius: 24px; }  /* خیلی زیاد */



.text-3xl {
    font-size: var(--text-3xl);
}
.text-xl {
    font-size: var(--text-xl);
}
.text-lg {
    font-size: var(--text-lg);
}
.text-base {
    font-size: var(--text-base);
}
.text-sm {
    font-size: var(--text-sm);
}
.text-xs {
    font-size: var(--text-xs);
}

/* حذف سایه و حاشیه موقع کلیک */
.no-focus:focus,
.no-focus:active {
    box-shadow: none !important;
    outline: none !important;
    border-color: transparent !important;
    background-color: #f8f9fa !important;
}


body {
    font-family: var(--font-family-primary);
    background-color: #fff;
    -moz-font-feature-settings: 'ss02';
    -webkit-font-feature-settings: 'ss02';
    font-feature-settings: 'ss02';
    font-variation-settings: "DOTS" 3;
}

.reserve-card {
    min-width: 363px;
    min-height: 472px;
    left: 160px;
    top: 180px;
    background: #FFFFFF;
    /*box-shadow: 0px 5px 15px 0px #0000000D;*/
    border-radius: 20px;
    padding: 24px;
}

/* Reservation Sidebar */
.reserve-card .tabs {
    background-color: var(--gray-100);
    border-radius: 12px;
    gap: 4px;
    border: none;
}

.reserve-card .tabs .nav-item {
    min-width: 0;
}

.reserve-card .tabs .nav-link {
    border: none;
    border-radius: 10px;
    color: var(--secondary-900);
    background: transparent;
    font-family: var(--font-family-primary);
    font-size: var(--text-sm);
    padding: 12px 16px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s, color 0.2s;
}

.reserve-card .tabs .nav-link:hover:not(.active) {
    background: rgba(3, 176, 56, 0.08);
    color: var(--primary-500);
}

.reserve-card .tabs .nav-link.active {
    background-color: var(--primary-100);
    color: var(--primary-500);
    font-weight: var(--font-medium);
    box-shadow: none;
}


.reserve-card .package-card {
    border: 1.5px solid #d1d5db !important;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.reserve-card .package-card.active-package {
    border-color: #03B038 !important; /* رنگ سبز برای حالت فعال */
    background-color: #f8fff9; /* یک پس‌زمینه خیلی ملایم سبز (اختیاری) */
}

.reserve-card .package-card .price-text {
    color: #6c757d;
}

.reserve-card .package-card.active-package .price-text {
    color: #03B038;
}

/* مدیریت آیکون‌ها */
.reserve-card .package-card .active-icon {
    display: none;
    color: #03B038;
}

.reserve-card .package-card .inactive-icon {
    display: inline-block;
    color: #d1d5db;
}

.reserve-card .package-card.active-package .active-icon {
    display: inline-block;
}

.reserve-card .package-card.active-package .inactive-icon {
    display: none;
}
#btn-reserve-now, #btn-reserve-later, #btn-confirm-reserve {
    padding: 12px 30px;
}


