/* Recipe Hero Section */
/* .recipe-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #fff, rgba(222, 39, 31, 0.08));
    position: relative;
    overflow: hidden;
} */
.recipe-hero {
    padding: 160px 0 100px;
    position: relative;
    background: linear-gradient(135deg, rgb(255 255 255), rgb(255 254 252 / 0%)), var(--recipe-banner-hero) center/cover;
    /*background: var(--recipe-banner-hero) center/cover;*/
    /* background: url(../assets/images/receitas/frango-crocante.webp) center / cover; */
    mix-blend-mode: multiply;
}

.recipe-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23de271f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* .rating-stars {
    display: flex;
    gap: 0.125rem;
    color: #cab489;
    font-size: 1rem;
    filter: drop-shadow(0 2px 4px rgba(202, 180, 137, 0.15));
}   */

/* .rating-stars i {
    transition: all 0.2s ease;
} */

/* .rating-stars i.ph-star-fill {
    color: #cab489;
    transform: scale(1.1);
} */

.ingredients-card {
    background: white;
    border-radius: 30px;
    position: sticky;
    /* top: 120px; */
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(222, 39, 31, 0.1);
    border: 1px solid rgba(222, 39, 31, 0.1);
    /* max-height: calc(100vh - 140px); */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(222, 39, 31, 0.3) transparent;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.ingredients-card::-webkit-scrollbar {
    width: 6px;
}

.ingredients-card::-webkit-scrollbar-track {
    background: transparent;
}

.ingredients-card::-webkit-scrollbar-thumb {
    background-color: rgba(222, 39, 31, 0.3);
    border-radius: 20px;
    border: 2px solid transparent;
}
.ingredients-card h3 {
    font-size: 1.25rem;
    color: var(--neutral-black);
    margin-bottom: 0;
    font-weight: 700;
    font-family: 'Anek Latin', sans-serif;
    min-height: 0;
}

.breadcrumb {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.breadcrumb-item a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--neutral-black);
}

.breadcrumb-item {
    font-size: 1rem;
    color: var(--neutral-black);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: rgba(29, 29, 27, 0.5);
    margin: 0 0.5rem;
}

.recipe-hero h1 {
    font-size: 3.5rem;
    color: var(--neutral-black);
    margin-bottom: 3rem;
    position: relative;
    line-height: 1.2;
    font-family: 'Anek Latin', sans-serif;
}

.recipe-hero .recipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    margin-bottom: 3rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--neutral-black);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(222, 39, 31, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 170px;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.meta-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(222, 39, 31, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.meta-item:hover::before {
    opacity: 1;
}

.meta-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(222, 39, 31, 0.1);
    border-color: rgba(222, 39, 31, 0.1);
}

.meta-item i,
.ingredients-header i,
.tip-header i,
.preparation-header i {
    color: var(--primary-red);
    font-size: 1.75rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(222, 39, 31, 0.2));
}

.meta-item:hover i {
    transform: scale(1.2) rotate(-10deg);
    filter: drop-shadow(0 4px 8px rgba(222, 39, 31, 0.3));
}

.meta-item span {
    font-weight: 500;
    font-size: 1.1rem;
    white-space: nowrap;
}

.ingredients-header,
.tip-header i,
.preparation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(222, 39, 31, 0.1);
}

.ingredients-header span,
.tip-header span,
.preparation-header span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-black);
    position: relative;
}

.ingredients-header span::after,
.preparation-header span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.ingredients-header:hover span::after,
.preparation-header:hover span::after {
    width: 100%;
}

.meta-item {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.recipe-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(29, 29, 27, 0.8);
    margin-bottom: 3rem;
    max-width: 700px;
}

.recipe-actions {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    gap: 1rem;
    margin-bottom: 3rem;
}

.recipe-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 100px;
    border-width: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recipe-actions .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(222, 39, 31, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.recipe-actions .btn:hover::before {
    width: 300px;
    height: 300px;
}

.recipe-actions .btn i {
    font-size: 1.25rem;
}

.recipe-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(222, 39, 31, 0.15);
}

/* Rating Section */
.recipe-rating-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff, rgba(222, 39, 31, 0.05));
    position: relative;
    overflow: hidden;
}

.recipe-rating-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23de271f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.recipe-rating-container {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(222, 39, 31, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.recipe-rating-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--primary-red), #ff6b6b);
}

.rating-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--neutral-black);
    font-family: 'Anek Latin', sans-serif;
    line-height: 1;
    position: relative;
}

.rating-number::after {
    content: '/5';
    font-size: 1.5rem;
    color: rgba(29, 29, 27, 0.5);
    position: absolute;
    top: 0;
    right: -2rem;
}

.rating-summary {
    text-align: left;
}

.rating-label {
    font-size: 1.1rem;
    color: rgba(29, 29, 27, 0.7);
    margin-bottom: 0.5rem;
    display: block;
    color: rgba(202, 180, 137, 0.3);
}

.recipe-rating-section .rating-count {
    color: rgba(29, 29, 27, 0.6);
    font-size: 1rem;
    display: block;
    margin-top: 0.5rem;
}

.current-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.recipe-rating-section .rating-stars {
    display: flex;
    gap: 0.5rem;
    color: #cab489;
    font-size: 1.75rem;
    pointer-events: none;
}

.recipe-rating-section .rating-stars.interactive {
    margin: 2rem 0;
    pointer-events: all;
    justify-content: center;
    gap: 1rem;
    font-size: 2.5rem;
    display: inline-flex;
}

.recipe-rating-section .rating-stars.interactive i {
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform-origin: center;
    color: rgba(202, 180, 137, 0.3);
}

.recipe-rating-section .rating-stars.interactive i.active {
    color: #cab489;
    transform: scale(1.2);
    filter: drop-shadow(0 4px 8px rgba(202, 180, 137, 0.3));
}

.recipe-rating-section .rating-stars.interactive i:hover {
    color: #cab489;
    transform: scale(1.3);
    filter: drop-shadow(0 6px 12px rgba(202, 180, 137, 0.4));
}

/* SweetAlert2 Custom Styles */
.swal2-popup {
    border-radius: 24px !important;
    padding: 2rem !important;
}

.swal2-title {
    font-family: 'Anek Latin', sans-serif !important;
    color: var(--neutral-black) !important;
    font-size: 1.75rem !important;
}

.swal2-html-container {
    margin-top: 1.5rem !important;
    font-size: 1.1rem !important;
    color: rgba(29, 29, 27, 0.8) !important;
}

.swal2-textarea {
    border-radius: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 1rem !important;
    margin-top: 1rem !important;
    font-family: inherit !important;
    resize: vertical !important;
    min-height: 120px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.swal2-textarea:focus {
    border-color: var(--primary-red) !important;
    box-shadow: 0 0 0 3px rgba(222, 39, 31, 0.1) !important;
    outline: none !important;
}

.swal2-confirm {
    background: var(--primary-red) !important;
    border-radius: 100px !important;
    padding: 1rem 2rem !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
}

.swal2-cancel {
    background: transparent !important;
    border-radius: 100px !important;
    padding: 1rem 2rem !important;
    font-weight: 600 !important;
    color: var(--neutral-black) !important;
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
    font-size: 1rem !important;
}

.swal2-cancel:hover {
    background: rgba(0, 0, 0, 0.05) !important;
}

.swal2-icon {
    border-color: var(--primary-red) !important;
    color: var(--primary-red) !important;
}

.user-rating {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.rating-title {
    font-size: 1.5rem;
    color: var(--neutral-black);
    margin-bottom: 1rem;
    font-family: 'Anek Latin', sans-serif;
}

.rating-subtitle {
    font-size: 1.1rem;
    color: rgba(29, 29, 27, 0.7);
    margin-bottom: 2rem;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-bar-label {
    min-width: 60px;
    text-align: right;
    font-weight: 500;
}

.rating-bar-track {
    flex: 1;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-red), #ff6b6b);
    border-radius: 100px;
    transition: width 0.6s ease;
}

.rating-bar-count {
    min-width: 40px;
    text-align: left;
    color: rgba(29, 29, 27, 0.6);
    font-size: 0.9rem;
}

/* Rating Form */
.rating-form {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rating-form-title {
    font-size: 1.5rem;
    color: var(--neutral-black);
    margin-bottom: 0.5rem;
    font-family: 'Anek Latin', sans-serif;
}

.rating-form-subtitle {
    font-size: 1.1rem;
    color: rgba(29, 29, 27, 0.7);
    margin-bottom: 2rem;
}

/* SweetAlert2 Customization */
.swal2-popup {
    border-radius: 24px !important;
    padding: 2rem !important;
}

.swal2-title {
    font-family: 'Anek Latin', sans-serif !important;
    color: var(--neutral-black) !important;
}

.swal2-html-container {
    margin-top: 2rem !important;
}

.swal2-textarea {
    border-radius: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 1rem !important;
    margin-top: 1rem !important;
    font-family: inherit !important;
    resize: vertical !important;
    min-height: 120px !important;
}

.swal2-textarea:focus {
    border-color: var(--primary-red) !important;
    box-shadow: 0 0 0 3px rgba(222, 39, 31, 0.1) !important;
}

.swal2-confirm {
    background: var(--primary-red) !important;
    border-radius: 100px !important;
    padding: 1rem 2rem !important;
    font-weight: 600 !important;
}

.swal2-cancel {
    border-radius: 100px !important;
    padding: 1rem 2rem !important;
    font-weight: 600 !important;
    color: var(--neutral-black) !important;
}

.recipe-hero .recipe-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
}

.recipe-hero .recipe-actions .btn i {
    font-size: 1.25rem;
}

.recipe-hero .recipe-actions .btn.saved {
    background-color: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

/*.recipe-hero .recipe-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
    transform: translateY(-20px);
}

.recipe-hero .recipe-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.recipe-hero .recipe-image:hover img {
    transform: scale(1.05);
}*/

/*.recipe-hero .recipe-product {
    position: absolute;
    bottom: 2rem;
    left: -5rem;
    width: 232px;
    height: 180px;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(0);
    transition: all 0.4s ease;
    z-index: 2;
    background: var(--neutral-white);
}

.recipe-hero .recipe-product:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}*/

/*.recipe-hero .recipe-product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}*/

/*.recipe-hero .recipe-product:hover img {
    transform: scale(1.05);
}*/

/* Recipe Content Section */
.recipe-hero .recipe-content {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff, rgba(222, 39, 31, 0.05));
    position: relative;
    z-index: 1;
    overflow: visible;
}

.recipe-hero .recipe-content .row {
    align-items: flex-start;
}

.recipe-hero .recipe-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23de271f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.ingredients-card,
.tip-card,
.preparation-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(222, 39, 31, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(222, 39, 31, 0.1);
    margin-bottom: 0;
}

.ingredients-card h2 {
    font-size: 2rem;
    color: var(--neutral-black);
    margin-bottom: 2rem;
    font-family: 'Anek Latin', sans-serif;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ingredients-card h2 i {
    color: var(--primary-red);
    font-size: 2rem;
}

.ingredients-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ingredients-card li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 0;
        border-bottom: 1px solid rgba(222, 39, 31, 0.1);
        transition: all 0.3s ease;
    }

        .ingredients-card li:last-child {
            border-bottom: none;
        }

        .ingredients-card li:hover {
            padding-left: 1rem;
            background: linear-gradient(135deg, #fff5f5, white);
        }

        .ingredients-card li.checked .ingredient {
            text-decoration: line-through;
            color: rgba(29, 29, 27, 0.5);
        }

/*.ingredients-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ingredients-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(222, 39, 31, 0.1);
    transition: all 0.3s ease;
}

.ingredients-list li:last-child {
    border-bottom: none;
}

.ingredients-list li:hover {
    padding-left: 1rem;
    background: linear-gradient(135deg, #fff5f5, white);
}

.ingredients-list li.checked .ingredient {
    text-decoration: line-through;
    color: rgba(29, 29, 27, 0.5);
}

.ingredient {
    font-size: 1.1rem;
    color: var(--neutral-black);
    transition: all 0.3s ease;
}*/

.btn-check {
    background: none;
    border: 2px solid rgba(0, 0, 0, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: red;
    margin-left: 1rem;
    padding: 0;
}

.btn-check:hover {
    border-color: var(--primary-red);
    background: rgba(222, 39, 31, 0.05);
    transform: scale(1.1);
}

.btn-check.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.btn-check i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-check:hover i {
    transform: rotate(-10deg);
}

.preparation-card h2 {
    margin: 0 0 2.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    color: var(--neutral-black);
    font-family: 'Anek Latin', sans-serif;
}

.preparation-card h2 i {
    color: var(--primary-red);
    font-size: 2rem;
}

.preparation-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
    background: white;
}

.preparation-steps li {
    position: relative;
    padding: 2rem 2rem 2rem 6rem;
    border-bottom: 1px solid rgba(222, 39, 31, 0.1);
    margin: 0;
    transition: all 0.3s ease;
    background: white;
}

.preparation-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 2rem;
    top: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(222, 39, 31, 0.15);
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    transform-origin: center;
}

.preparation-steps h3 {
    font-size: 1.25rem;
    color: var(--neutral-black);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Anek Latin', sans-serif;
    min-height: 0;
}

.preparation-steps p {
    color: rgba(29, 29, 27, 0.8);
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

.preparation-steps li:last-child {
    border-bottom: none;
    border-radius: 0 0 24px 24px;
}

@media (max-width: 576px) {
    .preparation-steps li {
        padding: 2rem 1.5rem 2rem 4.5rem;
    }
    
    .preparation-steps li:hover {
        padding-left: 5rem;
    }
    
    .preparation-steps li::before {
        left: 1.5rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* E-book Section */
.ebook-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.ebook-container {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    max-height: 350px;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.ebook-content {
    flex: 2;
    color: white;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ebook-badge {
    display: inline-block;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-red);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    width: fit-content;
}

.ebook-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.ebook-badge i {
    font-size: 1.1rem;
    color: #FFD700;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.ebook-title {
    font-size: 2.25rem;
    font-family: 'Anek Latin', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.ebook-description {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 500px;
}

.ebook-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.ebook-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1rem;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.ebook-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.ebook-feature i {
    font-size: 1.2rem;
    color: white;
}

.ebook-feature span {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    white-space: nowrap;
}

.ebook-cta {
    background: white;
    color: var(--primary-red);
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    font-size: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    margin-top: 1.5rem;
    width: fit-content;
}

.ebook-cta:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.ebook-cta i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.ebook-cta:hover i {
    transform: translateX(6px);
}

.ebook-image {
    flex: 1;
    max-width: 220px;
    height: auto;
    transform: rotate(-5deg) translateY(-10px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
    transition: all 0.6s ease;
}

.ebook-container:hover .ebook-image {
    transform: rotate(-8deg) translateY(-15px);
}

@media (max-width: 992px) {
    .ebook-container {
        flex-direction: column;
        max-height: none;
        padding: 1.5rem;
        text-align: center;
        gap: 2rem;
    }
    
    .ebook-content {
        flex: none;
        align-items: center;
    }

    .ebook-features {
        grid-template-columns: repeat(3, 1fr);
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .ebook-image {
        max-width: 160px;
        margin: -1rem auto -2rem;
        transform: none;
    }
    
    .ebook-container:hover .ebook-image {
        transform: translateY(-5px);
    } 
}

@media print {
    .no-print, .no-print * {
        display: none !important;
    }
}