/* Jot Occasion Calendar - Public Styles */

/* Notification Animations */
@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.jot-notification-message {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

/* Single Occasion Page Wrapper */
.jot-single-occasion-page {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Calendar Wrapper */
.jot-occasion-calendar-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Calendar Header */
.jot-occasion-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.jot-occasion-calendar-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.jot-occasion-calendar-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.jot-nav-btn {
    background: #3788d8;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.jot-nav-btn:hover {
    background: #2968a8;
}

.jot-view-switcher {
    display: flex;
    gap: 5px;
}

.jot-view-btn {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.jot-view-btn:hover {
    background: #e5e5e5;
}

.jot-view-btn.active {
    background: #3788d8;
    color: #fff;
    border-color: #3788d8;
}

.jot-today-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.jot-today-btn:hover {
    background: #f5f5f5;
}

/* Category Filter */
.jot-category-filter {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.jot-category-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

/* Calendar Content */
.jot-occasion-calendar-content {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    min-height: 400px;
}

.jot-loading {
    text-align: center;
    padding: 50px;
    color: #999;
}

/* Month View */
.jot-month-calendar {
    width: 100%;
}

.jot-month-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #ddd;
    border: 1px solid #ddd;
}

.jot-day-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 12px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jot-month-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #ddd;
    border: 1px solid #ddd;
    border-top: none;
}

.jot-day-cell {
    background: #fff;
    min-height: 100px;
    padding: 8px;
    position: relative;
}

.jot-day-cell.other-month {
    background: #f9f9f9;
    color: #999;
}

.jot-day-cell.today {
    background: #e3f2fd;
}

.jot-day-number {
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
    font-size: 14px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    transition: all 0.2s ease;
}

.jot-day-cell.today .jot-day-number {
    background: #1976D2;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 2px 6px rgba(25, 118, 210, 0.3);
}

.jot-day-cell.has-occasions .jot-day-number {
    background: #e3f2fd;
    color: #1976D2;
    font-weight: 700;
}

.jot-day-cell:hover .jot-day-number {
    background: #1976D2;
    color: #fff;
    transform: scale(1.1);
}

.jot-day-occasions {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.jot-occasion-item {
    color: #fff;
    padding: 4px 6px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 4px;
}

.jot-occasion-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.jot-occasion-time-badge {
    font-weight: 600;
    font-size: 9px;
    background: rgba(0,0,0,0.2);
    padding: 2px 4px;
    border-radius: 3px;
    flex-shrink: 0;
    white-space: nowrap;
}

.jot-multi-day-indicator {
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
    opacity: 0.9;
}

.jot-occasion-title-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jot-more-occasions {
    font-size: 11px;
    color: #666;
    padding: 2px 6px;
    text-align: center;
    font-weight: 500;
}

/* Week View */
.jot-week-calendar {
    width: 100%;
}

.jot-week-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #ddd;
    border: 1px solid #ddd;
    margin-bottom: 1px;
}

.jot-week-day-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 10px;
    text-align: center;
    border-radius: 8px 8px 0 0;
    color: #fff;
    position: relative;
}

.jot-week-day-name {
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

.jot-week-day-date {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    line-height: 1;
}

.jot-week-day-header.today {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.4);
    transform: scale(1.02);
}

.jot-week-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #ddd;
    border: 1px solid #ddd;
}

.jot-week-day-cell {
    background: #fff;
    min-height: 400px;
    padding: 10px;
}

.jot-week-day-cell.today {
    background: #e3f2fd;
}

.jot-week-day-occasions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jot-week-day-occasions .jot-occasion-item {
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.jot-week-day-occasions .jot-occasion-item:hover {
    transform: translateX(3px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.jot-week-day-occasions .jot-occasion-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.3;
}

.jot-week-day-occasions .jot-occasion-time {
    font-size: 11px;
    opacity: 0.95;
    font-weight: 500;
}

/* Year View */
.jot-year-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.jot-mini-month {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 15px;
}

.jot-mini-month-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.jot-mini-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.jot-mini-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.jot-mini-day:hover {
    background: #e3f2fd;
    color: #1976D2;
    transform: scale(1.15);
}

.jot-mini-day.has-occasions {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
}

.jot-mini-day.other-month {
    color: #ccc;
}

/* Day View */
.jot-day-view {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.jot-day-occasion {
    border-left: 5px solid #3788d8;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.jot-day-occasion:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.jot-day-occasion-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.jot-day-occasion-time {
    color: #555;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
}

.jot-day-occasion-location {
    color: #666;
    font-size: 14px;
}

/* Occasion Modal */
.jot-occasion-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}

.jot-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.jot-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.jot-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.jot-modal-close:hover {
    color: #333;
}

.jot-occasion-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    color: #333;
}

.jot-occasion-dates,
.jot-occasion-location,
.jot-occasion-categories {
    margin-bottom: 15px;
    color: #666;
}

.jot-occasion-dates strong,
.jot-occasion-location strong {
    display: inline-block;
    margin-right: 5px;
}

.jot-occasion-description {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.jot-category-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    margin-right: 5px;
}

.jot-tag-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 3px;
    background-color: #e0e0e0;
    color: #333;
    font-size: 12px;
    margin-right: 5px;
    border: 1px solid #ccc;
}

/* Occasion Images */
.jot-occasion-images {
    margin-bottom: 20px;
}

.jot-occasion-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.jot-occasion-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s;
}

.jot-occasion-image:hover {
    transform: scale(1.05);
}

/* Email Reminder Form */
.jot-occasion-reminder {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin-top: 20px;
}

.jot-occasion-reminder h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.jot-reminder-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jot-reminder-email,
.jot-reminder-hours {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    max-width: 100%;
}

.jot-reminder-submit {
    background: #3788d8;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.jot-reminder-submit:hover {
    background: #2968a8;
}

.jot-reminder-message {
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}

.jot-reminder-message.success {
    background: #d4edda;
    color: #155724;
}

.jot-reminder-message.error {
    background: #f8d7da;
    color: #721c24;
}

/* Upcoming Occasions List */
.jot-upcoming-occasions {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
}

.jot-upcoming-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.jot-occasions-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.jot-occasions-list .jot-occasion-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
}

.jot-occasions-list .jot-occasion-item:last-child {
    border-bottom: none;
}

.jot-occasions-list .jot-occasion-item:hover {
    background: #f9f9f9;
}

.jot-occasion-marker {
    width: 4px;
    border-radius: 2px;
    flex-shrink: 0;
}

.jot-occasion-info {
    flex: 1;
}

.jot-occasions-list .jot-occasion-title {
    margin: 0 0 8px 0;
    font-size: 18px;
}

.jot-occasion-link {
    color: #3788d8;
    text-decoration: none;
    transition: color 0.3s;
}

.jot-occasion-link:hover {
    color: #2968a8;
    text-decoration: underline;
}

.jot-occasion-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.jot-occasion-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.jot-occasion-meta .dashicons {
    width: 16px;
    height: 16px;
    font-size: 16px;
}

.jot-no-occasions {
    text-align: center;
    color: #999;
    padding: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .jot-occasion-calendar-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .jot-occasion-calendar-nav,
    .jot-view-switcher {
        justify-content: center;
    }
    
    .jot-month-grid .jot-day-cell {
        min-height: 60px;
        font-size: 14px;
    }
    
    .jot-day-occasions {
        display: none;
    }
    
    .jot-day-cell.has-occasions::after {
        content: '•';
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        color: #3788d8;
        font-size: 20px;
    }
    
    .jot-modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .jot-occasion-title {
        font-size: 20px;
    }
    
    .jot-year-calendar {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .jot-occasion-calendar-wrapper {
        padding: 10px;
    }
    
    .jot-occasion-calendar-title {
        font-size: 20px;
    }
    
    .jot-view-btn,
    .jot-nav-btn,
    .jot-today-btn {
        padding: 6px 10px;
        font-size: 14px;
    }
    
    .jot-occasion-meta {
        flex-direction: column;
        gap: 5px;
    }
}

/* Occasions Cards View */
.jot-occasions-cards-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.jot-occasions-month-section {
    margin-bottom: 50px;
}

.jot-occasions-month-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #3788d8;
    position: relative;
}

.jot-occasions-month-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.jot-occasions-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.jot-occasion-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    border-left-width: 4px;
    border-left-style: solid;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.jot-occasion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.jot-occasion-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.jot-occasion-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.jot-occasion-card:hover .jot-occasion-card-image img {
    transform: scale(1.05);
}

.jot-occasion-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.jot-occasion-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.jot-occasion-card-dates {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jot-occasion-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 14px;
}

.jot-occasion-card-date svg {
    flex-shrink: 0;
    color: #3788d8;
}

.jot-occasion-card-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.jot-occasion-card-location svg {
    flex-shrink: 0;
    color: #3788d8;
}

.jot-occasion-card-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.jot-occasion-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.jot-occasion-card-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.jot-category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

/* Responsive Cards View */
@media (max-width: 768px) {
    .jot-occasions-cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .jot-occasions-month-title {
        font-size: 24px;
    }
    
    .jot-occasion-card-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .jot-occasions-cards-wrapper {
        padding: 15px;
    }
    
    .jot-occasions-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .jot-occasions-month-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .jot-occasion-card-content {
        padding: 15px;
    }
    
    .jot-occasion-card-title {
        font-size: 18px;
    }
}

/* ========================================
   Single Occasion Page - Modern & Professional
   ======================================== */

.jot-single-occasion-page {
    background: #f8f9fa;
    min-height: 60vh;
}

.jot-single-occasion-hero {
    position: relative;
    margin-bottom: 40px;
}

.jot-hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.jot-hero-no-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
}

.jot-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
}

.jot-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
}

.jot-breadcrumb {
    margin-bottom: 20px;
}

.jot-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.3s;
}

.jot-back-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(-4px);
}

.jot-hero-no-image .jot-back-link {
    background: rgba(255,255,255,0.15);
}

.jot-occasion-hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.jot-hero-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.jot-hero-category {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff !important;
}

.jot-single-occasion-container {
    max-width: 1200px;
    margin: 40px auto 60px;
    padding: 0 20px;
    position: relative;
}

.jot-occasion-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

.jot-occasion-main-content {
    background: #fff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.jot-occasion-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.jot-info-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
}

.jot-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.jot-info-content h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jot-info-content p,
.jot-info-item {
    margin: 0;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.jot-info-item {
    margin-bottom: 12px;
}

.jot-info-item:last-child {
    margin-bottom: 0;
}

/* Programs within dates */
.jot-date-programs {
    margin-top: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.jot-date-programs h5 {
    margin: 0 0 12px 0;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jot-program-item {
    padding: 12px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border-radius: 6px;
    border-left: 3px solid #667eea;
}

.jot-program-item:last-child {
    margin-bottom: 0;
}

.jot-program-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #667eea;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.jot-program-time svg {
    flex-shrink: 0;
}

.jot-program-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.jot-program-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.jot-occasion-images {
    margin-bottom: 40px;
}

.jot-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.jot-image-item {
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 1;
}

.jot-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.jot-image-item:hover img {
    transform: scale(1.05);
}

.jot-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 24px 0;
}

.jot-occasion-description {
    margin-bottom: 40px;
}

.jot-description-content {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
}

.jot-description-content p {
    margin-bottom: 20px;
}

.jot-description-content p:last-child {
    margin-bottom: 0;
}

.jot-occasion-meta {
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.jot-meta-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.jot-meta-tags svg {
    color: #999;
    flex-shrink: 0;
}

.jot-tag-badge {
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 13px;
    background: #e9ecef;
    color: #495057;
    font-weight: 500;
}

.jot-occasion-sidebar {
    position: relative;
}

.jot-sidebar-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jot-reminder-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.jot-reminder-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.jot-reminder-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
}

.jot-reminder-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.jot-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.jot-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jot-reminder-email,
.jot-reminder-hours {
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    background: #f8f9fa;
    box-sizing: border-box;
}

.jot-reminder-email:focus,
.jot-reminder-hours:focus {
    outline: none;
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.jot-reminder-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.jot-reminder-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
}

.jot-reminder-submit:active {
    transform: translateY(-1px);
}

.jot-reminder-message {
    margin-top: 15px;
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

.jot-share-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.jot-share-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px 0;
}

.jot-share-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.jot-share-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    transition: all 0.3s;
    text-decoration: none !important;
}

.jot-share-facebook {
    background: #1877f2;
}

.jot-share-twitter {
    background: #1da1f2;
}

.jot-share-email {
    background: #6c757d;
}

.jot-share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Stats Card */
.jot-stats-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}

.jot-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.jot-stat-item svg {
    color: var(--primary-color, #3788d8);
}

@media (max-width: 968px) {
    .jot-single-occasion-container {
        margin-top: 0;
    }

    .jot-occasion-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .jot-occasion-sidebar {
        order: 2;
    }
    
    .jot-sidebar-sticky {
        position: static;
    }
    
    .jot-occasion-hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .jot-hero-image,
    .jot-hero-no-image {
        height: auto;
        min-height: 300px;
    }
    
    .jot-occasion-hero-title {
        font-size: 28px;
    }
    
    .jot-single-occasion-container {
        padding: 0 15px;
    }
    
    .jot-occasion-main-content {
        padding: 30px 20px;
    }
    
    .jot-occasion-info-cards {
        grid-template-columns: 1fr;
    }
    
    .jot-images-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   DARK MODE SUPPORT
   ======================================== */

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f5f5f5;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-tertiary: #999999;
    --border-color: #e9ecef;
    --card-shadow: rgba(0, 0, 0, 0.08);
    --hover-shadow: rgba(0, 0, 0, 0.15);
    --gradient-start: #667eea;
    --gradient-end: #764ba2;
}

[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #3a3a3a;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --text-tertiary: #808080;
    --border-color: #404040;
    --card-shadow: rgba(0, 0, 0, 0.3);
    --hover-shadow: rgba(0, 0, 0, 0.5);
}

body {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ========================================
   DARK MODE TOGGLE BUTTON
   ======================================== */

.jot-dark-mode-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--card-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.jot-dark-mode-toggle:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px var(--hover-shadow);
}

.jot-dark-mode-toggle svg {
    width: 24px;
    height: 24px;
    color: #fff;
    transition: transform 0.3s ease;
}

.jot-dark-mode-toggle:hover svg {
    transform: rotate(20deg);
}

/* ========================================
   LOADING SKELETON SCREENS
   ======================================== */

.jot-skeleton {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--border-color) 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.jot-calendar-skeleton {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.jot-calendar-skeleton-cell {
    height: 100px;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

.jot-card-skeleton {
    padding: 20px;
    background: var(--bg-primary);
    border-radius: 12px;
    margin-bottom: 20px;
}

.jot-skeleton-title {
    height: 24px;
    width: 70%;
    margin-bottom: 15px;
}

.jot-skeleton-text {
    height: 16px;
    width: 100%;
    margin-bottom: 10px;
}

.jot-skeleton-text:last-child {
    width: 80%;
}

/* ========================================
   SMOOTH ANIMATIONS & TRANSITIONS
   ======================================== */

.jot-fade-in {
    animation: fadeIn 0.5s ease-in;
}

.jot-slide-up {
    animation: slideUp 0.6s ease-out;
}

.jot-scale-in {
    animation: scaleIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   PARALLAX HERO IMAGE
   ======================================== */

.jot-hero-parallax {
    position: relative;
    overflow: hidden;
}

.jot-hero-parallax .jot-hero-image {
    transform: translateZ(0);
    will-change: transform;
}

/* ========================================
   VIEW SWITCHER
   ======================================== */

.jot-view-switcher {
    display: inline-flex;
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 2px 8px var(--card-shadow);
    gap: 4px;
}

.jot-view-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.jot-view-btn:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.jot-view-btn.active {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.jot-view-btn svg {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    vertical-align: middle;
}

/* ========================================
   MINI CALENDAR WIDGET
   ======================================== */

.jot-mini-calendar {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px var(--card-shadow);
    margin-bottom: 20px;
    overflow: hidden;
    max-width: 100%;
}

.jot-mini-calendar-header {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
    margin-bottom: 15px;
    align-items: center;
}

.jot-mini-calendar-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    width: 100%;
    order: 1;
}

.jot-mini-calendar-nav {
    display: flex;
    gap: 8px;
    justify-content: center;
    order: 2;
}

.jot-mini-nav-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-secondary);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.jot-mini-nav-btn:hover {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #fff;
    transform: scale(1.1);
}

.jot-mini-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.jot-mini-day-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    padding: 8px 4px;
    text-transform: uppercase;
}

.jot-mini-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-primary);
    position: relative;
}

.jot-mini-day:hover {
    background: var(--bg-secondary);
    transform: scale(1.1);
}

.jot-mini-day.other-month {
    color: var(--text-tertiary);
    opacity: 0.4;
}

.jot-mini-day.today {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #fff;
    font-weight: 700;
}

.jot-mini-day.has-occasion::after {
    content: '';
    position: absolute;
    bottom: 2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gradient-start);
}

.jot-mini-day.today.has-occasion::after {
    background: #fff;
}

/* ========================================
   OCCASION DOTS FOR MULTIPLE EVENTS
   ======================================== */

.jot-occasion-dots {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-top: 4px;
    flex-wrap: wrap;
}

.jot-occasion-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.jot-calendar-day:hover .jot-occasion-dot {
    transform: scale(1.3);
}

.jot-calendar-day {
    transition: all 0.3s ease;
}

.jot-occasion-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.jot-occasion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--card-shadow);
}

/* ========================================
   MICRO-INTERACTIONS
   ======================================== */

.jot-btn-ripple {
    position: relative;
    overflow: hidden;
}

.jot-btn-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.jot-btn-ripple:active::after {
    width: 300px;
    height: 300px;
}

.jot-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* ========================================
   ENHANCED CALENDAR CELLS
   ======================================== */

[data-theme="dark"] .jot-calendar-day {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] .jot-calendar-day:hover {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .jot-occasion-card {
    background: var(--bg-secondary);
    box-shadow: 0 4px 20px var(--card-shadow);
}

[data-theme="dark"] .jot-occasion-card:hover {
    box-shadow: 0 8px 30px var(--hover-shadow);
}

[data-theme="dark"] .jot-single-occasion-page {
    background: var(--bg-secondary);
}

[data-theme="dark"] .jot-occasion-main-content {
    background: var(--bg-primary);
}

[data-theme="dark"] .jot-info-card {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .jot-reminder-card,
[data-theme="dark"] .jot-share-card,
[data-theme="dark"] .jot-stats-card {
    background: var(--bg-primary);
}

/* ========================================
   SMOOTH VIEW TRANSITIONS
   ======================================== */

.jot-calendar-content {
    position: relative;
}

.jot-view-transition-enter {
    animation: viewSlideIn 0.4s ease-out;
}

.jot-view-transition-exit {
    animation: viewSlideOut 0.4s ease-out;
}

@keyframes viewSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes viewSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-20px);
    }
}


/* ========================================
   SEARCH & DISCOVERY - LIVE SEARCH
   ======================================== */

.jot-search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 30px;
}

.jot-search-wrapper {
    position: relative;
    background: var(--bg-primary);
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--card-shadow);
    overflow: hidden;
}

.jot-search-input-wrapper {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
}

.jot-search-icon {
    color: var(--text-tertiary);
    flex-shrink: 0;
}

.jot-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    color: var(--text-primary);
    outline: none;
}

.jot-search-input::placeholder {
    color: var(--text-tertiary);
}

.jot-search-clear {
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 4px;
    display: none;
    transition: color 0.3s ease;
}

.jot-search-clear:hover {
    color: var(--text-primary);
}

.jot-search-clear.visible {
    display: block;
}

/* Autocomplete Dropdown */
.jot-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--card-shadow);
    margin-top: 8px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.jot-autocomplete-dropdown.visible {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jot-autocomplete-section {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.jot-autocomplete-section:last-child {
    border-bottom: none;
}

.jot-autocomplete-header {
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jot-autocomplete-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.jot-autocomplete-item:hover,
.jot-autocomplete-item.active {
    background: var(--bg-secondary);
}

.jot-autocomplete-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jot-autocomplete-item:hover .jot-autocomplete-icon {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #fff;
}

.jot-autocomplete-info {
    flex: 1;
    min-width: 0;
}

.jot-autocomplete-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jot-autocomplete-meta {
    font-size: 13px;
    color: var(--text-secondary);
}

.jot-autocomplete-highlight {
    background: rgba(102, 126, 234, 0.2);
    font-weight: 600;
    padding: 0 2px;
}

.jot-autocomplete-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-tertiary);
}

/* ========================================
   ADVANCED FILTERS
   ======================================== */

.jot-filters-container {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px var(--card-shadow);
    margin-bottom: 30px;
}

.jot-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.jot-filters-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.jot-filters-actions {
    display: flex;
    gap: 8px;
}

.jot-filter-btn {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jot-filter-btn:hover {
    background: var(--bg-secondary);
}

.jot-filter-btn-primary {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #fff;
    border: none;
}

.jot-filter-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.jot-filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.jot-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jot-filter-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jot-filter-select,
.jot-filter-input {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s ease;
}

.jot-filter-select:focus,
.jot-filter-input:focus {
    outline: none;
    border-color: var(--gradient-start);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.jot-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.jot-filter-chip {
    padding: 6px 12px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.jot-filter-chip:hover {
    border-color: var(--gradient-start);
}

.jot-filter-chip.active {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #fff;
    border-color: transparent;
}

/* Saved Filters */
.jot-saved-filters {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.jot-saved-filters-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.jot-saved-filter-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jot-saved-filter-item:hover {
    background: var(--bg-tertiary);
    transform: translateX(4px);
}

.jot-saved-filter-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.jot-saved-filter-info {
    flex: 1;
}

.jot-saved-filter-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.jot-saved-filter-count {
    font-size: 12px;
    color: var(--text-tertiary);
}

.jot-saved-filter-delete {
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.jot-saved-filter-delete:hover {
    color: #dc3545;
}

/* ========================================
   TRENDING / POPULAR OCCASIONS
   ======================================== */

.jot-trending-section {
    margin-bottom: 40px;
}

.jot-trending-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.jot-trending-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.jot-trending-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    animation: pulse 2s infinite;
}

.jot-trending-tabs {
    display: flex;
    gap: 8px;
}

.jot-trending-tab {
    padding: 8px 16px;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jot-trending-tab:hover {
    border-color: var(--gradient-start);
}

.jot-trending-tab.active {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #fff;
    border-color: transparent;
}

.jot-trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.jot-trending-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
}

.jot-trending-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--hover-shadow);
}

.jot-trending-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 4px;
}

.jot-trending-views {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
}

/* ========================================
   SIMILAR OCCASIONS
   ======================================== */

.jot-similar-occasions {
    background: var(--bg-secondary);
    padding: 40px 0;
    margin-top: 60px;
}

.jot-similar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.jot-similar-header {
    text-align: center;
    margin-bottom: 40px;
}

.jot-similar-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.jot-similar-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.jot-similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.jot-similar-card {
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--card-shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.jot-similar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--hover-shadow);
}

.jot-similar-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--bg-tertiary);
}

.jot-similar-content {
    padding: 20px;
}

.jot-similar-match {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--gradient-start);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.jot-similar-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.jot-similar-card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-secondary);
}

.jot-similar-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .jot-filters-grid {
        grid-template-columns: 1fr;
    }
    
    .jot-trending-grid,
    .jot-similar-grid {
        grid-template-columns: 1fr;
    }
    
    .jot-filters-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}


/* ========================================
   SOCIAL FEATURES - COMMENTS & REVIEWS
   ======================================== */

.jot-social-section {
    background: var(--bg-secondary);
    padding: 60px 0;
    margin-top: 60px;
}

.jot-social-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Comments Section */
.jot-comments-section {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px var(--card-shadow);
    margin-bottom: 32px;
}

.jot-comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.jot-comments-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.jot-comments-count {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.jot-sort-comments {
    padding: 8px 16px;
    border: 2px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jot-sort-comments:hover {
    border-color: var(--gradient-start);
}

/* Comment Form */
.jot-comment-form {
    margin-bottom: 32px;
}

.jot-comment-textarea {
    width: 100%;
    max-width: 100%;
    min-height: 120px;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.jot-comment-textarea:focus {
    outline: none;
    border-color: var(--gradient-start);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.jot-comment-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.jot-comment-meta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.jot-comment-name-input,
.jot-comment-email-input {
    padding: 10px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
}

.jot-comment-name-input:focus,
.jot-comment-email-input:focus {
    outline: none;
    border-color: var(--gradient-start);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.jot-submit-comment {
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jot-submit-comment:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Comments List */
.jot-comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jot-comment-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.jot-comment-item:hover {
    box-shadow: 0 4px 12px var(--card-shadow);
}

.jot-comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.jot-comment-content {
    flex: 1;
}

.jot-comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.jot-comment-author {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 16px;
}

.jot-comment-date {
    font-size: 13px;
    color: var(--text-tertiary);
}

.jot-comment-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.jot-comment-footer {
    display: flex;
    gap: 16px;
}

.jot-comment-like,
.jot-comment-reply {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.jot-comment-like:hover,
.jot-comment-reply:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.jot-comment-like.liked {
    color: #e74c3c;
}

/* Reviews Section */
.jot-reviews-section {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px var(--card-shadow);
    margin-bottom: 32px;
}

.jot-reviews-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.jot-reviews-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.jot-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.jot-rating-average {
    text-align: center;
}

.jot-rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.jot-rating-stars {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.jot-star {
    color: #ffd700;
    font-size: 20px;
}

.jot-star.empty {
    color: var(--border-color);
}

.jot-rating-count {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-top: 8px;
}

.jot-rating-breakdown {
    flex: 1;
    max-width: 400px;
}

.jot-rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.jot-rating-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 60px;
}

.jot-rating-progress {
    flex: 1;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.jot-rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.jot-rating-percent {
    font-size: 13px;
    color: var(--text-tertiary);
    min-width: 40px;
    text-align: right;
}

/* Review Form */
.jot-review-form {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.jot-review-form-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.jot-rating-input {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.jot-rating-star {
    font-size: 32px;
    color: var(--border-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.jot-rating-star:hover,
.jot-rating-star.active {
    color: #ffd700;
    transform: scale(1.1);
}

/* Attending List */
.jot-attending-section {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px var(--card-shadow);
    margin-bottom: 32px;
}

.jot-attending-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.jot-attending-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.jot-attending-tabs {
    display: flex;
    gap: 8px;
}

.jot-attending-tab {
    padding: 8px 16px;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jot-attending-tab:hover {
    border-color: var(--gradient-start);
}

.jot-attending-tab.active {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #fff;
    border-color: transparent;
}

.jot-attending-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 16px;
}

.jot-attendee-card {
    text-align: center;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.jot-attendee-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--card-shadow);
}

.jot-attendee-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    margin: 0 auto 12px;
}

.jot-attendee-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
    margin-bottom: 4px;
}

.jot-attendee-status {
    font-size: 12px;
    color: var(--text-tertiary);
}

/* Social Share Buttons */
.jot-share-section {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px var(--card-shadow);
}

.jot-share-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-align: center;
}

.jot-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.jot-share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.jot-share-btn svg {
    width: 20px;
    height: 20px;
}

.jot-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.jot-share-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.jot-share-linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #00669C 100%);
}

.jot-share-pinterest {
    background: linear-gradient(135deg, #E60023 0%, #BD081C 100%);
}

.jot-share-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #166FE5 100%);
}

.jot-share-twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0C85D0 100%);
}

.jot-share-email {
    background: linear-gradient(135deg, #666666 0%, #444444 100%);
}

.jot-share-copy {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .jot-rating-summary {
        flex-direction: column;
    }
    
    .jot-attending-list {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .jot-share-buttons {
        grid-template-columns: 1fr;
    }
    
    .jot-comment-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* SEO Breadcrumbs */
.jot-breadcrumbs {
    margin: 20px 0;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
}

.jot-breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.jot-breadcrumbs li {
    display: inline;
}

.jot-breadcrumbs a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s;
}

.jot-breadcrumbs a:hover {
    color: #005177;
    text-decoration: underline;
}

.jot-breadcrumbs .separator {
    color: #999;
    font-weight: normal;
    padding: 0 4px;
}

/* SEO Character Counter Styles */
#seo-title-length,
#seo-description-length {
    font-weight: bold;
    margin-left: 10px;
}

