/* ===================================
   MILIBERRY THEME STYLES - PRINT ON DEMAND
   =================================== */

/* ===================================
   GLOBAL STYLES
   =================================== */

:root {
    /* Colors - Updated for print-on-demand theme */
    --primary-color: #6366F1;
    --secondary-color: #10B981;
    --accent-color: #F59E0B;
    --success-color: #34D399;
    --warning-color: #FBBF24;
    --error-color: #EF4444;
    --dark-color: #1F2937;
    --light-color: #F9FAFB;
    --white: #FFFFFF;
    --black: #0F0F12;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --purple-500: #8B5CF6;
    --purple-600: #7C3AED;
    --purple-700: #6D28D9;
    --pink-500: #EC4899;
    --pink-600: #DB2777;
    --lightgreen: #C7FFC5;

    /* Typography */
    --font-primary: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    --spacing-xxxl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--white);
}
article.page,
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3 {
    font-weight: 500;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--gray-600);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gray-900);
}

.highlight {
    color: var(--secondary-color);
    font-weight: 500;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    max-width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) var(--spacing-xxl);
    border: none;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    gap: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.btn-primary {
    background-color: var(--black);
    color: white;
    border: 1px solid var(--black)!important;
    padding: 20px 26px;
    transition: .3s;
}

.btn-primary:hover {
    background-color: white;
    color: black;
    transform: translateY(-4px);
}

.btn-secondary {
    background-color: var(--purple-600);
    color: var(--white);
    border: 1px solid var(--purple-600);
}

.btn-secondary:hover {
    background-color: var(--purple-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

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

/* ===================================
   ABOUT PAGE STYLES
   =================================== */

/* Mission Statement Section */
.mission-section {
    background-color: var(--white);
    padding: var(--spacing-xxxl) 0;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 0;
}

/* Process Gallery Section */
.process-gallery {
    background-color: var(--white);
    padding: var(--spacing-xxxl) 0;
}

.gallery-container {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.gallery-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.gallery-nav {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    pointer-events: auto;
    box-shadow: var(--shadow-md);
}

.gallery-nav:hover {
    background-color: var(--gray-50);
    transform: scale(1.05);
}

.gallery-nav svg {
    color: var(--gray-600);
    width: 20px;
    height: 20px;
}

.gallery-slider {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: var(--gray-100);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.gallery-slide:first-child {
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.gallery-dot.active {
    background-color: var(--purple-600);
}

/* Founder's Section */
.founder-section {
    background-color: var(--purple-600);
    color: var(--white);
    padding: var(--spacing-xxxl) 0;
}

.founder-header {
    margin-bottom: var(--spacing-xl);
}

.founder-label span {
    opacity: .5;
}
.founder-label {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0;
}

.founder-quote {
    margin-bottom: var(--spacing-xl);
}

.founder-quote blockquote {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--white);
    margin: 0;
    padding: 0;
    border: none;
}

.founder-description {
    max-width: 800px;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
}

.founder-description p {
    margin-bottom: 0;
    color: var(--white);
    opacity: 0.9;
}

/* Features Section */
.features-section {
    background-color: var(--white);
    padding: var(--spacing-xxxl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    max-width: 1000px;
    margin: 0 auto;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xxl);
}

.feature-item {
    padding: var(--spacing-xl);
    background-color: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: var(--spacing-md);
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* About CTA Section */
.about-cta {
    background-color: var(--white);
    padding: var(--spacing-xxxl) 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    background-color: var(--white);
    padding: var(--spacing-xxxl) 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: var(--spacing-xxl);
}

.hero-text {
    align-items: center;
    flex: 1;
}
.hero-subtitle-large {
    font-size: 40px;
    letter-spacing: unset;
    max-width: 90%;
}
.section-subtitle,
.hero-subtitle {
    letter-spacing: unset;
    width: fit-content;
    font-size: 24px;
    line-height: 36px;
    color: var(--black);
    font-weight: 500;
}
.cg {
    background: url('../assets/cg-green.svg') center center / contain no-repeat;
}
.cg-blue {
    background: url('../assets/cg-blue.svg') center center / contain no-repeat;
}

.hero-cta {
    margin-top: var(--spacing-xl);
}

.hero-graphics {
    position: relative;
    flex: 1;
    height: 400px;
}

.graphic {
    position: absolute;
    border-radius: var(--radius-lg);
}

.graphic-1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-color), var(--warning-color));
    top: 20%;
    left: 10%;
    transform: rotate(15deg);
}

.graphic-2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    top: 60%;
    right: 20%;
    transform: rotate(-30deg);
}

.graphic-3 {
    width: 80px;
    height: 20px;
    background: linear-gradient(90deg, var(--accent-color), var(--warning-color));
    bottom: 30%;
    left: 30%;
    transform: rotate(45deg);
}

/* ===================================
   PROCESS SECTION
   =================================== */

.process-section {
    padding: var(--spacing-xxxl) 0;
}

.process-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xxl);
}

.process-text {
    flex: 1;
}

.process-description {
    font-size: 18px;
    color: white;
}

.process-title {
    font-size: 80px;
    color: white;
    margin-bottom: 0;
}

.process-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.process-graphics {
    position: relative;
    flex: 1;
    height: 300px;
}

.graphic-4 {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    top: 20%;
    right: 10%;
    transform: rotate(25deg);
}

.graphic-5 {
    width: 70px;
    height: 15px;
    background: linear-gradient(90deg, var(--accent-color), var(--warning-color));
    bottom: 40%;
    left: 20%;
    transform: rotate(-15deg);
}

/* ===================================
   FEATURED PRODUCTS SECTION
   =================================== */

.featured-products {
    padding: var(--spacing-xxxl) 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-xxl);
    gap: var(--spacing-xl);
}

.header-left {
    flex: 1;
}


.header-right {
    flex: 1;
    max-width: 500px;
}

.section-description {
    font-size: 18px;
    color: var(--gray-800);
    line-height: 1.6;
    margin-bottom: 0;
}

.featured-product {
    position: relative;
}

.featured-product .product-image {
    position: relative;
    width: 100%;
}

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

.product-overlay-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.overlay-graphic {
    position: absolute;
    background-color: var(--white);
    border-radius: var(--radius-sm);
}

.overlay-graphic:nth-child(1) {
    width: 40px;
    height: 40px;
    top: 20%;
    right: 15%;
    transform: rotate(45deg);
}

.overlay-graphic:nth-child(2) {
    width: 20px;
    height: 60px;
    bottom: 30%;
    left: 10%;
}

.product-cta {
    bottom: var(--spacing-lg);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.product-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    background-color: var(--gray-100);
}

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

.product-info {
    padding: var(--spacing-lg);
}

.product-labels {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
}

.label {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.product-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

.product-price {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black);
}

/* ===================================
   PRODUCT CATEGORIES SECTION
   =================================== */

.product-categories {
    background-color: var(--gray-900);
    color: var(--white);
    padding-bottom: var(--spacing-xxxl);
    padding-top: var(--spacing-xxxl);
    position: relative;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.category-card {
    background-color: var(--gray-800);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.category-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-text {
    padding: var(--spacing-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-subtitle {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.category-image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

/* ===================================
   CAMPAIGN SECTION
   =================================== */

.campaign-section {
    align-items: center;
    background-color: var(--gray-900);
    padding: var(--spacing-xxxl) 0;
    color: var(--white);
}

.campaign-content {
    display: flex;
    gap: var(--spacing-xxl);
    align-items: flex-start;
    position: relative;
    z-index: 9;
    justify-content: space-around;
    height: 100%;
}

.campaign-text {
    max-width: 500px;
}

.campaign-subtitle {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.campaign-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.campaign-description {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

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

.campaign-overlay-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.campaign-overlay-graphics .overlay-graphic:nth-child(1) {
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    top: 20%;
    right: 15%;
    transform: rotate(45deg);
}

.campaign-overlay-graphics .overlay-graphic:nth-child(2) {
    width: 15px;
    height: 45px;
    background-color: var(--white);
    bottom: 30%;
    left: 10%;
}

/* ===================================
   GIFT SECTION
   =================================== */

.gift-section {
    background-color: var(--white);
    padding: var(--spacing-xxxl) 0;
}

.gift-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-xxl);
    gap: var(--spacing-xl);
}

.gift-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.gift-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0;
}

.gift-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

.gift-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.gift-hero {
    position: relative;
}

.gift-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 6/5;
}

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

.gift-overlay-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.gift-overlay-graphics .overlay-graphic {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    top: 30%;
    left: 20%;
    transform: rotate(45deg);
}

.gift-cta {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.gift-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

/* ===================================
   ARTIST'S PICKS SECTION
   =================================== */

.artists-picks {
    background-color: #FCE8E8;
    padding: var(--spacing-xxxl) 0;
}

.picks-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-xxl);
}

.picks-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.picks-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--gray-800);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.picks-title svg {
    color: var(--accent-color);
}

.header-graphics {
    position: relative;
    width: 200px;
    height: 100px;
}

.graphic-6 {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    position: absolute;
    top: 20%;
    right: 20%;
    transform: rotate(45deg);
}

.graphic-7 {
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    position: absolute;
    top: 60%;
    right: 40%;
    transform: rotate(-30deg);
}

.graphic-8 {
    width: 25px;
    height: 25px;
    background-color: var(--black);
    position: absolute;
    top: 40%;
    right: 60%;
    transform: rotate(15deg);
}

.picks-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.picks-hero {
    position: relative;
}

.picks-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 5/7;
}

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

.picks-cta {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    color: var(--gray-800);
    border-color: var(--white);
}

.picks-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials-section {
    background-color: var(--light-color);
    padding: var(--spacing-xxl) 0;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin: var(--spacing-xl) 0;
}

.testimonial-item {
    text-align: center;
    padding: var(--spacing-xl);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin: 0 var(--spacing-md);
}

.testimonial-content {
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: var(--spacing-lg);
    color: var(--dark-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 500;
    color: var(--dark-color);
}

.author-location {
    font-size: 0.875rem;
    color: var(--dark-color);
    opacity: 0.7;
}

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

.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.slider-prev,
.slider-next {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: var(--spacing-xs);
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-color);
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.slider-dot.active {
    background-color: var(--primary-color);
}

/* ===================================
   FOOTER STYLES
   =================================== */

.modern-footer {
    background-color: var(--dark-color);
    color: var(--white);
}

.footer-main {
    padding: var(--spacing-xxl) 0;
}

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.footer-description {
    color: var(--white);
    opacity: 0.8;
    margin-bottom: var(--spacing-lg);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.newsletter-input {
    position: relative;
    flex: 1;
}

.newsletter-input input {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--light-color);
    border-radius: var(--radius-md);
    background-color: var(--white);
}

.btn-newsletter {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.btn-newsletter:hover {
    background-color: #e55a5a;
}

.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    padding: var(--spacing-lg) 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.payment-methods {
    display: flex;
    gap: var(--spacing-sm);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .hero-content,
    .process-content,
    .products-showcase,
    .campaign-content,
    .gift-showcase,
    .picks-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .section-header,
    .gift-header {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .header-right {
        max-width: none;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .products-grid,
    .gift-products,
    .picks-products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .large-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .left-large-container {
        padding-left: 20px;
    }
    .right-large-container {
        padding-right: 20px;
    }

    .mission-title {
        font-size: 2rem;
    }

    .founder-quote blockquote {
        font-size: 1.25rem;
    }

    .process-title,
    .campaign-title {
        font-size: 2rem;
    }

    .section-title,
    .gift-title,
    .picks-title {
        font-size: 2rem;
    }

    .process-cta,
    .cta-buttons {
        flex-direction: column;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .products-grid,
    .gift-products,
    .picks-products {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .product-info {
        padding: var(--spacing-md);
    }

    .feature-item {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .mission-title {
        font-size: 1.75rem;
    }

    .founder-quote blockquote {
        font-size: 1.125rem;
    }

    .section-title,
    .gift-title,
    .picks-title {
        font-size: 1.75rem;
    }

    .products-grid,
    .gift-products,
    .picks-products {
        grid-template-columns: 1fr;
    }

    .hero-graphics,
    .process-graphics,
    .header-graphics {
        display: none;
    }

    .gallery-navigation {
        display: none;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-3 { padding: var(--spacing-md); }
.p-4 { padding: var(--spacing-lg); }
.p-5 { padding: var(--spacing-xl); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }

.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.rounded { border-radius: var(--radius-md); }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-lg); }

.shadow { box-shadow: var(--shadow-md); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* ===================================
   ANIMATIONS
   =================================== */

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

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

/* ===================================
   LOADING STATES
   =================================== */

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--light-color);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

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

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--light-color);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

/* ===================================
   NOTIFICATIONS
   =================================== */

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--white);
    color: var(--dark-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid var(--success-color);
}

.notification-error {
    border-left: 4px solid var(--error-color);
}

.notification-info {
    border-left: 4px solid var(--accent-color);
}

/* ===================================
   BACK TO TOP
   =================================== */

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #e55a5a;
    transform: translateY(-4px);
}

/* ===================================
   SERVICES PAGE STYLES
   =================================== */

/* Brand Design Hero Section */
.brand-design-hero {
    background-color: var(--white);
    padding: var(--spacing-xxxl) 0;
}

.brand-design-hero .hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xxl);
}

.brand-design-hero .hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.brand-design-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: var(--spacing-lg);
}

.brand-design-hero .hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Design Collage */
.hero-visual {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.design-collage {
    position: relative;
    width: 100%;
    height: 600px;
    background: linear-gradient(45deg, var(--gray-100), var(--gray-50));
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.collage-item {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

/* Studies Section */
.studies-section {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, var(--secondary-color), var(--success-color));
    color: var(--white);
}

.studies-section .section-header h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.chart-line {
    width: 100%;
    height: 2px;
    background: var(--white);
    margin: var(--spacing-sm) 0;
    position: relative;
}

.chart-line::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 60%;
    height: 6px;
    background: var(--white);
    border-radius: 3px;
}

.metrics {
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-sm);
}

.metric {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Projections Section */
.projections-section {
    top: 15%;
    right: 10%;
    width: 180px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

.years {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: var(--spacing-sm);
}

.circular-charts {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-sm);
}

.chart-circle {
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Meet The Pro Section */
.meet-pro-section {
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.profiles {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.profile {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.profile-image {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

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

.profile-number {
    font-size: 0.875rem;
    font-weight: 500;
}

.proposal-title h2 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.collaboration-image {
    width: 100%;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

/* Market Segmentation Section */
.market-segmentation {
    bottom: 20%;
    left: 8%;
    width: 200px;
    height: 160px;
    background: linear-gradient(135deg, var(--accent-color), var(--warning-color));
    color: var(--white);
}

.segmentation-data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

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

.data-item .number {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.data-item .label {
    font-size: 0.625rem;
    opacity: 0.9;
}

/* Our Services Section */
.our-services {
    bottom: 25%;
    right: 15%;
    width: 180px;
    height: 140px;
    background: linear-gradient(135deg, var(--accent-color), var(--pink-500));
    color: var(--white);
}

.services-list {
    margin-top: var(--spacing-md);
}

.service-item {
    font-size: 0.75rem;
    margin-bottom: var(--spacing-xs);
    padding: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
}

/* Social Media Strategy Section */
.social-strategy {
    top: 60%;
    left: 20%;
    width: 160px;
    height: 120px;
    background: linear-gradient(135deg, var(--secondary-color), var(--success-color));
    color: var(--white);
}

.strategy-content {
    margin-top: var(--spacing-sm);
}

.woah-text {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.strategy-icons {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.icon {
    font-size: 0.875rem;
    font-weight: 500;
}

.strategy-image {
    width: 100%;
    height: 40px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

/* Digital Strategy Section */
.digital-strategy {
    top: 70%;
    right: 25%;
    width: 170px;
    height: 130px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

.campaign-title {
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.strategy-content .metrics {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.metric-item .percentage {
    font-size: 0.875rem;
    font-weight: 500;
}

.platform-text {
    font-size: 0.625rem;
    opacity: 0.9;
}

/* Marketing Timeline Section */
.marketing-timeline {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 100px;
    background: linear-gradient(135deg, var(--black), var(--gray-800));
    color: var(--white);
}

.timeline-text {
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.timeline-points {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

.point {
    font-size: 1rem;
    font-weight: 500;
}

/* Choose Your Plan Section */
.choose-plan {
    bottom: 5%;
    right: 5%;
    width: 140px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--success-color));
    color: var(--white);
}

.plan-price {
    text-align: center;
    margin-top: var(--spacing-sm);
}

.price {
    font-size: 1.5rem;
    font-weight: 500;
}
.btn-full-white:hover {
    transform: translateY(-4px);
}
.btn-full-white {
    background-color: white;
    color: black;
}
/* Description Section */
.description-section .description-content p {
    font-size: 22px;
}
.description-section .description-content {
    text-align: left;
    align-items: flex-start;
    margin: 0 0 50px;
}
.description-section {
    padding-right: 0;
    text-align: left;
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.description-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* What We Deliver Section */
.deliver-section {
    background-color: var(--white);
    padding: var(--spacing-xxxl) 0;
}

.deliver-content {
    max-width: 1000px;
    margin: 0 auto;
}

.deliver-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: var(--spacing-xxl);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.services-grid-section {
    background: #FAFAFA;
    padding: 50px 0 0;
}
.service-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: var(--spacing-md);
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Services CTA Section */
.services-cta {
    background-color: var(--white);
    padding: var(--spacing-xxxl) 0;
    text-align: center;
}

.cta-button {
    font-size: 1.125rem;
    padding: var(--spacing-md) var(--spacing-xl);
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.cta-button:hover {
    background-color: var(--gray-800);
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .design-collage {
        height: 500px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .collage-item {
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    .brand-design-hero .hero-title {
        font-size: 2.5rem;
    }

    .design-collage {
        height: 400px;
    }

    .collage-item {
        transform: scale(0.8);
        padding: var(--spacing-md);
    }

    .deliver-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .brand-design-hero .hero-title {
        font-size: 2rem;
    }

    .design-collage {
        height: 300px;
    }

    .collage-item {
        transform: scale(0.7);
        padding: var(--spacing-sm);
    }

    .deliver-title {
        font-size: 1.75rem;
    }

}

/* ===================================
   BLOG PAGE STYLES
   =================================== */

/* Blog Header Section */
.blog-header {
    background-color: var(--gray-900);
    color: var(--white);
    padding: var(--spacing-xxxl) 0;
    position: relative;
    overflow: hidden;
}

.blog-header .header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.blog-header .page-title {
    font-size: 4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.blog-header .blog-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 0;
}

.blog-header .header-graphics {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 200px;
    pointer-events: none;
}

.blog-header .graphic {
    position: absolute;
    border-radius: var(--radius-lg);
}

.blog-header .graphic-1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-color), var(--warning-color));
    top: 20%;
    right: 20%;
    transform: rotate(15deg);
}

.blog-header .graphic-2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    top: 60%;
    right: 40%;
    transform: rotate(-30deg);
}

.blog-header .graphic-3 {
    width: 80px;
    height: 20px;
    background: linear-gradient(90deg, var(--accent-color), var(--warning-color));
    bottom: 30%;
    right: 60%;
    transform: rotate(45deg);
}

/* Blog Content Section */
.blog-content {
    background-color: var(--white);
    padding: var(--spacing-xxxl) 0;
}

/* Category Filters */
.category-filters {
    margin-bottom: var(--spacing-xxl);
}

.filters-container {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.filter-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.filter-link:hover {
    color: var(--black);
    background-color: var(--gray-100);
}

.filter-link.active {
    color: var(--black);
    background-color: var(--gray-100);
    border-color: var(--gray-300);
    font-weight: 500;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.blog-post-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
}

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

.blog-post-card .post-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--gray-100);
}

.blog-post-card .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.blog-post-card .post-content {
    padding: var(--spacing-lg);
}

.blog-post-card .post-categories {
    margin-bottom: var(--spacing-sm);
}

.blog-post-card .category-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.025em;
    background-color: var(--gray-100);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.blog-post-card .post-title {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: var(--spacing-md);
}

.blog-post-card .post-title a {
    color: var(--black);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.blog-post-card .post-meta {
    margin-top: var(--spacing-md);
}

.blog-post-card .post-date {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: var(--spacing-xxl);
}

.load-more-btn {
    font-size: 1rem;
    padding: var(--spacing-md) var(--spacing-xl);
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.load-more-btn:hover {
    background-color: var(--black);
    color: var(--white);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Design for Blog */
@media (max-width: 1024px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    .filters-container {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .blog-header .page-title {
        font-size: 2.5rem;
    }

    .blog-header .blog-subtitle {
        font-size: 1.125rem;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .filters-container {
        gap: var(--spacing-md);
    }

    .filter-link {
        font-size: 0.875rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .blog-post-card .post-content {
        padding: var(--spacing-md);
    }

    .blog-post-card .post-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-header .page-title {
        font-size: 2rem;
    }

    .blog-header .blog-subtitle {
        font-size: 1rem;
    }

    .blog-header .header-graphics {
        display: none;
    }

    .filters-container {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }

    .filter-link {
        width: 100%;
        text-align: center;
        max-width: 200px;
    }
}

/* ===================================
   ARCHIVE PAGE STYLES
   =================================== */

/* Archive Header Section */
.archive-header {
    background-color: var(--white);
    padding: var(--spacing-xxxl) 0;
    text-align: center;
}

.archive-content {
    max-width: 800px;
    margin: 0 auto;
}

.archive-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: var(--spacing-lg);
}

.archive-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 600px;
}

/* Archive Posts Section */
.archive-posts {
    background-color: var(--white);
    padding: var(--spacing-xxxl) 0;
}

.archive-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.archive-post-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
}

.archive-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.archive-post-card .post-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--gray-100);
}

.archive-post-card .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.archive-post-card:hover .post-image img {
    transform: scale(1.05);
}

.archive-post-card .post-content {
    padding: var(--spacing-lg);
}

.archive-post-card .post-categories {
    margin-bottom: var(--spacing-sm);
}

.archive-post-card .category-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.025em;
    background-color: var(--gray-100);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.archive-post-card .post-title {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: var(--spacing-md);
}

.archive-post-card .post-title a {
    color: var(--black);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.archive-post-card .post-meta {
    margin-top: var(--spacing-md);
}

.archive-post-card .post-date {
    font-size: 0.875rem;
    color: var(--gray-300);
    font-weight: 500;
}

/* Archive Pagination */
.archive-pagination {
    text-align: center;
    margin-top: var(--spacing-xxl);
}

.pagination-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-list li {
    margin: 0;
}

.pagination-list a,
.pagination-list span {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--gray-600);
    transition: all var(--transition-normal);
    min-width: 40px;
    text-align: center;
}

.pagination-list a:hover {
    background-color: var(--gray-100);
    color: var(--black);
}

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

/* No Posts Found */
.no-posts-found {
    text-align: center;
    padding: var(--spacing-xxl) 0;
}

.no-posts-found h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: var(--spacing-md);
}

.no-posts-found p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
}

.fallback-posts h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: var(--spacing-lg);
}

/* Back to Blog Section */
.back-to-blog {
    background-color: var(--white);
    padding: var(--spacing-xxxl) 0;
    text-align: center;
}

.back-to-blog-content {
    max-width: 600px;
    margin: 0 auto;
}

.back-to-blog-btn {
    font-size: 1rem;
    padding: var(--spacing-md) var(--spacing-xl);
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-block;
}

.back-to-blog-btn:hover {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* Responsive Design for Archive */
@media (max-width: 1024px) {
    .archive-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .archive-title {
        font-size: 2.5rem;
    }

    .archive-description {
        font-size: 1rem;
    }

    .archive-posts-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .archive-post-card .post-content {
        padding: var(--spacing-md);
    }

    .archive-post-card .post-title {
        font-size: 1rem;
    }

    .no-posts-found h2 {
        font-size: 1.75rem;
    }

    .no-posts-found p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .archive-title {
        font-size: 2rem;
    }

    .archive-posts-grid {
        gap: var(--spacing-md);
    }

    .pagination-list {
        flex-wrap: wrap;
        gap: var(--spacing-xs);
    }

    .pagination-list a,
    .pagination-list span {
        padding: var(--spacing-xs) var(--spacing-sm);
        min-width: 35px;
        font-size: 0.875rem;
    }
}

/* ===================================
   SINGLE POST PAGE STYLES
   =================================== */

/* Single Post Hero Section */
.single-post-hero .breadcrumbs .current {
    color: var(--gray-500);
}
.single-post-hero .breadcrumbs a:hover {
    color: var(--gray-400);
}
.single-post-hero .breadcrumbs a {
    color: white;
}
.single-post-hero {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 0;
    position: relative;
}

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

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 10px;
    font-size: 0.875rem;
    color: var(--gray-300);
}

.breadcrumbs a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.breadcrumbs .separator {
    margin: 0 var(--spacing-sm);
    color: var(--gray-500);
}

.breadcrumbs .current {
    color: var(--white);
    font-weight: 500;
}

/* Hero Layout */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.hero-image {
    position: relative;
    overflow: hidden;
    background-color: var(--gray-800);
}

.hero-image img {
    object-fit: cover;
    width: 100%;
    height: auto;
    display: block;
}

.hero-text {
    padding: var(--spacing-xl);
}

.post-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.meta-left .post-date {
    font-size: 1rem;
    color: var(--gray-300);
    font-weight: 500;
}

.meta-right .post-categories {
    font-size: 0.875rem;
    color: var(--gray-300);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* Single Post Content Section */
.single-post-content {
    background-color: var(--white);
    padding: var(--spacing-xxxl) 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xxl);
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    background-color: var(--white);
}

.post-content {
    line-height: 1.8;
    color: var(--gray-800);
}

.post-content h2 {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--black);
    margin: var(--spacing-xl) 0 var(--spacing-lg);
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--black);
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

.post-content h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
    margin: var(--spacing-md) 0 var(--spacing-sm);
}

.post-content h5 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black);
    margin: var(--spacing-md) 0 var(--spacing-sm);
}

.post-content p {
    margin-bottom: var(--spacing-lg);
    font-size: 1.125rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: var(--spacing-lg) 0;
}

.post-content figure {
    margin: var(--spacing-lg) 0;
}

.post-content figcaption {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: var(--spacing-sm);
    font-style: italic;
}

/* Post Tags */
.post-tags {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.post-tags h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: var(--spacing-md);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.tag-link {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    background-color: var(--gray-100);
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.tag-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background-color: var(--gray-50);
    border-radius: var(--radius-lg);
}

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

.author-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

.author-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Post Navigation */
.post-navigation {
    margin: var(--spacing-xxl) 0;
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--gray-200);
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.nav-previous,
.nav-next {
    padding: var(--spacing-lg);
    background-color: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.nav-previous:hover,
.nav-next:hover {
    background-color: var(--gray-100);
}

.nav-previous a,
.nav-next a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.nav-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.nav-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    line-height: 1.4;
}

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

/* Sidebar */
.sidebar {
    background-color: var(--white);
}

.sidebar > div {
    margin-bottom: var(--spacing-xxl);
    padding: var(--spacing-lg);
    background-color: var(--gray-50);
    border-radius: var(--radius-lg);
}

.sidebar h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: var(--spacing-lg);
}

/* Share Section */
.share-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.share-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--white);
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    border: 1px solid var(--gray-200);
}

.share-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.share-btn.facebook:hover {
    background-color: #1877f2;
    color: var(--white);
    border-color: #1877f2;
}

.share-btn.twitter:hover {
    background-color: #1da1f2;
    color: var(--white);
    border-color: #1da1f2;
}

.share-btn.linkedin:hover {
    background-color: #0077b5;
    color: var(--white);
    border-color: #0077b5;
}

/* Table of Contents */
.toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc-list li {
    margin-bottom: var(--spacing-sm);
}

.toc-link {
    display: block;
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.toc-link:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Related Posts */
.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.related-post {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--white);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.related-post:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.related-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background-color: var(--gray-200);
}

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

.related-post-content h5 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
}

.related-post-content h5 a {
    color: var(--black);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.related-post-content h5 a:hover {
    color: var(--primary-color);
}

.related-post-content time {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Newsletter Signup */
.newsletter-signup p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
    font-size: 0.875rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.newsletter-form input {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.newsletter-form .btn {
    font-size: 0.875rem;
    padding: var(--spacing-sm) var(--spacing-md);
}
.hero-content-wrapper .post-title {
    font-size: 38px;
    letter-spacing: unset;
}

/* Responsive Design for Single Post */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .content-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .post-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    .hero-text {
        padding: var(--spacing-lg);
    }

    .post-title {
        font-size: 1.75rem;
    }

    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .post-content h2 {
        font-size: 1.5rem;
    }

    .post-content h3 {
        font-size: 1.25rem;
    }

    .post-content h4 {
        font-size: 1.125rem;
    }

    .post-content p {
        font-size: 1rem;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .nav-next {
        text-align: left;
    }

    .sidebar > div {
        padding: var(--spacing-md);
    }

    .related-post {
        flex-direction: column;
        text-align: center;
    }

    .related-post-image {
        width: 100%;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .breadcrumbs {
        font-size: 0.75rem;
    }

    .post-title {
        font-size: 1.5rem;
    }

    .hero-text {
        padding: 30px 3%;
    }

    .post-content h2 {
        font-size: 1.25rem;
    }

    .post-content h3 {
        font-size: 1.125rem;
    }

    .share-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .share-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
}

/* ===================================
   PRODUCT CATEGORY PAGE STYLES
   =================================== */

/* Category Hero Section */
.category-hero {
    background-color: var(--white);
    padding: var(--spacing-xxxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 99999;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.breadcrumbs a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.breadcrumbs .separator {
    margin: 0 var(--spacing-sm);
    color: var(--gray-400);
}

.breadcrumbs .current {
    color: var(--black);
    font-weight: 500;
}

/* Category Header */
.category-header {
    margin-bottom: var(--spacing-xl);
}

.category-title {
    font-size: 4rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: var(--spacing-lg);
}

.category-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Category Filters */
.category-filters {
    margin-bottom: var(--spacing-xxl);
}

.filters-container {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.filter-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.filter-link:hover {
    color: var(--black);
    background-color: var(--gray-100);
}

.filter-link.active {
    color: var(--black);
    background-color: var(--gray-100);
    border-color: var(--gray-300);
    font-weight: 500;
}

/* Hero Graphics */
.hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.graphic {
    position: absolute;
    border-radius: var(--radius-lg);
}

.graphic-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-color), var(--warning-color));
    top: 20%;
    left: 10%;
    transform: rotate(15deg);
}

.graphic-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    top: 60%;
    right: 15%;
    transform: rotate(-30deg);
}

/* Category Products Section */
.category-products {
    background-color: var(--white);
    padding: var(--spacing-xxxl) 0;
}

.product-card {
    /*background-color: var(--white);*/
    overflow: hidden;
    /*box-shadow: var(--shadow-sm);*/
    transition: all var(--transition-normal);
    /*border: 1px solid var(--gray-200);*/
    border-radius: 0;
}


.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--gray-100);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

/* Product Badges */
.product-badge {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    width: fit-content;
}

.product-badge.sale {
    background-color: #ee0026;
    color: var(--white);
}

.product-badge.out-of-stock {
    border: 1px solid var(--gray-400);
    color: var(--gray-400);
}

/* Product Actions */
.product-actions {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-normal);
}

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

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    color: var(--gray-700);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.action-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Product Content */
.product-content {
    padding: var(--spacing-lg);
}

.product-details,
.product-labels {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.product-fit,
.product-type,
.label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
    letter-spacing: 0.025em;
    display: inline-block;
}

.product-title {
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: var(--spacing-md);
    letter-spacing: unset;
}

/* More specific selector for product cards */
.product-title a {
    color: var(--black);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 18px;
}

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

.product-price {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black);
}

.current-price {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black);
}

.original-price {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-left: var(--spacing-sm);
}

.product-actions-bottom {
    margin-top: var(--spacing-md);
}

.add-to-cart {
    width: 100%;
    font-size: 0.875rem;
    padding: var(--spacing-sm) var(--spacing-md);
}

/* Category Pagination */
.category-pagination {
    text-align: center;
    margin-top: var(--spacing-xxl);
}

/* Back to Shop */
.back-to-shop {
    text-align: center;
    margin-top: var(--spacing-xxl);
}

.back-to-shop .btn {
    font-size: 1rem;
    padding: var(--spacing-md) var(--spacing-xl);
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-block;
}

.back-to-shop .btn:hover {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* Category Description Section */
.category-description-section {
    background-color: var(--gray-50);
    padding: var(--spacing-xxxl) 0;
}

.description-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.description-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background-color: var(--gray-200);
}

.description-image img {
    width: 100%;
    height: auto;
    display: block;
}

.description-content h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.description-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
}

.description-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Believe the Hype Section */
.believe-hype-section {
    position: relative;
    overflow: hidden;
}

.hype-background {
    position: relative;
    width: 100%;
    height: 1080px;
}

.hype-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hype-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hype-content {
    text-align: center;
    color: var(--white);
}

.hype-title {
    margin-bottom: var(--spacing-lg);
}

.hype-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    font-size: 1.125rem;
    font-weight: 400;
    max-width: fit-content;
    margin: 0 auto;
}

.reviews-text,
.trusted-text {
    color: black;
    font-size: 16px;
}

.star-icon {
    color: var(--warning-color);
}

/* Responsive Design for Product Category */
@media (max-width: 1024px) {
    .category-title {
        font-size: 3rem;
    }


    .filters-container {
        gap: var(--spacing-lg);
    }

    .description-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

}

@media (max-width: 768px) {
    .category-hero {
        padding: var(--spacing-xxl) 0;
    }

    .category-title {
        font-size: 2.5rem;
    }

    .category-description {
        font-size: 1.125rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .filters-container {
        gap: var(--spacing-md);
        flex-direction: column;
        align-items: center;
    }

    .filter-link {
        width: 100%;
        text-align: center;
        max-width: 200px;
    }

    .product-content {
        padding: var(--spacing-md);
    }

    .product-title {
        font-size: 1rem;
    }

    .description-content h2 {
        font-size: 1.75rem;
    }

    .description-content h3 {
        font-size: 1.125rem;
    }

    .description-content p {
        font-size: 1rem;
    }


    .hype-subtitle {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .hero-graphics {
        display: none;
    }
}

@media (max-width: 480px) {
    .category-title {
        font-size: 2rem;
    }

    .category-description {
        font-size: 1rem;
    }

    .breadcrumbs {
        font-size: 0.75rem;
    }

    .product-actions {
        opacity: 1;
        transform: translateX(0);
    }

    .action-btn {
        width: 35px;
        height: 35px;
    }

}

/* ===================================
   HEADER STYLES
   =================================== */

/* Site Header */
.site-header {
    position: relative;
    background-color: var(--white);
}

/* Top Bar */
.top-bar {
    background-color: var(--gray-800);
    color: var(--white);
    padding: var(--spacing-xs) 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement {
    font-weight: 500;
}

.top-bar-actions {
    display: flex;
    gap: var(--spacing-lg);
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-300);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.top-bar-link:hover {
    color: var(--white);
}

.top-bar-link svg {
    flex-shrink: 0;
}

/* Main Header */
.main-header {
    background-color: var(--white);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--gray-200);
}

.header-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Site Branding */
.site-branding {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--black);
}

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

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

.custom-logo {
    display: flex;
    align-items: center;
}

.custom-logo img {
    height: 30px;
    width: auto;
}

.brand-icon {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    width: 30px;
}
.brand-icon:hover svg {
    transform: scale(.9);
}
.brand-icon svg {
    transform: scale(1);
    transition: .3s;
    display: block;
    width: 100%;
    height: 100%;
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-action {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all var(--transition-normal);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
}

.user-action:hover {
    color: var(--primary-color);
    transform: translateY(-4px);
}

.user-action svg {
    flex-shrink: 0;
}

.cart-count {
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1;
}

/* Main Navigation */
.main-navigation {
    background-color: var(--white);
    padding: 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Navigation */
.nav-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-700);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition-fast);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    position: relative;
}

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

.nav-icon {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.nav-icon svg {
    width: 16px;
    height: 16px;
}

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

.dropdown-arrow {
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
}

/* Right Navigation */
.nav-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.campaign-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: black;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: .3s;
    width: auto;
    max-width: fit-content;
    padding: 14px 20px;
}
.campaign-large-btn {
    font-size: 20px;
    padding: 20px 30px;
}
.campaign-powder {
    background: url('../assets/powder-object.svg') center center / contain no-repeat;
}
.campaign-purple:hover {
    transform: translateY(-4px);
    color: white;
}
.campaign-purple {
    transition: .3s;
    color: white;
    font-size: 14px;
    padding: 30px 60px;
    background: url('../assets/campaign-purple.svg') center center / contain no-repeat;
}
.campaign-white {
    background: url('../assets/white-object.svg') center center / contain no-repeat;
}
.campaign-extra {
    background: url('../assets/campaign-extra.svg') center center / cover no-repeat;
}
.campaign-extra-green {
    background: url('../assets/extra-green.svg') center center / cover no-repeat;
}
.campaign-btn:hover {
    transform: translateY(-4px);
    /*background-position-x: 5px;*/
}
h2.campaign-extra,
h2.campaign-extra-green {
    padding-left: 30px;
    padding-right: 30px;
}

.campaign-btn svg {
    color: var(--accent-color);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99991;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    display: flex;
}

.search-container {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl);
    max-width: 600px;
    width: 90%;
    box-shadow: var(--shadow-xl);
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.search-header h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--black);
    margin: 0;
}

.search-close {
    background: none;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    padding: var(--spacing-xs);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.search-close:hover {
    background-color: var(--gray-100);
    color: var(--black);
}

.search-form {
    display: flex;
    gap: var(--spacing-sm);
}

.search-field {
    flex: 1;
    padding: var(--spacing-md);
    border: 1px solid black;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.search-field:focus {
    outline: none;
    border-color: black;
}

.search-submit {
    background-color: white;
    border: 1px solid black;
    color: black;
    font-weight: 500;
    padding: var(--spacing-md) var(--spacing-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    background-color: black;
    color: white;
    transform: translateY(-4px);
}

body .spd-customize-btn:hover {
    background-color: var(--black)!important;
    color: white!important;
    transform: translateY(-4px);
}
body .spd-customize-btn {
    border-radius: 0!important;
    border: 1px solid black!important;
    color: black;
    transition: background 0.3s ease;
}

/* Responsive Design for Header */
@media (max-width: 1024px) {
    .nav-left {
        gap: var(--spacing-lg);
    }

    .nav-right {
        gap: var(--spacing-md);
    }

    .user-actions {
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .main-header {
        padding: var(--spacing-sm) 0;
    }


    .user-actions {
        gap: 0;
    }

    .user-action span {
    display: none;
}

/* Ensure search button is always visible */
#search-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: var(--primary) !important;
    border-radius: 8px !important;
    padding: 8px 12px;
}

#search-toggle:hover {
    background-color: var(--primary-dark) !important;
}

    .main-navigation {
        display: none;
    }

    .site-title {
        font-size: 1.25rem;
    }

}

@media (max-width: 480px) {
    .campaign-large-btn {
        font-size: 14px;
    }
    .reviews-text, .trusted-text {
        font-size: 14px;
    }
    .hero-cta {
        margin-top: 10px;
    }
    .header-content {
        padding: 0 var(--spacing-sm);
    }

    .user-actions {
        gap: var(--spacing-xs);
    }

    .user-action {
        padding: var(--spacing-xs);
    }

    .search-container {
        padding: var(--spacing-lg);
        width: 95%;
    }

    .search-form {
        flex-direction: column;
    }

    .search-submit {
        width: 100%;
        min-width: 100%!important;
    }
    .search-field {
        min-width: 100%;
    }
}

/* Shop Page Styles */
.shop-header {
    background-color: var(--white);
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

.shop-header .page-title {
    font-size: 60px;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.shop-header .shop-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.shop-filters {
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--spacing-lg) 0;
}

.filters-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
}

.filter-dropdown {
    position: relative;
}

.filter-toggle {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: none;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-toggle:hover {
    border-color: var(--gray-400);
    background-color: var(--gray-50);
}

.dropdown-arrow {
    transition: transform 0.2s ease;
}

.filter-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Old dropdown styles - removed to prevent conflicts */

/* Ensure dropdowns are properly positioned */
.filter-dropdown {
    position: relative !important;
    display: inline-block !important;
}

.filter-group {
    position: relative !important;
}

.filters-container {
    position: relative !important;
}

/* Fix dropdown visibility */
.filter-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    min-width: 200px;
    margin-top: 4px;
    padding: 0;
    list-style: none;
}

.filter-dropdown.active .dropdown-menu {
    display: block !important;
}

.filter-option {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.filter-option:hover {
    background-color: var(--gray-50);
}

.filter-option.active {
    background-color: var(--primary);
    color: var(--white);
}

/* Ensure dropdown is visible */
.filter-dropdown.active .dropdown-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Additional dropdown styling - specific to shop page */
.shop-filters .dropdown-menu {
    background: white !important;
    padding: 8px 0 !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: unset !important;
    margin-top: 5px;
    border-style: solid !important;
    border-color: black !important;
    border-width: 0 1px 1px 0 !important;
    border-radius: 0;
}

/* Ensure dropdowns are not cut off */
.shop-filters {
    overflow: visible !important;
    position: relative !important;
}

.filters-container {
    overflow: visible !important;
    position: relative !important;
}

.filter-group {
    overflow: visible !important;
    position: relative !important;
}

.shop-filters .dropdown-menu .filter-option {
    display: block !important;
    padding: 8px 16px !important;
    color: #333 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: background-color 0.2s !important;
}

.shop-filters .dropdown-menu .filter-option:hover {
    background-color: #f5f5f5 !important;
}

.shop-filters .dropdown-menu .filter-option.active {
    background-color: var(--primary);
    color: white;
    font-weight: 500;
    position: relative;
}

.shop-filters .dropdown-menu .filter-option.active::before {
    content: "✓";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    background: transparent!important;
    padding: 0;
    cursor: pointer;
}

.filter-btn:hover {
    color: var(--purple-700)!important;
}

.filter-btn.active {
    color: var(--purple-700)!important;
    font-weight: 600 !important;
}

.filter-btn.reset-btn {
    background-color: var(--gray-100);
    border-color: var(--gray-200);
    color: var(--gray-600);
}

.filter-btn.reset-btn:hover {
    background-color: var(--gray-200);
    color: var(--gray-700);
}

.category-nav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.sort-group {
    margin-left: auto;
}

.shop-products {
    padding: 30px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.load-more-container {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-xl);
    background-color: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--radius-md);
    color: var(--black);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 150px;
}

.load-more-btn:hover {
    background-color: var(--black);
    color: var(--white);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.no-products {
    align-items: flex-start;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.no-products p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
}

/* Responsive Design for Shop */
@media (max-width: 768px) {
    .shop-header .page-title {
        font-size: 2rem;
    }

    .filters-container {
        align-items: stretch;
        gap: var(--spacing-md);
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: flex-start;
    }

    .filter-group {
        justify-content: center;
    }

    .category-nav {
        justify-content: center;
    }

    .sort-group {
        margin-left: 0;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(40vw, 1fr));
        gap: var(--spacing-lg);
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    .product-title a {
        font-size: 14px;
    }
}

/* Loading and Error States */
.loading {
    text-align: center;
    padding: var(--spacing-3xl) 0;
    font-size: 1.125rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.loading-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--gray-200);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.error {
    text-align: center;
    padding: var(--spacing-3xl) 0;
    color: var(--red-600);
    font-size: 1.125rem;
}

/* Active Filter States */

.filter-option.active {
    background-color: var(--primary);
    color: var(--white);
}

/* Smooth transitions for product grid updates */
.products-grid {
    transition: opacity 0.3s ease;
}

.products-grid.loading {
    opacity: 0.6;
}

/* Body scroll lock when search is open */
body.search-open {
    overflow: hidden;
}

/* Body scroll lock when design modal is open */
body.design-open {
    overflow: hidden;
}

/* Design Modal */
.design-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99999991;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.design-modal.active {
    opacity: 1;
    visibility: visible;
}

.design-container {
    backdrop-filter: blur(8px);
    border: 1px solid #414141;
    background: #0a080840;
    border-radius: 16px;
    width: 90%;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.design-modal.active .design-container {
    transform: translateY(0);
}

.design-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.design-header h2 {
    font-size: 2rem;
    font-weight: 500;
    color: white;
    margin: 0 0 0.5rem 0;
}

.design-header p {
    font-size: 1.125rem;
    color: var(--gray-200);
    margin: 0;
}

.design-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--gray-100);
    transition: color 0.2s ease;
}

.design-close:hover {
    color: var(--gray-300);
}

.design-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 2rem 2rem;
}

.design-category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease;
    aspect-ratio: 1/1;
    max-width: 32%;
    max-height: 20vh;
}
.design-category-card:nth-of-type(1),
.design-category-card:nth-of-type(2) {
    max-width: 49%;
    aspect-ratio: 4/3;
    height: auto;
    max-height: unset;
}

.design-category-card:hover {
    transform: translateY(-4px);
}

.category-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 1.25rem;
}

.category-overlay:hover .category-name {
    text-decoration: underline;
}
.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 1rem;
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.category-name {
    height: auto;
    display: block;
    position: absolute;
    z-index: 9;
    top: 45%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    color: white;
    font-weight: 400;
    font-size: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.design-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.design-close-btn {
    background: var(--gray-200);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    min-width: fit-content;
    width: fit-content;
    padding: 10px;
    background: transparent;
    border: 1px solid;
    color: var(--gray-300);
}

.design-close-btn:hover {
    background: var(--gray-200);
    color: var(--gray-800);
}
.colorgray {
    color: var(--gray-400);
}
/* Responsive Design Modal */
@media (max-width: 768px) {
    .design-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 1rem 1rem;
    }

    .design-header {
        padding: 1.5rem 1rem 0.5rem;
    }

    .design-header h2 {
        font-size: 1.5rem;
    }

    .design-header p {
        font-size: 1rem;
    }

    .design-container .design-categories .design-category-card {
        height: 360px;
    }
    .design-container .design-close {
        top: -30px;
    }
    .design-container {
        gap: 10px;
        width: 95%;
        max-height: 95vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .design-categories {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .design-header {
        padding: 1rem 0.75rem 0.5rem;
    }

    .design-footer {
        padding: 0.75rem 0.75rem 1rem;
    }
}

/* About Page Styles */
.about-hero {
    padding: 4rem 0;
    background: var(--white);
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 100%;
    padding: 0 1rem;
}

.process-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.process-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 1.5rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--gray-100);
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

/* Founder's Message */
.founder-message {
    padding: 4rem 0;
    color: white;
}

.founder-info {
    margin-bottom: 2rem;
}

.founder-quote {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 2rem 0;
}

.founder-description {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Key Features */
.key-features {
    padding: 4rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gray-900);
    margin: 0 0 1rem 0;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
    text-align: left;
}

/* About CTA */
.about-cta {
    padding: 4rem 0;
    background: var(--gray-50);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}


.btn-secondary {
    background: white;
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
}

.btn-green {
    background-color: var(--lightgreen);
    border: 2px solid var(--lightgreen);
}

.btn-secondary:hover {
    border-color: var(--purple-700);
    color: white;
    transform: translateY(-4px);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Responsive About Page */
@media (max-width: 768px) {
    .founder-quote {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: 0.5rem;
    }

    .carousel-next {
        right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 2rem 0;
    }


    .founder-message {
        padding: 2rem 0;
    }

    .key-features {
        padding: 2rem 0;
    }

    .about-cta {
        padding: 2rem 0;
    }


    .founder-quote {
        font-size: 1.25rem;
    }

    .feature-title {
        font-size: 1.25rem;
    }
}

/* Blog Page Styles */
.blog-header {
    padding: 4rem 0;
    background: var(--gray-900);
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(255, 234, 167, 0.1), rgba(255, 255, 255, 0.05));
    z-index: 1;
}

.blog-header .container {
    position: relative;
    z-index: 2;
}
.page-header {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.page-title *,
.page-title {
    font-size: 3rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
    text-align: center;
}

.blog-description {
    font-size: 1.25rem;
    text-align: center;
    opacity: 0.9;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Filters */
.blog-filters {
    padding-top: 30px;
}

.blog-filters .filters-container {
    display: flex;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-filters .filter-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-filters .filter-btn {
    color: var(--gray-600);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}
.blog-filters .filter-btn.active,
.blog-filters .filter-btn:hover {
    color: black!important;
}

/* Blog Posts */
.blog-posts {
    padding: 2rem 0;
    background: var(--white);
}

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

/* Post Card */
.post-card .post-content {
    padding: 10px 0 0;
}
.post-card .post-categories a {
    color: var(--purple-700);
}
.post-card .post-content h2 {
    margin: 0;
}
.post-card .post-content h2,
.post-card .post-content h2 * {
    font-size: 20px;
    letter-spacing: -.5px;
    font-weight: 400;
}
.post-card {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
    transform: translateY(-4px);
}

.post-image {
    position: relative;
    overflow: hidden;
}

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

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

.post-image .placeholder-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.post-image .placeholder-image span {
    font-size: 14px;
    color: black;
}
.post-content {
    padding: 1.5rem;
}

.post-categories a:hover {
    color: var(--gray-400);
}
.post-categories a {
    font-size: 13px;
    color: white;
}

.category-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.post-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.post-title a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-date {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Load More */
.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.load-more-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 3rem 0;
    grid-column: 1 / -1;
}

.no-posts p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* Loading and Error States */
.loading, .error {
    text-align: center;
    padding: 2rem;
    grid-column: 1 / -1;
}

.loading-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #e5e7eb;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

/* Responsive Blog */
@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-header {
        padding: 2rem 0;
    }

    .page-title *,
    .page-title {
        font-size: 2rem;
    }

    .blog-description {
        font-size: 1rem;
    }

    .blog-filters {
        padding: 1rem 0;
    }
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .tax-product_tag .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-filters .filter-group {
        justify-content: flex-start;
        gap: 15px;
    }
    .post-content {
        padding: 1rem;
    }

    .post-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .blog-header {
        padding: 1.5rem 0;
    }
    .page-title *,
    .page-title {
        font-size: 1.75rem;
    }

    .post-image img,
    .post-image .placeholder-image {
        height: 200px;
    }
}

/* Archive Page Styles */
.archive-header {
    padding: 4rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.archive-title {
    font-size: 3rem;
    font-weight: 500;
    color: var(--gray-900);
    text-align: center;
    margin: 0;
}

.archive-posts {
    padding: 3rem 0;
    background: var(--white);
}

.archive-posts .posts-grid {
    margin-bottom: 3rem;
}

/* Archive Pagination */
.archive-pagination {
    text-align: center;
    margin: 3rem 0;
}

.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    margin: 0 0.25rem;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-700);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.archive-pagination .page-numbers:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.archive-pagination .current {
    background-color: #3b82f6 !important;
    border-color: #3b82f6 !important;
    color: white !important;
    font-weight: 600 !important;
}

.archive-pagination .prev,
.archive-pagination .next {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Back to Blog Button */
.back-to-blog {
    text-align: center;
    margin-top: 3rem;
}

.btn-outline {
    color: var(--gray-900);
    border: 1px solid var(--gray-900);
    padding: var(--spacing-md) var(--spacing-xl);
    max-width: fit-content;
    font-weight: 500;
    text-decoration: none;
    text-transform: unset;
    font-size: 16px;
    display: inline-block;
    transition: all 0.2s ease;
}
.btn-white {
    color: white;
    border-color: white;
}
.btn-outline:hover {
    background: var(--gray-900);
    color: var(--white);
    transform: translateY(-4px);
}

/* Updated Post Card Category Styles */
.post-categories {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-link {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.category-link:hover {
    color: var(--primary);
}

.category-separator {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Responsive Archive */
@media (max-width: 768px) {
    .archive-header {
        padding: 2rem 0;
    }

    .archive-title {
        font-size: 2rem;
    }

    .archive-posts {
        padding: 2rem 0;
    }

    .archive-pagination .page-numbers {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .archive-header {
        padding: 1.5rem 0;
    }

    .archive-title {
        font-size: 1.75rem;
    }

    .archive-pagination {
        margin: 2rem 0;
    }

    .archive-pagination .page-numbers {
        padding: 0.5rem 0.75rem;
        margin: 0 0.125rem;
        font-size: 0.75rem;
    }
}

/* Single Post Styles */
.single-post-hero {
    width: 100%;
    overflow: hidden;
}

.single-post-hero-inner {
    display: flex;
    min-height: 500px;
}

.hero-image-col {
    flex: 1;
    min-height: 600px;
    min-width: 55%;
    position: relative;
    overflow: hidden;
}

.hero-image-col img,
.hero-image-col .placeholder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-image-col .placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    color: var(--gray-600);
    font-size: 1.5rem;
    font-weight: 500;
    min-height: 300px;
}

.hero-content-col {
    flex: 1;
    min-width: 45%;
    background-color: var(--gray-900);
    color: white;
    display: flex;
    align-items: center;
    padding: 3rem;
}

.hero-content-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
}
.container.sec-gap {
    margin-bottom: 70px;
    margin-top: 70px;
}
.container.sec-bottom {
    margin-bottom: 70px;
}
/* Breadcrumbs */
.breadcrumbs {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.breadcrumbs a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.breadcrumbs .current {
    color: var(--white);
    font-weight: 500;
}

/* Post Title */
.post-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--white);
}

/* Post Meta */
.post-meta {
    font-size: 0.875rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.meta-separator {
    color: var(--gray-600);
}

/* Single Post Content */
.single-post-content {
    padding: 4rem 0;
    background: var(--white);
}

.single-post-content .container {
    max-width: 800px;
    margin: 0 auto;
}

.entry-content {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-800);
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
    color: var(--gray-900);
    margin: 2rem 0 1rem 0;
    font-weight: 500;
}

.entry-content h2 *,
.entry-content h2 {
    font-size: 2rem;
    letter-spacing: unset;
    line-height: 1.2;
}

.entry-content h3 *,
.entry-content h3 {
    font-size: 1.5rem;
    line-height: 1.2;
}

.entry-content h4 *,
.entry-content h4 {
    font-size: 1.25rem;
    line-height: 1.4;
}

.entry-content h5 *,
.entry-content h5 {
    font-size: 1.125rem;
    line-height: 1.4;
}

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

.entry-content img {
    max-width: 100%;
    height: auto;
}

.entry-content figure {
    margin: 2rem 0;
    text-align: center;
}

.entry-content figcaption {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
    font-style: italic;
}

.entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.tags-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tags-links a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 20px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

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

/* Read More Section */
.read-more-section .post-card {
    background-color: transparent;
}
.read-more-section .post-card .post-content h2,
.read-more-section .post-card .post-content h2 *,
.read-more-section .section-title {
    color: white;
}
.read-more-section {
    padding: 4rem 0;
    background: var(--black);
    color: white;
}

.section-title {
    color: var(--gray-900);
}

.read-more-section .posts-grid {
    margin-bottom: 0;
}

/* Responsive Single Post */
@media (max-width: 1024px) {
    .single-post-hero-inner {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-col,
    .hero-content-col {
        min-width: 100%;
        height: auto;
    }

    .hero-image-col {
        height: auto;
        min-height: unset;
    }
    .post-meta {
        align-items: flex-start;
    }

    .hero-image-col img,
    .hero-image-col .placeholder-image {
        position: static;
        height: 100%;
    }

    .hero-content-col {
        padding: 2rem;
    }

    .hero-content-wrapper {
        padding: 1rem;
    }

    .post-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    .breadcrumbs {
        font-size: 0.75rem;
    }

    .hero-split {
        gap: 1.5rem;
    }

    .hero-image img,
    .hero-image .placeholder-image {
        height: 300px;
    }

    .post-info .post-title {
        font-size: 1.75rem;
    }

    .single-post-content {
        padding: 2rem 0;
    }

    .entry-content {
        font-size: 1rem;
    }

    .entry-content h2 {
        font-size: 1.75rem;
    }

    .entry-content h3 {
        font-size: 1.375rem;
    }

    .read-more-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content-wrapper .post-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .hero-image img,
    .hero-image .placeholder-image {
        height: 250px;
    }

    .post-info .post-title {
        font-size: 1.5rem;
    }

    .single-post-content {
        padding: 1.5rem 0;
    }

    .entry-content {
        font-size: 0.95rem;
    }

    .section-header .section-title {
        margin: 0;
    }
    .section-title {
        font-size: 32px;
    }
}

/* ===== PRODUCT PAGE ===== */
.product-page {
    padding: 2rem 0;
}

.product-layout {
    display: flex;
    flex-direction: row;
    gap: 2%;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 30px;
    align-items: flex-start;
}

/* Product Gallery */
.product-gallery {
    position: relative;
    min-width: 60%;
    width: 60%;
}

.gallery-container {
    position: relative;
    overflow: hidden;
}

.gallery-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    padding-right: 1rem;
}

.gallery-image {
    flex-shrink: 0;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Product Details */
.product-details {
    max-width: 36vw;
    /*position: sticky;*/
    top: 30px;
    flex-direction: column;
    padding: 1rem 0;
}

.breadcrumbs {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 12px;
}

.breadcrumbs a:hover {
    color: #333;
}

.breadcrumbs .separator {
    color: #ccc;
}

.breadcrumbs .current {
    color: var(--gray-300);
    font-weight: 500;
    font-size: 12px;
}
.product-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #333;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: black;
    margin-bottom: 2rem;
}


.price {
    font-size: 2rem;
    font-weight: 500;
    color: #333;
}

/* Product Options */
.product-option {
    margin-bottom: 2rem;
}

.option-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #333;
}

/* Product Attributes */
.attribute-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.attribute-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid #e0e0e0;
    background: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.attribute-btn:hover {
    border-color: var(--black);
    color: var(--black);
}

.attribute-btn.selected {
    background: var(--black);
    color: white;
    border-color: var(--black);
    font-weight: 500;
}

/* Attribute Select Dropdown */
.attribute-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #666;
    background: white;
    min-width: 200px;
    cursor: pointer;
}

.attribute-select:focus {
    outline: none;
    border-color: #333;
}



.size-guide-link {
    color: #666;
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Quantity Selection */
.quantity {
    margin-bottom: 2rem;
}

.quantity-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 150px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.qty-btn:hover {
    border-color: #333;
    color: #333;
}

/* WooCommerce Quantity Input Styling */
.quantity input[type="number"],
.quantity .qty,
.quantity .input-text,
.quantity input[name="quantity"] {
    width: 80px;
    height: 35px;
    border: 1px solid var(--black);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--black);
    background: white;
    padding: 0;
    margin: 0;
}

.quantity input[type="number"]:focus,
.quantity .qty:focus,
.quantity .input-text:focus,
.quantity input[name="quantity"]:focus {
    outline: none;
    border-color: #333;
}

/* Legacy support */
.qty-input {
    flex: 1;
    height: 40px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    background: white;
    min-width: 60px;
}

.qty-input:focus {
    outline: none;
    border-color: #333;
}

/* Hide default quantity arrows */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input[type=number] {
    -moz-appearance: textfield;
}

/* Add to Cart */
.add-to-cart-section {
    margin-bottom: 2rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #333;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #555;
}

.cart-icon {
    width: 20px;
    height: 20px;
}

/* Delivery Info */
.delivery-info {
    margin-bottom: 2rem;
}

.delivery-text {
    color: #666;
    font-size: 0.95rem;
}

/* TrustPilot Reviews */
.trustpilot-reviews {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stars {
    display: flex;
    gap: 2px;
}

.review-text {
    color: #666;
    font-size: 0.9rem;
}

.trusted-text {
    font-weight: 500;
}

/* Product Accordion */
.product-accordion {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    overflow: auto;
    margin-bottom: 2rem;
}

.accordion-item span {
    font-size: 20px;
    color: black;
    font-weight: 400;
    transition: .3s;
}
.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
    width: 100%;
    padding: 1rem 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.accordion-header:hover span {
    color: var(--gray-600);
}

.accordion-arrow {
    transition: transform 0.3s ease;
}

.accordion-item button svg {
    transition: .3s;
}
.accordion-item.active button svg {
    transition: .3s;
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 1rem;
}

/* Product Details Accordion Content - Double height with scroll */
.accordion-item:first-child.active .accordion-content {
    max-height: 400px; /* Double the height */
    max-width: 36vw;
    overflow-y: auto; /* Add scroll */
}

/* Custom scrollbar for webkit browsers */
.accordion-item:first-child.active .accordion-content::-webkit-scrollbar {
    width: 6px;
}

.accordion-item:first-child.active .accordion-content::-webkit-scrollbar-track {
    background: transparent;
}

.accordion-item:first-child.active .accordion-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.accordion-item:first-child.active .accordion-content::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.product-details-content p,
.delivery-returns-content p {
    margin-bottom: 0.5rem;
    color: black;
    font-size: 0.95rem;
}
.spd-customize-header h2 {
    letter-spacing: unset;
}
body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):hover {
    background-color: transparent;
    color: black;
    transform: translateY(-4px);
}
body .spd-customized-tag {
    background-color: var(--purple-700)!important;
    margin-left: 0!important;
}
.woocommerce-table td,
.woocommerce-table th {
    padding: 10px 10px 0 0
}
.woocommerce-table {
    text-align: left;
}
.woocommerce-order-overview li {
    margin-left: 0!important;
}
.woocommerce-order-overview {
    list-style: none;
}
body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    border-radius: 0!important;
    transition: .3s;
    min-height: 3em;
    background: black;
    border: 1px solid black;
    color: white;
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
}
body .wc-block-components-text-input input[type=text] {
    border-radius: 0!important;
    height: auto;
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name:hover {
    color: var(--purple-700);
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
    color: black;
}
.wc-block-components-formatted-money-amount {
    font-size: 20px;
}
.product-details-content .full-description {
    margin-bottom: 1.5rem;
}
.wc-block-checkout__sidebar .wc-block-components-product-name {
    font-size: 15px;
}
.product-details-content .full-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Printify Variation Selects Styling */
select[name="attribute_colors"],
select[name="attribute_sizes"] {
    display: none !important;
}

/* Hide original WooCommerce variation labels to prevent duplicates */
.variations_form .variations th,
.variations_form .variations td.label label {
    display: none !important;
}

/* Styled buttons for Printify variations */
.attribute-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

/* Product Tags */
.product-tags a:hover {
    color: var(--purple-700);
}
.product-tags a {
    color: black;
    font-size: 14px;
}
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-tag {
    padding: 0.25rem 0.75rem;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
}

/* Gallery Popup */
.gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999991;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.popup-image-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.popup-nav {
    z-index: 99;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.popup-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.popup-prev {
    left: 2rem;
}

.popup-next {
    right: 2rem;
}

.popup-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Gallery image cursor */
.gallery-image img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-image img:hover {
    transform: scale(1.02);
}

/* Explore More Section */
.explore-more-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

.explore-more-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.explore-more-hero {
    position: relative;
}

.explore-more-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #333;
}

.explore-more-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-more-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.explore-more-btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: white;
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.explore-more-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #333;
    text-decoration: none;
}

.explore-more-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.explore-product-card {
    transition: all 0.3s ease;
}

.explore-product-card:hover {
    transform: translateY(-4px);
}

/* Override product card styles for explore section */
.explore-more-grid .product-card {
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
    transition: all 0.3s ease;
}

.reset_variations:hover {
    text-decoration: none;
}
.reset_variations {
    display: block;
    margin-bottom: 10px;
    text-decoration: underline;
    color: black;
}
.single-product .spd-customize-btn {
    margin: 10px auto!important;
    padding: 23px 20px!important;
    min-width: 100%;
    width: 100%;
    font-size: 16px!important;
}
.placeholder-image {
    background: url('../assets/placeholder-image.svg') center center / cover no-repeat!important;
}
/* Responsive Design */
@media (max-width: 920px) {
    .product-layout {
        flex-direction: column;
        width: 100%;
    }
    .product-gallery {
        width: 100%;
        min-width: 100%;
    }
    .gallery-images {
        flex-direction: row;
        max-width: 100%;
        overflow-x: scroll;
    }
    .product-page > .right-large-container {
        padding-right: 0;
    }
    .product-layout {
        padding-left: 20px;
        padding-right: 20px;
    }
    .accordion-item:first-child.active .accordion-content,
    .product-details {
        min-width: 100%;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .product-details {
        position: unset;
    }
    .gallery-image {
        width: 90%;
    }
    .explore-more-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .explore-more-title {
        font-size: 2rem;
    }

    .explore-more-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .explore-product-card .product-image img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .blog-posts {
        padding-top: 0;
    }
    .popup-nav {
        top: unset;
        bottom: 0;
    }
    .explore-more-grid {
        grid-template-columns: 1fr;
    }

    .explore-more-title {
        font-size: 1.75rem;
    }
    .btn {
        font-size: 14px;
        text-align: center;
    }
    .btn-outline, .btn {
        padding: 20px 26px;
    }
    .featured-products {
        padding: var(--spacing-xl) 0;
    }
}

/* Back to Shop */
.back-to-shop {
    margin: 0;
    text-align: left;
    display: flex;
}

.back-to-shop-btn {
    transition: .3s;
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid black;
    color: black;
    text-decoration: none;
    font-weight: 500;
}

.back-to-shop-btn:hover {
    background: black;
    color: white;
    transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-layout {
        gap: 2rem;
    }

    .product-title {
        font-size: 2rem;
    }

    .size-buttons {
        flex-wrap: wrap;
    }

    .trustpilot-reviews {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}
