/**
 * Calendar Ortodox Patriarhie - Stiluri
 * Version: 1.1.0
 */

/* Variabilă pentru înălțimea meniului extern - poate fi suprascrisă în tema ta */
:root {
    --cop-menu-height: 0px;
}

/* ============================================
   Container Principal - Full Width
   ============================================ */
.cop-container {
    display: flex;
    min-height: 600px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 32px;
    overflow: visible;
    font-family: "Ogg Text", serif;
	color: #000000;
    background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Sidebar - Lista Lunilor (Pills Style)
   ============================================ */
.cop-sidebar {
    width: 280px;
    min-width: 280px;
    color: #1a365d;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: var(--cop-menu-height);
    align-self: flex-start;
    max-height: calc(100vh - var(--cop-menu-height));
	padding: 32px;
}

.cop-sidebar-header {
    display: none;
}

.cop-sidebar-header h3 {

    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1a365d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cop-months-list {
    list-style: none;
    margin: 0;
    padding: 0px;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cop-months-list li {
    margin: 0;
    padding: 0;
}

.cop-month-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px 10px 20px;
    color: #580D4D;
    text-decoration: none;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 25px;
	background: #fff;
    border: 1px solid #fff;
    width: fit-content;
}

.cop-month-item:hover {
    background: #fff;
    border-color: #580D4D;
}

.cop-month-item.active {
    background: #580D4D;
    color: #ffffff;
    border-color: #580D4D;
}

/* Pe desktop arată numele complet, pe mobile prescurtat */
.cop-month-name-full {
    display: inline;
	font-family: "Decimal", sans-serif;
	text-transform: uppercase;

}

.cop-month-name-short {
    display: none;
	font-family: "Decimal", sans-serif;
    text-transform: uppercase;
}

/* ============================================
   Content - Lista Zilelor
   ============================================ */
.cop-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cop-content-header {
    display: none!important;
}

.cop-content-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: normal;
    color: #1a365d;
	font-family: "Decimal", sans-serif;
}

.cop-days-list {
    flex: 1;
    padding: 40px;
	background-color: #fff;
	border-radius: 32px;
}

/* ============================================
   Item Zi - Layout 2 Coloane
   ============================================ */
.cop-day-item {
	display: flex;
	align-items: flex-start;
	padding: 24px 0;
	transition: all 0.2s ease;
	border-top: 1px solid #EAE9E5;
	cursor: pointer;
}


.cop-day-item:last-child {
    margin-bottom: 0;
	padding-bottom: 0;
}

.cop-day-item:first-child {

	padding-top: 0;
	border: none;
}

.cop-day-item.cop-duminica {

	border-top: 3px solid #EAE9E5;
}

.cop-day-item.cop-duminica:first-child {

	border-top: none;
}

/* Ziua Curentă - Stil Special */
.cop-day-item.cop-today .cop-day-date {
    background: #580D4D;
	color: #EAE9E5;
}

/* Duminica - roșu */
.cop-day-item.cop-duminica .cop-day-date {
	background: #FDEDEF;
    color: #da101b;
}

/* ============================================
   Crucea Zilei - Clase pentru stilizare
   ============================================ */
/* Cruce albastră */
.cop-day-item.cop-cruce-albastru .cop-day-date {
    background: #E8F0FA;
    color: #1C58BB;
}

/* Cruce roșie */
.cop-day-item.cop-cruce-rosu .cop-day-date {
    background: #FDEDEF;
    color: #da101b;
}

/* Cruce neagră */
.cop-day-item.cop-cruce-negru .cop-day-date {
    background: #F2F2EF;
    color: #000000;
}

/* Ziua curentă are prioritate peste crucea zilei */
.cop-day-item.cop-today.cop-cruce-albastru .cop-day-date,
.cop-day-item.cop-today.cop-cruce-rosu .cop-day-date,
.cop-day-item.cop-today.cop-cruce-negru .cop-day-date {
    background: #580D4D;
    color: #EAE9E5;
}


/* Coloana Stânga - Data */
.cop-day-date {
min-width: 56px;
max-width: 56px;
text-align: center;
margin-right: 24px;
background-color: #F2F2EF;
padding: 12px 0px;
border-radius: 16px;
font-family: "Decimal", sans-serif;
}

.cop-day-number {
    display: block;
    font-size: 18px;
    font-weight: normal;
    line-height: 1;
	font-family: "Decimal", sans-serif;
}

.cop-day-weekday {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Coloana Dreapta - Titlu */
.cop-day-content {
    flex: 1;
    min-width: 0;
}

.cop-day-title {
    margin: 0;
    line-height: 1.5;
}

/* Stiluri pentru conținutul HTML din titlu-acf */
.cop-day-title h2 {
    margin: 0;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.5;
}

.cop-day-title em {
    font-style: italic;
}

/* Crucea albastră - păstrează culoarea originală */
.cop-day-title span[style*="color: #1c58bb"],
.cop-day-title span[style*="color: #1C58BB"],
.cop-day-title span[style*="#1c58bb"],
.cop-day-title span[style*="#1C58BB"] {
    color: #1C58BB !important;
    font-weight: 600;
}

/* Crucea roșie */
.cop-day-title span[style*="color: #cc0000"],
.cop-day-title span[style*="color: #CC0000"],
.cop-day-title span[style*="color: red"],
.cop-day-title span[style*="color:#cc0000"],
.cop-day-title span[style*="color:#CC0000"] {
    color: #cc0000 !important;
    font-weight: 600;
}

/* Crucea neagră */
.cop-day-title span[style*="color: #000000"],
.cop-day-title span[style*="color: black"],
.cop-day-title span[style*="color:#000000"] {
    color: #000000 !important;
    font-weight: 600;
}

/* ============================================
   Crucea Zilei Badge
   ============================================ */
.cop-crucea-zilei {
    display: inline-block;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-top: 8px;
    font-weight: 500;
}

.cop-crucea-zilei.albastru {
    background: rgba(28, 88, 187, 0.1);
    color: #1C58BB;
}

.cop-crucea-zilei.rosu {
    background: rgba(204, 0, 0, 0.1);
    color: #cc0000;
}

.cop-crucea-zilei.negru {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
}

/* ============================================
   Loading State & Skeleton Screen
   ============================================ */
.cop-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    min-height: 400px;
}

.cop-loading-icon {
    position: relative;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.cop-loading-icon .cop-icon-cruce,
.cop-loading-icon .cop-icon-cadran {
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
}

.cop-loading-icon .cop-icon-cadran {
    animation: cop-spin 2s linear infinite;
}

.cop-loading-text {
    font-family: "Decimal", sans-serif;
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes cop-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Skeleton Items */
.cop-skeleton-item {
    display: flex;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid #EAE9E5;
}

.cop-skeleton-item:last-child {
    border-bottom: none;
}

.cop-skeleton-date {
    min-width: 64px;
    max-width: 64px;
    height: 64px;
    margin-right: 24px;
    background: linear-gradient(90deg, #F2F2EF 25%, #E8E8E5 50%, #F2F2EF 75%);
    background-size: 200% 100%;
    border-radius: 16px;
    animation: cop-skeleton-pulse 1.5s ease-in-out infinite;
}

.cop-skeleton-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cop-skeleton-title {
    height: 24px;
    width: 80%;
    background: linear-gradient(90deg, #F2F2EF 25%, #E8E8E5 50%, #F2F2EF 75%);
    background-size: 200% 100%;
    border-radius: 8px;
    animation: cop-skeleton-pulse 1.5s ease-in-out infinite;
}

.cop-skeleton-subtitle {
    height: 16px;
    width: 60%;
    background: linear-gradient(90deg, #F2F2EF 25%, #E8E8E5 50%, #F2F2EF 75%);
    background-size: 200% 100%;
    border-radius: 6px;
    animation: cop-skeleton-pulse 1.5s ease-in-out infinite;
    animation-delay: 0.1s;
}

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

/* ============================================
   Error State
   ============================================ */
.cop-error {
    padding: 40px;
    text-align: center;
    color: #c53030;
    background: #fff5f5;
    border-radius: 8px;
    margin: 20px;
}

/* ============================================
   Empty State
   ============================================ */
.cop-empty {
    padding: 40px;
    text-align: center;
    color: #718096;
}

/* ============================================
   Scrollbar Custom - Desktop
   ============================================ */
.cop-months-list::-webkit-scrollbar {
    width: 4px;
}

.cop-months-list::-webkit-scrollbar-track {
    background: transparent;
}

.cop-months-list::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 2px;
}

.cop-months-list::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* ============================================
   RESPONSIVE - Mobile
   ============================================ */
@media screen and (max-width: 900px) {
    .cop-container {
        flex-direction: column;
        min-height: auto;
        border-radius: 0;
        box-shadow: none;
	    background: transparent;
    }

    /* Sidebar devine header sticky cu pills */
    .cop-sidebar {
        width: 100%;
        min-width: 100%;
        max-height: none;
        align-self: auto;
        position: -webkit-sticky;
        position: sticky;
        top: var(--cop-menu-height);
        z-index: 9999;
        border-right: none;
        order: 1;
	    padding: 0px;
	    background: transparent;
    }

    .cop-sidebar-header {
        display: none;
    }

    /* Pills container cu scroll orizontal */
    .cop-months-list {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        padding: 16px 16px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .cop-months-list::-webkit-scrollbar {
        display: none;
    }

    .cop-months-list li {
        flex: 0 0 auto;
    }

    /* Stilul Pills pe mobile */
    .cop-month-item {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 6px 16px 8px 16px;
        border-radius: 25px;
		border: none;
        font-size: 12px;
        font-weight: normal;
        white-space: nowrap;
        background: rgba(255, 255, 255, 0.10);
		backdrop-filter: blur(15px) saturate(1.5) brightness(1.1);
	    -webkit-backdrop-filter: blur(15px) saturate(1.5) brightness(1.1);
        transition: all 0.2s ease;
        
    }


    .cop-month-item.active {
        background: #580D4D;
        color: #ffffff;
    }

    /* Pe mobile arată numele prescurtat */
    .cop-month-name-full {
        display: none;
    }

    .cop-month-name-short {
        display: inline;
    }

    /* Content - fără scroll propriu */
    .cop-content {
        order: 2;
        overflow: visible;
    }

    .cop-content-header {
        padding: 20px 16px;
        position: -webkit-sticky;
        position: sticky;
        top: calc(54px + var(--cop-menu-height)); /* Sub pills + meniu */
        z-index: 9998;
        background: #ffffff;
        border-bottom: 1px solid #e2e8f0;
    }

    .cop-content-header h2 {
        font-size: 22px;
    }

    /* Lista zilelor - fără scroll propriu */
    .cop-days-list {
        padding: 24px;
        overflow: visible;
        max-height: none;
    }

    /* Item zi - ajustări mobile */
    .cop-day-item {
        padding: 16px 0;
    }

    .cop-day-item.cop-today::before {
        font-size: 9px;
        padding: 3px 8px;
        top: -8px;
        right: 12px;
    }

    .cop-day-date {
        min-width: 60px;
        max-width: 60px;
	    padding: 12px 0;
    }

    .cop-day-number {
        font-size: 20px;
    }

    .cop-day-weekday {
        font-size: 12px;
    }

    .cop-day-title h2 {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .cop-months-list {
        padding: 16px 20px;
        gap: 6px;
    }

    .cop-month-item {
        padding: 6px 14px 8px 14px;
        font-size: 12px;
    }

    .cop-content-header {
        padding: 16px 12px;
        top: calc(52px + var(--cop-menu-height));
    }

    .cop-content-header h2 {
        font-size: 20px;
    }

    .cop-days-list {
        padding: 20px;
    }

    .cop-day-item {
        padding: 16px 0px;
    }

    .cop-day-date {
        min-width: 50px;
        max-width: 50px;
    }

    .cop-day-number {
        font-size: 18px;
    }

    .cop-day-weekday {
        font-size: 10px;
    }

    .cop-day-title h2 {
        font-size: 18px;
    }
}

/* ============================================
   Buton Înapoi - Sticky Bottom
   ============================================ */
.cop-back-button {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px 14px 24px;
    background: #580D4D;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-family: "Decimal", sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cop-back-button:hover {
    background: #6d1060;
    transform: translateX(-50%) translateY(-2px);
}

.cop-back-button:active {
    transform: translateX(-50%) translateY(0);
}

@media screen and (max-width: 900px) {
    .cop-back-button {
        bottom: 20px;
        padding: 10px 24px 12px 24px;
        font-size: 11px;
    }
}

/* ============================================
   Body Scroll Lock
   ============================================ */
body.cop-drawer-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ============================================
   Câmpuri Suplimentare Listing
   ============================================ */
.cop-day-zi-libera {
    display: inline-block;
    color: rgba(88, 13, 77, 1.000);
    font-family: "Decimal", sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
	border: 1px solid rgba(234, 233, 229, 1.000);
}

.cop-day-subtitlu {
    font-size: 16px;
    color: #737373;
    margin-top: 2px;
    line-height: 1.4;
	font-family: "Brut Grotesque", sans-serif;
}

.cop-day-text-suplimentar {
    font-size: 14px;
    color: #580D4D;
    margin-top: 8px;
    line-height: 1.5;
}

.cop-day-text-suplimentar h2 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* ============================================
   Drawer Overlay
   ============================================ */
.cop-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(234, 233, 229, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cop-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   Drawer - Desktop (din dreapta)
   ============================================ */
.cop-drawer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 100%;
    max-width: 800px;
    height: auto; /* sau o înălțime maximă specifică */
    max-height: 95vh; /* pentru a nu depăși ecranul */
    background: #ffffff;
    z-index: 999999;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    border-radius: 24px; /* opțional, pentru un aspect mai plăcut */
}

.cop-drawer.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.cop-drawer-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.cop-drawer-close,
.cop-drawer-share {
    width: 42px;
    height: 42px;
    background: #F2F2EF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
}

.cop-drawer-close:hover,
.cop-drawer-share:hover {

    background: #EAE9E5;

}

.cop-drawer-close svg {
    width: 32px;
    height: 32px;
}

.cop-drawer-share svg {
    width: 32px;
    height: 32px;
}

.cop-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 64px;
}

.cop-drawer-content hr {
	
	display: none;
}

/* ============================================
   Drawer Content Styles
   ============================================ */
.cop-drawer-header {
    margin-bottom: 24px;
}

.cop-drawer-date {
    font-family: "Decimal", sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #580D4D;
    margin-bottom: 8px;
}

.cop-drawer-title {
    color: #580D4D;
    line-height: 1.4;
}

.cop-drawer-title h2 {
    font-size: 28px;
    font-weight: normal;
	line-height: 1.4;
	font-family: "Ogg Text", serif;
    margin: 0;
    color: #000;
}

.cop-drawer-subtitlu {
    font-size: 20px;
    color: #737373;
    margin-top: 8px;
    line-height: 1.4;
    font-family: "Brut Grotesque", sans-serif;
}

.cop-drawer-image {
    margin-bottom: 24px;
    position: relative;
    min-height: 200px;
    background: #F2F2EF;
    overflow: hidden;
}

.cop-drawer-image .cop-image-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #F2F2EF 25%, #E8E8E5 50%, #F2F2EF 75%);
    background-size: 200% 100%;
    animation: cop-skeleton-pulse 1.5s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.cop-image-skeleton .cop-loading-icon {
    margin-bottom: 0;
}

/* Varianta albă pentru fundaluri închise */
.cop-loading-icon.cop-loading-white .cop-icon-cruce path,
.cop-loading-icon.cop-loading-white .cop-icon-cadran path {
    fill: white;
}

.cop-drawer-image.loaded .cop-image-skeleton {
    opacity: 0;
    pointer-events: none;
}

.cop-drawer-image img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cop-drawer-image.loaded img {
    opacity: 1;
}

.cop-drawer-image.loaded {
    min-height: auto;
    background: transparent;
}

.cop-drawer-sinaxar {
    color: #000;
    line-height: 1.5;
    font-size: 17px;
    margin-bottom: 32px;
}

.cop-drawer-sinaxar h2, .cop-drawer-sinaxar h3, .cop-drawer-sinaxar h4, .cop-drawer-sinaxar h5, .cop-drawer-sinaxar h4 strong, .cop-drawer-sinaxar h3 strong, .cop-drawer-sinaxar h2 strong {
    font-size: 22px;
    font-weight: normal!important;
    margin: 24px 0 12px 0;
	font-family: "Ogg Text", serif;
}

.cop-drawer-sinaxar h2:first-child {
    margin-top: 0;
}

.cop-drawer-sinaxar p {
    margin: 0 0 16px 0;
}

.cop-drawer-sinaxar blockquote {
    margin: 16px 0;
	font-family: "Ogg Text", serif;
	font-style: italic;
	font-size: 18px;
	line-height: 1.4;
}

.cop-drawer-sinaxar img {
    width: 100%;
    height: auto;
    display: block;
    margin: 16px 0;
    border-radius: 12px;
}

/* Dezactivează link-urile pe imagini din sinaxar */
.cop-drawer-sinaxar a:has(img) {
    pointer-events: none;
    cursor: default;
}

/* ============================================
   Drawer Apps Section
   ============================================ */
.cop-drawer-apps {
    margin-top: 32px;
}

.cop-drawer-app-box {
    background: rgba(242, 242, 239, 1.000);
    border-radius: 16px;
    padding: 32px;
}

.cop-drawer-app-title {
    font-size: 24px;
    font-family: "Ogg Text", serif;
    line-height: 1.3;
    margin-bottom: 24px;
	max-width: 500px;
	color: #000;
}

.cop-drawer-app-buttons {
    display: flex;
    gap: 12px;
}

.cop-app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px 14px 20px;
    border-radius: 80px;
    font-family: "Decimal", sans-serif;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    flex: 1;
}

.cop-app-btn-apple {
    background: rgba(88, 13, 77, 1.000);
    color: #ffffff;
	border: 1px solid rgba(88, 13, 77, 1.000);
}

.cop-app-btn-apple:hover {
    background: transparent;
    color: rgba(88, 13, 77, 1.000);
	border: 1px solid rgba(88, 13, 77, 1.000);
}

.cop-app-btn-google {
    background: #ffffff;
    color: rgba(88, 13, 77, 1.000);
	border: 1px solid #fff;
}

.cop-app-btn-google:hover {
    background: transparent;
    color: rgba(88, 13, 77, 1.000);
    border: 1px solid rgba(88, 13, 77, 1.000);
}

.cop-drawer-app-buttons svg {

	height: 20px;
	width: 20px;
}

/* ============================================
   Sinaxar Toggle Button
   ============================================ */

.cop-sinaxar-toggle {

	width: 100%;
    margin-top: 20px;
    padding: 16px 20px 18px 20px;
	border-radius: 60px;
    font-family: "Decimal", sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;

	
}
.cop-sinaxar-collapsed {
    
    background: #580D4D;
    color: #ffffff;
    border: 1px solid #580D4D;

    }

.cop-sinaxar-expanded {

    background: #FFFFFF!important;
    color: #580D4D!important;
    border: 1px solid #580D4D!important;

    }



.cop-sinaxar-expanded:hover {
    background: #F2F2EF!important;
	border: 1px solid #F2F2EF!important;
	color: #580D4D!important;
}

.cop-sinaxar-collapsed:hover {
    background: rgba(88, 13, 77, 0.8);
	border: 1px solid background: rgba(88, 13, 77, 0.8);
}

.cop-sinaxar-excerpt {
    font-size: 17px;
    line-height: 1.5;
    color: #000;
}

/* ============================================
   Drawer "Citește și:" Section with Accordions
   ============================================ */
.cop-drawer-read-more {
    margin: 64px 0px 32px 0px;
}

.cop-read-more-title {
    font-family: "Ogg Text", serif;
    font-size: 28px;
    font-weight: normal;
    color: #000;
    margin: 0 0 20px 0;
}

.cop-drawer-accordions {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.cop-accordion {
    border-bottom: 1px solid #EAE9E5;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cop-accordion:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.cop-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0px;
    border: none;
    font-family: "Brut Grotesque", sans-serif;
    font-size: 19px;
	color: rgba(88, 13, 77, 1.000)!important;
    cursor: pointer;
    transition: all 0.2s ease;
	background: transparent!important;
}

.cop-accordion.active {

	padding-bottom: 32px;
    background: transparent!important;
	color: #000!important;
}

.cop-accordion.active .cop-accordion-header {

	color: #000!important;
	background: transparent!important;
}

.cop-accordion-header:hover {
    background: transparent!important;
	color: #000!important;  
}

.cop-accordion-icon {
    transition: transform 0.3s ease;
    color: #580D4D;
    flex-shrink: 0;
}

.cop-accordion.active .cop-accordion-icon {
    transform: rotate(180deg);
}

.cop-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0px;
    font-size: 17px;
    line-height: 1.6;
    color: #000;
}

.cop-accordion.active .cop-accordion-content {
    max-height: 2000px;
    padding: 0px;
}

/* Stiluri pentru conținutul HTML din acordeoane */
.cop-accordion-content h2,
.cop-accordion-content h3,
.cop-accordion-content h4 {
    font-size: 24px;
    font-weight: normal;
    margin: 0 0 12px 0;
    font-family: "Ogg Text", serif;
    color: #000;
}

.cop-accordion-content .cop-clean-content {
    font-size: 17px;
    line-height: 1.6;
    color: #000;
    margin: 0;
    white-space: pre-wrap;
}

.cop-accordion-content p {
    margin: 0 0 12px 0;
}

.cop-accordion-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   Copy Feedback Toast
   ============================================ */
.cop-copy-feedback {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #580D4D;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: "Decimal", sans-serif;
    font-size: 13px;
    z-index: 100001;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(88, 13, 77, 0.3);
}

.cop-copy-feedback.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   Drawer - Mobile (de jos în sus, 100%)
   ============================================ */
@media screen and (max-width: 900px) {
    .cop-drawer {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(100%);
	    background: linear-gradient(to bottom, #EAE9E5, #ffffff);
    }

    .cop-drawer.active {
        transform: translateY(0);
    }

    .cop-drawer-actions {
        top: 16px;
        right: 16px;
        gap: 6px;
    }

    .cop-drawer-close,
    .cop-drawer-share {
        width: 40px;
        height: 40px;
		background: #fff;
    }

    .cop-drawer-close svg {
        width: 32px;
        height: 32px;
    }

    .cop-drawer-share svg {
        width: 32px;
        height: 32px;
    }

    .cop-drawer-content {
        padding: 24px;
        padding-top: 70px;
    }

    .cop-drawer-title h2 {
        font-size: 24px;
    }

    .cop-drawer-sinaxar {
        font-size: 17px;
    }

    .cop-drawer-sinaxar h2, .cop-drawer-sinaxar h3, .cop-drawer-sinaxar h4, .cop-drawer-sinaxar h4 strong, .cop-drawer-sinaxar h3 strong, .cop-drawer-sinaxar h2 strong {
        font-size: 22px;
		font-weight: normal;
    }

    .cop-drawer-app-box {
        padding: 24px;
    }

    .cop-drawer-app-buttons {
        flex-direction: row;
    }

    .cop-app-btn {
        font-size: 11px;
        padding: 10px 16px 12px 16px;
    }

	.cop-drawer-app-title {

		font-size: 20px;
	}

    .cop-read-more-title {
        font-size: 24px;
		margin: 0px 0px 8px 0px;
    }

    .cop-accordion-header {
        padding: 24px 0px;
        font-size: 17px;
    }

    .cop-accordion-content {
        font-size: 17px;
    }

    .cop-accordion.active .cop-accordion-content {
        padding: 0px 0px 16px 0px;
    }

    .cop-accordion-content h2 {
        font-size: 24px;
    }

    .cop-accordion-content .cop-clean-content {
        font-size: 17px;
    }

    .cop-sinaxar-toggle {
        font-size: 10px;
        padding: 16px 16px 18px 16px;
    }

    .cop-copy-feedback {
        bottom: 80px;
    }

	.cop-drawer-sinaxar blockquote {

	font-size: 17px;

	}
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .cop-container {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .cop-sidebar {
        display: none;
    }

    .cop-day-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .cop-day-item.cop-today {
        border: 2px solid #1a365d;
    }
}
