        /* Product Calendar Styles */
        .product-calendar-container {
            max-width: 1200px;
            /*margin: 0 auto;*/
            box-sizing: border-box;
            width: 100%;
        }

        .product-calendar {
            font-family: 'IBM Plex Sans', sans-serif;
            background: #ffffff;
            color: #292c2d;
            border: 1px solid #ddd;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            box-sizing: border-box;
            width: 100%;
        }

        .product-calendar-inner {
            padding: 20px;
        }

        .product-calendar-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .product-calendar-controls a {
            color: #46494a;
            text-decoration: none;
            font-size: 24px;
            padding: 5px 10px;
            border-radius: 5px;
            transition: background-color 0.2s;
            position: relative;
            z-index: 15;
            cursor: pointer;
            display: block;
        }

        .product-calendar-controls a:hover {
            background-color: #efefef;
        }

        .product-calendar-month-year {
            font-size: 20px;
            font-weight: 500;
            color: #333;
        }

        .product-calendar-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            /*gap: 20px;*/
            position: relative;
            z-index: 1;
            margin-top: -45px;
        }

        .product-calendar-inner {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 1px;
            box-sizing: border-box;
            width: 100%;
            overflow: hidden;
        }

        .calendar-wrapper {
            display: flex;
            flex-direction: column;
        }

        .calendar-month-title {
            background: #f8f9fa;
            padding: 10px;
            text-align: center;
            font-weight: bold;
            border-bottom: 1px solid #e0e0e0;
            margin-bottom: 0;
        }

        .product-calendar-day-header {
            background: #f8f9fa;
            padding: 10px 5px;
            text-align: center;
            font-weight: 500;
            font-size: 12px;
            color: #575757;
            border-bottom: 1px solid #ddd;
        }

        .product-calendar-day {
            background: #fff;
            border: 1px solid #e9ecef;
            padding: 8px 4px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
            min-height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            border-radius: 8px;
        }

        .product-calendar-day:hover {
            background: #f8f9fa;
        }

        .product-calendar-day.other-month {
            color: #ccc;
            background: #fafafa;
        }

        .product-calendar-day.today {
            border: solid 2px #03a9f4;
            /*background: #03a9f4;*/
            color: #272727;
            font-weight: 500;
        }

        .product-calendar-day.booked {
            background: #ff5858 !important;
            color: white !important;
            cursor: not-allowed;
        }

         .product-calendar-day.is-blue {
             background: #cce5ff !important;
             color: #252525 !important;
             /*cursor: not-allowed;*/
         }

         .product-calendar-day.clickable {
             cursor: pointer;
             transition: all 0.2s ease;
         }

         .product-calendar-day.clickable:hover {
             transform: scale(1.05);
             box-shadow: 0 2px 8px rgba(0,0,0,0.1);
         }

         .product-calendar-day.past-date {
             color: #aaa;
             background: #f5f5f5 !important;
             cursor: not-allowed;
             opacity: 0.75;
         }

         .product-calendar-day.past-date:hover {
             transform: none;
             box-shadow: none;
             background: #efefef !important;
         }

         .product-calendar-day.past-date.is-blue {
             background: #e9ecef !important;
             color: #999 !important;
         }

         .product-calendar-day.past-date.today {
             border-color: #ccc;
             color: #999;
         }

         /* Tooltip Styles */
        .calendar-tooltip {
            position: absolute;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 12px 16px;
            box-shadow: 0 4px 12px rgb(0 0 0 / 58%);
            z-index: 1000;
            min-width: 200px;
            max-width: 300px;
            font-size: 16px;
            line-height: 1.4;
            pointer-events: auto;
        }

         .calendar-tooltip::before {
             content: '';
             position: absolute;
             bottom: -8px;
             left: 50%;
             transform: translateX(-50%);
             width: 0;
             height: 0;
             border-left: 8px solid transparent;
             border-right: 8px solid transparent;
             border-top: 8px solid #fff;
         }

         .calendar-tooltip::after {
             content: '';
             position: absolute;
             bottom: -9px;
             left: 50%;
             transform: translateX(-50%);
             width: 0;
             height: 0;
             border-left: 9px solid transparent;
             border-right: 9px solid transparent;
             border-top: 9px solid #fff;
         }

         .tooltip-date {
             font-weight: 600;
             color: #333;
             margin-bottom: 8px;
             border-bottom: 1px solid #eee;
             padding-bottom: 6px;
         }

        .tooltip-price {
            color: #28a745;
            font-weight: 600;
            font-size: 16px;
        }

        /* Currency Tooltip Styles */
        .price-tooltip-container {
            position: relative;
            display: inline-block;
        }

        .price-hover-trigger {
            cursor: pointer;
        }

        .currency-tooltip {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
            background: linear-gradient(135deg, #667eea 0%, #074460 100%);
            border: none;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            padding: 0;
            margin-top: 15px;
            z-index: 1000;
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }
        .magicBtn:hover a, .magicBtn:hover a small, .magicBtn:hover button {
            color: #2a6f7e !important;
        }
        .currency-tooltip.show {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(5px);
        }

        .tooltip-arrow {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid #667eea;
        }

        .tooltip-content {
            padding: 20px;
            color: white;
        }

        .tooltip-loading {
            text-align: center;
            color: rgba(255,255,255,0.8);
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .tooltip-loading i {
            font-size: 16px;
        }

        .tooltip-title {
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            font-size: 16px;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .tooltip-currencies {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .tooltip-currency-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 12px;
            background: rgba(255,255,255,0.15);
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.2s ease;
            backdrop-filter: blur(5px);
        }

        .tooltip-currency-item:hover {
            background: rgba(255,255,255,0.25);
            transform: translateX(2px);
        }

        .tooltip-currency-item .currency-code {
            font-weight: 700;
            color: #fff;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .tooltip-currency-item .currency-amount {
            color: #ffd700;
            font-weight: 600;
            font-size: 14px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

         .tooltip-status {
             margin-top: 6px;
             font-size: 14px;
             font-weight: 600;
         }

         .tooltip-status.available {
             color: #000;
         }

        .tooltip-status.booked {
            color: #000;
        }

        .tooltip-reserve-btn button {
            pointer-events: auto;
            cursor: pointer;
        }

        .product-calendar-day.booked:hover {
            background: #c82333 !important;
        }

        /* Responsive design for two calendars */
        @media (max-width: 768px) {
            .product-calendar-body {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .product-calendar-container {
                max-width: 100%;
                padding: 0 5px;
                margin: 0;
                box-sizing: border-box;
                width: 100%;
            }

            .product-calendar-inner {
                width: 100%;
                box-sizing: border-box;
                padding: 5px;
                gap: 1px;
            }
        }


        /* Responsive calendar */
        @media (max-width: 768px) {
            .product-calendar-container {
                max-width: 100%;
                padding: 0 5px;
                margin: 0;
                box-sizing: border-box;
                width: 100%;
            }

            .product-calendar-day {
                min-height: 29px;
                font-size: 12px;
                padding: 4px 1px;
                box-sizing: border-box;
            }

            .product-calendar-day-header {
                padding: 7px 1px;
                font-size: 11px;
                box-sizing: border-box;
            }

            .product-calendar-controls a {
                font-size: 20px;
            }

            .product_detail_map.border.p-3 {
                padding: 10px !important;
                box-sizing: border-box;
            }
        }

        /* Extra small devices */
        @media (max-width: 480px) {
            .product-calendar-container {
                padding: 0 5px;
                margin-bottom: 15px;
            }

            .product-calendar-inner {
                padding: 5px;
                gap: 1px;
            }

            .product-calendar-day {
                min-height: 27px;
                font-size: 11px;
                padding: 3px 1px;
            }

            .product-calendar-day-header {
                padding: 6px 1px;
                font-size: 10px;
            }

            .product_detail_map.border.p-3 {
                padding: 15px 8px 20px 8px !important;
            }
        }
