/*
Theme Name: Fatherhood Guide Book
Theme URI: https://fatherhoodguidebook.my.id
Author: Chellays
Author URI: https://chellays.com
Description: A modern, clean e-book shop theme designed for Easy Digital Downloads with focus on fatherhood content.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fatherhood
Tags: e-commerce, edd, ebooks, clean, modern

This theme requires Easy Digital Downloads plugin to function properly.
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #F5E6D3;
    color: #2C3E50;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}
.site-main {
    padding: 80px 0;
}

fieldset {
    border: none;
}

/* Header Styles */
header.site-header {
    background-color: #2C3E50;
    padding: 25px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding h1,
.site-branding .site-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #F5E6D3;
    font-size: 2rem;
    cursor: pointer;
    margin: 0;
}

.site-branding a {
    color: #F5E6D3;
}

.site-branding a:hover {
    color: #D4A373;
}

.menu-overlay {
    background: #2C3E50;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: #F5E6D3;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #D4A373;
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: #D4A373;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.main-navigation .menu-item-has-children > a {
    cursor: pointer;
}

.main-navigation .dropdown-toggle {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.main-navigation .menu-item-has-children.open .dropdown-toggle {
    transform: rotate(180deg);
}

.main-navigation .sub-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    padding: 10px 0;
    z-index: 1000;
    flex-direction: column;
    gap:0;
}

.main-navigation .menu-item-has-children.open .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background-color: #2C3E50;
}

.main-navigation .sub-menu li {
    padding: 0;
}

.main-navigation .sub-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 1rem;
    color: #F5E6D3;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-navigation .sub-menu a::after {
    display: none;
}

.main-navigation .sub-menu a:hover {
    background-color: #1a252f;
    color: #D4A373;
}

.main-navigation .sub-menu li:first-child a {
    border-radius: 8px 8px 0 0;
}

.main-navigation .sub-menu li:last-child a {
    border-radius: 0 0 8px 8px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: #F5E6D3;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.cart-link {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #D4A373;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Shop Archive (Downloads Page) */
.shop-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    align-items: stretch;
}

.search-bar {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.search-bar::before {
    content: '🔍';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    z-index: 1;
}

.search-bar input[type="search"],
.search-bar input[type="text"] {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #2C3E50;
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    background-color: white;
    color: #2C3E50;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
}

.search-bar input:focus {
    outline: none;
    border-color: #D4A373;
    box-shadow: 0 4px 16px rgba(212, 163, 115, 0.2);
    transform: translateY(-2px);
}

.category-filter {
    position: relative;
}

.category-filter::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #2C3E50;
    pointer-events: none;
    font-size: 0.8rem;
}

.category-filter select {
    padding: 16px 50px 16px 20px;
    border: 2px solid #2C3E50;
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    background-color: white;
    color: #2C3E50;
    cursor: pointer;
    min-width: 220px;
    appearance: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
}

.category-filter select:hover {
    border-color: #D4A373;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 163, 115, 0.15);
}

.category-filter select:focus {
    outline: none;
    border-color: #D4A373;
    box-shadow: 0 4px 16px rgba(212, 163, 115, 0.2);
}

/* Downloads Grid */
.downloads-grid,
.edd_downloads_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.download-card,
.edd_download {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.download-card:hover,
.edd_download:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.15);
}

.download-thumbnail {
    width: 100%;
    height: 400px;
    object-fit: cover;
    cursor: pointer;
    background-color: #e0e0e0;
    display: block;
}

.download-info,
.edd_download_inner {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.download-title,
.edd_download_title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2C3E50;
    cursor: pointer;
    transition: color 0.3s ease;
}

.download-title a,
.edd_download_title a {
    color: #2C3E50;
}

.download-title:hover,
.download-title a:hover,
.edd_download_title a:hover {
    color: #D4A373;
}

.download-excerpt,
.edd_download_excerpt {
    color: #5a6c7d;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
}

/* Purchase Button Styling */
.purchase-btn,
.edd-add-to-cart,
.edd-submit.button {
    background-color: #D4A373;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: center;
}

.purchase-btn:hover,
.edd-add-to-cart:hover,
.edd-submit.button:hover {
    background-color: #c49563;
    transform: scale(1.02);
}

.purchase-btn .price,
.edd_price {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Single Download (Product Detail Page) */
.single-download .content-area {
    padding: 80px 0;
}

.single-download .entry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.download-image-wrapper {
    height: fit-content;
}

.download-featured-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.15);
}

.download-details {
    position: relative;
}

.back-to-shop {
    background-color: #2C3E50;
    color: #F5E6D3;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 30px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.back-to-shop:hover {
    background-color: #1a252f;
}

.single-download .entry-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2C3E50;
}

.single-download .entry-content p,
.single-download .entry-content ul,
.single-download .entry-content ol {
    color: #5a6c7d;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.single-download .entry-content ul {
    list-style: none;
    padding-left: 0;
}

.single-download .entry-content ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.single-download .entry-content ul.arrow-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #D4A373;
    font-weight: bold;
}

.single-download .entry-content ul.check-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Sticky Purchase Box */
.sticky-purchase-wrapper {
    position: sticky;
    bottom: 20px;
    margin-top: 40px;
    z-index: 50;
}

.sticky-purchase {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 -4px 20px rgba(44, 62, 80, 0.15);
}

/* Pagination */
.pagination,
.edd_pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination .page-numbers,
.edd_pagination a,
.edd_pagination span {
    padding: 12px 20px;
    background-color: #2C3E50;
    color: #F5E6D3;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.pagination .page-numbers:hover,
.edd_pagination a:hover {
    background-color: #1a252f;
}

.pagination .page-numbers.current,
.edd_pagination .current {
    background-color: #D4A373;
}

/* Footer Styles */
.site-footer {
    background-color: #2C3E50;
    color: #F5E6D3;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-widget h3,
.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: #D4A373;
    font-size: 1.5rem;
}

.footer-widget p,
.footer-section p {
    color: #F5E6D3;
    line-height: 1.8;
}

.newsletter-form {
    margin-top: 25px;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 15px;
    border: 2px solid #F5E6D3;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    background-color: white;
    color: #2C3E50;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #D4A373;
}

.newsletter-form button {
    width: 100%;
    padding: 14px 18px;
    background-color: #D4A373;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.newsletter-form button:hover {
    background-color: #c49563;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(245, 230, 211, 0.2);
    color: #F5E6D3;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    border: 1px solid #2C3E50;
    background-color: #F5E6D3;
    color: #2C3E50;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

.toast.hide {
    animation: slideOut 0.3s ease forwards;
}

.toast-icon {
    font-size: 1.5rem;
}

.toast-message {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2C3E50;
    margin-left: 10px;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #5a6c7d;
    font-size: 1.2rem;
    grid-column: 1 / -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
    }

    .menu-overlay.active {
        width: 100vw;
        height: 100vh;
        opacity: 1;
    }

    .main-navigation {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #2C3E50;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        /*box-shadow: 0 4px 10px rgba(0,0,0,0.2);*/
    }

    .main-navigation.active {
        max-height: 600px;
        overflow-y: auto;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .main-navigation ul li {
        padding: 0;
        border-bottom: 1px solid rgba(245, 230, 211, 0.2);
    }

    .main-navigation ul li:last-child {
        border-bottom: none;
    }

    .main-navigation > ul > li {
        padding: 15px 0;
    }

    /* Mobile Dropdown Styles */
    .main-navigation .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 10px;
        border-radius: 6px;
        gap: 0;
        flex-direction: column;
    }

    .main-navigation .menu-item-has-children.open .sub-menu {
        max-height: 500px;
    }

    .main-navigation .sub-menu a {
        padding: 12px 15px 12px 25px;
        font-size: 0.95rem;
    }

    .main-navigation .dropdown-toggle {
        float: right;
        margin-top: 2px;
    }

    .menu-toggle {
        display: flex;
    }

    .single-download .entry-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .site-branding h1,
    .site-branding .site-title {
        font-size: 1.5rem;
    }

    .single-download .entry-title {
        font-size: 2rem;
    }

    .downloads-grid,
    .edd_downloads_list {
        grid-template-columns: 1fr;
    }

    .shop-filters {
        flex-direction: column;
    }

    .category-filter select {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .toast {
        bottom: 20px;
        right: 20px;
        left: 20px;
        padding: 18px 24px;
    }
}

/* EDD Shortcode Specific Styles */

/* Downloads Grid Shortcode [downloads] */
.edd_downloads_list.edd_download_columns_3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.edd_downloads_list.edd_download_columns_2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.edd_downloads_list.edd_download_columns_4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 992px) {
    .edd_downloads_list.edd_download_columns_3,
    .edd_downloads_list.edd_download_columns_4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .edd_downloads_list.edd_download_columns_2,
    .edd_downloads_list.edd_download_columns_3,
    .edd_downloads_list.edd_download_columns_4 {
        grid-template-columns: 1fr;
    }
}

/* Checkout Page [download_checkout] */
#edd_checkout_wrap {
    max-width: 100%;
}

#edd_checkout_cart {
    margin-bottom: 40px;
}

#edd_checkout_cart th {
    background-color: #2C3E50;
    color: #F5E6D3;
    padding: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

#edd_checkout_cart td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.edd-cart-item-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #2C3E50;
}

/* Form Fields */
#edd_checkout_form_wrap fieldset {
    border-color: #2C3E50 !important;
}

#edd_checkout_form_wrap fieldset legend {
    margin-left: -20px !important;
    padding: 0 20px !important;
}

#edd_checkout_form_wrap input[type="text"],
#edd_checkout_form_wrap input[type="email"],
#edd_checkout_form_wrap input[type="tel"],
#edd_checkout_form_wrap input[type="password"],
#edd_checkout_form_wrap select,
#edd_checkout_form_wrap textarea {
    width: 100%;
    padding: 12px 16px !important;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#edd_checkout_form_wrap input:focus,
#edd_checkout_form_wrap select:focus,
#edd_checkout_form_wrap textarea:focus {
    outline: none;
    border-color: #D4A373;
}

#edd_checkout_form_wrap label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2C3E50;
}

/* Cart Shortcode [download_cart] */

.edd-cart-meta {
    font-size: 0.9rem;
    color: #5a6c7d;
}

.edd_cart_remove_item_btn {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.edd_cart_remove_item_btn:hover {
    color: #c0392b;
}

/* Purchase History [purchase_history] */
#edd_user_history {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.1);
}

#edd_user_history th {
    background-color: #2C3E50;
    color: #F5E6D3;
    padding: 15px;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

#edd_user_history td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.edd_purchase_receipt_products {
    list-style: none;
    padding: 0;
}

/* Profile Editor [edd_profile_editor] */
#edd_profile_editor_form {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.1);
    max-width: 600px;
}

#edd_profile_editor_form input[type="text"],
#edd_profile_editor_form input[type="email"],
#edd_profile_editor_form input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 20px;
}

#edd_profile_editor_form input:focus {
    outline: none;
    border-color: #D4A373;
}

#edd_profile_editor_submit {
    background-color: #D4A373;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
}

#edd_profile_editor_submit:hover {
    background-color: #c49563;
}

/* Receipt [edd_receipt] */
.edd_receipt_payment_status,
.edd_receipt_payment_method {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-left: 4px solid #D4A373;
    border-radius: 4px;
}

/* Download Discounts [download_discounts] */
.edd_discounts_list {
    list-style: none;
    padding: 0;
}

.edd_discount {
    background-color: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #D4A373;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
}

.edd_discount_name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #2C3E50;
    margin-bottom: 10px;
}

.edd_discount_code {
    background-color: #F5E6D3;
    padding: 8px 15px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    display: inline-block;
    margin: 10px 0;
}

/* EDD Messages */
.edd-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.edd-alert.edd-alert-error {
    background-color: #fee;
    border-left: 4px solid #e74c3c;
    color: #c0392b;
}

.edd-alert.edd-alert-success {
    background-color: #efe;
    border-left: 4px solid #27ae60;
    color: #1e8449;
}

.edd-alert.edd-alert-info {
    background-color: #e8f4fd;
    border-left: 4px solid #3498db;
    color: #2471a3;
}

.edd-alert.edd-alert-warn {
    background-color: #fef5e7;
    border-left: 4px solid #f39c12;
    color: #d68910;
}

/* WordPress Core Styles */
.wp-block-image {
    margin-bottom: 1.5rem;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Page Links (for paginated content) */
.page-links {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.page-links a {
    background-color: #2C3E50;
    color: #F5E6D3;
    padding: 8px 16px;
    border-radius: 6px;
    margin: 0 5px;
    text-decoration: none;
}

.page-links a:hover {
    background-color: #D4A373;
}

#edd_checkout_cart,
#edd_checkout_cart th,
#edd_checkout_cart td,
.edd_cart,
.edd_cart th,
.edd_cart td,
#edd_user_history table,
#edd_user_history table th,
#edd_user_history table td,
.edd-blocks-receipt__row-header,
.edd-blocks-receipt__row-item,
.edd-blocks-receipt__items, 
.edd-blocks-receipt__totals,
.edd-blocks-form__cart #edd_checkout_cart,
.edd-blocks-orders__order, 
.edd-blocks-orders__order-header,
.edd-blocks-form__cart,
.edd-blocks-cart__items, 
.edd-blocks-form__cart .edd-blocks-cart__row-header {
    border-color: #2C3E50 !important;
}

ul.edd_purchase_receipt_files {
    padding-left: 30px;
}
ul.edd_purchase_receipt_files li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 6px;
}

ul.edd_purchase_receipt_files li::marker {
    content: '→';
    color: #D4A373;
    font-weight: bold;
}