/*
Theme Name: FULL B2B Marketplace
Description: Custom theme styles for FULL B2B marketplace system
Version: 1.0.0
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    --fullb2b-primary-color: #E87237;
    --fullb2b-primary-color-hover: #D65A2A;
    --fullb2b-secondary-color: #6A6B6B;
    --fullb2b-secondary-color-hover: #545b62;
    --fullb2b-text-color: #000000;
    --fullb2b-background-color: #ffffff;
    --fullb2b-border-color: #e0e0e0;
    --fullb2b-font-primary: 'Montserrat', sans-serif;
    --fullb2b-font-secondary: 'Roboto', sans-serif;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

* {
    box-sizing: border-box;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: var(--fullb2b-font-secondary);
    line-height: 1.6;
    color: var(--fullb2b-text-color);
    background-color: var(--fullb2b-background-color);
}

.fullb2b-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.screen-reader-text {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

/* Skip to content */
.fullb2b-skip-link {
    position: absolute;
    left: -9999px;
    top: 20px;
    z-index: 999999;
    text-decoration: none;
    background: var(--fullb2b-primary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
}

.fullb2b-skip-link:focus {
    left: 20px;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    font-family: var(--fullb2b-font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--fullb2b-text-color);
}

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: 1rem; }

p {
    margin: 0 0 1rem;
}

a {
    color: var(--fullb2b-primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: var(--fullb2b-primary-color-hover);
    text-decoration: underline;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.fullb2b-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.fullb2b-btn-primary {
    background-color: var(--fullb2b-primary-color);
    color: #fff;
}

.fullb2b-btn-primary:hover {
    background-color: var(--fullb2b-primary-color-hover);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}

.fullb2b-btn-secondary {
    background-color: var(--fullb2b-secondary-color);
    color: #fff;
}

.fullb2b-btn-secondary:hover {
    background-color: var(--fullb2b-secondary-color-hover);
    color: #fff;
    text-decoration: none;
}

.fullb2b-btn-outline {
    background-color: transparent;
    border: 2px solid var(--fullb2b-primary-color);
    color: var(--fullb2b-primary-color);
}

.fullb2b-btn-outline:hover {
    background-color: var(--fullb2b-primary-color);
    color: #fff;
    text-decoration: none;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.fullb2b-form-group {
    margin-bottom: 1.5rem;
}

.fullb2b-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--fullb2b-text-color);
}

.fullb2b-form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.4;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.fullb2b-form-control:focus {
    outline: 0;
    border-color: var(--fullb2b-primary-color);
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

/* ==========================================================================
   Top Bar
   ========================================================================== */

.fullb2b-topbar {
    background-color: var(--fullb2b-text-color);
    color: #ecf0f1;
    font-size: 13px;
    padding: 8px 0;
}

.fullb2b-topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.fullb2b-topbar-left,
.fullb2b-topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fullb2b-topbar-phone,
.fullb2b-topbar-email {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fullb2b-topbar a {
    color: #ecf0f1;
    text-decoration: none;
}

.fullb2b-topbar a:hover {
    color: #3498db;
}

.fullb2b-user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fullb2b-auth-links {
    display: flex;
    gap: 15px;
}

.fullb2b-social-links {
    display: flex;
    gap: 10px;
}

.fullb2b-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.fullb2b-social-links a:hover {
    background-color: #3498db;
    text-decoration: none;
}

/* ==========================================================================
   Header
   ========================================================================== */

.fullb2b-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.fullb2b-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

/* Logo */
.fullb2b-logo {
    flex-shrink: 0;
}

.fullb2b-custom-logo img {
    max-height: 60px;
    width: auto;
}

.fullb2b-site-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.fullb2b-site-title a {
    color: var(--fullb2b-text-color);
    text-decoration: none;
}

.fullb2b-site-description {
    margin: 0;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Navigation */
.fullb2b-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.fullb2b-primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.fullb2b-primary-menu li {
    position: relative;
}

.fullb2b-primary-menu a {
    display: block;
    padding: 15px 0;
    font-weight: 500;
    color: var(--fullb2b-text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.fullb2b-primary-menu a:hover,
.fullb2b-primary-menu a:focus {
    color: var(--fullb2b-primary-color);
    text-decoration: none;
}

.fullb2b-primary-menu .current-menu-item > a,
.fullb2b-primary-menu .current-page-ancestor > a {
    color: var(--fullb2b-primary-color);
}

/* Dropdown menus */
.fullb2b-primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.fullb2b-primary-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fullb2b-primary-menu .sub-menu a {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.fullb2b-primary-menu .sub-menu a:last-child {
    border-bottom: none;
}

/* Mobile Menu Toggle */
.fullb2b-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
}

.fullb2b-menu-toggle-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--fullb2b-text-color);
}

.fullb2b-menu-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.fullb2b-menu-icon span {
    width: 25px;
    height: 3px;
    background-color: var(--fullb2b-text-color);
    transition: all 0.3s ease;
}

.fullb2b-menu-toggle.active .fullb2b-menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.fullb2b-menu-toggle.active .fullb2b-menu-icon span:nth-child(2) {
    opacity: 0;
}

.fullb2b-menu-toggle.active .fullb2b-menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Header Actions */
.fullb2b-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fullb2b-search-btn,
.fullb2b-cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--fullb2b-text-color);
    font-size: 16px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.fullb2b-search-btn:hover,
.fullb2b-cart-link:hover {
    background-color: #f8f9fa;
    color: var(--fullb2b-primary-color);
}

.fullb2b-cart-link {
    position: relative;
    text-decoration: none;
}

.fullb2b-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Form */
.fullb2b-search-form-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid var(--fullb2b-border-color);
    padding: 20px 0;
    z-index: 999;
}

.fullb2b-search-form {
    display: flex;
    align-items: center;
    position: relative;
}

.fullb2b-search-field {
    flex: 1;
    padding: 15px 50px 15px 20px;
    font-size: 16px;
    border: 2px solid var(--fullb2b-border-color);
    border-radius: 25px;
    outline: none;
}

.fullb2b-search-field:focus {
    border-color: var(--fullb2b-primary-color);
}

.fullb2b-search-submit {
    position: absolute;
    right: 60px;
    background: none;
    border: none;
    color: var(--fullb2b-primary-color);
    font-size: 18px;
    cursor: pointer;
}

.fullb2b-search-close {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: #7f8c8d;
    font-size: 18px;
    cursor: pointer;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.fullb2b-breadcrumbs {
    background-color: #f8f9fa;
    border-bottom: 1px solid var(--fullb2b-border-color);
    padding: 15px 0;
}

.fullb2b-breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.fullb2b-breadcrumb-item {
    display: flex;
    align-items: center;
}

.fullb2b-breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #7f8c8d;
}

.fullb2b-breadcrumb-current {
    color: #7f8c8d;
}

/* ==========================================================================
   Page Title
   ========================================================================== */

.fullb2b-page-title {
    background-color: var(--fullb2b-text-color);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.fullb2b-page-title-heading {
    margin: 0 0 15px;
    font-size: 2.5rem;
    font-weight: 700;
}

.fullb2b-page-title-description {
    font-size: 1.1rem;
    color: #bdc3c7;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Main Content
   ========================================================================== */

.fullb2b-main-content {
    padding: 40px 0;
    min-height: 400px;
}

.fullb2b-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.fullb2b-content-wrapper.full-width {
    grid-template-columns: 1fr;
}

/* Posts */
.fullb2b-posts-container {
    display: grid;
    gap: 40px;
}

.fullb2b-post {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fullb2b-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.fullb2b-post-thumbnail {
    position: relative;
    overflow: hidden;
}

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

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

.fullb2b-post-content {
    padding: 30px;
}

.fullb2b-post-title {
    margin: 0 0 15px;
    font-size: 1.5rem;
}

.fullb2b-post-title a {
    color: var(--fullb2b-text-color);
    text-decoration: none;
}

.fullb2b-post-title a:hover {
    color: var(--fullb2b-primary-color);
}

.fullb2b-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #7f8c8d;
}

.fullb2b-post-meta i {
    margin-right: 5px;
}

.fullb2b-post-excerpt {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.fullb2b-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.fullb2b-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fullb2b-primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.fullb2b-read-more:hover {
    gap: 12px;
    text-decoration: none;
}

.fullb2b-post-tags {
    display: flex;
    gap: 8px;
}

.fullb2b-tag {
    padding: 4px 8px;
    background-color: #f8f9fa;
    color: var(--fullb2b-secondary-color);
    font-size: 12px;
    border-radius: 12px;
    text-decoration: none;
}

.fullb2b-tag:hover {
    background-color: var(--fullb2b-primary-color);
    color: #fff;
    text-decoration: none;
}

/* No Posts */
.fullb2b-no-posts {
    text-align: center;
    padding: 60px 20px;
}

.fullb2b-no-posts-content i {
    color: #bdc3c7;
    margin-bottom: 30px;
}

.fullb2b-no-posts-content h2 {
    color: #7f8c8d;
    margin-bottom: 15px;
}

.fullb2b-no-posts-content p {
    color: #95a5a6;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Pagination */
.fullb2b-pagination {
    margin-top: 40px;
    text-align: center;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    margin: 0 5px;
    color: var(--fullb2b-primary-color);
    text-decoration: none;
    border: 1px solid var(--fullb2b-border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background-color: var(--fullb2b-primary-color);
    color: #fff;
    border-color: var(--fullb2b-primary-color);
    text-decoration: none;
}

.page-numbers.prev,
.page-numbers.next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.fullb2b-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fullb2b-widget {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.fullb2b-widget-title {
    margin: 0 0 20px;
    font-size: 1.3rem;
    color: var(--fullb2b-text-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--fullb2b-primary-color);
}

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

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

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

.fullb2b-widget a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fullb2b-widget a:hover {
    color: var(--fullb2b-primary-color);
    text-decoration: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.fullb2b-footer {
    background-color: var(--fullb2b-text-color);
    color: #ecf0f1;
    margin-top: auto;
}

.fullb2b-footer-widgets {
    padding: 60px 0;
}

.fullb2b-footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.fullb2b-footer-widget-area .widget {
    margin-bottom: 30px;
}

.fullb2b-footer-widget-area .widget:last-child {
    margin-bottom: 0;
}

.fullb2b-footer-widget-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--fullb2b-primary-color);
}

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

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

.fullb2b-footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fullb2b-footer a:hover {
    color: #3498db;
    text-decoration: none;
}

/* Footer Info */
.fullb2b-footer-info {
    border-top: 1px solid #34495e;
    padding: 40px 0;
}

.fullb2b-footer-info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.fullb2b-footer-logo-img {
    max-height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.fullb2b-footer-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.fullb2b-footer-description {
    color: #bdc3c7;
    margin-bottom: 20px;
    line-height: 1.6;
}

.fullb2b-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fullb2b-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bdc3c7;
}

.fullb2b-contact-item i {
    width: 16px;
    text-align: center;
    color: #3498db;
}

.fullb2b-footer-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Newsletter */
.fullb2b-newsletter-form {
    margin-bottom: 25px;
}

.fullb2b-newsletter-input-group {
    display: flex;
    margin-bottom: 15px;
}

.fullb2b-newsletter-email {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #34495e;
    border-radius: 4px 0 0 4px;
    background-color: #34495e;
    color: #fff;
    outline: none;
}

.fullb2b-newsletter-email::placeholder {
    color: #95a5a6;
}

.fullb2b-newsletter-submit {
    padding: 12px 15px;
    background-color: var(--fullb2b-primary-color);
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fullb2b-newsletter-submit:hover {
    background-color: var(--fullb2b-primary-color-hover);
}

.fullb2b-social-media h5 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 15px;
}

.fullb2b-social-media .fullb2b-social-links {
    display: flex;
    gap: 10px;
}

.fullb2b-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fullb2b-social-link.facebook { background-color: #3b5998; }
.fullb2b-social-link.instagram { background-color: #e4405f; }
.fullb2b-social-link.twitter { background-color: #1da1f2; }
.fullb2b-social-link.linkedin { background-color: #0077b5; }
.fullb2b-social-link.youtube { background-color: #ff0000; }
.fullb2b-social-link.whatsapp { background-color: #25d366; }

.fullb2b-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

/* Footer Bottom */
.fullb2b-footer-bottom {
    border-top: 1px solid #34495e;
    padding: 20px 0;
    background-color: #1a252f;
}

.fullb2b-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
}

.fullb2b-copyright {
    color: #95a5a6;
}

.fullb2b-theme-credit {
    margin-top: 5px;
    font-size: 13px;
}

.fullb2b-footer-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.fullb2b-payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fullb2b-payment-label {
    color: #95a5a6;
    font-size: 13px;
}

.fullb2b-payment-icons {
    display: flex;
    gap: 8px;
    font-size: 24px;
}

.fullb2b-payment-icons i {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.fullb2b-payment-icons i:hover {
    color: #3498db;
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */

.fullb2b-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--fullb2b-primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
}

.fullb2b-back-to-top:hover {
    background-color: var(--fullb2b-primary-color-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 124, 186, 0.4);
}

/* ==========================================================================
   Loading Spinner
   ========================================================================== */

.fullb2b-loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.fullb2b-spinner {
    width: 50px;
    height: 50px;
    position: relative;
}

.fullb2b-spinner-inner {
    width: 100%;
    height: 100%;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--fullb2b-primary-color);
    border-radius: 50%;
    animation: fullb2bSpin 1s linear infinite;
}

@keyframes fullb2bSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   Cookie Notice
   ========================================================================== */

.fullb2b-cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--fullb2b-text-color);
    color: #ecf0f1;
    padding: 20px 0;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.fullb2b-cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.fullb2b-cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.fullb2b-cookie-policy-link {
    color: #3498db;
    text-decoration: underline;
}

.fullb2b-cookie-actions {
    display: flex;
    gap: 10px;
}

.fullb2b-cookie-accept,
.fullb2b-cookie-decline {
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fullb2b-cookie-accept {
    background-color: #27ae60;
    color: #fff;
}

.fullb2b-cookie-accept:hover {
    background-color: #219a52;
}

.fullb2b-cookie-decline {
    background-color: transparent;
    color: #bdc3c7;
    border: 1px solid #bdc3c7;
}

.fullb2b-cookie-decline:hover {
    background-color: #bdc3c7;
    color: var(--fullb2b-text-color);
}

/* ==========================================================================
   Mobile Responsive
   ========================================================================== */

@media (max-width: 768px) {
    
    /* Top Bar */
    .fullb2b-topbar-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .fullb2b-topbar-left,
    .fullb2b-topbar-right {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Header */
    .fullb2b-header-content {
        flex-wrap: wrap;
    }
    
    .fullb2b-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .fullb2b-navigation {
        order: 4;
        flex-basis: 100%;
        justify-content: flex-start;
    }
    
    .fullb2b-primary-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        padding: 80px 0 20px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1001;
        gap: 0;
    }
    
    .fullb2b-primary-menu.active {
        left: 0;
    }
    
    .fullb2b-primary-menu li {
        width: 100%;
    }
    
    .fullb2b-primary-menu a {
        padding: 15px 30px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .fullb2b-primary-menu .sub-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: #f8f9fa;
    }
    
    .fullb2b-primary-menu .sub-menu a {
        padding-left: 50px;
        background-color: #f8f9fa;
    }
    
    .fullb2b-mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .fullb2b-mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    body.fullb2b-mobile-menu-open {
        overflow: hidden;
    }
    
    /* Page Title */
    .fullb2b-page-title {
        padding: 40px 0;
    }
    
    .fullb2b-page-title-heading {
        font-size: 2rem;
    }
    
    /* Content Layout */
    .fullb2b-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Posts */
    .fullb2b-post-content {
        padding: 20px;
    }
    
    .fullb2b-post-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .fullb2b-post-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    /* Footer */
    .fullb2b-footer-widgets-grid,
    .fullb2b-footer-info-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .fullb2b-footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .fullb2b-footer-nav-menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .fullb2b-payment-methods {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Cookie Notice */
    .fullb2b-cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .fullb2b-cookie-content p {
        min-width: auto;
    }
    
    /* Back to Top */
    .fullb2b-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
}

@media (max-width: 480px) {
    
    .fullb2b-container {
        padding: 0 15px;
    }
    
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .fullb2b-page-title-heading {
        font-size: 1.75rem;
    }
    
    /* Header */
    .fullb2b-primary-menu {
        width: 90%;
    }
    
    /* Forms */
    .fullb2b-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Newsletter */
    .fullb2b-newsletter-input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .fullb2b-newsletter-email,
    .fullb2b-newsletter-submit {
        border-radius: 4px;
    }
    
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.fullb2b-text-center { text-align: center; }
.fullb2b-text-left { text-align: left; }
.fullb2b-text-right { text-align: right; }

.fullb2b-mb-0 { margin-bottom: 0; }
.fullb2b-mb-1 { margin-bottom: 0.5rem; }
.fullb2b-mb-2 { margin-bottom: 1rem; }
.fullb2b-mb-3 { margin-bottom: 1.5rem; }
.fullb2b-mb-4 { margin-bottom: 2rem; }

.fullb2b-mt-0 { margin-top: 0; }
.fullb2b-mt-1 { margin-top: 0.5rem; }
.fullb2b-mt-2 { margin-top: 1rem; }
.fullb2b-mt-3 { margin-top: 1.5rem; }
.fullb2b-mt-4 { margin-top: 2rem; }

.fullb2b-hidden { display: none; }
.fullb2b-visible { display: block; }

/* Responsive Images */
.fullb2b-responsive-image {
    max-width: 100%;
    height: auto;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    .fullb2b-topbar,
    .fullb2b-header-actions,
    .fullb2b-search-form-wrapper,
    .fullb2b-footer,
    .fullb2b-back-to-top,
    .fullb2b-cookie-notice {
        display: none !important;
    }
    
    .fullb2b-main-content {
        padding: 0;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
}