/*
Theme Name: Aahana's by Nidhi Mehra
Theme URI: https://aahanasbynidhimehra.com
Author: Sankalp Palit
Author URI: https://www.sankalppalit.com
Description: A luxurious, editorial WordPress theme inspired by the Aahana's Shopify store. Features a boxed layout, split navigation, and rich footer.
Version: 1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aahanas
*/

:root {
    --primary-color: #2b2b2b; /* Dark Charcoal Text */
    --background-color: #fcfbf9; /* Cream/Off-white Background */
    --background-alt: #c6aa7b; /* Gold/Beige Top Bar */
    --accent-color: #a98d5c; /* Darker Gold Accent */
    --border-color: #e5e0d8; /* Warm light border */
    --gold-accent: #c6aa7b; /* Gold */
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--primary-color);
    background-color: var(--background-color); /* Full page white background */
    line-height: 1.6;
}

/* (Boxed layout for the entire site removed in favor of boxed post section) */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    margin-top: 0;
    line-height: 1.3;
}

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

a:hover {
    color: var(--accent-color);
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: var(--background-alt); /* Gold Top Bar */
    color: var(--primary-color);
    font-size: 0.70rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar a {
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.top-bar a:hover {
    color: #ffffff; /* High contrast white hover on the gold background */
}

.top-bar a:first-child {
    margin-left: 0;
}

/* Split Header */
.split-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 3%; /* Slightly less outer padding to give long links more room */
    border-bottom: 1px solid var(--border-color);
    background: var(--background-color);
}

.nav-left, .nav-right {
    flex: 1;
    min-width: 0;
}

.nav-left ul {
    justify-content: flex-end;
    padding-right: 0;
}

.nav-right ul {
    justify-content: flex-start;
    padding-left: 0;
}

/* Typographic Central Logo */
.site-branding {
    text-align: center;
    flex-shrink: 0;
    padding: 0 30px; /* Small gap to the central text, as requested */
}

.site-branding a {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 2.8rem; /* Slightly smaller to prevent making the header tall */
    line-height: 1;
    font-weight: 400;
    color: #111;
    letter-spacing: 1px;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    margin-top: 5px;
    color: #333;
    letter-spacing: 0.5px;
}

.site-branding .site-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 300;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: clamp(6px, 1vw, 15px); /* Dynamically scales the gap down on smaller screens */
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-size: clamp(0.5rem, 0.8vw, 0.85rem); /* Dynamically shrinks text to prevent line breaks */
    letter-spacing: clamp(0.5px, 0.1vw, 1.5px);
    white-space: nowrap; /* Strict rule to absolutely prevent line breaking */
}

.main-navigation li {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1vw, 15px); /* Dynamically scales the gap down on smaller screens */
    white-space: nowrap;
}

/* Navigation Dividers */
.main-navigation li:not(:last-child)::after {
    content: "|";
    color: #999;
    font-weight: 300;
}

/* -------------------------------------------------------------------------- */
/* Hero Section (Redesigned) */
/* -------------------------------------------------------------------------- */

.hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-color: #080808; /* Deep dark base */
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%; /* Image primarily on the right */
    height: 100%;
    object-fit: cover;
    object-position: right center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient fading from dark left to transparent right */
    background: linear-gradient(to right, #080808 30%, rgba(8,8,8,0.7) 50%, transparent 80%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: border-box;
}

.hero-text-block {
    max-width: 650px;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 30px;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 400;
}

.btn-outline-gold {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid var(--gold-accent);
    background-color: transparent;
    color: var(--gold-accent);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: var(--gold-accent);
    color: #000;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .hero-bg-image {
        width: 100%;
    }
    .hero-overlay {
        background: linear-gradient(to right, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.7) 60%, transparent 100%);
    }
    .hero-section h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: auto;
        padding-bottom: 60px;
    }
    .hero-bg-image {
        position: relative;
        width: 100%;
        height: auto; /* Auto height based on natural aspect ratio */
        object-fit: cover;
    }
    .hero-overlay {
        /* Soft gradient fading into the solid dark background */
        background: linear-gradient(to bottom, rgba(8,8,8,0) 0%, rgba(8,8,8,0.8) 30%, rgba(8,8,8,1) 100%);
        pointer-events: none;
    }
    .hero-content {
        text-align: center;
        padding-top: 30px; /* Small, natural gap below the image */
    }
    .hero-section h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    .hero-text-block {
        margin: 0 auto;
    }
    .hero-description {
        margin-bottom: 30px;
    }
    .hero-actions {
        margin-top: 20px;
        padding-bottom: 20px;
    }
}

/* About The Founder (Brand Intro) */
.brand-intro {
    background-color: #ffffff; /* Pure white for an ultra-clean, sophisticated gallery feel */
    padding: 40px 5%; /* Compact yet breathable */
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--border-color); /* Subtle framing */
    border-bottom: 1px solid var(--border-color);
}

.intro-container {
    max-width: 1050px;
    width: 100%;
    display: flex;
    align-items: stretch; /* Ensures the vertical line spans the height */
    gap: 60px;
}

.intro-image-col {
    flex: 0 0 280px; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* =========================================
   SINGLE POST / EDITORIAL STYLES
   ========================================= */

.editorial-single-post {
    margin-bottom: 60px;
}

.editorial-post-header {
    text-align: center;
    max-width: 1200px;
    margin: 60px auto 40px auto;
    padding: 0 5%;
}

.editorial-post-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--gold-accent);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.editorial-post-meta {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #111;
    letter-spacing: 1px;
}

.editorial-featured-image {
    text-align: center;
    margin-bottom: 50px;
}

.editorial-featured-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.editorial-post-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
}

.editorial-post-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #111;
    font-weight: 400;
    margin: 40px 0 20px 0;
}

.editorial-post-content p {
    margin-bottom: 20px;
}

.editorial-post-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold-accent);
    font-style: italic;
    text-align: center;
    margin: 40px 0;
    padding: 0 40px;
    border-left: none;
    line-height: 1.4;
}

/* Delicate vertical gold separator line (Editorial touch) */
.intro-image-col::after {
    content: '';
    position: absolute;
    right: -30px; /* Positioned exactly in the middle of the 60px gap */
    top: 15%;
    bottom: 15%;
    width: 1px;
    background-color: rgba(198, 170, 123, 0.4); /* Faint gold */
}

/* =========================================
   SUGGESTED POSTS (READ NEXT)
   ========================================= */

.suggested-posts-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 5%;
}

.suggested-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #111;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
}

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

@media (max-width: 900px) {
    .suggested-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.suggested-item {
    text-align: center;
}

.suggested-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.suggested-thumbnail {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 20px;
    background: #FAFAFA;
}

.suggested-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.suggested-link:hover .suggested-thumbnail img {
    transform: scale(1.05);
}

.suggested-post-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #111;
    line-height: 1.4;
    transition: color 0.3s ease;
    font-weight: 400;
}

.suggested-link:hover .suggested-post-title {
    color: var(--gold-accent);
}



.about-logo-left {
    width: 100%;
    max-width: 220px; /* Perfectly sized to be elegant, not overwhelming */
    height: auto;
    display: block;
}

.intro-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.about-section-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 300; 
    letter-spacing: 4px; /* Chic, airy letter spacing */
    text-transform: uppercase; /* High-fashion editorial look */
}

/* Introduction Text */
.intro-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #555; 
    line-height: 1.75;
    margin-bottom: 15px; 
    font-weight: 400;
    text-align: justify; /* Magazine-style justified text */
}

.intro-text p {
    margin-bottom: 15px;
}

.drop-cap {
    float: left;
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 0.8;
    padding-top: 6px;
    padding-right: 12px;
    color: var(--gold-accent);
}

.intro-signoff {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.signoff-signature {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem; /* Smaller signature */
    color: #111;
    line-height: 1;
    margin-bottom: 2px;
}

.signoff-title {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

.intro-signoff {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.signoff-name {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--gold-accent);
    font-weight: 300;
}

.signoff-title {
    font-family: var(--font-body);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #9A958F;
    font-weight: 400;
}

/* FAQ Section - Dual Column Layout */
.faq-section {
    background-color: #FAFAFA;
    padding: 20px 5%;
}

.faq-split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 60% 35%;
    gap: 5%;
    align-items: center;
}

@media (max-width: 1024px) {
    .faq-split-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.faq-section-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #111;
    margin-bottom: 10px;
    font-weight: 300;
}

.faq-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #666;
    letter-spacing: 1px;
}

.faq-accordion {
    border-top: 1px solid var(--border-color);
}

/* Enquiry Form Card */
.enquiry-card {
    background: #fff;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    box-sizing: border-box;
}

.enquiry-heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 10px;
    font-weight: 400;
}

.enquiry-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.enquiry-contact-details {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.enquiry-contact-details p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 8px;
}

.enquiry-contact-details strong {
    color: #111;
    font-weight: 600;
}

.btn-directions {
    display: inline-block;
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: 1px solid var(--gold-accent);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.btn-directions:hover {
    color: #111;
    border-bottom-color: #111;
}

.form-group {
    margin-bottom: 20px;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    border: 1px solid #ddd;
    background: #fafafa;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: var(--gold-accent);
    background: #fff;
}

.btn-enquiry {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    background: #111;
    color: #fff;
    border: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.enquiry-response {
    margin-top: 15px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-align: center;
}

.enquiry-response.success {
    color: var(--gold-accent);
}

.enquiry-response.error {
    color: #ff6b6b;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px 0;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #111;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover, .faq-question.active {
    color: var(--gold-accent);
}

.faq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 1px;
}

.faq-icon::after {
    top: 0;
    left: 6px;
    width: 1px;
    height: 14px;
}

.faq-question.active .faq-icon::after {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding-bottom: 15px;
    padding-right: 40px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

/* Blog Grid Section */
.blog-grid-section {
    background-color: #ffffff;
    padding: 60px 5% 100px;
}

/* Featured Story Section */
.featured-story-section {
    background-color: #f7f6f4;
    padding: 40px 5%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.featured-story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.featured-story-content {
    flex: 1;
    padding-right: 20px;
}

.featured-story-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 20px;
}

.featured-story-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: #111;
    line-height: 1.2;
    margin-bottom: 20px;
}

.featured-story-excerpt {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 400px;
}

.featured-story-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-accent);
    text-decoration: none;
    border-bottom: 2px solid #e0c88f; /* subtle gold line */
    padding-bottom: 5px;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.featured-story-link:hover {
    color: #000;
    border-bottom-color: #000;
}

.featured-story-image {
    flex: 1.4;
}

.featured-story-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .featured-story-container {
        gap: 40px;
    }
    .featured-story-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .featured-story-container {
        flex-direction: column-reverse; /* image on top on mobile */
        gap: 30px;
    }
    .featured-story-content {
        padding-right: 0;
    }
    .featured-story-title {
        font-size: 2.2rem;
    }
}

/* Blog Filters Form */
.blog-filters-bar {
    max-width: 1400px;
    margin: 0 auto 50px auto;
}

.blog-filters-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-dropdown {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    border: none;
    padding: 10px 30px 10px 0;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L5 5L9 1" stroke="%23333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 5px center;
    outline: none;
    transition: color 0.3s ease;
}

.filter-dropdown:hover, .filter-dropdown:focus {
    color: var(--gold-accent);
}

.filter-dropdown option {
    background: #fff;
    color: #333;
    padding: 10px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.load-more-container .btn-outline {
    cursor: pointer;
    color: var(--gold-accent) !important;
    border: 1px solid var(--gold-accent);
    background-color: transparent;
    padding: 16px 45px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.load-more-container .btn-outline:hover {
    background-color: var(--gold-accent);
    color: #111 !important;
    box-shadow: 0 10px 20px rgba(198, 170, 123, 0.2);
}

.load-more-container .btn-outline.loading {
    opacity: 0.5;
    cursor: wait;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .split-header {
        flex-direction: column;
        gap: 20px;
    }
    .nav-left, .nav-right, .site-branding {
        flex: auto;
    }
    .nav-right ul, .nav-left ul {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.post-card {
    display: flex;
    flex-direction: column;
}

.post-card-image-link img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.post-content-wrap {
    text-align: center; /* Center everything like a high-end magazine cover */
    flex-grow: 1;
}

.post-card-date {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.post-title {
    font-family: var(--font-heading);
    font-size: 1.3em;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.post-title a {
    color: #111;
    text-decoration: none;
}

.post-title a:hover {
    color: var(--gold-accent);
}

.post-card-author {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

/* Single Post */
.single-post-header {
    text-align: center;
    padding: 60px 5% 40px;
}

.single-post-title {
    font-size: 3rem;
    max-width: 900px;
    margin: 0 auto 20px;
}

.single-post-meta {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.single-featured-image {
    width: 100%;
    max-height: 80vh;
    object-fit: cover;
    margin-bottom: 40px;
}

.single-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
    font-size: 1.1rem;
}

.single-content p {
    margin-bottom: 1.5em;
}

.single-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold-accent);
    text-align: center;
    border: none;
    margin: 40px 0;
    line-height: 1.4;
}

/* Rich Footer */
.site-footer {
    background: #111;
    color: #fff;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 5%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h3 {
    color: var(--gold-accent);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
}

.footer-col a:hover {
    color: #fff;
}

.site-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    font-size: 0.85rem;
    color: #999;
    flex-wrap: wrap; /* ensures it stacks gracefully on mobile */
}

.site-info p {
    margin: 0;
}

.site-info a {
    color: var(--gold-accent);
}

/* The Aahana's Experience Section */
.experience-section {
    background-color: #121212; 
    color: #fff;
    padding: 100px 5%;
    border-top: 1px solid #222;
}

.experience-container {
    max-width: 1300px;
    padding: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.experience-intro {
    flex: 0 0 35%;
    padding-right: 40px;
}

.experience-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.experience-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.experience-excerpt {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 40px;
}

.experience-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid var(--gold-accent);
    padding-bottom: 5px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.experience-link:hover {
    color: var(--gold-accent);
}

.experience-steps {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    border-left: 1px solid #333;
}

.step-item {
    flex: 1;
    text-align: center;
    border-right: 1px solid #333;
    padding: 0 30px;
}

.step-item:last-child {
    border-right: none;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    color: var(--gold-accent);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
}

.step-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .experience-container {
        flex-direction: column;
        gap: 50px;
    }
    .experience-intro {
        flex: auto;
        padding-right: 0;
        text-align: center;
    }
    .experience-steps {
        border-left: none;
        border-top: 1px solid #333;
        padding-top: 50px;
    }
}

@media (max-width: 900px) {
    .experience-steps {
        flex-wrap: wrap;
    }
    .step-item {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid #333;
        padding: 30px;
    }
    .step-item:nth-child(odd) {
        border-right: 1px solid #333;
    }
    .step-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 600px) {
    .step-item {
        flex: 0 0 100%;
        border-right: none !important;
        border-bottom: 1px solid #333 !important;
        padding: 30px 0;
    }
    .step-item:last-child {
        border-bottom: none !important;
    }
    .experience-title {
        font-size: 2.5rem;
    }
}

/* Instagram Section */
.instagram-section {
    background-color: #f7f6f4;
    padding: 80px 0;
}

.instagram-header-container {
    max-width: 96%;
    margin: 0 auto 30px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.instagram-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    margin: 0;
}

.instagram-link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: var(--gold-accent);
}

.instagram-feed-grid {
    display: flex;
    width: 100%;
    gap: 8px; /* Small gap like in the image */
    padding: 0 2%; /* Matches header max-width */
}

.insta-item {
    flex: 1;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    display: block;
}

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

.insta-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .instagram-feed-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    .insta-item {
        flex: 0 0 calc(25% - 8px);
        margin-bottom: 8px;
    }
}

@media (max-width: 600px) {
    .instagram-header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .insta-item {
        flex: 0 0 calc(50% - 8px);
    }
    .insta-item:nth-child(7) {
        display: none;
    }
}

/* Newsletter Section */
.newsletter-section {
    background-color: #111; /* Extremely chic dark background */
    color: #fff;
    padding: 100px 5%;
    text-align: center;
}

.newsletter-container {
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: #fff;
}

.newsletter-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #bbb;
    margin-bottom: 40px;
    letter-spacing: 1px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 500px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.newsletter-form:focus-within {
    border-bottom-color: var(--gold-accent);
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 15px 0;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 0 10px;
    transition: color 0.3s ease;
}

.newsletter-form button:hover {
    color: var(--gold-accent);
}

.newsletter-message {
    margin-top: 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 1px;
    min-height: 20px;
}

.newsletter-message.success {
    color: var(--gold-accent);
}

.newsletter-message.error {
    color: #ff6b6b;
}

/* =========================================
   AUTHOR BIO BOX (EEAT)
   ========================================= */
.author-bio-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fdfbf7;
    border: 1px solid #eee;
    padding: 40px 30px;
    margin: 60px 0;
    border-radius: 8px;
    gap: 20px;
}

.author-avatar img {
    border-radius: 50%;
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    margin: 0 0 10px 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #111;
}

.author-description {
    margin: 0 0 15px 0;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.author-link {
    font-size: 0.9rem;
    color: var(--gold-accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.author-link:hover {
    color: #111;
}

@media (max-width: 600px) {
    .author-bio-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}


/* =========================================
   SHOP BY COLLECTION SECTION
   ========================================= */

.shop-collection-section {
    background-color: #fdfcf9;
    padding: 80px 2%;
}

.shop-collection-header {
    text-align: center;
    margin-bottom: 50px;
}

.collection-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #111;
}

.collection-title .line {
    flex: 1;
    height: 1px;
    background-color: #e8e0d5;
    margin: 0 30px;
    max-width: 400px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 100%;
    margin: 0 auto;
}

.collection-card {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background-color: #111;
}

.collection-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
    z-index: 1;
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay from bottom to top for portrait format */
    background: linear-gradient(to top, rgba(15, 10, 5, 0.95) 0%, rgba(15, 10, 5, 0.4) 60%, transparent 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

.collection-content {
    position: relative;
    z-index: 3;
    padding: 10% 10% 12% 10%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align content to the bottom for portrait cards */
    align-items: center; /* Center text */
    text-align: center;
    box-sizing: border-box;
}

.collection-content h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
}

.btn-explore {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #fff;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.collection-card:hover .collection-bg {
    transform: scale(1.05);
}

.collection-card:hover .collection-overlay {
    background: linear-gradient(to right, rgba(15, 10, 5, 0.95) 0%, rgba(15, 10, 5, 0.6) 70%, transparent 100%);
}

.collection-card:hover .btn-explore {
    background-color: #fff;
    color: #111;
}

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

@media (max-width: 600px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile so 2:3 ratio isn't massively tall */
        gap: 10px;
    }
    .collection-card {
        aspect-ratio: 2 / 3;
    }
    .collection-title .line {
        margin: 0 15px;
    }
}

/* =========================================
   FAQ SECTION
   ========================================= */

/* Default State: Hide Mobile Header on Desktop */
.mobile-header-wrapper {
    display: none;
}

/* On screens smaller than 1024px (Tablets & Mobile) */
@media (max-width: 1024px) {
    /* Hide Desktop Header */
    .desktop-header-wrapper {
        display: none !important;
    }
    
    /* Show Mobile Header */
    .mobile-header-wrapper {
        display: block;
        position: relative;
        z-index: 1000;
        background: #fff;
        border-bottom: 1px solid #eee;
    }
    
    /* Thin Mobile Top Bar */
    .mobile-top-bar {
        background: var(--background-alt);
        color: var(--primary-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 15px;
        font-size: 0.70rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .mobile-top-bar-right {
        display: flex;
        gap: 15px;
    }
    
    .mobile-top-bar a {
        color: var(--primary-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        transition: color 0.3s;
    }
    
    .mobile-top-bar a:hover {
        color: var(--gold-accent);
    }
    
    /* Mobile Main Header */
    .mobile-masthead {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 15px;
    }
    
    .mobile-menu-toggle {
        background: none;
        border: none;
        cursor: pointer;
        color: #111;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile Navigation Dropdown */
    .mobile-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }
    
    .mobile-navigation.is-open {
        max-height: 100vh; /* Allow it to fully open */
        overflow-y: auto;
    }
    
    .mobile-nav-inner {
        padding: 20px;
    }
    
    .mobile-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu-list li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .mobile-menu-list li:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-list a {
        display: block;
        padding: 8px 0;
        color: #111;
        text-decoration: none;
        font-family: var(--font-heading);
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .mobile-menu-list a:hover {
        color: var(--gold-accent);
    }
}

/* Hero Section Mobile Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .btn-outline {
        padding: 10px 20px;
        font-size: 0.65rem;
        white-space: nowrap;
        letter-spacing: 2px;
    }
    
    /* About Section Mobile Adjustments */
    .intro-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .intro-image-col {
        flex: 0 0 auto;
        padding-bottom: 20px;
    }
    
    .about-logo-left {
        max-width: 140px;
        margin: 0 auto;
    }
    
    .intro-image-col::after {
        /* Convert vertical gold line to horizontal line under logo */
        right: 0;
        left: 0;
        top: auto;
        bottom: 0;
        width: 80px;
        height: 1px;
        margin: 0 auto;
    }
    
    .about-section-heading {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .intro-text-col {
        padding: 0 10px;
    }
    
    .signoff-signature {
        font-size: 1.8rem;
    }
    
    .signoff-title {
        font-size: 0.55rem;
        letter-spacing: 1px;
        white-space: nowrap;
    }
    
    /* Blog Filters Mobile Adjustments */
    .blog-filters-form {
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .filter-dropdown {
        font-size: 0.65rem;
        padding: 5px 15px 5px 0;
        letter-spacing: 1px;
        background-position: right 2px center;
    }
}

@media (max-width: 600px) {
    .faq-section-heading,
    .newsletter-heading {
        font-size: 1.8rem !important;
        font-weight: 400 !important;
        white-space: nowrap !important;
    }
    .site-info {
        justify-content: center !important;
        text-align: center !important;
    }
    .site-info .designer-credit {
        display: none !important;
    }
    .editorial-post-title {
        font-size: 2rem !important;
    }
    .editorial-post-content h2 {
        font-size: 1.8rem !important;
    }
    .editorial-post-content h3 {
        font-size: 1.5rem !important;
    }
    .shop-title {
        font-size: 1.8rem !important;
    }
    .suggested-title {
        font-size: 2rem !important;
    }
    .suggested-post-title {
        font-size: 1.1rem !important;
    }
}

/* =========================================
   CATEGORY HERO BANNER
   ========================================= */
.category-hero-banner {
    background-color: #171717; /* Dark charcoal */
    color: #ffffff;
    text-align: center;
    padding: 5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.category-hero-subtitle {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b49b65; /* Muted gold */
    margin-bottom: 1.2rem;
}

.category-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #f5f5f5;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.category-hero-desc {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    line-height: 2;
    color: #cccccc;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .category-hero-banner {
        padding: 4rem 1.5rem;
    }
    .category-hero-title {
        font-size: 2.5rem;
    }
}

/* =========================================
   SMASH BALLOON INSTAGRAM FEED OVERRIDES
   ========================================= */
#sbi_load {
    display: none !important; /* Hide the load more button since we just want 7 images */
}

/* =========================================
   DARK THEME OVERRIDES FOR FAQ SECTION
   ========================================= */
.faq-section-dark {
    background-color: #171717;
    padding: 5rem 5%;
}

.faq-section-dark .faq-section-heading {
    color: #ffffff;
}

.faq-section-dark .faq-subtitle {
    color: #cccccc;
}

.faq-section-dark .faq-accordion {
    border-top-color: #333333;
}

.faq-section-dark .faq-item {
    border-bottom-color: #333333;
}

.faq-section-dark .faq-question {
    color: #eeeeee;
}

.faq-section-dark .faq-question:hover, 
.faq-section-dark .faq-question.active {
    color: #b49b65;
}

.faq-section-dark .faq-answer-inner {
    color: #aaaaaa;
}

.faq-section-dark .enquiry-card {
    background-color: #1a1a1a;
    border-color: #333333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.faq-section-dark .enquiry-heading {
    color: #ffffff;
}

.faq-section-dark .enquiry-text {
    color: #cccccc;
}

.faq-section-dark .enquiry-contact-details {
    border-bottom-color: #333333;
}

.faq-section-dark .enquiry-contact-details p {
    color: #cccccc;
}

.faq-section-dark .enquiry-contact-details strong {
    color: #ffffff;
}

.faq-section-dark .btn-directions {
    color: #b49b65;
    border-bottom-color: #b49b65;
}

.faq-section-dark .btn-directions:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.faq-section-dark .enquiry-form input,
.faq-section-dark .enquiry-form textarea {
    background-color: #222222;
    border-color: #333333;
    color: #ffffff;
}

.faq-section-dark .enquiry-form input:focus,
.faq-section-dark .enquiry-form textarea:focus {
    border-color: #b49b65;
    background-color: #2a2a2a;
}

.faq-section-dark .enquiry-form input::placeholder,
.faq-section-dark .enquiry-form textarea::placeholder {
    color: #777777;
}

.faq-section-dark .btn-enquiry {
    background-color: #b49b65;
    color: #ffffff;
}

.faq-section-dark .btn-enquiry:hover {
    background-color: #d4af37;
}

/* =========================================
   SHOPIFY INTEGRATION SECTION
   ========================================= */
.shopify-section {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.shopify-section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopify-section-title::before,
.shopify-section-title::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ddd;
    margin: 0 20px;
    max-width: 300px;
}

.shopify-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
}

@media (max-width: 1024px) {
    .shopify-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .shopify-grid {
        grid-template-columns: 1fr;
    }
}

.shopify-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 133%; /* 3:4 aspect ratio */
}

.shopify-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    transition: transform 0.5s ease;
}

.shopify-card:hover .shopify-card-image {
    transform: scale(1.05);
}

.shopify-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 20px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.shopify-card-title {
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.shopify-card-btn {
    display: inline-block;
    padding: 8px 25px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
}

.shopify-card-btn:hover {
    background: #ffffff;
    color: #000000;
}

#sb_instagram {
    width: 100% !important;
    padding-bottom: 0 !important;
}

#sb_instagram .sbi_item {
    padding: 0 !important; /* Remove inner padding */
}

/* Ensure our grid takes precedence if plugin is active */
.instagram-feed-grid #sb_instagram {
    display: block;
    width: 100vw;
    max-width: 100%;
}

