/*
Theme Name: Honey Birdette Style
Theme URI: https://example.com/honey-birdette-theme
Author: Your Name
Author URI: https://example.com
Description: A luxury WooCommerce theme replicating the Honey Birdette website style - elegant, sensual design with black, gold accents and minimalist luxury aesthetic.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hb-style
Tags: e-commerce, luxury, fashion, lingerie, dark-theme, minimalist
*/

:root {
    --hb-black: #000000;
    --hb-white: #ffffff;
    --hb-charcoal: #1a1a1a;
    --hb-graphite: #333333;
    --hb-gray: #666666;
    --hb-silver: #b3b3b3;
    --hb-light-gray: #f5f5f5;
    --hb-lighter: #fafafa;
    --hb-gold: #c9a962;
    --hb-gold-light: #d4b77a;
    --hb-burgundy: #722f37;
    --hb-blush: #d4a5a5;
    --hb-font-display: 'Playfair Display', Georgia, serif;
    --hb-font-body: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --hb-transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--hb-font-body);
    font-size: 14px;
    color: var(--hb-black);
    background-color: var(--hb-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--hb-black);
    text-decoration: none;
    transition: var(--hb-transition);
}

a:hover {
    color: var(--hb-gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: var(--hb-font-body);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

.hb-site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hb-main-content {
    flex: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--hb-font-display);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 2px; }

/* Header */
.hb-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--hb-white);
    border-bottom: 1px solid var(--hb-light-gray);
}

.hb-header-top {
    background: var(--hb-black);
    color: var(--hb-white);
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hb-header-top a {
    color: var(--hb-white);
}

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

.hb-logo {
    flex-shrink: 0;
}

.hb-logo a {
    display: block;
}

.hb-logo img {
    max-height: 40px;
    width: auto;
}

.hb-logo-text {
    font-family: var(--hb-font-display);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hb-header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hb-main-nav {
    display: flex;
    list-style: none;
    gap: 40px;
}

.hb-main-nav > li > a {
    display: block;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    position: relative;
}

.hb-main-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--hb-black);
    transition: width 0.3s ease;
}

.hb-main-nav > li:hover > a::after,
.hb-main-nav > li.current-menu-item > a::after {
    width: 100%;
}

.hb-header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hb-header-icon {
    font-size: 20px;
    cursor: pointer;
    position: relative;
}

.hb-header-icon a {
    display: block;
}

.hb-header-icon .count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--hb-black);
    color: var(--hb-white);
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hb-search-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.hb-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.hb-search-overlay.active {
    display: flex;
}

.hb-search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--hb-white);
    font-size: 30px;
    cursor: pointer;
}

.hb-search-form {
    width: 100%;
    max-width: 600px;
    padding: 0 30px;
}

.hb-search-input {
    width: 100%;
    padding: 15px 0;
    background: none;
    border: none;
    border-bottom: 1px solid var(--hb-white);
    color: var(--hb-white);
    font-size: 24px;
    outline: none;
}

.hb-search-input::placeholder {
    color: rgba(255,255,255,0.5);
}

/* Navigation Dropdown */
.hb-nav-dropdown {
    position: relative;
}

.hb-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hb-white);
    min-width: 220px;
    padding: 20px 0;
    display: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hb-nav-dropdown:hover .hb-dropdown-menu {
    display: block;
}

.hb-dropdown-menu ul {
    list-style: none;
}

.hb-dropdown-menu ul li {
    padding: 8px 25px;
}

.hb-dropdown-menu ul li a {
    font-size: 13px;
    color: var(--hb-gray);
}

.hb-dropdown-menu ul li a:hover {
    color: var(--hb-black);
}

/* Mega Menu */
.hb-mega-menu {
    position: static;
}

.hb-mega-menu-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--hb-white);
    padding: 40px 0;
    display: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-top: 1px solid var(--hb-light-gray);
}

.hb-mega-menu:hover .hb-mega-menu-content {
    display: block;
}

.hb-mega-menu-inner {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    gap: 50px;
}

.hb-mega-menu-col {
    flex: 1;
}

.hb-mega-menu-col h4 {
    font-family: var(--hb-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--hb-black);
}

.hb-mega-menu-col ul {
    list-style: none;
}

.hb-mega-menu-col ul li {
    margin-bottom: 12px;
}

.hb-mega-menu-col ul li a {
    font-size: 13px;
    color: var(--hb-gray);
}

.hb-mega-menu-col ul li a:hover {
    color: var(--hb-black);
}

.hb-mega-menu-col ul li.new a {
    color: var(--hb-gold);
    font-weight: 600;
}

/* Hero Section */
.hb-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--hb-charcoal);
}

.hb-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.hb-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hb-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--hb-white);
    z-index: 10;
    width: 100%;
    padding: 0 30px;
}

.hb-hero-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.8;
}

.hb-hero-title {
    font-family: var(--hb-font-display);
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.hb-hero-cta {
    display: inline-block;
    padding: 18px 50px;
    background: var(--hb-white);
    color: var(--hb-black);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--hb-white);
    cursor: pointer;
    transition: var(--hb-transition);
}

.hb-hero-cta:hover {
    background: transparent;
    color: var(--hb-white);
}

/* Collection Tiles */
.hb-collections {
    padding: 80px 0;
}

.hb-collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.hb-collection-tile {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--hb-charcoal);
}

.hb-collection-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.85;
}

.hb-collection-tile:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.hb-collection-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--hb-white);
    z-index: 5;
}

.hb-collection-label h3 {
    font-family: var(--hb-font-display);
    font-size: 24px;
    letter-spacing: 3px;
}

/* Featured Sections */
.hb-featured {
    padding: 100px 0;
    text-align: center;
}

.hb-featured-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.hb-featured-image {
    margin-bottom: 40px;
}

.hb-featured-image img {
    margin: 0 auto;
}

.hb-featured-title {
    font-family: var(--hb-font-display);
    font-size: 42px;
    margin-bottom: 20px;
}

.hb-featured-description {
    font-size: 15px;
    color: var(--hb-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Products Grid */
.hb-products {
    padding: 60px 0 80px;
    background: var(--hb-lighter);
}

.hb-section-title {
    font-family: var(--hb-font-display);
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.hb-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hb-product-card {
    background: var(--hb-white);
    transition: var(--hb-transition);
}

.hb-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.hb-product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--hb-light-gray);
}

.hb-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hb-product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--hb-black);
    color: var(--hb-white);
    font-size: 10px;
    padding: 5px 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hb-product-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(0,0,0,0.8);
    color: var(--hb-white);
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.hb-product-card:hover .hb-product-quick-add {
    transform: translateY(0);
}

.hb-product-quick-add button {
    background: none;
    border: none;
    color: var(--hb-white);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}

.hb-product-info {
    padding: 20px;
    text-align: center;
}

.hb-product-title {
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 400;
}

.hb-product-price {
    font-size: 14px;
    color: var(--hb-gray);
}

.hb-product-price .sale {
    color: var(--hb-burgundy);
    margin-right: 10px;
}

/* About Section */
.hb-about {
    background: var(--hb-charcoal);
    color: var(--hb-white);
    padding: 100px 0;
}

.hb-about-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 30px;
}

.hb-about-title {
    font-family: var(--hb-font-display);
    font-size: 36px;
    margin-bottom: 30px;
}

.hb-about-text {
    font-size: 16px;
    line-height: 1.9;
    opacity: 0.85;
    margin-bottom: 40px;
}

.hb-about-link {
    display: inline-block;
    color: var(--hb-white);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--hb-white);
    padding-bottom: 3px;
}

/* Services Section */
.hb-services {
    padding: 80px 0;
    border-bottom: 1px solid var(--hb-light-gray);
}

.hb-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.hb-service-item {
    text-align: center;
    padding: 30px;
}

.hb-service-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.hb-service-title {
    font-size: 18px;
    margin-bottom: 15px;
}

.hb-service-text {
    font-size: 14px;
    color: var(--hb-gray);
    line-height: 1.7;
}

.hb-service-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Newsletter */
.hb-newsletter {
    background: var(--hb-black);
    color: var(--hb-white);
    padding: 80px 0;
    text-align: center;
}

.hb-newsletter-title {
    font-family: var(--hb-font-display);
    font-size: 28px;
    margin-bottom: 15px;
}

.hb-newsletter-subtitle {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.hb-newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.hb-newsletter-input {
    flex: 1;
    padding: 18px 25px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-right: none;
    color: var(--hb-white);
    font-size: 14px;
    outline: none;
}

.hb-newsletter-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.hb-newsletter-btn {
    padding: 18px 35px;
    background: var(--hb-white);
    border: 1px solid var(--hb-white);
    color: var(--hb-black);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--hb-transition);
}

.hb-newsletter-btn:hover {
    background: var(--hb-gold);
    border-color: var(--hb-gold);
    color: var(--hb-white);
}

/* Footer */
.hb-footer {
    background: var(--hb-white);
    padding: 80px 0 30px;
}

.hb-footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--hb-light-gray);
}

.hb-footer-brand {
    max-width: 300px;
}

.hb-footer-logo {
    margin-bottom: 25px;
}

.hb-footer-description {
    font-size: 13px;
    color: var(--hb-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.hb-footer-social {
    display: flex;
    gap: 15px;
}

.hb-footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--hb-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--hb-transition);
}

.hb-footer-social a:hover {
    background: var(--hb-black);
    color: var(--hb-white);
    border-color: var(--hb-black);
}

.hb-footer-column h4 {
    font-family: var(--hb-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hb-footer-column ul {
    list-style: none;
}

.hb-footer-column ul li {
    margin-bottom: 14px;
}

.hb-footer-column ul li a {
    font-size: 13px;
    color: var(--hb-gray);
}

.hb-footer-column ul li a:hover {
    color: var(--hb-black);
}

.hb-footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hb-footer-copyright {
    font-size: 12px;
    color: var(--hb-silver);
}

.hb-footer-links {
    display: flex;
    gap: 25px;
}

.hb-footer-links a {
    font-size: 12px;
    color: var(--hb-gray);
}

/* Mobile Menu */
.hb-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hb-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hb-white);
    z-index: 1500;
    overflow-y: auto;
    padding: 30px;
}

.hb-mobile-nav.active {
    display: block;
}

.hb-mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hb-mobile-nav-menu {
    list-style: none;
    margin-top: 60px;
}

.hb-mobile-nav-menu > li {
    border-bottom: 1px solid var(--hb-light-gray);
}

.hb-mobile-nav-menu > li > a {
    display: block;
    padding: 20px 0;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1200px) {
    .hb-collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hb-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hb-hero-title {
        font-size: 48px;
    }
    
    .hb-main-nav {
        display: none;
    }
    
    .hb-mobile-toggle {
        display: block;
    }
    
    .hb-mega-menu-content {
        display: none !important;
    }
    
    .hb-footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .hb-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hb-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hb-hero {
        height: 70vh;
    }
    
    .hb-hero-title {
        font-size: 36px;
    }
    
    .hb-collections-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hb-footer-main {
        grid-template-columns: 1fr;
    }
    
    .hb-footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .hb-section-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .hb-hero-title {
        font-size: 28px;
    }
    
    .hb-collections-grid {
        grid-template-columns: 1fr;
    }
    
    .hb-products-grid {
        grid-template-columns: 1fr;
    }
    
    .hb-newsletter-form {
        flex-direction: column;
    }
    
    .hb-newsletter-input {
        border-right: 1px solid rgba(255,255,255,0.3);
        margin-bottom: 10px;
    }
}

/* WordPress Required */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption-text {
    font-size: 11px;
    margin: 0;
    padding: 0 4px 5px;
}

.gallery-caption {
    font-size: 11px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.aligncenter {
    display: block;
    margin: 5px auto 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--hb-transition);
}

.btn-primary {
    background: var(--hb-black);
    color: var(--hb-white);
    border: 1px solid var(--hb-black);
}

.btn-primary:hover {
    background: var(--hb-white);
    color: var(--hb-black);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--hb-black);
    color: var(--hb-black);
}

.btn-outline:hover {
    background: var(--hb-black);
    color: var(--hb-white);
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea,
select {
    padding: 12px 15px;
    border: 1px solid var(--hb-light-gray);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--hb-black);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination a,
.pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hb-light-gray);
    font-size: 13px;
}

.pagination .current {
    background: var(--hb-black);
    color: var(--hb-white);
    border-color: var(--hb-black);
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    font-size: 12px;
    color: var(--hb-gray);
}

.breadcrumbs a {
    color: var(--hb-gray);
}

.breadcrumbs a:hover {
    color: var(--hb-black);
}

/* Loading */
.hb-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hb-white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hb-loader::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 2px solid var(--hb-light-gray);
    border-top-color: var(--hb-black);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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