/* ============================================
   Bella Boutique Hire - Static Site Rebuild
   Original theme: Konte (WordPress)
   Primary color: #6bc0c6 (teal)
   Font: Function Pro
   ============================================ */

/* --- Font Faces --- */
@font-face {
    font-family: 'Function Pro';
    src: url('../fonts/functionpro-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Function Pro';
    src: url('../fonts/functionpro-book.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Function Pro';
    src: url('../fonts/functionpro-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Function Pro';
    src: url('../fonts/functionpro-demi.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Function Pro';
    src: url('../fonts/functionpro-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Function Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    line-height: 1.55556;
    color: #161619;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

/* --- Typography --- */
h1, .h1 { font-size: 60px; line-height: 1.2; text-transform: none; color: #161619; font-weight: 400; }
h2, .h2 { font-size: 40px; line-height: 1.3; text-transform: none; color: #161619; font-weight: 400; }
h3, .h3 { font-size: 30px; line-height: 1.4; text-transform: none; color: #161619; font-weight: 400; }
h4, .h4 { font-size: 24px; line-height: 1.5; text-transform: none; color: #161619; font-weight: 400; }
h5, .h5 { font-size: 18px; line-height: 1.5; text-transform: none; color: #161619; font-weight: 500; }
h6, .h6 { font-size: 16px; line-height: 1.5; text-transform: none; color: #161619; font-weight: 500; }

p {
    margin-bottom: 1em;
}

/* --- CSS Variables --- */
:root {
    --primary-color: #6bc0c6;
    --text-color: #161619;
    --text-muted: #838889;
    --bg-white: #fff;
    --bg-light: #f9f9f9;
    --border-color: #e8e8e8;
    --header-height: 120px;
    --header-bottom-height: 90px;
    --header-mobile-height: 60px;
    --campaign-bar-bg: #f7bf9f;
    --sale-green: #3ee590;
    --new-badge: #ffb453;
    --featured-badge: #ff736c;
    --sold-out: #838889;
    --container-max: 1440px;
    --container-padding: 15px;
}

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-fluid {
    width: 100%;
    padding: 0 30px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    border: 1.5px solid var(--text-color);
    background: transparent;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--text-color);
    color: #fff;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: #5aafb5;
    border-color: #5aafb5;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-white {
    background: #fff;
    border-color: #fff;
    color: var(--text-color);
}

.btn-white:hover {
    background: transparent;
    color: #fff;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: #fff;
    box-shadow: 0 1px 10px rgba(0,0,0,0.08);
}

.site-header.transparent {
    background: transparent;
    backdrop-filter: none;
}

.site-header.transparent.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}

.header-main {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

/* Logo */
.site-branding {
    text-align: center;
}

.site-branding .logo img {
    width: 150px;
    height: auto;
}

.site-title,
.site-description {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

/* Navigation */
.header-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-center {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    gap: 0;
}

.nav-menu > li > a {
    display: block;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    text-transform: none;
    transition: color 0.3s;
}

.nav-menu > li > a:hover {
    color: var(--primary-color);
}

/* Desktop nav layout */
.primary-nav .nav-menu {
    display: flex;
    gap: 0;
}

.secondary-nav .nav-menu {
    display: flex;
    gap: 0;
}

/* Dropdown menus */
.nav-menu li {
    position: relative;
}

.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 15px 0;
}

.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu a {
    display: block;
    padding: 8px 25px;
    font-size: 14px;
    color: var(--text-color);
    white-space: nowrap;
}

.nav-menu .sub-menu a:hover {
    color: var(--primary-color);
}

/* Mega menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 900px;
    background: #fff;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.nav-menu li:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu .mega-column > a {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.mega-menu .mega-column ul a {
    display: block;
    padding: 4px 0;
    font-size: 13px;
    color: var(--text-muted);
}

.mega-menu .mega-column ul a:hover {
    color: var(--primary-color);
}

/* Header icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-color);
}

.header-icon svg {
    width: 22px;
    height: 22px;
}

.cart-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: 600;
    background: var(--text-color);
    color: #fff;
    border-radius: 50%;
    padding: 0 4px;
}

/* Hamburger */
.hamburger-menu {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger-inner {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    position: relative;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-color);
}

.hamburger-inner::before { top: -7px; }
.hamburger-inner::after { top: 7px; }

/* Search icon */
.header-search-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.header-search-icon svg {
    width: 20px;
    height: 20px;
}

/* Mobile header */
.header-mobile {
    display: none;
    height: var(--header-mobile-height);
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

/* ============================================
   CAMPAIGN BAR
   ============================================ */
.campaign-bar {
    background: var(--campaign-bar-bg);
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
    margin-top: var(--header-height);
}

.campaign-bar .tagline {
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 8px;
}

.campaign-bar a {
    color: var(--text-color);
    text-decoration: underline;
    margin-left: 8px;
    font-weight: 500;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-content .btn {
    margin-top: 30px;
}

/* With campaign bar offset */
.has-campaign-bar .hero {
    margin-top: 0;
}

/* ============================================
   TAGLINE SECTION
   ============================================ */
.tagline-section {
    text-align: center;
    padding: 80px 30px;
}

.tagline-section h2 {
    font-size: 30px;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   HOLIDAY HIRE PACKAGE
   ============================================ */
.holiday-package {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.holiday-package .overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,15,15,0.47);
}

.holiday-package .content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 70px;
    margin: 120px 0 0 auto;
    border: 1px solid #fff;
    color: #fff;
}

.holiday-package .content h2 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 20px;
}

.holiday-package .content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ============================================
   FEATURED PRODUCTS
   ============================================ */
.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 30px;
    font-weight: 400;
}

.products-section {
    padding: 60px 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    position: relative;
}

.product-card .product-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 680/920;
    background: #f5f5f5;
}

.product-card .product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-thumbnail img {
    transform: scale(1.05);
}

.product-card .product-actions {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.product-action-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.product-card .product-info {
    padding: 15px 0;
    text-align: center;
}

.product-card .product-title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
}

.product-card .product-title a {
    color: var(--text-color);
}

.product-card .product-title a:hover {
    color: var(--primary-color);
}

.product-card .product-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}

/* Product badges */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.5px;
}

.badge-sale { background: var(--sale-green); }
.badge-new { background: var(--new-badge); }
.badge-featured { background: var(--featured-badge); }
.badge-sold-out { background: var(--sold-out); }

/* See all products button */
.see-all {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 80px 30px;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    text-align: center;
    padding: 30px 20px;
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-card .quote {
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.testimonial-card .author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
}

.testimonial-card .author-name {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.instagram-section {
    padding: 60px 0;
    text-align: center;
}

.instagram-section h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.instagram-item:hover .overlay {
    opacity: 1;
}

/* ============================================
   CRYSTALBROOK PARTNERSHIP
   ============================================ */
.partnership-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.partnership-image {
    background-size: cover;
    background-position: center;
}

.partnership-content {
    display: flex;
    align-items: center;
    padding: 60px 70px;
    border: 1px solid var(--text-color);
    margin: 120px 50px;
}

.partnership-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.partnership-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    border-top: 1px solid var(--border-color);
}

.footer-widgets {
    padding: 50px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: var(--container-max);
    margin: 0 auto;
    font-size: 14px;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: var(--text-color);
    transition: color 0.3s;
}

.footer-widget ul li a:hover {
    color: var(--primary-color);
}

.footer-widget p {
    color: var(--text-color);
    margin-bottom: 5px;
}

.footer-widget a {
    color: var(--primary-color);
}

.footer-bottom {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--primary-color);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: var(--text-color);
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--primary-color);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 120px 30px 60px;
    text-align: center;
    margin-top: var(--header-height);
}

.page-header h1 {
    font-size: 60px;
    font-weight: 400;
}

.page-header .subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Page with image header */
.page-header-image {
    margin-top: var(--header-height);
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-header-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

.page-header-image h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 60px;
}

/* ============================================
   CONTENT PAGES
   ============================================ */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.page-content h2 {
    margin: 40px 0 20px;
}

.page-content h3 {
    margin: 30px 0 15px;
}

.page-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

.page-content ul, .page-content ol {
    margin: 15px 0 25px 30px;
    color: var(--text-muted);
}

.page-content ul li, .page-content ol li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.page-content ul {
    list-style: disc;
}

.page-content ol {
    list-style: decimal;
}

/* Two column content */
.content-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-two-col img {
    border-radius: 0;
}

/* ============================================
   SHOP / PRODUCT LISTING
   ============================================ */
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.shop-header .result-count {
    font-size: 14px;
    color: var(--text-muted);
}

.shop-filter {
    display: flex;
    gap: 15px;
    align-items: center;
}

.shop-filter select {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 14px;
    background: #fff;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs .separator {
    margin: 0 8px;
}

/* ============================================
   SINGLE PRODUCT PAGE
   ============================================ */
.single-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-gallery {
    position: relative;
}

.product-gallery .main-image {
    width: 100%;
    aspect-ratio: 680/920;
    object-fit: cover;
    background: #f5f5f5;
}

.product-gallery .thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.product-gallery .thumb {
    width: 80px;
    height: 108px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.product-gallery .thumb:hover,
.product-gallery .thumb.active {
    border-color: var(--text-color);
}

.product-summary {
    padding-top: 20px;
}

.product-summary h1 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 15px;
}

.product-summary .price {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
    display: block;
}

.product-summary .description {
    margin-bottom: 30px;
    color: var(--text-muted);
    line-height: 1.8;
}

.product-summary .add-to-cart {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-summary .quantity-input {
    width: 80px;
    padding: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    font-family: inherit;
    font-size: 16px;
}

.product-summary .btn-add-cart {
    flex: 1;
    padding: 14px 30px;
    background: var(--primary-color);
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.product-summary .btn-add-cart:hover {
    background: #5aafb5;
}

.product-meta {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-muted);
}

.product-meta span {
    display: block;
    margin-bottom: 8px;
}

.product-meta a {
    color: var(--primary-color);
}

/* Related products */
.related-products {
    padding: 60px 30px;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 30px 80px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   BLOG / JOURNAL
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card .thumbnail {
    aspect-ratio: 16/10;
    overflow: hidden;
    margin-bottom: 15px;
}

.blog-card .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .thumbnail img {
    transform: scale(1.05);
}

.blog-card .post-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.blog-card .post-title a:hover {
    color: var(--primary-color);
}

.blog-card .post-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.blog-card .post-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   SIZING / MODELS PAGE
   ============================================ */
.size-chart {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.size-chart th,
.size-chart td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    font-size: 14px;
}

.size-chart th {
    background: var(--bg-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    padding: 60px 30px 30px;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-color);
}

.mobile-nav-menu > li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-menu > li > a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 400;
}

.mobile-nav-menu .mobile-sub-toggle {
    float: right;
    font-size: 20px;
    cursor: pointer;
    padding: 0 10px;
}

.mobile-nav-menu .sub-menu {
    display: none;
    padding-left: 20px;
}

.mobile-nav-menu .sub-menu.active {
    display: block;
}

.mobile-nav-menu .sub-menu a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-muted);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 40px 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.pagination a:hover {
    border-color: var(--text-color);
}

.pagination .current {
    background: var(--text-color);
    border-color: var(--text-color);
    color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
    h1, .h1 { font-size: 44px; }
    .page-header h1 { font-size: 44px; }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .holiday-package .content {
        padding: 40px;
        margin-top: 80px;
    }
}

@media (max-width: 991px) {
    :root {
        --header-height: 60px;
    }

    h1, .h1 { font-size: 36px; }
    h2, .h2 { font-size: 30px; }

    .header-main {
        display: none;
    }

    .header-mobile {
        display: flex;
    }

    .hamburger-menu {
        display: block;
    }

    .campaign-bar {
        margin-top: var(--header-mobile-height);
    }

    .hero {
        margin-top: var(--header-mobile-height);
        min-height: 400px;
        height: 60vh;
    }

    .page-header {
        margin-top: var(--header-mobile-height);
        padding: 80px 20px 40px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-product {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .partnership-section {
        grid-template-columns: 1fr;
    }

    .partnership-content {
        margin: 0;
        padding: 40px 30px;
    }

    .content-two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .holiday-package .content {
        margin: 30px auto;
        max-width: 90%;
        padding: 30px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    h1, .h1 { font-size: 28px; }
    h2, .h2 { font-size: 24px; }
    h3, .h3 { font-size: 20px; }

    body { font-size: 16px; }

    .hero {
        min-height: 350px;
        height: 50vh;
    }

    .page-header h1 { font-size: 28px; }

    .tagline-section {
        padding: 50px 20px;
    }

    .tagline-section h2 {
        font-size: 22px;
    }

    .footer-widgets {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .holiday-package {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card .product-info {
        padding: 10px 0;
    }

    .product-card .product-title {
        font-size: 13px;
    }

    .product-card .product-price {
        font-size: 14px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary-color); }
.text-muted { color: var(--text-muted); }
.mt-0 { margin-top: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.hidden { display: none; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}
