/* Furever Theme Custom Styles */

/* Original Furever Colors with Soft Design */
:root {
    --furever-blue: #345a89;
    --furever-pink: #fad4cd;
    --furever-fuchsia: #f47343;
    --furever-cream: #fff8ea;
    --prime-ten: #f47343;
    
    /* Soft Color Palette */
    --primary-900: #345a89;
    --primary-800: #4a6fa5;
    --primary-700: #6084c4;
    --primary-600: #7599d3;
    --primary-500: #8baee2;
    --primary-400: #a1c3f1;
    --primary-300: #b6d8ff;
    --primary-200: #d4e6ff;
    --primary-100: #f0f7ff;
    --primary-50: #fff8ea;
    
    --accent-600: #345a89;
    --accent-500: #4a6fa5;
    --accent-400: #6084c4;
    
    --success-500: #48bb78;
    --warning-500: #f47343;
    --error-500: #e53e3e;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Soft Border Radius */
    --radius-sm: 0.75rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-2xl: 2.5rem;
}

.main-page {
    margin-top: 50px;
}

.main-container {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
}

/* main-container web */
@media (min-width: 1024px) {
    .main-container {
        display: flex;
    }
}

/* Modern Base Styles */
* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--primary-800);
    background-color: var(--furever-cream);
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--space-4) 0;
    color: var(--primary-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin: 0 0 var(--space-4) 0;
    font-size: 18px
}

a {
    color: var(--accent-600);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--accent-500);
}

.font-Noteworthy {
    font-family: 'Noteworthy', cursive;
}

.font-eustache {
    font-family: 'Eustache', serif;
}

/* Animations */
@keyframes rotated {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes jumpFour {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-rotated {
    animation: rotated 12s infinite linear;
}

.animate-jumpFour {
    animation: jumpFour 3.5s infinite linear;
}

/* Transitions */
.tran3s {
    transition: all 0.3s ease-in-out;
}

/* Custom Components */
.card-style-seven {
    transition: transform 0.3s ease;
}

.card-style-seven:hover {
    transform: translateY(-5px);
}

/* Sticky Menu */
.sticky-menu.fixed_top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: var(--furever-blue);
}

/* Scroll to Top Button */
.scroll-top {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

/* WooCommerce Customizations */
.woocommerce .product-card {
    border: 1px solid #e5e7eb;
    padding: 1rem;
    transition: all 0.3s ease;
}

.woocommerce .product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.woocommerce .button.alt,
.woocommerce .button {
    background-color: var(--furever-blue) !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.woocommerce .button.alt:hover,
.woocommerce .button:hover {
    background-color: var(--furever-fuchsia) !important;
    transform: translateY(-1px);
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
    border-radius: 8px !important;
    padding: 16px !important;
    margin-bottom: 20px !important;
}

.woocommerce-info {
    background-color: #e0f2fe !important;
    border-color: #0288d1 !important;
    color: #01579b !important;
}

.woocommerce-message {
    background-color: #e8f5e8 !important;
    border-color: #4caf50 !important;
    color: #1b5e20 !important;
}

.woocommerce-error {
    background-color: #ffebee !important;
    border-color: #f44336 !important;
    color: #b71c1c !important;
}

/* Product Gallery */
.woocommerce div.product div.images {
    margin-bottom: 2rem;
}

.woocommerce div.product div.images .flex-control-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    width: calc(25% - 7.5px);
}

.woocommerce div.product div.images .flex-control-thumbs li img {
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce div.product div.images .flex-control-thumbs li img:hover {
    transform: scale(1.05);
}

/* Product Info */
.woocommerce div.product p.price {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--furever-fuchsia) !important;
    margin-bottom: 1rem !important;
}

.woocommerce div.product .product_title {
    color: var(--furever-blue) !important;
    margin-bottom: 1rem !important;
}

/* Cart */
.woocommerce table.cart td.actions .coupon {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.woocommerce table.cart td.actions .coupon input[type="text"] {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 8px 12px;
}

/* Checkout */
.woocommerce-checkout .woocommerce-checkout-payment {
    background: #f9fafb;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .theme-main-menu {
        padding: 10px 20px !important;
    }
    
    .hero-banner-five {
        padding: 150px 0 !important;
    }
    
    .fancy-feature-fourteen {
        margin-top: -50px !important;
    }
    
    .card-style-seven {
        padding: 20px 15px !important;
    }
}

/* Blog Styles */
.blog-posts article {
    margin-bottom: 3rem;
}

.entry-content {
    line-height: 1.8;
}

.entry-content img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Single Post Styles */
.post-thumbnail img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
    max-width: 640px;
    height: auto;
}

.single article {
    padding: 10px 20px var(--space-10) !important;
}

.single .entry-header {
    margin-bottom: var(--space-2) !important;
}

.single .entry-title {
    margin-bottom: 24px !important;
    font-size: 1.8rem !important;
    letter-spacing: -0.014em;
    line-height: 38px;
}

.single .entry-meta {
    margin-bottom: var(--space-2) !important;
}

.single .entry-footer {
    margin-top: var(--space-2) !important;
    padding-top: var(--space-2) !important;
}

/* Comments */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list .comment {
    background: #f9fafb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.comment-meta {
    margin-bottom: 10px;
    font-size: 0.875rem;
    color: #6b7280;
}

.comment-author img {
    border-radius: 50%;
    margin-right: 10px;
}

/* Pagination */
.pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    border-radius: 6px;
    background: white;
    border: 1px solid #e5e7eb;
    color: var(--furever-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--furever-blue);
    color: white;
    border-color: var(--furever-blue);
}

/* Widget Styles */
.widget {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.widget-title {
    color: var(--furever-blue);
    font-weight: 600;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget ul li a:hover {
    color: var(--furever-pink);
}

/* Footer */
.footer-style-five {
    margin-top: 80px;
}

.footer-widgets {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Utility Classes */
.text-furever-blue { color: var(--furever-blue) !important; }
.text-furever-pink { color: var(--furever-pink) !important; }
.text-furever-fuchsia { color: var(--furever-fuchsia) !important; }
.text-furever-cream { color: var(--furever-cream) !important; }

.bg-furever-blue { background-color: var(--furever-blue) !important; }
.bg-furever-pink { background-color: var(--furever-pink) !important; }
.bg-furever-fuchsia { background-color: var(--furever-fuchsia) !important; }
.bg-furever-cream { background-color: var(--furever-cream) !important; }

.border-furever-blue { border-color: var(--furever-blue) !important; }
.border-furever-pink { border-color: var(--furever-pink) !important; }
.border-furever-fuchsia { border-color: var(--furever-fuchsia) !important; }

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Tailwind CSS Equivalent Utility Classes */

/* Layout */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container { max-width: 640px; }
}

@media (min-width: 768px) {
    .container { max-width: 768px; }
}

@media (min-width: 1024px) {
    .container { max-width: 1024px; }
}

@media (min-width: 1280px) {
    .container { max-width: 1280px; }
}

@media (min-width: 1536px) {
    .container { max-width: 1536px; }
}

.mx-auto { margin-left: auto; margin-right: auto; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.-mx-4 { margin-left: -1rem; margin-right: -1rem; }

/* Padding */
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

/* Margin */
.m-0 { margin: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }

/* Width */
.w-full { width: 100%; }
.w-16 { width: 4rem; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }

/* Height */
.h-16 { height: 4rem; }
.h-64 { height: 16rem; }
.h-full { height: 100%; }

/* Display */
.flex { display: flex; }
.inline-block { display: inline-block; }

/* Flexbox */
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* Spacing */
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Text */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }

/* Colors */
.text-white { color: rgb(255 255 255); }
.text-gray-500 { color: rgb(107 114 128); }
.text-gray-600 { color: rgb(75 85 99); }

/* Background */
.bg-white { background-color: rgb(255 255 255); }

/* Border */
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

/* Shadow */
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }

/* Overflow */
.overflow-x-hidden { overflow-x: hidden; }
.object-cover { object-fit: cover; }

/* Position */
.max-w-none { max-width: none; }
.max-w-4xl { max-width: 56rem; }

/* Hover states */
.hover\:text-furever-pink:hover { color: var(--furever-pink) !important; }
.hover\:bg-furever-pink:hover { background-color: var(--furever-pink) !important; }
.hover\:bg-furever-fuchsia:hover { background-color: var(--furever-fuchsia) !important; }

/* Transitions */
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

/* Responsive utilities */
@media (min-width: 1024px) {
    .lg\:w-1\/3 { width: 33.333333%; }
    .lg\:w-2\/3 { width: 66.666667%; }
}

/* Prose styles for content */
.prose {
    color: rgb(0 0 0);
    max-width: 65ch;
}

.prose-lg {
    font-size: 1.125rem;
    line-height: 1.7777778;
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    color: rgb(0 0 0);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose p {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}

.prose img {
    border-radius: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Custom background pattern */
.pattern-bg-one {
    background-repeat: repeat;
    background-position: center;
    background-color: #FFEFE3;
}

.bg-\[\#FFEFE3\] {
    background-color: #FFEFE3;
}

/* Additional utility classes for bracket notation */
.h-screen { height: 100vh; }
.justify-center { justify-content: center; }
.bg-repeat { background-repeat: repeat; }
.bg-center { background-position: center; }

/* Grid utilities */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }

/* More responsive utilities */
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Flexbox utilities */
.flex-nowrap { flex-wrap: nowrap; }

/* Transform utilities */
.hover\:scale-105:hover { transform: scale(1.05); }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }

/* Space utilities */
.space-y-5 > * + * { margin-top: 1.25rem; }

/* Text utilities */
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-5xl { font-size: 3rem; line-height: 1; }

/* Max width utilities */
.max-w-xl { max-width: 36rem; }

/* Border utilities */
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-gray-200 { border-color: rgb(229 231 235); }

/* Leading utilities */
.leading-relaxed { line-height: 1.625; }

/* Header and Navigation Styles - Mobile First */
.theme-main-menu {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 99;
    padding: 20px;
}

.theme-main-menu .inner-content {
    position: relative;
}

.theme-main-menu .logo {
    display: flex;
    align-items: center;
}

.theme-main-menu .logo img {
    max-height: 40px;
    width: auto;
}

.navbar-nav {
    display: none;
    align-items: center;
}

.navbar-nav ul,
.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
    flex-direction: column;
}

.navbar-nav ul li,
.navbar-menu li {
    margin: 0;
}

.navbar-nav ul li a,
.navbar-menu li a {
    color: var(--furever-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 8px 0;
    display: block;
}

.navbar-nav ul li a:hover,
.navbar-menu li a:hover {
    color: var(--furever-pink);
}

.right-widget {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-cta-btn {
    font-weight: 500;
    font-size: 13px;
    color: var(--furever-blue);
    padding: 8px 16px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--furever-blue);
    background-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-cta-btn:hover {
    background-color: var(--furever-blue);
    color: white;
}

.contact-cta-btn img {
    width: 14px;
    height: auto;
}



/* Preloader styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: var(--furever-blue);
}

.ctn-preloader {
    background-color: var(--furever-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
    left: 0;
    top: 0;
}

.animation-preloader {
    position: absolute;
    z-index: 100;
    text-align: center;
}

.animation-preloader .icon {
    display: inline-block;
    position: relative;
}

.animation-preloader .icon img {
    margin: auto;
    display: block;
    width: 120px;
}

/* Footer Styles - Mobile First */
.partner-section {
    margin: 30px 0;
    padding: 30px 0;
    background-color: #f9f9f9;
}

.partner-title {
    text-align: center;
    font-size: 16px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.highlight-text {
    font-size: 22px;
    color: #FF3636;
    text-decoration: underline;
    font-family: 'Noteworthy', cursive;
    letter-spacing: 2px;
}

.site-footer {
    background-color: var(--furever-blue);
    color: var(--furever-cream);
    padding: 30px 0 20px;
    margin-top: 40px;
}

.footer-widgets {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-col {
    flex: 1;
}

.footer-col .widget-title {
    color: var(--furever-cream);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: var(--furever-cream);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--furever-pink);
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    color: var(--furever-cream);
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--furever-pink);
}

.social-links img {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding-top: 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.copyright {
    color: var(--furever-cream);
    font-size: 14px;
    margin: 0;
}

.footer-image {
    height: 35px !important;
    width: auto;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background-color: var(--furever-pink);
    color: var(--furever-fuchsia);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--furever-fuchsia);
    color: white;
    transform: translateY(-2px);
}

/* Tablet and Desktop Responsive Design */
@media (min-width: 768px) {
    .theme-main-menu {
        padding: 25px 40px;
    }
    
    .theme-main-menu .logo img {
        max-height: 50px;
    }
    
    .navbar-nav {
        display: flex;
    }
    
    .navbar-nav ul,
    .navbar-menu {
        flex-direction: row;
        gap: 2rem;
        margin-left: 2rem;
    }
    
    .navbar-nav ul li a,
    .navbar-menu li a {
        font-size: 16px;
        padding: 10px 0;
    }
    
    .contact-cta-btn {
        font-size: 14px;
        padding: 10px 20px;
        gap: 8px;
    }
    
    .contact-cta-btn img {
        width: 16px;
    }
    
    .partner-title {
        font-size: 18px;
    }
    
    .highlight-text {
        font-size: 28px;
    }
    
    .footer-columns {
        flex-direction: row;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .theme-main-menu {
        padding: 10px 60px;
    }
    
    .contact-cta-btn {
        font-size: 14px;
        padding: 12px 24px;
    }
    
    .contact-cta-btn img {
        width: 16px;
    }
    
    .partner-title {
        font-size: 20px;
    }
    
    .highlight-text {
        font-size: 32px;
    }
    
    .site-footer {
        padding: 50px 0 30px;
    }
}

/* Modern Blog Layout Styles */
.blog-wrapper {
    min-height: 100vh;
    padding-top: 0;
}

/* Blog Hero Section */
.blog-hero {
    background: var(--furever-blue);
    color: white;
    padding: var(--space-2) 0;
    text-align: center;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-bottom: var(--space-2);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-3);
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary-300);
    margin: 0;
    font-weight: 400;
}

/* Blog Main Content */
.blog-main {
    padding: var(--space-2) 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    max-width: 1200px;
    margin: 0 auto;
}

.blog-content {
    width: 100%;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

/* Post Card */
.post-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--furever-pink);
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--furever-fuchsia);
}

.post-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    width: 100%;
}

.post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-img {
    transform: scale(1.05);
}

.post-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-400);
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
}

.post-card:hover .post-img-placeholder {
    background: var(--primary-200);
    color: var(--primary-500);
}

.post-category {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
}

.category-tag {
    background: var(--furever-fuchsia);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-content {
    padding: var(--space-4);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2);
    font-size: 0.875rem;
    color: var(--primary-600);
}

.post-date {
    font-weight: 500;
}

.read-time {
    color: var(--primary-500);
}

.post-title {
    margin-bottom: var(--space-1);
    font-size: 1.375rem;
    line-height: 1.3;
}

.post-title a {
    color: var(--primary-900);
    transition: color 0.2s ease;
}

.post-title a:hover {
    color: var(--accent-600);
}

.post-excerpt {
    color: var(--primary-700);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--space-2);
}

.post-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: var(--space-1);
    border-top: 1px solid var(--primary-200);
}

.author-info {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primary-200);
}

.author-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-700);
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--furever-blue);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.read-more-btn:hover {
    color: var(--furever-fuchsia);
    transform: translateX(2px);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: var(--space-12);
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    margin: 0 var(--space-1);
    border-radius: var(--radius-xl);
    background: white;
    border: 1px solid var(--furever-pink);
    color: var(--furever-blue);
    font-weight: 500;
    transition: all 0.2s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: var(--furever-blue);
    color: white;
    border-color: var(--furever-blue);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Blog Sidebar */
.blog-sidebar {
    width: 100%;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: var(--space-20) var(--space-8);
}

.no-posts-content h2 {
    font-size: 2rem;
    margin-bottom: var(--space-4);
    color: var(--primary-800);
}

.no-posts-content p {
    font-size: 1.125rem;
    color: var(--primary-600);
    margin-bottom: var(--space-8);
}

.search-form-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-1);
}

/* Mobile Responsive Design for Blog */
@media (min-width: 640px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 1.25rem;
    }
    
    .container {
        padding: 0 var(--space-2);
    }
}

@media (min-width: 768px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: var(--space-16);
    }
    
    .posts-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .post-image {
        aspect-ratio: 1/1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.375rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-3);
    }
    
}

/* Modern Sidebar Styles */
.modern-sidebar {
    margin: 10px;
}

/* Single Share Button Styling */
.furever-single-share-button {
    position: relative;
    display: inline-block;
    margin: 0;
}

/* When in entry-share context (beside entry-meta) */
.entry-share .furever-single-share-button {
    margin: 0;
}

/* When in social-share-section context (after content) */
.social-share-section .furever-single-share-button {
    display: block;
    margin: var(--space-4) 0;
    float: right;
    clear: both;
}

.share-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: var(--furever-blue, #345a89);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(52, 90, 137, 0.2);
}

.share-trigger-btn:hover {
    background: var(--furever-fuchsia, #f47343);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 90, 137, 0.3);
}

.share-trigger-btn.active {
    background: var(--furever-fuchsia, #f47343);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.share-trigger-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Share Dropdown */
.share-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.share-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-dropdown-content {
    padding: var(--space-2);
}

.share-option {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.share-option:hover {
    background: #f3f4f6;
    color: var(--furever-blue, #345a89);
    text-decoration: none;
}

.share-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Specific platform colors on hover */
.facebook-option:hover {
    color: #1877f2;
}

.twitter-option:hover {
    color: #1da1f2;
}

.whatsapp-option:hover {
    color: #25d366;
}

.email-option:hover {
    color: var(--furever-blue, #345a89);
}

.copy-link-option:hover {
    color: var(--furever-fuchsia, #f47343);
}

.native-share-option:hover {
    color: var(--furever-blue, #345a89);
}

/* Share divider */
.share-divider {
    height: 1px;
    background: #e5e7eb;
    margin: var(--space-2) var(--space-4);
}

/* Copy notification */
.copy-notification {
    position: absolute;
    top: -45px;
    right: 0;
    background: #10b981;
    color: white;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1001;
}

.copy-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.copy-notification::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 16px;
    border: 4px solid transparent;
    border-top-color: #10b981;
}
.product-description {
    color: #242424;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    text-size-adjust: 100%;
    letter-spacing: -0.054px;
}

/* Product description: force spans onto new lines */
.product-description span {
    display: block;
    margin: 0 0 8px 0;
}
.product-description span:last-child {
    margin-bottom: 0;
}

/* Woo short description (if present): force spans onto new lines */
.woocommerce-product-details__short-description span {
    display: block;
    margin: 0 0 8px 0;
}
.woocommerce-product-details__short-description span:last-child {
    margin-bottom: 0;
}

/* Blog search form */
.blog-search {
    margin-bottom: 16px;
    display: flex;
    justify-content: flex-end;
}
.blog-search form.search-form {
    display: flex;
    gap: 0;
    width: 100%;
    margin-left: auto;
}
.blog-search .search-field {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 8px 0 0 8px;
    padding: 10px 12px;
    font-size: 16px;
}
.blog-search .search-submit {
    background: #345a89;
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
}
.blog-search .search-submit:hover {
    background: #27476b;
}

/* Sticky Shop Now bar */
.sticky-shop-now {
    position: fixed;
    right: 16px;
    bottom: 16px;
    padding: 10px;
    z-index: 9999;
}
.sticky-shop-now__inner {
    margin: 0;
    padding: 0;
}
.sticky-shop-now__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ee4d2d;
    color: #fff;
    border-radius: 1rem; /* pill */
    padding: 18px 14px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 8px 16px rgba(238,77,45,0.25);
}
.sticky-shop-now__btn:hover {
    background: #d73211;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(238,77,45,0.35);
}

/* Remove body padding; floating button does not overlay content */
body.single-product {
    padding-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .entry-meta-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 8px;
    }
    
    .entry-meta {
        flex: 1;
        min-width: 0;
    }
    
    .entry-share {
        flex-shrink: 0;
    }
    
    .social-share-section .furever-single-share-button {
        float: none;
        text-align: right;
        margin-bottom: var(--space-4);
    }
    
    .share-dropdown {
        right: 0;
        left: auto;
        min-width: 240px;
        transform: translateY(-10px);
    }
    
    .share-dropdown.show {
        transform: translateY(0);
    }
}

/* WordPress Block Widgets Styling */
.modern-sidebar .widget {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--primary-100);
}

.modern-sidebar .widget h2,
.modern-sidebar .widget h3,
.modern-sidebar .widget .widget-title,
.modern-sidebar .wp-block-heading {
    color: var(--furever-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    margin-top: 0;
}

.modern-sidebar .wp-block-search__button-outside {
    display: flex;
    gap: var(--space-2);
    align-items: center;
}

.modern-sidebar .wp-block-search__input {
    flex: 1;
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--primary-300);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.modern-sidebar .wp-block-search__button {
    background: var(--furever-blue);
    color: white;
    border: none;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modern-sidebar .wp-block-search__button:hover {
    background: var(--furever-pink);
}

.modern-sidebar .wp-block-latest-posts__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-sidebar .wp-block-latest-posts__list li {
    margin-bottom: var(--space-3);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--primary-200);
}

.modern-sidebar .wp-block-latest-posts__list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.modern-sidebar .wp-block-latest-posts__post-title {
    color: var(--primary-900);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.modern-sidebar .wp-block-latest-posts__post-title:hover {
    color: var(--furever-pink);
}

.modern-sidebar .no-comments {
    color: var(--primary-600);
    font-style: italic;
    text-align: center;
    padding: var(--space-4);
    background: var(--primary-50);
    border-radius: var(--radius-md);
}

/* Hide search widget if needed */
.modern-sidebar .widget_search,
.modern-sidebar .widget_block .wp-block-search {
    display: none;
}

/* Product Pages Footer Icon Fixes */
.single-product .scroll-top,
.post-type-archive-product .scroll-top {
    z-index: 999;
    background-color: var(--furever-blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
}

.single-product .scroll-top:hover,
.post-type-archive-product .scroll-top:hover {
    background-color: var(--furever-fuchsia);
    transform: translateY(-2px);
}

.single-product .footer-bottom,
.post-type-archive-product .footer-bottom {
    padding-bottom: 80px; /* Add space for scroll-to-top button */
}

/* Social icons in footer for product pages */
.single-product .social-links a,
.post-type-archive-product .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--furever-cream);
    color: var(--furever-blue);
    transition: all 0.3s ease;
}

.single-product .social-links a:hover,
.post-type-archive-product .social-links a:hover {
    background-color: var(--furever-blue);
    color: white;
    transform: translateY(-2px);
}

.single-product .social-links img,
.post-type-archive-product .social-links img {
    width: 16px;
    height: 16px;
}

/* View Product Button Styling */
.view-product-btn {
    background-color: var(--furever-blue) !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-md) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    display: block !important;
    text-align: center !important;
    margin: 10px auto !important;
    width: fit-content !important;
}

.view-product-btn:hover {
    background-color: var(--furever-fuchsia) !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

/* Fix scroll-to-top button size */
.single-product .scroll-top,
.post-type-archive-product .scroll-top {
    width: 45px;
    height: 45px;
    font-size: 18px;
}

/* Fix social icons size */
.single-product .social-links a,
.post-type-archive-product .social-links a {
    width: 35px;
    height: 35px;
}

/* Hide WooCommerce sorting and result count */
.woocommerce-ordering,
.woocommerce-result-count,
.orderby {
    display: none !important;
}

/* Hide product tabs */
.woocommerce-tabs,
.wc-tabs-wrapper,
.woocommerce-Reviews,
#tab-title-description,
#tab-title-additional_information,
#tab-title-reviews,
#tab-description,
#tab-additional_information,
#tab-reviews {
    display: none !important;
}

/* Hide any remaining tab navigation */
.wc-tabs {
    display: none !important;
}

.sidebar-widgets,
.default-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.sidebar-widget {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--furever-pink);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--furever-fuchsia);
}

.sidebar-widget .widget-title {
    background: var(--furever-blue);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    padding: var(--space-5) var(--space-6);
    margin: 0;
    border-bottom: 1px solid var(--furever-pink);
}

.sidebar-widget .widget-content {
    padding: var(--space-6);
}

/* Recent Posts Widget */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.recent-post-item {
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--primary-200);
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-link {
    display: flex;
    gap: var(--space-3);
    color: var(--primary-800);
    text-decoration: none;
    transition: all 0.2s ease;
}

.recent-post-link:hover {
    color: var(--accent-600);
}

.recent-post-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.recent-post-title {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: inherit;
}

.recent-post-date {
    font-size: 0.75rem;
    color: var(--primary-500);
    font-weight: 400;
}

/* Search Form Styles */
.search-form {
    display: flex;
    justify-content: flex-end;
    min-width: 300px;
    gap: var(--space-2);
}

.search-form input[type="search"] {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--primary-300);
    border-radius: 8px 0 0 8px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background: white;
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: var(--furever-blue);
    box-shadow: 0 0 0 3px rgba(52, 90, 137, 0.1);
}

.search-form button,
.search-form input[type="submit"] {
    background: var(--furever-blue);
    color: white;
    border: none;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.search-form button:hover,
.search-form input[type="submit"]:hover {
    background: var(--furever-fuchsia);
    transform: translateY(-1px);
}

/* Widget Overrides for Compatibility */
.widget {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--furever-pink);
    overflow: hidden;
    margin-bottom: var(--space-8);
}

.widget .widget-title {
    background: var(--furever-blue);
    color: white !important;
    font-size: 1.125rem;
    font-weight: 600;
    padding: var(--space-5) var(--space-6);
    margin: 0 0 var(--space-4) 0;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: var(--space-3) var(--space-6);
    border-bottom: 1px solid var(--primary-200);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: var(--primary-700);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.widget ul li a:hover {
    color: var(--furever-fuchsia);
}

/* Modern Comment Form Styles */
.comment-respond {
    background: white;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--furever-pink);
    margin-top: var(--space-8);
}

.comment-form-field {
    margin-bottom: var(--space-4);
}

.comment-label {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--furever-blue);
    margin-bottom: var(--space-3);
}

.comment-label .required {
    color: var(--furever-fuchsia);
    margin-left: var(--space-1);
}

.comment-input,
.comment-textarea {
    width: 100%;
    padding: var(--space-4);
    border: 1px solid var(--primary-300);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all 0.2s ease;
    background: white;
}

.comment-input:focus,
.comment-textarea:focus {
    outline: none;
    border-color: var(--furever-blue);
    box-shadow: 0 0 0 3px rgba(52, 90, 137, 0.1);
}

.comment-textarea {
    resize: vertical;
    min-height: 100px;
}

.comment-submit-btn {
    background: var(--furever-blue);
    color: white;
    border: none;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-submit-btn:hover {
    background: var(--furever-fuchsia);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Comments List Styles */
.comments-area {
    margin-top: var(--space-12);
}

.comments-title {
    font-size: 1.2rem;
    color: var(--furever-blue);
    margin-bottom: var(--space-8);
    font-weight: 600;
}

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

.comment {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
    border: 1px solid var(--primary-200);
    box-shadow: var(--shadow-sm);
}

.comment-meta {
    margin-bottom: var(--space-4);
    font-size: 0.875rem;
    color: var(--primary-600);
}

.comment-author {
    font-weight: 600;
    color: var(--furever-blue);
}

.comment-content {
    color: var(--primary-700);
    line-height: 1.6;
}

.reply {
    margin-top: var(--space-4);
}

.comment-reply-link {
    background: var(--primary-100);
    color: var(--furever-blue);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.comment-reply-link:hover {
    background: var(--furever-blue);
    color: white;
}

/* Additional utility classes needed */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.z-\[99\] { z-index: 99; }
.z-\[100\] { z-index: 100; }
.z-\[999999\] { z-index: 999999; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.top-full { top: 100%; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.mr-4 { margin-right: 1rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-4 { margin-left: 1rem; }
.\!ml-auto { margin-left: auto !important; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.rounded-full { border-radius: 9999px; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.rounded-b-lg { border-radius: 0 0 0.5rem 0.5rem; }

.place-items-center { place-items: center; }


.entry-summary {
  background: white;
  padding: 1.5em;
  border-radius: 1em;
  border: 1px solid;
  border-color: #0288d150;
}

.product-extra-info {
    margin-top: 24px;
}