/* ============ GLOBAL STYLES =============== */

/* Accessibility - Focus states */
*:focus-visible {
    outline: 2px solid #A68A3D;
    outline-offset: 0;
}

/* Smooth scrolling enhancement */
html {
    scroll-behavior: smooth !important;
}

a {
outline: none !important;
}

body.page:not(.woocommerce-page) {
    background-color: rgba(244, 244, 244, 0.35);
    background-image: url(/wp-content/uploads/2025/08/bg10.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-attachment: scroll;
    background-size: cover;
}

body.woocommerce-page {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    min-height: 100vh;
}

.site-inner {
    background: none !important;
}

body.woocommerce-checkout .entry,
body.woocommerce-cart .entry {
    margin-bottom: 10px !important;
    margin-top: 135px !important;
}

.entry-footer .entry-meta,
.entry-footer::before,
.entry-header::after {
    display: none !important;
}

/* General content area styling */
.site-content,
.content-area {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Main content wrapper */
main.site-main {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 40px;
}

/* Page and post titles */
.entry-title,
.page-title {
    color: #1c3a4d !important;
    font-size: 42px !important;
    font-weight: 300 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 30px !important;
    padding-bottom: 20px !important;
    background: linear-gradient(135deg, #1c3a4d 0%, #2c5a7d 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Entry content styling */
.entry-content {
    font-size: 20px !important;
    line-height: 1.8 !important;
    color: #000 !important;
}

/* Images */
.entry-content .columns-4 img {
    max-width: 200px !important;
    height: 200px !important;
    border-radius: 5px !important;
}

/* Loading animations */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Links styling */
.entry-content a,
.page-content a {
    color: #9b8a3a !important;
    text-decoration: none !important;
    border-bottom: 1px solid transparent !important;
    transition: all 0.3s ease !important;
}

/* Lists styling */
.entry-content ul,
.entry-content ol {
    margin: 20px 0 !important;
    padding-left: 30px !important;
}

.entry-content ul li,
.entry-content ol li {
    margin-bottom: 10px !important;
    color: #4a5568 !important;
}

.entry-content ul li::marker {
    color: #A68A3D !important;
}

.entry-content p {
    margin-bottom: 20px !important;
}

.entry-content h2 {
    color: #1c3a4d !important;
    font-size: 32px !important;
    font-weight: 400 !important;
    margin: 35px 0 20px !important;
    padding-bottom: 10px !important;
}

.entry-content h3 {
    color: #2d3748 !important;
    font-size: 26px !important;
    font-weight: 500 !important;
    margin: 30px 0 15px !important;
}

.entry-content h4 {
    color: #2d3748 !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    margin: 25px 0 15px !important;
}

.entry-meta a {
    color: #9b8a3a;
    text-decoration: none;
}

.entry-meta a:hover {
    color: #A68A3D;
}

/* Alert boxes and notices */
.alert,
.notice,
.message {
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.alert-info,
.notice-info {
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
    color: #1e40af;
}

.alert-success,
.notice-success {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
    color: #064e3b;
}

.alert-warning,
.notice-warning {
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid #f59e0b;
    color: #78350f;
}

.alert-error,
.notice-error {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

/* Blockquotes */
.entry-content blockquote {
    margin: 30px 0 !important;
    padding: 25px !important;
    background: rgba(212, 175, 55, 0.05) !important;
    border-left: 4px solid #A68A3D !important;
    border-radius: 8px !important;
    font-style: italic !important;
    color: #2d3748 !important;
}

/* Breadcrumbs styling */
.breadcrumbs,
.woocommerce-breadcrumb,
.rank-math-breadcrumb {
    background: rgba(212, 175, 55, 0.05);
    padding: 15px 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumbs a,
.woocommerce-breadcrumb a,
.rank-math-breadcrumb a {
    color: #9b8a3a;
    text-decoration: none;
}

.breadcrumbs a:hover,
.woocommerce-breadcrumb a:hover,
.rank-math-breadcrumb a:hover {
    color: #A68A3D;
    text-decoration: underline;
}

/** Buttons **/
/* Add to Cart Button */
.single_add_to_cart_button {
    background-color: #a68a3d !important;
    font-weight: normal !important;
}

.single_add_to_cart_button:hover {
    background-color: #bfa24a !important;
}

/* Buttons and CTAs */
body.logged-in .wp-block-button__link,
body.logged-in .button,
body.logged-in .btn,
body.logged-in input[type="submit"],
body.logged-in button[type="submit"] {
    background: linear-gradient(135deg, #A68A3D 0%, #b8a347 100%) !important;
    color: #fff !important;
    padding: 14px 32px !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline-block;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

li.wc-block-grid__product {
    list-style: none !important;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__products .wc-block-grid__product-image img {
height: 200px !important;
}

.wp-block-woocommerce-empty-cart-block a.wp-block-button__link.add_to_cart_button.ajax_add_to_cart {
padding: 8px 32px !important;
font-size: 14px !important;
}

button[type="submit"] {
transition: all 0.3s ease !important;
}


.wp-block-button__link:hover,
.button:hover,
.btn:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    color: white;
}

/* 404 page */
.error404 .page-content {
    text-align: center;
    padding: 80px 20px;
}

.error404 .page-title {
    font-size: 120px;
    color: #A68A3D;
    margin-bottom: 20px;
}

/* WooCommerce Sorting Dropdown Styling */
.woocommerce-ordering select.orderby,
select.orderby {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    color: #4a5568 !important;
    font-weight: 400 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    min-width: 200px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A68A3D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px !important;
    padding-right: 40px !important;
}

.woocommerce-ordering select.orderby:hover,
select.orderby:hover {
    border-color: #A68A3D !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1), 0 6px 16px rgba(0, 0, 0, 0.08) !important;
    background-color: rgba(255, 255, 255, 1) !important;
}

.woocommerce-ordering select.orderby:focus,
select.orderby:focus {
    border-color: #A68A3D !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15), 0 6px 16px rgba(0, 0, 0, 0.08) !important;
    outline: none !important;
    background-color: rgba(255, 255, 255, 1) !important;
}

