/*
Theme Name: Butik Elegan
Theme URI: https://example.com/butik-elegan
Author: Butik Elegan Team
Author URI: https://example.com
Description: A premium fashion boutique theme with elegant design, fully responsive layout, and WooCommerce support.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: butik-elegan
Tags: fashion, boutique, woocommerce, custom-logo, custom-menu, featured-images, threaded-comments
*/

/* ==========================================================================
   CSS RESET
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
    /* Colors */
    --bq-primary: #9B2335;
    --bq-primary-hover: #B82D42;
    --bq-gold: #C8A96E;
    --bq-gold-hover: #B8965A;
    --bq-gold-light: #D4BC8E;
    --bq-cream: #FDF8F3;
    --bq-warm-grey: #F5EDE3;
    --bq-dark: #1A1A1A;
    --bq-body: #333;
    --bq-light: #777;
    --bq-white: #fff;
    --bq-border: #E8DDD3;
    
    /* Typography */
    --bq-font-heading: 'Playfair Display', Georgia, serif;
    --bq-font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --bq-container: 1200px;
    --bq-gap: 2rem;
    --bq-radius: 8px;
    --bq-radius-lg: 16px;
    
    /* Transitions */
    --bq-transition: 0.3s ease;
    --bq-transition-fast: 0.2s ease;
    
    /* Shadows */
    --bq-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --bq-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
body {
    font-family: var(--bq-font-body);
    font-size: 16px;
    color: var(--bq-body);
    background-color: var(--bq-cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--bq-font-heading);
    color: var(--bq-dark);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--bq-body);
}

a {
    transition: var(--bq-transition);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.bq-container {
    width: 100%;
    max-width: var(--bq-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bq-section {
    padding: 5rem 0;
}

.bq-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bq-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bq-gold);
    margin-bottom: 0.75rem;
}

.bq-section-title {
    font-size: 2.5rem;
    color: var(--bq-dark);
    margin-bottom: 1rem;
}

.bq-section-title em {
    font-style: italic;
    color: var(--bq-primary);
}

.bq-section-desc {
    color: var(--bq-light);
    max-width: 600px;
    margin: 0 auto;
}

.bq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--bq-radius);
    transition: var(--bq-transition);
}

.bq-btn-primary {
    background: var(--bq-primary);
    color: var(--bq-white);
}

.bq-btn-primary:hover {
    background: var(--bq-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--bq-shadow);
}

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

.bq-btn-outline:hover {
    background: var(--bq-white);
    color: var(--bq-dark);
}

.bq-btn-gold {
    background: var(--bq-gold);
    color: var(--bq-white);
}

.bq-btn-gold:hover {
    background: var(--bq-gold-hover);
}

/* Animation Classes */
.bq-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bq-animate.bq-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.bq-topbar {
    background: var(--bq-dark);
    color: var(--bq-white);
    padding: 0.625rem 0;
    font-size: 0.8125rem;
}

.bq-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bq-topbar-contact {
    display: flex;
    gap: 1.5rem;
}

.bq-topbar-contact a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bq-topbar-contact a:hover {
    color: var(--bq-gold);
}

.bq-topbar-social {
    display: flex;
    gap: 1rem;
}

.bq-topbar-social a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.bq-topbar-social a:hover {
    color: var(--bq-gold);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.bq-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bq-white);
    transition: var(--bq-transition);
}

.bq-header.bq-scrolled {
    box-shadow: var(--bq-shadow);
}

/* Home page transparent header */
body.home .bq-header {
    position: fixed;
    width: 100%;
    background: transparent;
}

body.home .bq-header .bq-logo,
body.home .bq-header .bq-nav a,
body.home .bq-header .bq-header-action {
    color: var(--bq-white);
}

body.home .bq-header.bq-scrolled {
    background: var(--bq-white);
    box-shadow: var(--bq-shadow);
}

body.home .bq-header.bq-scrolled .bq-logo,
body.home .bq-header.bq-scrolled .bq-nav a,
body.home .bq-header.bq-scrolled .bq-header-action {
    color: var(--bq-dark);
}

body.home .bq-header.bq-scrolled .bq-logo span {
    color: var(--bq-primary);
}

.bq-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.bq-logo {
    font-family: var(--bq-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bq-dark);
}

.bq-logo span {
    color: var(--bq-primary);
}

.bq-logo img {
    max-height: 50px;
    width: auto;
}

.bq-nav {
    display: flex;
    align-items: center;
}

.bq-nav ul {
    display: flex;
    gap: 2rem;
}

.bq-nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--bq-dark);
    position: relative;
    padding: 0.5rem 0;
}

.bq-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bq-primary);
    transition: var(--bq-transition);
}

.bq-nav a:hover::after,
.bq-nav .current-menu-item a::after {
    width: 100%;
}

.bq-nav a:hover {
    color: var(--bq-primary);
}

.bq-header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.bq-header-action {
    color: var(--bq-dark);
    font-size: 1.125rem;
    position: relative;
}

.bq-header-action:hover {
    color: var(--bq-primary);
}

.bq-cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--bq-primary);
    color: var(--bq-white);
    font-size: 0.625rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bq-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.bq-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bq-dark);
    transition: var(--bq-transition);
}

body.home .bq-hamburger span {
    background: var(--bq-white);
}

body.home .bq-header.bq-scrolled .bq-hamburger span {
    background: var(--bq-dark);
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.bq-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--bq-transition);
    z-index: 1001;
}

.bq-mobile-overlay.bq-active {
    opacity: 1;
    visibility: visible;
}

.bq-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: var(--bq-white);
    z-index: 1002;
    transition: var(--bq-transition);
    overflow-y: auto;
}

.bq-mobile-menu.bq-active {
    right: 0;
}

.bq-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--bq-border);
}

.bq-mobile-close {
    font-size: 1.5rem;
    color: var(--bq-dark);
}

.bq-mobile-nav {
    padding: 1.5rem;
}

.bq-mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bq-mobile-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--bq-dark);
    border-bottom: 1px solid var(--bq-border);
}

.bq-mobile-nav a:hover {
    color: var(--bq-primary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.bq-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.4) 100%);
}

.bq-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    color: var(--bq-white);
}

.bq-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--bq-gold);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

.bq-hero-title {
    font-size: 4rem;
    color: var(--bq-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.bq-hero-title em {
    font-style: italic;
    color: var(--bq-gold);
}

.bq-hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.bq-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.bq-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--bq-white);
    animation: bounce 2s infinite;
}

.bq-scroll-hint i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bq-scroll-hint span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */
.bq-categories {
    background: var(--bq-white);
}

.bq-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.bq-category-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--bq-radius-lg);
    overflow: hidden;
}

.bq-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bq-category-card:hover img {
    transform: scale(1.1);
}

.bq-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.9));
    color: var(--bq-white);
}

.bq-category-name {
    font-family: var(--bq-font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.bq-category-count {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.bq-category-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--bq-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bq-dark);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--bq-transition);
}

.bq-category-card:hover .bq-category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.bq-products {
    background: var(--bq-cream);
}

.bq-product-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.bq-filter-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bq-body);
    background: var(--bq-white);
    border: 1px solid var(--bq-border);
    border-radius: 50px;
    transition: var(--bq-transition);
}

.bq-filter-btn:hover,
.bq-filter-btn.bq-active {
    background: var(--bq-primary);
    color: var(--bq-white);
    border-color: var(--bq-primary);
}

.bq-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bq-product-card {
    background: var(--bq-white);
    border-radius: var(--bq-radius-lg);
    overflow: hidden;
    transition: var(--bq-transition);
}

.bq-product-card:hover {
    box-shadow: var(--bq-shadow-lg);
    transform: translateY(-5px);
}

.bq-product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.bq-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bq-product-card:hover .bq-product-image img {
    transform: scale(1.05);
}

.bq-product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.bq-badge-new {
    background: var(--bq-dark);
    color: var(--bq-white);
}

.bq-badge-sale {
    background: var(--bq-primary);
    color: var(--bq-white);
}

.bq-product-actions {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: var(--bq-transition);
}

.bq-product-card:hover .bq-product-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.bq-product-action {
    width: 44px;
    height: 44px;
    background: var(--bq-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bq-dark);
    font-size: 1rem;
    box-shadow: var(--bq-shadow);
    transition: var(--bq-transition);
}

.bq-product-action:hover {
    background: var(--bq-primary);
    color: var(--bq-white);
}

.bq-product-info {
    padding: 1.5rem;
}

.bq-product-name {
    font-family: var(--bq-font-heading);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.bq-product-name a:hover {
    color: var(--bq-primary);
}

.bq-product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.bq-price-current {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bq-primary);
}

.bq-price-old {
    font-size: 0.9375rem;
    color: var(--bq-light);
    text-decoration: line-through;
}

.bq-product-rating {
    display: flex;
    gap: 0.25rem;
    color: var(--bq-gold);
    font-size: 0.8125rem;
}

/* ==========================================================================
   PROMO BANNER
   ========================================================================== */
.bq-promo {
    background: linear-gradient(135deg, var(--bq-primary) 0%, var(--bq-primary-hover) 100%);
    color: var(--bq-white);
    padding: 5rem 0;
}

.bq-promo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.bq-promo-content {
    max-width: 500px;
}

.bq-promo-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bq-gold-light);
    margin-bottom: 1rem;
}

.bq-promo-title {
    font-size: 2.5rem;
    color: var(--bq-white);
    margin-bottom: 1rem;
}

.bq-promo-desc {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.bq-promo-discount {
    text-align: right;
}

.bq-discount-text {
    font-family: var(--bq-font-heading);
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.15);
}

.bq-discount-text span {
    display: block;
    font-size: 3rem;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.bq-about {
    background: var(--bq-white);
}

.bq-about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bq-about-images {
    position: relative;
}

.bq-about-image-main {
    border-radius: var(--bq-radius-lg);
    overflow: hidden;
}

.bq-about-image-main img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.bq-about-image-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 60%;
    border-radius: var(--bq-radius-lg);
    overflow: hidden;
    border: 6px solid var(--bq-white);
    box-shadow: var(--bq-shadow-lg);
}

.bq-about-image-accent img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.bq-about-content {
    padding-left: 2rem;
}

.bq-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--bq-border);
}

.bq-stat-number {
    font-family: var(--bq-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bq-primary);
    margin-bottom: 0.25rem;
}

.bq-stat-label {
    font-size: 0.875rem;
    color: var(--bq-light);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.bq-testimonials {
    background: var(--bq-warm-grey);
}

.bq-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bq-testimonial-card {
    background: var(--bq-white);
    padding: 2.5rem;
    border-radius: var(--bq-radius-lg);
    position: relative;
}

.bq-testimonial-quote {
    font-family: var(--bq-font-heading);
    font-size: 4rem;
    color: var(--bq-primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.bq-testimonial-text {
    font-style: italic;
    color: var(--bq-body);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.bq-testimonial-rating {
    display: flex;
    gap: 0.25rem;
    color: var(--bq-gold);
    margin-bottom: 1.5rem;
}

.bq-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bq-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.bq-testimonial-name {
    font-weight: 600;
    color: var(--bq-dark);
    margin-bottom: 0.125rem;
}

.bq-testimonial-location {
    font-size: 0.8125rem;
    color: var(--bq-light);
}

/* ==========================================================================
   INSTAGRAM SECTION
   ========================================================================== */
.bq-instagram {
    padding: 5rem 0;
    background: var(--bq-white);
}

.bq-instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
}

.bq-instagram-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.bq-instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bq-instagram-item:hover img {
    transform: scale(1.1);
}

.bq-instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(155, 35, 53, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--bq-transition);
}

.bq-instagram-item:hover .bq-instagram-overlay {
    opacity: 1;
}

.bq-instagram-overlay i {
    font-size: 1.5rem;
    color: var(--bq-white);
}

/* ==========================================================================
   NEWSLETTER SECTION
   ========================================================================== */
.bq-newsletter {
    background: var(--bq-dark);
    padding: 5rem 0;
}

.bq-newsletter-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.bq-newsletter-title {
    color: var(--bq-white);
    margin-bottom: 1rem;
}

.bq-newsletter-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.bq-newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.bq-newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--bq-radius);
    font-size: 1rem;
    background: var(--bq-white);
}

.bq-newsletter-input:focus {
    outline: 2px solid var(--bq-gold);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.bq-footer {
    background: var(--bq-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 5rem;
}

.bq-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bq-footer-logo {
    font-family: var(--bq-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bq-white);
    margin-bottom: 1.5rem;
}

.bq-footer-logo span {
    color: var(--bq-gold);
}

.bq-footer-text {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.bq-footer-social {
    display: flex;
    gap: 1rem;
}

.bq-footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bq-white);
    transition: var(--bq-transition);
}

.bq-footer-social a:hover {
    background: var(--bq-primary);
}

.bq-footer-title {
    font-family: var(--bq-font-heading);
    font-size: 1.25rem;
    color: var(--bq-white);
    margin-bottom: 1.5rem;
}

.bq-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bq-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--bq-transition);
}

.bq-footer-links a:hover {
    color: var(--bq-gold);
    padding-left: 5px;
}

.bq-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bq-footer-contact-item {
    display: flex;
    gap: 1rem;
}

.bq-footer-contact-item i {
    color: var(--bq-gold);
    width: 20px;
}

.bq-footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.875rem;
}

/* Widget Styles */
.bq-widget {
    margin-bottom: 2rem;
}

.bq-widget-title {
    font-family: var(--bq-font-heading);
    font-size: 1.25rem;
    color: var(--bq-white);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.bq-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--bq-dark);
    color: var(--bq-white);
    padding: 1rem 1.5rem;
    border-radius: var(--bq-radius);
    box-shadow: var(--bq-shadow-lg);
    transform: translateY(100px);
    opacity: 0;
    transition: var(--bq-transition);
    z-index: 9999;
}

.bq-toast.bq-show {
    transform: translateY(0);
    opacity: 1;
}

/* ==========================================================================
   PAGE BANNER
   ========================================================================== */
.bq-page-banner {
    background: linear-gradient(135deg, var(--bq-dark) 0%, #2a2a2a 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 0;
}

body:not(.home) .bq-page-banner {
    margin-top: 0;
}

.bq-page-title {
    font-size: 3rem;
    color: var(--bq-white);
    margin-bottom: 1rem;
}

.bq-page-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.bq-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.bq-breadcrumb a {
    color: var(--bq-gold);
}

.bq-breadcrumb a:hover {
    color: var(--bq-gold-light);
}

/* ==========================================================================
   BLOG STYLES
   ========================================================================== */
.bq-blog-section {
    padding: 5rem 0;
}

.bq-blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.bq-blog-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.bq-blog-card {
    background: var(--bq-white);
    border-radius: var(--bq-radius-lg);
    overflow: hidden;
    transition: var(--bq-transition);
}

.bq-blog-card:hover {
    box-shadow: var(--bq-shadow-lg);
    transform: translateY(-5px);
}

.bq-blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.bq-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bq-blog-card:hover .bq-blog-card-image img {
    transform: scale(1.05);
}

.bq-blog-card-content {
    padding: 1.5rem;
}

.bq-blog-card-category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bq-primary);
    margin-bottom: 0.75rem;
}

.bq-blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.bq-blog-card-title a:hover {
    color: var(--bq-primary);
}

.bq-blog-card-excerpt {
    color: var(--bq-light);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.bq-blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--bq-light);
}

/* Pagination */
.bq-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.bq-pagination a,
.bq-pagination span {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bq-white);
    border: 1px solid var(--bq-border);
    border-radius: var(--bq-radius);
    color: var(--bq-body);
    font-weight: 500;
    transition: var(--bq-transition);
}

.bq-pagination a:hover,
.bq-pagination .current {
    background: var(--bq-primary);
    border-color: var(--bq-primary);
    color: var(--bq-white);
}

/* ==========================================================================
   SINGLE POST STYLES
   ========================================================================== */
.bq-single-article {
    background: var(--bq-white);
    border-radius: var(--bq-radius-lg);
    overflow: hidden;
}

.bq-single-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.bq-single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bq-single-content {
    padding: 2.5rem;
}

.bq-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--bq-light);
}

.bq-single-meta i {
    color: var(--bq-primary);
    margin-right: 0.5rem;
}

.bq-single-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.bq-single-body {
    line-height: 1.9;
}

.bq-single-body p {
    margin-bottom: 1.5rem;
}

.bq-single-body h2,
.bq-single-body h3,
.bq-single-body h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.bq-single-body img {
    border-radius: var(--bq-radius);
    margin: 2rem 0;
}

.bq-single-body blockquote {
    border-left: 4px solid var(--bq-primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--bq-dark);
}

.bq-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bq-border);
}

.bq-single-tags a {
    padding: 0.5rem 1rem;
    background: var(--bq-warm-grey);
    border-radius: 50px;
    font-size: 0.8125rem;
    color: var(--bq-body);
    transition: var(--bq-transition);
}

.bq-single-tags a:hover {
    background: var(--bq-primary);
    color: var(--bq-white);
}

/* Post Navigation */
.bq-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bq-border);
}

.bq-post-nav-item {
    padding: 1.5rem;
    background: var(--bq-warm-grey);
    border-radius: var(--bq-radius);
    transition: var(--bq-transition);
}

.bq-post-nav-item:hover {
    background: var(--bq-primary);
}

.bq-post-nav-item:hover * {
    color: var(--bq-white);
}

.bq-post-nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bq-light);
    margin-bottom: 0.5rem;
}

.bq-post-nav-title {
    font-family: var(--bq-font-heading);
    font-size: 1rem;
    color: var(--bq-dark);
}

.bq-post-nav-next {
    text-align: right;
}

/* ==========================================================================
   SIDEBAR STYLES
   ========================================================================== */
.bq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bq-sidebar-widget {
    background: var(--bq-white);
    padding: 1.5rem;
    border-radius: var(--bq-radius-lg);
}

.bq-sidebar-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bq-primary);
}

.bq-search-form {
    display: flex;
}

.bq-search-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid var(--bq-border);
    border-right: none;
    border-radius: var(--bq-radius) 0 0 var(--bq-radius);
}

.bq-search-input:focus {
    outline: none;
    border-color: var(--bq-primary);
}

.bq-search-btn {
    padding: 0 1.25rem;
    background: var(--bq-primary);
    color: var(--bq-white);
    border-radius: 0 var(--bq-radius) var(--bq-radius) 0;
}

.bq-search-btn:hover {
    background: var(--bq-primary-hover);
}

.bq-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bq-recent-post {
    display: flex;
    gap: 1rem;
}

.bq-recent-post-image {
    width: 70px;
    height: 70px;
    border-radius: var(--bq-radius);
    overflow: hidden;
    flex-shrink: 0;
}

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

.bq-recent-post-title {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

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

.bq-recent-post-date {
    font-size: 0.8125rem;
    color: var(--bq-light);
}

.bq-categories-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bq-categories-list li {
    border-bottom: 1px solid var(--bq-border);
}

.bq-categories-list li:last-child {
    border-bottom: none;
}

.bq-categories-list a {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--bq-body);
}

.bq-categories-list a:hover {
    color: var(--bq-primary);
}

.bq-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bq-tag-cloud a {
    padding: 0.5rem 1rem;
    background: var(--bq-warm-grey);
    border-radius: 50px;
    font-size: 0.8125rem;
    color: var(--bq-body);
    transition: var(--bq-transition);
}

.bq-tag-cloud a:hover {
    background: var(--bq-primary);
    color: var(--bq-white);
}

/* ==========================================================================
   PAGE STYLES
   ========================================================================== */
.bq-page-content {
    padding: 5rem 0;
}

.bq-page-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bq-white);
    padding: 3rem;
    border-radius: var(--bq-radius-lg);
    border: 1px solid var(--bq-border);
}

.bq-page-container .entry-content {
    line-height: 1.9;
}

.bq-page-container .entry-content p {
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   404 PAGE STYLES
   ========================================================================== */
.bq-404-section {
    padding: 8rem 0;
    text-align: center;
}

.bq-404-number {
    font-family: var(--bq-font-heading);
    font-size: 10rem;
    font-weight: 700;
    color: var(--bq-primary);
    line-height: 1;
    opacity: 0.3;
}

.bq-404-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bq-404-desc {
    color: var(--bq-light);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.bq-404-search {
    max-width: 400px;
    margin: 0 auto 2rem;
}

/* ==========================================================================
   COMMENTS
   ========================================================================== */
.bq-comments {
    background: var(--bq-white);
    padding: 2.5rem;
    border-radius: var(--bq-radius-lg);
    margin-top: 2rem;
}

.bq-comments-title {
    margin-bottom: 2rem;
}

.comment-list {
    margin-bottom: 2rem;
}

.comment {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--bq-border);
}

.comment:last-child {
    border-bottom: none;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-author img {
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: 600;
}

.comment-content p {
    margin-bottom: 1rem;
}

.comment-reply-link {
    font-size: 0.875rem;
    color: var(--bq-primary);
}

.comment-respond {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bq-border);
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--bq-border);
    border-radius: var(--bq-radius);
    margin-bottom: 1rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--bq-primary);
}

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

.form-submit input {
    width: auto;
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .bq-hero-title {
        font-size: 3rem;
    }
    
    .bq-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bq-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bq-promo-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bq-promo-discount {
        text-align: center;
    }
    
    .bq-about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bq-about-content {
        padding-left: 0;
    }
    
    .bq-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bq-instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .bq-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bq-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .bq-blog-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bq-section {
        padding: 3.5rem 0;
    }
    
    .bq-topbar-contact {
        display: none;
    }
    
    .bq-topbar-social {
        margin: 0 auto;
    }
    
    .bq-nav {
        display: none;
    }
    
    .bq-hamburger {
        display: flex;
    }
    
    .bq-hero {
        min-height: 90vh;
    }
    
    .bq-hero-title {
        font-size: 2.25rem;
    }
    
    .bq-hero-buttons {
        flex-direction: column;
    }
    
    .bq-categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .bq-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .bq-product-filters {
        gap: 0.375rem;
    }
    
    .bq-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .bq-discount-text {
        font-size: 4rem;
    }
    
    .bq-discount-text span {
        font-size: 2rem;
    }
    
    .bq-about-image-accent {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 1rem;
    }
    
    .bq-about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .bq-stat-number {
        font-size: 1.75rem;
    }
    
    .bq-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .bq-instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bq-newsletter-form {
        flex-direction: column;
    }
    
    .bq-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bq-footer-social {
        justify-content: center;
    }
    
    .bq-footer-links {
        align-items: center;
    }
    
    .bq-page-title {
        font-size: 2rem;
    }
    
    .bq-blog-cards {
        grid-template-columns: 1fr;
    }
    
    .bq-post-nav {
        grid-template-columns: 1fr;
    }
    
    .bq-post-nav-next {
        text-align: left;
    }
    
    .bq-404-number {
        font-size: 6rem;
    }
    
    .bq-page-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .bq-hero-title {
        font-size: 1.875rem;
    }
    
    .bq-section-title {
        font-size: 1.875rem;
    }
    
    .bq-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .bq-products-grid {
        grid-template-columns: 1fr;
    }
    
    .bq-about-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bq-instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bq-single-content {
        padding: 1.5rem;
    }
    
    .bq-single-title {
        font-size: 1.5rem;
    }
}
