/*
Theme Name: SuperTheme
Theme URI: https://developer.nasir.fr/supertheme
Author: Nasir Mehmood
Author URI: https://developer.nasir.fr
Description: A versatile, professional WordPress theme with 22 Elementor widgets, 9 ready-to-use layouts for different e-commerce niches: Travel & Flight Booking, Gift Shop, Grocery Store, and Electronics Store. Features 4 header layouts, 4 footer layouts, 3 front page layouts, drag-and-drop section builder, multiple blog templates, dark mode, RTL support, and full WooCommerce integration with 4 Cart layouts and 4 Checkout layouts. Perfect for any online store.
Version: 3.4.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: supertheme
Tags: travel, flights, booking, woocommerce, custom-colors, custom-logo, custom-menu, featured-images, theme-options, translation-ready, blog, e-commerce, footer-widgets, full-width-template, one-column, two-columns, gift-shop, grocery, electronics
*/

/* ===== CSS Variables ===== */
:root {
    --st-primary: #0066CC;
    --st-primary-dark: #004999;
    --st-primary-light: #e6f0ff;
    --st-primary-rgb: 0, 102, 204;
    --st-secondary: #00C9B7;
    --st-secondary-dark: #00a89a;
    --st-accent: #FF6B35;
    --st-success: #10b981;
    --st-warning: #f59e0b;
    --st-danger: #ef4444;
    --st-white: #ffffff;
    --st-black: #000000;
    --st-dark: #1a1a2e;
    --st-gray-50: #f9fafb;
    --st-gray-100: #f3f4f6;
    --st-gray-200: #e5e7eb;
    --st-gray-300: #d1d5db;
    --st-gray-400: #9ca3af;
    --st-gray-500: #6b7280;
    --st-gray-600: #4b5563;
    --st-gray-700: #374151;
    --st-gray-800: #1f2937;
    --st-gray-900: #111827;
    --st-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --st-font-heading: 'Poppins', var(--st-font-primary);
    --st-font-size-base: 16px;
    --st-line-height: 1.6;
    --st-container-width: 1200px;
    --st-header-height: 80px;
    --st-topbar-height: 40px;
    --st-radius-sm: 4px;
    --st-radius-md: 8px;
    --st-radius-lg: 12px;
    --st-radius-xl: 16px;
    --st-radius-full: 50px;
    --st-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --st-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --st-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --st-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --st-transition-fast: 0.15s ease;
    --st-transition-base: 0.3s ease;
    --st-z-dropdown: 100;
    --st-z-sticky: 500;
    --st-z-fixed: 1000;
    --st-z-modal: 1050;
    --st-header-bg: #ffffff;
    --st-footer-bg: #1a1a2e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--st-font-primary); font-size: var(--st-font-size-base); line-height: var(--st-line-height); color: var(--st-gray-700); background: var(--st-white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--st-primary); text-decoration: none; transition: color var(--st-transition-fast); }
a:hover { color: var(--st-primary-dark); }
h1, h2, h3, h4, h5, h6 { font-family: var(--st-font-heading); font-weight: 600; line-height: 1.3; color: var(--st-gray-900); margin-bottom: 0.5em; }
h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } h3 { font-size: 1.5rem; } h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }

/* Layout */
.st-container { width: 100%; max-width: var(--st-container-width); margin: 0 auto; padding: 0 1rem; }
.st-site { display: flex; flex-direction: column; min-height: 100vh; }
.st-site-content { flex: 1; }
.st-content-area { display: grid; gap: 2rem; }
.st-content-area.has-sidebar { grid-template-columns: 1fr 300px; }
@media (max-width: 992px) { .st-content-area.has-sidebar { grid-template-columns: 1fr; } }

/* Preloader - Main styles in NEW FEATURES section */
.st-preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--st-white); display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.5s, visibility 0.5s; }
.st-preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.st-preloader-spinner { width: 50px; height: 50px; border: 3px solid var(--st-gray-200); border-top-color: var(--st-primary); border-radius: 50%; animation: st-spin 1s linear infinite; }
@keyframes st-spin { to { transform: rotate(360deg); } }

/* Topbar */
.st-topbar { background: var(--st-dark); color: var(--st-white); font-size: 0.875rem; padding: 0.5rem 0; position: relative; z-index: var(--st-z-fixed); }
.st-topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.st-topbar-left, .st-topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.st-topbar-center { flex: 1; text-align: center; }
.st-topbar a { color: rgba(255, 255, 255, 0.85); }
.st-topbar a:hover { color: var(--st-white); }
.st-topbar i { margin-right: 0.5rem; opacity: 0.7; }
.st-topbar-announcement { color: var(--st-secondary); font-weight: 500; }
.st-topbar-social, .st-social-links { display: flex; gap: 0.75rem; }
.st-topbar-social a, .st-social-links a { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.1); font-size: 0.75rem; transition: all var(--st-transition-fast); color: #fff; }
.st-topbar-social a:hover, .st-social-links a:hover { background: var(--st-primary); transform: translateY(-2px); }
@media (max-width: 768px) { .st-topbar-center, .st-topbar-right { display: none; } }

/* Header */
.st-header { background: var(--header-bg, var(--st-header-bg)); color: var(--header-text, var(--st-gray-700)); height: var(--header-height, var(--st-header-height)); display: flex; align-items: center; position: relative; z-index: var(--st-z-sticky); box-shadow: var(--st-shadow-sm); transition: all var(--st-transition-base); }
.has-sticky-header .st-header { position: fixed; top: 0; left: 0; right: 0; }
.has-sticky-header.has-topbar .st-header { top: var(--st-topbar-height); }
.has-sticky-header .st-site-content { padding-top: var(--header-height, var(--st-header-height)); }
.has-sticky-header.has-topbar .st-site-content { padding-top: calc(var(--header-height, var(--st-header-height)) + var(--st-topbar-height)); }
.st-header.scrolled { box-shadow: var(--st-shadow-lg); }
.st-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; width: 100%; }
.st-logo { flex-shrink: 0; }
.st-logo img { max-height: 50px; max-width: var(--logo-width, 150px); width: auto; }
.st-logo-text { font-family: var(--st-font-heading); font-size: 1.75rem; font-weight: 700; color: var(--header-text, var(--st-dark)); }
.st-logo-text span { color: var(--st-primary); }
.st-nav { flex: 1; display: flex; justify-content: center; }
.st-nav-menu { display: flex; align-items: center; gap: 0.5rem; list-style: none; margin: 0; padding: 0; }
.st-nav-menu li { position: relative; }
.st-nav-menu > li > a { display: block; padding: 0.75rem 1rem; color: var(--header-text, var(--st-gray-700)); font-weight: 500; font-size: 0.9375rem; border-radius: var(--st-radius-md); }
.st-nav-menu > li > a:hover, .st-nav-menu > li.current-menu-item > a { color: var(--st-primary); background: var(--st-primary-light); }
.st-nav-menu .sub-menu { position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--st-white); border-radius: var(--st-radius-lg); box-shadow: var(--st-shadow-xl); padding: 0.5rem; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--st-transition-fast); list-style: none; z-index: var(--st-z-dropdown); }
.st-nav-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.st-nav-menu .sub-menu a { display: block; padding: 0.625rem 1rem; color: var(--st-gray-600); font-size: 0.875rem; border-radius: var(--st-radius-md); }
.st-nav-menu .sub-menu a:hover { background: var(--st-gray-100); color: var(--st-primary); }
.st-header-cta { flex-shrink: 0; }
.st-header-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.st-btn-cta { background: var(--cta-bg, var(--st-primary)); color: var(--cta-text, var(--st-white)); border-color: var(--cta-bg, var(--st-primary)); padding: 0.625rem 1.25rem; font-size: 0.875rem; font-weight: 600; border-radius: var(--st-radius-full); }
.st-btn-cta:hover { opacity: 0.9; color: var(--cta-text, var(--st-white)); transform: translateY(-2px); }
.st-search-toggle { background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--header-text, var(--st-gray-600)); transition: color var(--st-transition-fast); }
.st-search-toggle:hover { color: var(--st-primary); }
.st-menu-toggle { display: none; width: 44px; height: 44px; background: transparent; border: none; cursor: pointer; padding: 10px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.st-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--header-text, var(--st-dark)); transition: all var(--st-transition-fast); border-radius: 2px; }

/* Header Layout: Classic */
.st-header-classic .st-header-inner { display: flex; align-items: center; justify-content: space-between; }
.st-header-classic .st-nav { flex: 1; justify-content: center; }

/* Header Layout: Centered */
.st-header-centered { height: auto; padding: 0; }
.st-header-centered .st-header-logo-row { display: flex; justify-content: center; padding: 1rem 0; border-bottom: 1px solid var(--st-gray-200); }
.st-header-centered .st-header-nav-row { display: flex; align-items: center; justify-content: center; padding: 0.75rem 0; gap: 2rem; }
.st-header-centered .st-nav-centered { flex: none; }
.st-header-centered .st-header-actions { position: absolute; right: 1rem; }
.header-layout-centered.has-sticky-header .st-site-content { padding-top: calc(var(--header-height, var(--st-header-height)) + 40px); }

/* Header Layout: Split */
.st-header-split .st-header-inner { display: flex; align-items: center; justify-content: space-between; }
.st-header-split .st-nav-left, .st-header-split .st-nav-right { flex: 1; }
.st-header-split .st-nav-left { justify-content: flex-end; padding-right: 2rem; }
.st-header-split .st-nav-right { justify-content: flex-start; padding-left: 2rem; display: flex; align-items: center; gap: 1.5rem; }
.st-header-split .st-logo-center { flex: 0 0 auto; }
.st-header-split .st-menu-left, .st-header-split .st-menu-right { display: flex; align-items: center; gap: 0.5rem; list-style: none; margin: 0; padding: 0; }
.st-header-split .st-menu-left { justify-content: flex-end; }
.st-header-split .st-menu-left li a, .st-header-split .st-menu-right li a { display: block; padding: 0.75rem 1rem; color: var(--header-text, var(--st-gray-700)); font-weight: 500; font-size: 0.9375rem; border-radius: var(--st-radius-md); }
.st-header-split .st-menu-left li a:hover, .st-header-split .st-menu-right li a:hover { color: var(--st-primary); background: var(--st-primary-light); }

/* Header Layout: Minimal */
.st-header-minimal .st-header-inner { display: flex; align-items: center; justify-content: space-between; }
.st-header-minimal .st-nav-hidden { display: none; }
.st-header-minimal .st-menu-toggle-minimal { display: flex; }
.st-header-minimal .st-btn-cta-minimal { display: inline-flex; }

/* Mobile Menu */
.st-mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 999998; opacity: 0; visibility: hidden; transition: all var(--st-transition-base); display: none; }
.st-mobile-menu-overlay.active { opacity: 1; visibility: visible; display: block; }
.st-mobile-menu { position: fixed; top: 0; right: -350px; width: 320px; max-width: 90%; height: 100%; background: var(--st-white); z-index: 999999; box-shadow: var(--st-shadow-xl); transition: right var(--st-transition-base), visibility var(--st-transition-base), opacity var(--st-transition-base); overflow-y: auto; visibility: hidden; opacity: 0; }
.st-mobile-menu.active { right: 0; visibility: visible; opacity: 1; }
.st-mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; border-bottom: 1px solid var(--st-gray-200); }
.st-mobile-menu-close { background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--st-gray-600); }
.st-mobile-menu-close:hover { color: var(--st-gray-900); }
.st-mobile-menu-content { padding: 1.5rem; }
.st-mobile-nav .st-nav-menu { flex-direction: column; gap: 0; }
.st-mobile-nav .st-nav-menu > li { width: 100%; }
.st-mobile-nav .st-nav-menu > li > a { padding: 1rem 0; border-bottom: 1px solid var(--st-gray-100); border-radius: 0; }
.st-mobile-nav .st-nav-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; padding: 0.5rem 0 0.5rem 1rem; }
.st-mobile-menu-cta { padding-top: 1.5rem; margin-top: 1.5rem; border-top: 1px solid var(--st-gray-200); }
.st-btn-block { display: block; width: 100%; text-align: center; }
.st-mobile-menu-contact { padding-top: 1.5rem; margin-top: 1.5rem; border-top: 1px solid var(--st-gray-200); display: flex; flex-direction: column; gap: 1rem; }
.st-mobile-menu-contact a { display: flex; align-items: center; gap: 0.75rem; color: var(--st-gray-600); }
.st-mobile-menu-contact a:hover { color: var(--st-primary); }
.st-mobile-menu-contact svg { flex-shrink: 0; }

/* Responsive Header */
@media (max-width: 992px) {
    .st-menu-toggle { display: flex; }
    .st-header-classic .st-nav, .st-header-centered .st-nav-centered, .st-header-split .st-nav-left, .st-header-split .st-nav-right .st-menu-right { display: none; }
    .st-header-centered .st-header-nav-row { justify-content: flex-end; padding: 0.5rem 0; }
    .st-header-centered .st-header-actions { position: static; }
    .st-header-split .st-nav-right { padding-left: 0; }
    .st-header-split .st-nav-right .st-btn-cta { display: none; }
}

/* Buttons */
.st-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; font-family: var(--st-font-primary); font-size: 0.9375rem; font-weight: 600; line-height: 1; text-align: center; border: 2px solid transparent; border-radius: var(--st-radius-full); cursor: pointer; transition: all var(--st-transition-fast); white-space: nowrap; }
.st-btn-primary { background: var(--st-primary); color: var(--st-white); border-color: var(--st-primary); }
.st-btn-primary:hover { background: var(--st-primary-dark); border-color: var(--st-primary-dark); color: var(--st-white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(var(--st-primary-rgb), 0.35); }
.st-btn-secondary { background: var(--st-secondary); color: var(--st-white); border-color: var(--st-secondary); }
.st-btn-white { background: var(--st-white); color: var(--st-dark, #1a1a2e); border-color: var(--st-white); }
.st-btn-white:hover { background: var(--st-gray-100); color: var(--st-primary-dark); border-color: var(--st-gray-100); }
.st-btn-outline { background: transparent; color: var(--st-primary); border-color: var(--st-primary); }
.st-btn-outline:hover { background: var(--st-primary); color: var(--st-white); }
.st-btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.st-btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* Hero */
.st-hero { background: linear-gradient(135deg, var(--st-primary) 0%, var(--st-primary-dark) 100%); color: var(--st-white); padding: 6rem 0 4rem; position: relative; overflow: hidden; }
.st-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='%23ffffff' fill-opacity='0.05'%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"); pointer-events: none; }
.st-hero-minimal { background: var(--st-gray-50); color: var(--st-gray-900); }
.st-hero-minimal h1 { color: var(--st-gray-900); }
.st-hero-dark { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.st-hero-content { position: relative; z-index: 1; max-width: 800px; }
.st-hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); padding: 0.5rem 1rem; border-radius: var(--st-radius-full); font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem; }
.st-hero h1 { font-size: 3.5rem; font-weight: 700; color: var(--st-white); margin-bottom: 1rem; line-height: 1.1; }
.st-hero p { font-size: 1.25rem; opacity: 0.9; margin-bottom: 2rem; max-width: 600px; }
.st-hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.st-hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.st-hero-stat { text-align: left; }
.st-hero-stat-number { font-size: 2rem; font-weight: 700; line-height: 1; }
.st-hero-stat-label { font-size: 0.875rem; opacity: 0.8; margin-top: 0.25rem; }
@media (max-width: 768px) { .st-hero { padding: 4rem 0 3rem; } .st-hero h1 { font-size: 2rem; } .st-hero p { font-size: 1rem; } }

/* Search Widget */
.st-search-widget { background: var(--st-white); border-radius: var(--st-radius-xl); box-shadow: var(--st-shadow-xl); padding: 2rem; margin-top: -4rem; position: relative; z-index: 10; }

/* Search Tabs */
.st-search-tabs-widget { padding: 0; }
.st-search-tabs { display: flex; background: var(--st-gray-100); border-bottom: 2px solid var(--st-gray-200); }
.st-search-tab { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.75rem; padding: 1.25rem 2rem; background: transparent; border: none; font-family: var(--st-font-primary); font-size: 1rem; font-weight: 600; color: var(--st-gray-600); cursor: pointer; transition: all var(--st-transition-fast); position: relative; }
.st-search-tab:hover { color: var(--st-primary); background: rgba(var(--st-primary-rgb), 0.05); }
.st-search-tab.active { color: var(--st-primary); background: var(--st-white); }
.st-search-tab.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 3px; background: var(--st-primary); border-radius: 3px 3px 0 0; }
.st-search-tab svg { flex-shrink: 0; }
.st-search-tab-content { padding: 2rem; }
.st-search-tab-pane { display: none; }
.st-search-tab-pane.active { display: block; }
@media (max-width: 576px) {
    .st-search-tab { padding: 1rem; font-size: 0.875rem; gap: 0.5rem; }
    .st-search-tab svg { width: 18px; height: 18px; }
    .st-search-tab-content { padding: 1.5rem; }
}

/* Sections */
.st-section { padding: 5rem 0; }
.st-bg-light { background: var(--st-gray-50); }
.st-section-title { text-align: center; margin-bottom: 3rem; }
.st-section-title h2 { font-size: 2.25rem; margin-bottom: 0.75rem; }
.st-section-title h2 span { color: var(--st-primary); }
.st-section-title p { font-size: 1.125rem; color: var(--st-gray-500); max-width: 600px; margin: 0 auto; }

/* Features */
.st-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.st-feature-card { background: var(--st-white); border-radius: var(--st-radius-xl); padding: 2rem; text-align: center; box-shadow: var(--st-shadow-md); transition: all var(--st-transition-base); border: 2px solid transparent; }
.st-feature-card:hover { transform: translateY(-8px); box-shadow: var(--st-shadow-xl); border-color: var(--st-primary); }
.st-feature-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.st-feature-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.st-feature-card p { color: var(--st-gray-500); font-size: 0.9375rem; margin: 0; }
@media (max-width: 992px) { .st-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .st-features-grid { grid-template-columns: 1fr; } }

/* Destinations */
.st-destinations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.st-destination-card { position: relative; border-radius: var(--st-radius-xl); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--st-shadow-md); transition: all var(--st-transition-base); }
.st-destination-card:hover { transform: translateY(-8px); box-shadow: var(--st-shadow-xl); }
.st-destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.st-destination-card:hover img { transform: scale(1.1); }
.st-destination-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent); color: var(--st-white); }
.st-destination-overlay h3 { color: var(--st-white); font-size: 1.25rem; margin-bottom: 0.25rem; }
.st-destination-price { font-weight: 600; color: var(--st-secondary); }
.st-destination-price span { font-weight: 400; opacity: 0.8; font-size: 0.875rem; }
@media (max-width: 992px) { .st-destinations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .st-destinations-grid { grid-template-columns: 1fr; } }

/* Testimonials */
.st-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.st-testimonial-card { background: var(--st-white); border-radius: var(--st-radius-xl); padding: 2rem; box-shadow: var(--st-shadow-md); transition: all var(--st-transition-base); }
.st-testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--st-shadow-lg); }
.st-testimonial-rating { color: var(--st-warning); font-size: 1.25rem; margin-bottom: 1rem; letter-spacing: 2px; }
.st-testimonial-text { font-size: 1rem; color: var(--st-gray-600); margin-bottom: 1.5rem; line-height: 1.7; }
.st-testimonial-author { display: flex; align-items: center; gap: 1rem; }
.st-testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.st-testimonial-name { font-weight: 600; color: var(--st-gray-800); }
.st-testimonial-role { font-size: 0.875rem; color: var(--st-gray-500); }
@media (max-width: 992px) { .st-testimonials-grid { grid-template-columns: 1fr; } }

/* Page Header - Extended styles */
.st-page-header { background: linear-gradient(135deg, var(--st-primary) 0%, var(--st-primary-dark) 100%); color: #fff; padding: 4rem 0 3rem; margin-bottom: 3rem; text-align: center; }
.st-page-header h1 { color: var(--st-white); font-size: 2.5rem; margin-bottom: 0.5rem; }
.st-page-title { font-size: 2.5rem; margin: 0; color: #fff; }
.st-page-header .st-breadcrumb-item a, .st-page-header .st-breadcrumb-sep { color: rgba(255,255,255,0.7); }
.st-page-header .st-breadcrumb-item a:hover { color: #fff; }
.st-page-header .st-breadcrumb-current { color: #fff; }
.st-breadcrumb { display: flex; justify-content: center; gap: 0.75rem; font-size: 0.9375rem; opacity: 0.9; margin-top: 1rem; }
.st-breadcrumb a { color: var(--st-white); opacity: 0.8; }
.st-breadcrumb a:hover { opacity: 1; }

/* Blog */
.st-posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; }
.st-post-card { background: var(--st-white); border-radius: var(--st-radius-xl); overflow: hidden; box-shadow: var(--st-shadow-md); transition: all var(--st-transition-base); }
.st-post-card:hover { transform: translateY(-5px); box-shadow: var(--st-shadow-xl); }
.st-post-thumbnail img { width: 100%; height: 220px; object-fit: cover; }
.st-post-content { padding: 1.5rem; }
.st-post-meta { display: flex; gap: 1rem; font-size: 0.8125rem; color: var(--st-gray-500); margin-bottom: 0.75rem; }
.st-post-title { font-size: 1.25rem; margin-bottom: 0.75rem; }
.st-post-title a { color: var(--st-gray-900); }
.st-post-title a:hover { color: var(--st-primary); }
.st-post-excerpt { color: var(--st-gray-500); font-size: 0.9375rem; margin-bottom: 1rem; }

/* Single Post */
.st-single-post { background: var(--st-white); border-radius: var(--st-radius-xl); overflow: hidden; box-shadow: var(--st-shadow-md); }
.st-post-featured-image img { width: 100%; max-height: 500px; object-fit: cover; }
.st-post-body { padding: 2rem; }
.st-post-tags { padding: 1.5rem 2rem; border-top: 1px solid var(--st-gray-200); }
.st-post-tags a { display: inline-block; background: var(--st-gray-100); padding: 0.25rem 0.75rem; border-radius: var(--st-radius-full); font-size: 0.8125rem; margin-right: 0.5rem; }

/* Sidebar */
.st-sidebar { position: sticky; top: calc(var(--st-header-height) + 2rem); }
.st-widget { background: var(--st-white); border-radius: var(--st-radius-lg); padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: var(--st-shadow-sm); }
.st-widget-title { font-size: 1.125rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--st-primary); }

/* Pagination */
.st-pagination { margin-top: 3rem; text-align: center; }
.st-pagination-list { display: inline-flex; gap: 0.5rem; list-style: none; padding: 0; margin: 0; }
.st-page-item a, .st-page-item span { display: flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 0.75rem; background: var(--st-white); border: 1px solid var(--st-gray-200); border-radius: var(--st-radius-md); color: var(--st-gray-700); font-weight: 500; transition: all var(--st-transition-fast); }
.st-page-item a:hover, .st-page-item.active span { background: var(--st-primary); border-color: var(--st-primary); color: var(--st-white); }

/* Footer */
.st-footer { background: var(--st-footer-bg); color: rgba(255, 255, 255, 0.8); padding-top: 4rem; }
.st-footer-main { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; padding-bottom: 3rem; }
.st-footer-brand p { margin: 1.5rem 0; opacity: 0.8; }
.st-footer-widget h4, .st-footer-widget-title { color: var(--st-white); font-size: 1.125rem; margin-bottom: 1.5rem; }
.st-footer-menu { list-style: none; padding: 0; margin: 0; }
.st-footer-menu li { margin-bottom: 0.75rem; }
.st-footer-menu a { color: rgba(255, 255, 255, 0.7); transition: all var(--st-transition-fast); }
.st-footer-menu a:hover { color: var(--st-white); padding-left: 5px; }
.st-footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; }
.st-footer-contact-icon { color: var(--st-primary); }
.st-footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.st-footer-social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.1); border-radius: 50%; color: var(--st-white); transition: all var(--st-transition-fast); }
.st-footer-social a:hover { background: var(--st-primary); transform: translateY(-3px); }
.st-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.875rem; }
.st-footer-payments { display: flex; gap: 1rem; font-size: 1.5rem; opacity: 0.6; }
@media (max-width: 992px) { .st-footer-main { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .st-footer-main { grid-template-columns: 1fr; } .st-footer-bottom { flex-direction: column; gap: 1rem; text-align: center; } }

/* Forms */
.st-form-control { width: 100%; padding: 0.875rem 1rem; font-family: var(--st-font-primary); font-size: 1rem; color: var(--st-gray-700); background: var(--st-white); border: 2px solid var(--st-gray-300); border-radius: var(--st-radius-lg); transition: all var(--st-transition-fast); }
.st-form-control:focus { outline: none; border-color: var(--st-primary); box-shadow: 0 0 0 4px rgba(var(--st-primary-rgb), 0.1); }
.st-search-form { position: relative; }
.st-search-input-wrap { position: relative; }
.st-search-input { padding-right: 50px; }
.st-search-button { position: absolute; right: 5px; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: var(--st-primary); color: var(--st-white); border: none; border-radius: var(--st-radius-md); cursor: pointer; transition: background var(--st-transition-fast); }
.st-search-button:hover { background: var(--st-primary-dark); }

/* Utilities */
.st-text-center { text-align: center; }
.st-hidden { display: none !important; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Comments */
.st-comments { margin-top: 2rem; padding: 2rem; background: var(--st-white); border-radius: var(--st-radius-xl); box-shadow: var(--st-shadow-md); }
.st-comments-title { margin-bottom: 1.5rem; }
.st-comment-list { list-style: none; padding: 0; }
.st-comment-list li { padding: 1rem 0; border-bottom: 1px solid var(--st-gray-200); }
.st-comment-form { margin-top: 2rem; }
.st-comment-form input, .st-comment-form textarea { width: 100%; padding: 0.75rem 1rem; margin-bottom: 1rem; border: 1px solid var(--st-gray-300); border-radius: var(--st-radius-md); }

/* WooCommerce */
.woocommerce .products { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.woocommerce .product { background: var(--st-white); border-radius: var(--st-radius-xl); overflow: hidden; box-shadow: var(--st-shadow-md); transition: all var(--st-transition-base); }
.woocommerce .product:hover { transform: translateY(-5px); box-shadow: var(--st-shadow-xl); }
.woocommerce .button { background: var(--st-primary) !important; color: var(--st-white) !important; border-radius: var(--st-radius-full) !important; padding: 0.75rem 1.5rem !important; font-weight: 600 !important; transition: all var(--st-transition-fast) !important; }
.woocommerce .button:hover { background: var(--st-primary-dark) !important; }

/* Admin Bar Fix */
.admin-bar .st-header { top: 32px; }
.admin-bar.has-topbar .st-topbar { top: 32px; }
.admin-bar.has-sticky-header .st-nav { top: calc(var(--st-header-height) + 32px); }
.admin-bar.has-sticky-header.has-topbar .st-nav { top: calc(var(--st-header-height) + var(--st-topbar-height) + 32px); }
@media (max-width: 782px) { .admin-bar .st-header { top: 46px; } .admin-bar.has-topbar .st-topbar { top: 46px; } }

/* Entry Content */
.entry-content { line-height: 1.8; }
.entry-content h2, .entry-content h3, .entry-content h4 { margin-top: 2rem; }
.entry-content img { border-radius: var(--st-radius-md); margin: 1.5rem 0; }
.entry-content blockquote { border-left: 4px solid var(--st-primary); padding-left: 1.5rem; margin: 1.5rem 0; font-style: italic; color: var(--st-gray-600); }
.entry-content pre, .entry-content code { background: var(--st-gray-100); border-radius: var(--st-radius-sm); padding: 0.25rem 0.5rem; font-size: 0.9rem; }
.entry-content pre { padding: 1rem; overflow-x: auto; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.entry-content th, .entry-content td { padding: 0.75rem; border: 1px solid var(--st-gray-200); text-align: left; }
.entry-content th { background: var(--st-gray-100); font-weight: 600; }

/* ===== NEW FEATURES STYLES ===== */

/* Footer Layouts */
.st-footer-widgets { padding: 4rem 0 3rem; }
.st-footer-grid { display: grid; gap: 2rem; }
.st-footer-grid-2 { grid-template-columns: repeat(2, 1fr); }
.st-footer-grid-3 { grid-template-columns: repeat(3, 1fr); }
.st-footer-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 992px) { .st-footer-grid-3, .st-footer-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .st-footer-grid-2, .st-footer-grid-3, .st-footer-grid-4 { grid-template-columns: 1fr; } }

.st-footer-copyright { padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
.st-copyright-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.st-copyright-text { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.st-payment-icons { display: flex; gap: 0.5rem; }
.st-payment-icons img { height: 25px; opacity: 0.7; }

/* Footer Centered Layout */
.st-footer-centered { text-align: center; padding: 4rem 0 2rem; }
.st-footer-centered-content { max-width: 600px; margin: 0 auto; }
.st-footer-centered .st-footer-logo { margin-bottom: 2rem; }
.st-footer-centered .st-footer-nav { margin-bottom: 2rem; }
.st-footer-menu { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 0; }
.st-footer-menu-inline { display: flex; gap: 1rem; list-style: none; padding: 0; margin: 0; }
.st-footer-menu-inline a { color: rgba(255,255,255,0.7); }
.st-footer-menu-inline a:hover { color: #fff; }
.st-social-centered { justify-content: center; margin-bottom: 2rem; }

/* Footer Minimal Layout */
.st-footer-minimal { padding: 1.5rem 0; }
.st-footer-minimal-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }

/* Footer Mega Layout */
.st-footer-newsletter { background: rgba(0,102,204,0.1); padding: 3rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.st-newsletter-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.st-newsletter-content h3 { color: #fff; margin-bottom: 0.5rem; }
.st-newsletter-content p { color: rgba(255,255,255,0.7); margin: 0; }
.st-newsletter-form { display: flex; gap: 0.5rem; }
.st-newsletter-form input { padding: 0.875rem 1.25rem; border: none; border-radius: var(--st-radius-full); min-width: 300px; }
@media (max-width: 768px) { .st-newsletter-inner { flex-direction: column; text-align: center; } .st-newsletter-form { flex-direction: column; } .st-newsletter-form input { min-width: 100%; } }

/* Back to Top Button - Consolidated styles in BACK TO TOP BUTTON section below */

/* Preloader Additional Styles */
.st-preloader-dots { display: flex; gap: 8px; }
.st-preloader-dots span { width: 12px; height: 12px; border-radius: 50%; animation: st-bounce 1.4s ease-in-out infinite both; }
.st-preloader-dots span:nth-child(1) { animation-delay: -0.32s; }
.st-preloader-dots span:nth-child(2) { animation-delay: -0.16s; }
@keyframes st-bounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }
.st-preloader-pulse { width: 50px; height: 50px; border-radius: 50%; animation: st-pulse 1.5s ease-in-out infinite; }
@keyframes st-pulse { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }
.st-preloader-plane { animation: st-fly 2s ease-in-out infinite; }
@keyframes st-fly { 0%, 100% { transform: translateX(-20px); } 50% { transform: translateX(20px); } }
.st-preloader-progress { width: 200px; height: 4px; background: rgba(0,0,0,0.1); border-radius: 2px; overflow: hidden; }
.st-progress-bar { height: 100%; animation: st-progress 1.5s ease-in-out infinite; }
@keyframes st-progress { 0% { width: 0; margin-left: 0; } 50% { width: 100%; margin-left: 0; } 100% { width: 0; margin-left: 100%; } }

/* Breadcrumbs */
.st-breadcrumb { margin-top: 1rem; }
.st-breadcrumb-list { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; list-style: none; padding: 0; margin: 0; font-size: 0.875rem; }
.st-breadcrumb-item a { color: var(--st-gray-500); }
.st-breadcrumb-item a:hover { color: var(--st-primary); }
.st-breadcrumb-sep { color: var(--st-gray-400); }
.st-breadcrumb-current { color: var(--st-gray-700); font-weight: 500; }

/* 404 Page */
.st-error-page { padding: 6rem 0; text-align: center; }
.st-error-content { max-width: 500px; margin: 0 auto; }
.st-error-icon { color: var(--st-gray-300); margin-bottom: 2rem; }
.st-error-code { font-size: 8rem; font-weight: 700; color: var(--st-primary); line-height: 1; margin-bottom: 1rem; }
.st-error-title { font-size: 2rem; margin-bottom: 1rem; }
.st-error-text { color: var(--st-gray-500); margin-bottom: 2rem; }
.st-error-actions { margin-bottom: 3rem; }
.st-error-search { max-width: 400px; margin: 0 auto; }
.st-error-search p { color: var(--st-gray-500); margin-bottom: 1rem; }

/* Blog Layouts - Column Variations (base styles defined above) */
.st-posts-col-2 { grid-template-columns: repeat(2, 1fr); }
.st-posts-col-3 { grid-template-columns: repeat(3, 1fr); }
.st-posts-col-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 992px) { .st-posts-col-3, .st-posts-col-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .st-posts-col-2, .st-posts-col-3, .st-posts-col-4 { grid-template-columns: 1fr; } }

.st-posts-list { display: flex; flex-direction: column; gap: 2rem; }
.st-post-list-item { display: flex; gap: 2rem; background: var(--st-white); border-radius: var(--st-radius-xl); overflow: hidden; box-shadow: var(--st-shadow-md); }
.st-post-list-item .st-post-thumb { flex: 0 0 300px; }
.st-post-list-item .st-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.st-post-list-item .st-post-content { flex: 1; padding: 1.5rem; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 768px) { .st-post-list-item { flex-direction: column; } .st-post-list-item .st-post-thumb { flex: none; } }

.st-posts-masonry { columns: 3; column-gap: 2rem; }
.st-posts-masonry .st-post-card { break-inside: avoid; margin-bottom: 2rem; }
@media (max-width: 992px) { .st-posts-masonry { columns: 2; } }
@media (max-width: 576px) { .st-posts-masonry { columns: 1; } }

.st-posts-classic .st-post-classic { background: var(--st-white); border-radius: var(--st-radius-xl); overflow: hidden; box-shadow: var(--st-shadow-md); margin-bottom: 3rem; }
.st-post-classic .st-post-thumb img { width: 100%; max-height: 400px; object-fit: cover; }
.st-post-classic .st-post-content { padding: 2rem; }
.st-post-classic .st-post-title { font-size: 1.75rem; }

.st-post-cats a { display: inline-block; background: var(--st-primary-light); color: var(--st-primary); padding: 0.25rem 0.75rem; border-radius: var(--st-radius-full); font-size: 0.75rem; font-weight: 600; margin-bottom: 0.75rem; }
.st-post-author { display: flex; align-items: center; gap: 0.5rem; }
.st-post-author img { border-radius: 50%; }
.st-post-read-time { color: var(--st-gray-400); }

/* Sidebar Position */
.st-content-area.sidebar-left { grid-template-columns: 300px 1fr; }
.st-content-area.sidebar-right { grid-template-columns: 1fr 300px; }
@media (max-width: 992px) { .st-content-area.sidebar-left, .st-content-area.sidebar-right { grid-template-columns: 1fr; } .st-content-area.sidebar-left .st-sidebar { order: 2; } }

/* Dark Mode - Uses CSS variables from admin settings */
body.dark-mode { 
    background-color: var(--st-bg); 
    color: var(--st-text);
}
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode h4, body.dark-mode h5, body.dark-mode h6 { 
    color: var(--st-heading); 
}
body.dark-mode a { color: var(--st-link); }
body.dark-mode .st-header { background: var(--st-card-bg); border-color: var(--st-border); }
body.dark-mode .st-header a, body.dark-mode .st-nav a { color: var(--st-text); }
body.dark-mode .st-post-card, body.dark-mode .st-widget, body.dark-mode .st-section { background: var(--st-card-bg); }
body.dark-mode .st-hero { background: linear-gradient(135deg, var(--st-card-bg) 0%, var(--st-bg) 100%); }
body.dark-mode .st-faq-item { background: var(--st-card-bg); border-color: var(--st-border); }
body.dark-mode .st-faq-question { color: var(--st-heading); }
body.dark-mode .st-team-card { background: var(--st-card-bg); }
body.dark-mode .st-feature-card { background: var(--st-card-bg); }
body.dark-mode input, body.dark-mode select, body.dark-mode textarea { background: var(--st-card-bg); border-color: var(--st-border); color: var(--st-text); }
body.dark-mode .st-btn-secondary { background: var(--st-card-bg); color: var(--st-text); border-color: var(--st-border); }
body.dark-mode .st-btn-primary, body.dark-mode .st-btn { background: var(--st-primary); }
body.dark-mode .st-destination-card { background: var(--st-card-bg); }
body.dark-mode .st-stat-item { background: var(--st-card-bg); }
body.dark-mode .st-testimonial-card { background: var(--st-card-bg); }
body.dark-mode .st-partner-item { background: var(--st-card-bg); border-color: var(--st-border); }
body.dark-mode .st-section-title h2, body.dark-mode .st-section-title p { color: var(--st-heading); }
.st-dark-mode-toggle { background: none; border: none; cursor: pointer; padding: 0.5rem; color: inherit; display: flex; align-items: center; justify-content: center; }
.st-dark-mode-toggle .st-icon-moon { display: none; }
body.dark-mode .st-dark-mode-toggle .st-icon-sun { display: none; }
body.dark-mode .st-dark-mode-toggle .st-icon-moon { display: block; }

/* Cookie Consent */
.st-cookie-consent { position: fixed; bottom: 0; left: 0; right: 0; background: var(--st-dark); color: #fff; padding: 1rem 0; z-index: 9999; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
.st-cookie-content { max-width: var(--st-container-width); margin: 0 auto; padding: 0 1rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.st-cookie-content p { margin: 0; font-size: 0.875rem; }
.st-cookie-content a { color: var(--st-secondary); }
@media (max-width: 768px) { .st-cookie-content { flex-direction: column; text-align: center; } }

/* FAQ Section */
.st-faq-list { max-width: 800px; margin: 0 auto; }
.st-faq-item { background: var(--st-white); border-radius: var(--st-radius-lg); margin-bottom: 1rem; box-shadow: var(--st-shadow-sm); overflow: hidden; }
.st-faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer; font-size: 1rem; font-weight: 600; color: var(--st-gray-900); text-align: left; }
.st-faq-question svg { transition: transform 0.3s; flex-shrink: 0; }
.st-faq-item.active .st-faq-question svg { transform: rotate(180deg); }
.st-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.st-faq-item.active .st-faq-answer { max-height: 500px; padding: 0 1.5rem 1.25rem; }
.st-faq-answer p { margin: 0; color: var(--st-gray-600); }

/* Team Section */
.st-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 992px) { .st-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .st-team-grid { grid-template-columns: 1fr; } }
.st-team-card { background: var(--st-white); border-radius: var(--st-radius-xl); overflow: hidden; box-shadow: var(--st-shadow-md); text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.st-team-card:hover { transform: translateY(-5px); box-shadow: var(--st-shadow-xl); }
.st-team-image { aspect-ratio: 1; overflow: hidden; }
.st-team-image img { width: 100%; height: 100%; object-fit: cover; }
.st-team-placeholder { width: 100%; height: 100%; background: var(--st-gray-100); display: flex; align-items: center; justify-content: center; color: var(--st-gray-400); }
.st-team-info { padding: 1.5rem; }
.st-team-info h3 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.st-team-info p { color: var(--st-gray-500); font-size: 0.875rem; margin-bottom: 0.75rem; }
.st-team-social { color: var(--st-primary); }

/* Gallery Section */
.st-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 768px) { .st-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .st-gallery-grid { grid-template-columns: 1fr; } }
.st-gallery-item { position: relative; aspect-ratio: 4/3; border-radius: var(--st-radius-lg); overflow: hidden; display: block; }
.st-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.st-gallery-item:hover img { transform: scale(1.1); }
.st-gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: #fff; font-size: 0.875rem; transform: translateY(100%); transition: transform 0.3s; }
.st-gallery-item:hover .st-gallery-caption { transform: translateY(0); }

/* Related Posts - Main styles defined in SINGLE POST section */
.st-related-posts.basic { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--st-gray-200); }
.st-related-posts.basic h3 { margin-bottom: 1.5rem; }
.st-related-item { background: var(--st-gray-50); border-radius: var(--st-radius-lg); overflow: hidden; }
.st-related-thumb img { width: 100%; height: 150px; object-fit: cover; }
.st-related-item h4 { padding: 1rem; font-size: 0.9375rem; margin: 0; }
.st-related-item h4 a { color: var(--st-gray-800); }

/* Author Box - Additional styles, main defined in SINGLE POST section */
.st-author-box.basic { display: flex; gap: 1.5rem; padding: 2rem; background: var(--st-gray-50); border-radius: var(--st-radius-xl); margin-top: 2rem; }
.st-author-name { margin-bottom: 0.5rem; }
.st-author-bio.basic { color: var(--st-gray-600); margin-bottom: 0.75rem; }
.st-author-link { color: var(--st-primary); font-weight: 500; }

/* Post Navigation - Additional styles, main defined in SINGLE POST section */
.st-post-navigation.basic a { display: block; padding: 1.5rem; background: var(--st-gray-50); border-radius: var(--st-radius-lg); transition: background 0.3s; }
.st-post-navigation.basic a:hover { background: var(--st-gray-100); }
.st-nav-label { display: block; font-size: 0.75rem; text-transform: uppercase; color: var(--st-gray-500); margin-bottom: 0.5rem; }
.st-nav-title { color: var(--st-gray-900); font-weight: 600; }
.st-nav-next { text-align: right; }

/* Widget Styles */
.st-newsletter-widget p { margin-bottom: 1rem; color: var(--st-gray-600); }
.st-newsletter-widget input { width: 100%; padding: 0.75rem; margin-bottom: 0.75rem; border: 1px solid var(--st-gray-300); border-radius: var(--st-radius-md); }
.st-newsletter-widget button { width: 100%; }

.st-destinations-widget-list { list-style: none; padding: 0; margin: 0; }
.st-destinations-widget-list li { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid var(--st-gray-200); }
.st-destinations-widget-list li:last-child { border-bottom: none; }
.st-dest-code { font-size: 0.75rem; color: var(--st-gray-500); margin-left: 0.5rem; }
.st-dest-price { color: var(--st-primary); font-weight: 600; }

.st-contact-widget-list { list-style: none; padding: 0; margin: 0; }
.st-contact-widget-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.5rem 0; color: var(--st-gray-600); }
.st-contact-widget-list svg { flex-shrink: 0; color: var(--st-primary); margin-top: 2px; }
.st-contact-widget-list a { color: var(--st-gray-700); }

/* Landing Page */
.st-landing-page { min-height: 100vh; }

/* Video Background Hero */
.st-hero-video { position: relative; overflow: hidden; }
.st-hero-video video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; transform: translate(-50%, -50%); z-index: -1; }

/* No Posts */
.st-no-posts { text-align: center; padding: 4rem 2rem; background: var(--st-gray-50); border-radius: var(--st-radius-xl); }
.st-no-posts p { color: var(--st-gray-500); margin: 0; }

/* ============================================
   NOTIFICATION BAR
   ============================================ */
.st-notification-bar { padding: 0.75rem 0; font-size: 0.875rem; text-align: center; position: relative; z-index: 1001; }
.st-notification-inner { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.st-notification-text { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.st-notification-text a { font-weight: 600; text-decoration: underline; margin-left: 0.5rem; }
.st-notification-text a:hover { text-decoration: none; }
.st-notification-close { background: none; border: none; cursor: pointer; padding: 0.25rem; opacity: 0.8; transition: opacity 0.2s; color: inherit; display: flex; align-items: center; }
.st-notification-close:hover { opacity: 1; }
.st-notification-bar.hidden { display: none; }
@media (max-width: 768px) { .st-notification-bar { font-size: 0.8rem; padding: 0.5rem 0; } }

/* ============================================
   MEGA MENU
   ============================================ */
.st-menu .mega-menu { position: static; }
.st-menu .mega-menu > .sub-menu { position: absolute; left: 0; right: 0; top: 100%; background: var(--st-card-bg, #fff); box-shadow: 0 10px 40px rgba(0,0,0,0.15); padding: 2rem; display: none; flex-wrap: wrap; gap: 2rem; border-top: 3px solid var(--st-primary); z-index: 1000; }
.st-menu .mega-menu:hover > .sub-menu { display: flex; }
.st-menu .mega-menu > .sub-menu > li { flex: 1; min-width: 200px; list-style: none; }
.st-menu .mega-menu > .sub-menu > li > a { font-weight: 600; font-size: 1rem; color: var(--st-heading); display: block; padding-bottom: 0.75rem; margin-bottom: 0.75rem; border-bottom: 1px solid var(--st-border, #e5e7eb); }
.st-menu .mega-menu > .sub-menu > li > .sub-menu { display: block !important; position: static; background: none; box-shadow: none; padding: 0; border: none; }
.st-menu .mega-menu > .sub-menu > li > .sub-menu li { list-style: none; }
.st-menu .mega-menu > .sub-menu > li > .sub-menu a { display: block; padding: 0.5rem 0; color: var(--st-text); font-size: 0.9rem; transition: color 0.2s, padding-left 0.2s; }
.st-menu .mega-menu > .sub-menu > li > .sub-menu a:hover { color: var(--st-primary); padding-left: 0.5rem; }
.st-menu .mega-menu-heading > a { pointer-events: none; cursor: default; }
body.dark-mode .st-menu .mega-menu > .sub-menu { background: var(--st-card-bg); }
body.dark-mode .st-menu .mega-menu > .sub-menu > li > a { color: var(--st-heading); border-color: var(--st-border); }
body.dark-mode .st-menu .mega-menu > .sub-menu > li > .sub-menu a { color: var(--st-text); }
@media (max-width: 992px) { .st-menu .mega-menu > .sub-menu { position: static; flex-direction: column; gap: 1rem; padding: 1rem; } }

/* ============================================
   STICKY SIDEBAR
   ============================================ */
.st-sidebar.st-sticky-sidebar { position: sticky; top: calc(var(--st-header-height, 80px) + 20px); max-height: calc(100vh - var(--st-header-height, 80px) - 40px); overflow-y: auto; }
.has-sticky-header .st-sidebar.st-sticky-sidebar { top: calc(var(--st-header-height, 80px) + 30px); }

/* ============================================
   SINGLE POST ENHANCEMENTS
   ============================================ */
/* Reading Progress Bar */
.st-reading-progress { position: fixed; top: 0; left: 0; width: 0%; height: 3px; background: linear-gradient(90deg, var(--st-primary), var(--st-secondary)); z-index: 9999; transition: width 0.1s; }
.has-sticky-header .st-reading-progress { top: 0; }

/* Share Buttons */
.st-share-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 2rem 0; padding: 1.5rem 0; border-top: 1px solid var(--st-border, #e5e7eb); border-bottom: 1px solid var(--st-border, #e5e7eb); }
.st-share-buttons .st-share-label { font-weight: 600; color: var(--st-heading); display: flex; align-items: center; gap: 0.5rem; margin-right: 0.5rem; }
.st-share-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; color: #fff; transition: transform 0.2s, opacity 0.2s; }
.st-share-btn:hover { transform: scale(1.1); opacity: 0.9; color: #fff; }
.st-share-btn.facebook { background: #1877f2; }
.st-share-btn.twitter { background: #1da1f2; }
.st-share-btn.linkedin { background: #0077b5; }
.st-share-btn.whatsapp { background: #25d366; }
.st-share-btn.email { background: var(--st-gray-600); }
.st-share-btn.copy-link { background: var(--st-primary); cursor: pointer; border: none; }

/* Author Box */
.st-author-box { display: flex; gap: 1.5rem; padding: 2rem; background: var(--st-card-bg, #f8f9fa); border-radius: var(--st-radius-xl); margin: 2rem 0; }
.st-author-avatar { flex-shrink: 0; }
.st-author-avatar img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.st-author-info h4 { font-size: 1.125rem; margin: 0 0 0.25rem; }
.st-author-info h4 a { color: var(--st-heading); }
.st-author-role { font-size: 0.875rem; color: var(--st-primary); margin-bottom: 0.5rem; }
.st-author-bio { font-size: 0.9rem; color: var(--st-text); margin-bottom: 0.75rem; }
.st-author-social { display: flex; gap: 0.75rem; }
.st-author-social a { color: var(--st-gray-500); transition: color 0.2s; }
.st-author-social a:hover { color: var(--st-primary); }
@media (max-width: 576px) { .st-author-box { flex-direction: column; text-align: center; } .st-author-social { justify-content: center; } }

/* Related Posts */
.st-related-posts { margin: 3rem 0; padding: 2rem 0; border-top: 1px solid var(--st-border, #e5e7eb); }
.st-related-posts h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.st-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .st-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .st-related-grid { grid-template-columns: 1fr; } }
.st-related-card { background: var(--st-card-bg, #fff); border-radius: var(--st-radius-lg); overflow: hidden; box-shadow: var(--st-shadow-sm); transition: transform 0.3s, box-shadow 0.3s; }
.st-related-card:hover { transform: translateY(-3px); box-shadow: var(--st-shadow-md); }
.st-related-card .st-related-thumb { aspect-ratio: 16/10; overflow: hidden; }
.st-related-card .st-related-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.st-related-card:hover .st-related-thumb img { transform: scale(1.05); }
.st-related-card .st-related-content { padding: 1rem 1.25rem; }
.st-related-card .st-related-date { font-size: 0.75rem; color: var(--st-gray-500); margin-bottom: 0.5rem; }
.st-related-card h4 { font-size: 1rem; margin: 0; line-height: 1.4; }
.st-related-card h4 a { color: var(--st-heading); }
.st-related-card h4 a:hover { color: var(--st-primary); }

/* Post Navigation */
.st-post-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
@media (max-width: 576px) { .st-post-navigation { grid-template-columns: 1fr; } }
.st-post-nav-item { padding: 1.5rem; background: var(--st-card-bg, #f8f9fa); border-radius: var(--st-radius-lg); transition: background 0.2s; }
.st-post-nav-item:hover { background: var(--st-gray-100, #f0f0f0); }
.st-post-nav-item.next { text-align: right; }
.st-post-nav-label { font-size: 0.75rem; color: var(--st-gray-500); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.st-post-nav-item.next .st-post-nav-label { justify-content: flex-end; }
.st-post-nav-title { font-weight: 600; color: var(--st-heading); line-height: 1.4; }
.st-post-nav-title:hover { color: var(--st-primary); }

/* Table of Contents */
.st-toc { background: var(--st-card-bg, #f8f9fa); padding: 1.5rem; border-radius: var(--st-radius-lg); margin-bottom: 2rem; }
.st-toc h4 { font-size: 1rem; margin: 0 0 1rem; display: flex; align-items: center; gap: 0.5rem; }
.st-toc ul { list-style: none; padding: 0; margin: 0; }
.st-toc li { padding: 0.5rem 0; border-bottom: 1px solid var(--st-border, #e5e7eb); }
.st-toc li:last-child { border-bottom: none; }
.st-toc a { color: var(--st-text); font-size: 0.9rem; transition: color 0.2s; }
.st-toc a:hover { color: var(--st-primary); }

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.st-back-to-top { position: fixed; bottom: 30px; z-index: 999; width: 45px; height: 45px; background: var(--st-primary); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.st-back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.st-back-to-top:hover { background: var(--st-primary-dark); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.st-back-to-top.position-right { right: 30px; }
.st-back-to-top.position-left { left: 30px; }
.st-back-to-top.style-circle, .st-back-to-top-circle { border-radius: 50%; }
.st-back-to-top.style-rounded, .st-back-to-top-rounded { border-radius: var(--st-radius-lg, 12px); }
.st-back-to-top.style-square, .st-back-to-top-square { border-radius: var(--st-radius-sm, 4px); }
.st-back-to-top svg { width: 20px; height: 20px; }
@media (max-width: 768px) { .st-back-to-top { bottom: 20px; width: 40px; height: 40px; } .st-back-to-top.position-right { right: 20px; } .st-back-to-top.position-left { left: 20px; } }

/* ============================================
   BREADCRUMBS
   ============================================ */
.st-breadcrumbs { padding: 1rem 0; font-size: 0.875rem; }
.st-breadcrumbs-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.st-breadcrumbs a { color: var(--st-primary); text-decoration: none; transition: color 0.2s; }
.st-breadcrumbs a:hover { color: var(--st-secondary); text-decoration: underline; }
.st-breadcrumbs .st-breadcrumb-separator { color: var(--st-gray-400); margin: 0 0.25rem; display: inline-flex; align-items: center; }
.st-breadcrumbs .st-breadcrumb-current { color: var(--st-text); font-weight: 500; }
.st-breadcrumbs .st-breadcrumb-home-icon { display: inline-flex; align-items: center; margin-right: 0.25rem; }
body.dark-mode .st-breadcrumbs { background: transparent; }
body.dark-mode .st-breadcrumbs a { color: var(--st-link); }
body.dark-mode .st-breadcrumbs .st-breadcrumb-separator { color: var(--st-gray-500); }
body.dark-mode .st-breadcrumbs .st-breadcrumb-current { color: var(--st-text); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] { opacity: 0; transition-property: opacity, transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
[data-animate].animated { opacity: 1; transform: none !important; }

/* Fade Up */
[data-animate="fade-up"] { transform: translateY(30px); }
/* Fade Down */
[data-animate="fade-down"] { transform: translateY(-30px); }
/* Fade Left */
[data-animate="fade-left"] { transform: translateX(30px); }
/* Fade Right */
[data-animate="fade-right"] { transform: translateX(-30px); }
/* Fade In */
[data-animate="fade-in"] { transform: none; }
/* Slide Up */
[data-animate="slide-up"] { transform: translateY(50px); }
/* Zoom In */
[data-animate="zoom-in"] { transform: scale(0.9); }
/* Zoom Out */
[data-animate="zoom-out"] { transform: scale(1.1); }
/* Flip Up */
[data-animate="flip-up"] { transform: perspective(1000px) rotateX(20deg); transform-origin: center bottom; }

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    [data-animate] { opacity: 1; transform: none !important; transition: none !important; }
}

/* ===== Front Page WooCommerce Products Section ===== */
/* Complete styling for products on front page (without .supertheme-woo class) */

.st-products-section {
    padding: 4rem 0;
}

.st-products-section .st-products-grid {
    margin-top: 2rem;
}

/* Force proper grid on front page products */
.st-products-section ul.products,
.st-products-section .woocommerce ul.products,
.st-products-grid ul.products,
.st-section ul.products {
    display: grid !important;
    grid-template-columns: repeat(var(--st-products-cols, 4), 1fr) !important;
    gap: 1.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
}

/* Column variations */
.st-products-cols-2 ul.products { grid-template-columns: repeat(2, 1fr) !important; }
.st-products-cols-3 ul.products { grid-template-columns: repeat(3, 1fr) !important; }
.st-products-cols-4 ul.products { grid-template-columns: repeat(4, 1fr) !important; }
.st-products-cols-5 ul.products { grid-template-columns: repeat(5, 1fr) !important; }
.st-products-cols-6 ul.products { grid-template-columns: repeat(6, 1fr) !important; }

.st-products-section ul.products::before,
.st-products-section ul.products::after,
.st-products-grid ul.products::before,
.st-products-grid ul.products::after,
.st-section ul.products::before,
.st-section ul.products::after {
    display: none !important;
    content: none !important;
}

/* Product card styling on front page */
.st-products-section ul.products li.product,
.st-products-grid ul.products li.product,
.st-section ul.products li.product {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: flex !important;
    flex-direction: column !important;
    position: relative;
}

.st-products-section ul.products li.product:hover,
.st-products-grid ul.products li.product:hover,
.st-section ul.products li.product:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    transform: translateY(-4px);
}

/* Product image */
.st-products-section ul.products li.product > a:first-of-type,
.st-products-grid ul.products li.product > a:first-of-type,
.st-section ul.products li.product > a:first-of-type {
    display: block;
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
}

.st-products-section ul.products li.product img,
.st-products-grid ul.products li.product img,
.st-section ul.products li.product img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.st-products-section ul.products li.product:hover img,
.st-products-grid ul.products li.product:hover img,
.st-section ul.products li.product:hover img {
    transform: scale(1.05);
}

/* ===== Product Badges (Front Page) ===== */
.st-products-section ul.products li.product .st-product-badges,
.st-products-grid ul.products li.product .st-product-badges,
.st-section ul.products li.product .st-product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.st-products-section .st-badge,
.st-products-grid .st-badge,
.st-section .st-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}

.st-products-section .st-badge-sale,
.st-products-grid .st-badge-sale,
.st-section .st-badge-sale {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.st-products-section .st-badge-new,
.st-products-grid .st-badge-new,
.st-section .st-badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
}

.st-products-section .st-badge-featured,
.st-products-grid .st-badge-featured,
.st-section .st-badge-featured {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.st-products-section .st-badge-soldout,
.st-products-grid .st-badge-soldout,
.st-section .st-badge-soldout {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

/* Default WooCommerce sale badge - style it properly on front page */
.st-products-section ul.products li.product .onsale,
.st-products-grid ul.products li.product .onsale,
.st-section ul.products li.product .onsale {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    right: auto !important;
    margin: 0 !important;
    padding: 5px 10px !important;
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 6px !important;
    z-index: 10;
    line-height: 1 !important;
    min-width: auto !important;
    min-height: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* Product category */
.st-products-section ul.products li.product .st-product-cat,
.st-products-grid ul.products li.product .st-product-cat,
.st-section ul.products li.product .st-product-cat {
    padding: 1rem 1.25rem 0;
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--st-primary, #0066CC);
}

.st-products-section ul.products li.product .st-product-cat a,
.st-products-grid ul.products li.product .st-product-cat a,
.st-section ul.products li.product .st-product-cat a {
    color: inherit;
    text-decoration: none;
}

/* Product title */
.st-products-section ul.products li.product .woocommerce-loop-product__title,
.st-products-grid ul.products li.product .woocommerce-loop-product__title,
.st-section ul.products li.product .woocommerce-loop-product__title {
    padding: 0.75rem 1.25rem 0.5rem !important;
    margin: 0 !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #111827 !important;
    line-height: 1.4 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Star rating */
.st-products-section ul.products li.product .star-rating,
.st-products-grid ul.products li.product .star-rating,
.st-section ul.products li.product .star-rating {
    margin: 0 1.25rem 0.5rem !important;
    font-size: 0.8rem;
    color: #fbbf24;
}

.st-products-section ul.products li.product .star-rating::before,
.st-products-grid ul.products li.product .star-rating::before,
.st-section ul.products li.product .star-rating::before {
    color: #e5e7eb;
}

/* Product price */
.st-products-section ul.products li.product .price,
.st-products-grid ul.products li.product .price,
.st-section ul.products li.product .price {
    padding: 0 1.25rem 1rem !important;
    margin: 0 !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.st-products-section ul.products li.product .price del,
.st-products-grid ul.products li.product .price del,
.st-section ul.products li.product .price del {
    color: #9ca3af !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}

.st-products-section ul.products li.product .price ins,
.st-products-grid ul.products li.product .price ins,
.st-section ul.products li.product .price ins {
    text-decoration: none !important;
    color: #ef4444 !important;
}

/* Add to cart button */
.st-products-section ul.products li.product .button,
.st-products-section ul.products li.product .add_to_cart_button,
.st-products-section ul.products li.product .product_type_simple,
.st-products-section ul.products li.product .product_type_variable,
.st-products-grid ul.products li.product .button,
.st-products-grid ul.products li.product .add_to_cart_button,
.st-products-grid ul.products li.product .product_type_simple,
.st-products-grid ul.products li.product .product_type_variable,
.st-section ul.products li.product .button,
.st-section ul.products li.product .add_to_cart_button,
.st-section ul.products li.product .product_type_simple,
.st-section ul.products li.product .product_type_variable {
    display: block !important;
    width: calc(100% - 2.5rem) !important;
    margin: auto 1.25rem 1.25rem !important;
    padding: 0.875rem 1.5rem !important;
    background: var(--st-primary, #0066CC) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: none !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    line-height: 1.4 !important;
}

.st-products-section ul.products li.product .button:hover,
.st-products-grid ul.products li.product .button:hover,
.st-section ul.products li.product .button:hover {
    background: var(--st-primary-dark, #004999) !important;
    transform: translateY(-2px);
}

/* Added to cart link */
.st-products-section ul.products li.product .added_to_cart,
.st-products-grid ul.products li.product .added_to_cart,
.st-section ul.products li.product .added_to_cart {
    display: block;
    text-align: center;
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 600;
    text-decoration: none;
}

/* Loading state */
.st-products-section ul.products li.product .button.loading,
.st-products-grid ul.products li.product .button.loading,
.st-section ul.products li.product .button.loading {
    opacity: 0.7;
    pointer-events: none;
}

.st-products-section ul.products li.product .button.loading::after,
.st-products-grid ul.products li.product .button.loading::after,
.st-section ul.products li.product .button.loading::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: st-spin 0.8s linear infinite;
    vertical-align: middle;
}

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

/* Responsive grid */
@media (max-width: 1024px) {
    .st-products-section ul.products,
    .st-products-grid ul.products,
    .st-section ul.products,
    .st-products-cols-4 ul.products,
    .st-products-cols-5 ul.products,
    .st-products-cols-6 ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .st-products-section ul.products,
    .st-products-grid ul.products,
    .st-section ul.products,
    .st-products-cols-3 ul.products,
    .st-products-cols-4 ul.products,
    .st-products-cols-5 ul.products,
    .st-products-cols-6 ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .st-products-section ul.products li.product .woocommerce-loop-product__title,
    .st-products-grid ul.products li.product .woocommerce-loop-product__title,
    .st-section ul.products li.product .woocommerce-loop-product__title {
        font-size: 0.875rem !important;
    }
    
    .st-products-section ul.products li.product .price,
    .st-products-grid ul.products li.product .price,
    .st-section ul.products li.product .price {
        font-size: 1rem !important;
    }
    
    .st-products-section ul.products li.product .button,
    .st-products-grid ul.products li.product .button,
    .st-section ul.products li.product .button {
        padding: 0.75rem 1rem !important;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .st-products-section ul.products,
    .st-products-grid ul.products,
    .st-section ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* ===== WordPress Admin Bar Compatibility ===== */
/* Desktop admin bar is 32px */
body.admin-bar .st-topbar {
    position: relative;
}

body.admin-bar.has-sticky-header .st-header {
    top: 32px;
}

body.admin-bar.has-sticky-header.has-topbar .st-topbar {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    z-index: var(--st-z-fixed);
}

body.admin-bar.has-sticky-header.has-topbar .st-header {
    top: calc(32px + var(--st-topbar-height));
}

body.admin-bar.has-sticky-header .st-site-content {
    padding-top: calc(var(--header-height, var(--st-header-height)) + 32px);
}

body.admin-bar.has-sticky-header.has-topbar .st-site-content {
    padding-top: calc(var(--header-height, var(--st-header-height)) + var(--st-topbar-height) + 32px);
}

/* Notification bar adjustment for admin bar */
body.admin-bar .st-notification-bar {
    position: relative;
}

body.admin-bar.has-sticky-header .st-notification-bar {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    z-index: calc(var(--st-z-fixed) + 1);
}

body.admin-bar.has-sticky-header.has-topbar .st-notification-bar + .st-topbar {
    top: calc(32px + 40px); /* admin bar + notification bar */
}

/* Mobile admin bar is 46px (up to 782px) */
@media (max-width: 782px) {
    body.admin-bar.has-sticky-header .st-header {
        top: 46px;
    }
    
    body.admin-bar.has-sticky-header.has-topbar .st-topbar {
        top: 46px;
    }
    
    body.admin-bar.has-sticky-header.has-topbar .st-header {
        top: calc(46px + var(--st-topbar-height));
    }
    
    body.admin-bar.has-sticky-header .st-site-content {
        padding-top: calc(var(--header-height, var(--st-header-height)) + 46px);
    }
    
    body.admin-bar.has-sticky-header.has-topbar .st-site-content {
        padding-top: calc(var(--header-height, var(--st-header-height)) + var(--st-topbar-height) + 46px);
    }
    
    body.admin-bar.has-sticky-header .st-notification-bar {
        top: 46px;
    }
}

/* Centered header layout with admin bar */
body.admin-bar.header-layout-centered.has-sticky-header .st-site-content {
    padding-top: calc(var(--header-height, var(--st-header-height)) + 40px + 32px);
}

@media (max-width: 782px) {
    body.admin-bar.header-layout-centered.has-sticky-header .st-site-content {
        padding-top: calc(var(--header-height, var(--st-header-height)) + 40px + 46px);
    }
}