/* ===================================
   CSS Variables & Reset
   =================================== */

/*
   IMPORTANT: Theme colors, fonts, and design tokens are now centrally managed in config.php

   To customize the theme:
   1. Edit config.php to change colors, fonts, shadows, and other design tokens
   2. Colors are loaded via assets/css/dynamic-colors.php
   3. Fonts are loaded via assets/css/dynamic-fonts.php

   All CSS variables below are set dynamically from config.php
*/

:root {
    /* CSS Variables are dynamically loaded from:
       - assets/css/dynamic-colors.php (colors, shadows, design tokens)
       - assets/css/dynamic-fonts.php (font families)

       Fallback values below will be overridden by the dynamic configuration.
    */

    /* Colors - Managed in config.php */
    --primary-color: #EC4899;
    --primary-dark: #DB2777;
    --secondary-color: #F472B6;
    --accent-color: #FFFFFF;
    --wine-red: #DB2777;
    --candy-red: #F9A8D4;
    --sky-blue: #FBCFE8;
    --pinky-candy: #FDF2F8;
    --text-primary: #831843;
    --text-secondary: #9D174D;
    --text-light: #6B7280;
    --background: #ffffff;
    --background-light: #FDF2F8;
    --background-gray: #FCE7F3;
    --border-color: #FBCFE8;

    /* Shadows - Managed in config.php */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 2px 8px 0 rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 4px 16px 0 rgba(0, 0, 0, 0.16);

    /* Design Tokens - Managed in config.php */
    --transition: all 0.3s ease;
    --border-radius: 2px;
    --max-width: 1200px;

    /* Fonts - Managed in config.php */
    --primary-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --secondary-font: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    font-size: 16px;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Magazine Header & Navigation
   =================================== */
.site-header {
    background: var(--background);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Magazine Top Banner */
.magazine-top-banner {
    background: var(--primary-color);
    border-bottom: 2px solid var(--candy-red);
    padding: 0.4rem 0;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

.banner-left {
    display: flex;
    justify-content: flex-start;
}

.banner-center {
    display: flex;
    justify-content: center;
}

.banner-right {
    display: flex;
    justify-content: flex-end;
}

.banner-date {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-tagline {
    color: #F9A8D4;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* E-commerce Header Main - Flipkart Style */
.magazine-header-main {
    background: var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.ecommerce-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Brand Name Section - Left Side */
.brand-name-section {
    flex-shrink: 0;
}

.brand-name-link {
    text-decoration: none;
    display: block;
}

.flipkart-style-title {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-style: italic;
}

.flipkart-style-subtitle {
    font-size: 0.68rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    font-style: italic;
}

/* Search Bar - Center */
.header-search-bar {
    flex: 1;
    max-width: 600px;
    display: flex;
    background: white;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-family: var(--primary-font);
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-btn {
    background: white;
    border: none;
    padding: 0 1rem;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.2s ease;
}

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

/* Header Right Section */
.header-right-section {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.header-action-btn:hover {
    color: white;
}

.header-action-btn svg {
    flex-shrink: 0;
}

/* Header Quick Contact */
.header-quick-contact {
    display: flex;
    gap: 1rem;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    background: var(--background-light);
}

.quick-contact-item:hover {
    color: var(--primary-color);
    background: var(--background-gray);
}

.quick-contact-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.quick-contact-item span {
    font-weight: 600;
}

.header-top {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.header-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.header-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}

.logo a {
    display: block;
    transition: var(--transition);
}

.logo a:hover {
    opacity: 0.85;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo a:hover .logo-icon {
    transform: scale(1.05) rotate(5deg);
}

/* Social Media Icons */
.social-media-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.magazine-top-banner .social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.magazine-top-banner .social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: var(--background-gray);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-icon.facebook {
    color: #1877F2;
}

.social-icon.facebook:hover {
    background: #1877F2;
    color: white;
}

.social-icon.twitter {
    color: #1DA1F2;
}

.social-icon.twitter:hover {
    background: #1DA1F2;
    color: white;
}

.social-icon.instagram {
    color: #E4405F;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    color: white;
}

.social-icon.linkedin {
    color: #0A66C2;
}

.social-icon.linkedin:hover {
    background: #0A66C2;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 900;
    background: linear-gradient(135deg, #EC4899, #F472B6, #F9A8D4, #FBCFE8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.15rem;
    line-height: 1.2;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    text-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.logo .subtitle {
    font-size: 0.8rem;
    background: linear-gradient(90deg, #EC4899, #F9A8D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.95;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.contact-info a {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.contact-info a svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-info a:hover svg {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: var(--candy-red);
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 6px;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1100;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: var(--transition);
}

/* Navigation */
.main-navigation {
    background: var(--secondary-color);
}

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

.nav-item a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--background);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-item a:hover,
.nav-item.active a {
    color: var(--accent-color);
}

.nav-item a:hover::after,
.nav-item.active a::after {
    width: 80%;
}

/* ===================================
   Hero Section (Home Page) - Carousel
   =================================== */
.hero-carousel-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-carousel-container {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

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

.carousel-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 800px;
    padding: 2rem;
}

.carousel-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
}

.carousel-overlay p {
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-indicator.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

.carousel-control svg {
    display: block;
}

.hero-section {
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
    color: var(--background);
    padding: 8rem 0;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--accent-color);
    color: var(--background);
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #DB2777;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--background);
    color: var(--primary-color);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--background-light);
}

/* ===================================
   Magazine Style Layout (Home)
   =================================== */
.magazine-section {
    padding: 4rem 0;
    background: var(--background-light);
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

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

.magazine-card {
    background: var(--background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

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

a:has(.magazine-card):hover .magazine-card {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.magazine-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.magazine-card-content {
    padding: 1.5rem;
}

.magazine-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.magazine-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   Card Grid Layout (Services/Products)
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #EC4899 100%);
    color: var(--background);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.95;
}

.cards-section {
    padding: 4rem 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

a:has(.card):hover .card {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.card-image {
    width: 100%;
    height: 220px;
    background: var(--background-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
    overflow: hidden;
}

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

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===================================
   Split Screen Layout (About)
   =================================== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
}

.split-image {
    width: 100%;
    height: 400px;
    background: var(--background-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.split-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.split-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Single Column Content */
.single-column {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0;
}

.single-column h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.single-column h3 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.single-column p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.single-column ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.single-column li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* ===================================
   Two Column Layout (Contact)
   =================================== */
.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0;
}

.contact-form {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-box {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.contact-info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.info-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
}

.info-item-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-item-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.info-item-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===================================
   Footer
   =================================== */
.site-footer {
    background: var(--secondary-color);
    color: var(--background);
    padding: 3rem 0 1rem;
}

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

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

.contact-details li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* ===================================
   Features/Stats Section
   =================================== */
.features-section {
    padding: 4rem 0;
    background: var(--background);
}

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

.feature-box {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EC4899, #DB2777);
    color: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-box p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .hero-carousel-container {
        height: 450px;
    }

    .carousel-overlay h1 {
        font-size: 2.25rem;
        letter-spacing: 1.5px;
    }

    .carousel-overlay p {
        font-size: 1.1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .magazine-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .two-column-section {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-info {
        gap: 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 968px) {
    .header-content {
        gap: 1rem;
    }

    .social-media-icons {
        gap: 0.5rem;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .contact-info {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-carousel-container {
        height: 350px;
    }

    .carousel-overlay {
        bottom: 40px;
        padding: 1.5rem;
    }

    .carousel-overlay h1 {
        font-size: 1.75rem;
        letter-spacing: 1.2px;
    }

    .carousel-overlay p {
        font-size: 1rem;
        font-weight: 600;
    }

    .carousel-indicators {
        bottom: 15px;
    }

    .carousel-indicator {
        width: 10px;
        height: 10px;
    }

    .carousel-indicator.active {
        width: 30px;
    }

    .carousel-control {
        padding: 0.4rem;
    }

    .carousel-control svg {
        width: 30px;
        height: 30px;
    }

    .carousel-control.prev {
        left: 10px;
    }

    .carousel-control.next {
        right: 10px;
    }

    /* Magazine Header Responsive */
    .banner-content {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .banner-left,
    .banner-center,
    .banner-right {
        justify-content: center;
    }

    .banner-date {
        font-size: 0.65rem;
    }

    .banner-tagline {
        font-size: 0.7rem;
    }

    .magazine-header-main {
        padding: 0.75rem 0;
    }

    /* E-commerce Header Responsive */
    .ecommerce-header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .brand-name-section {
        flex: 1;
    }

    .flipkart-style-title {
        font-size: 1.2rem;
    }

    .flipkart-style-subtitle {
        font-size: 0.6rem;
    }

    .header-search-bar {
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    .header-right-section {
        gap: 1rem;
    }

    .header-action-btn span {
        display: none;
    }

    .header-content {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-areas: "left center right";
        gap: 0.5rem;
    }

    .header-left {
        grid-area: left;
    }

    .header-center {
        grid-area: center;
    }

    .header-right {
        grid-area: right;
    }

    .social-media-icons {
        gap: 0.25rem;
    }

    .magazine-top-banner .social-icon {
        width: 28px;
        height: 28px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .contact-info span {
        display: none;
    }

    .header-right {
        gap: 0.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-text {
        text-align: center;
    }

    .logo-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .btn-secondary {
        margin-left: 0;
        margin-top: 0.5rem;
    }

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

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

    .page-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .logo h1 {
        font-size: 1.3rem;
        font-weight: 900;
        letter-spacing: 1.2px;
    }

    .logo-icon svg {
        width: 32px;
        height: 32px;
    }

    .logo .subtitle {
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 1.8px;
    }
}

@media (max-width: 480px) {
    .hero-carousel-container {
        height: 280px;
    }

    .carousel-overlay {
        bottom: 30px;
        padding: 1rem;
        width: 95%;
    }

    .carousel-overlay h1 {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .carousel-overlay p {
        font-size: 0.9rem;
        font-weight: 600;
    }

    .carousel-indicators {
        bottom: 10px;
        gap: 6px;
    }

    .carousel-indicator {
        width: 8px;
        height: 8px;
    }

    .carousel-indicator.active {
        width: 24px;
    }

    .carousel-control {
        padding: 0.3rem;
    }

    .carousel-control svg {
        width: 24px;
        height: 24px;
    }

    .carousel-control.prev {
        left: 5px;
    }

    .carousel-control.next {
        right: 5px;
    }

    .container {
        padding: 0 15px;
    }

    /* Magazine Header Mobile */
    .magazine-top-banner {
        padding: 0.35rem 0;
    }

    .banner-date {
        font-size: 0.6rem;
    }

    .banner-tagline {
        font-size: 0.65rem;
    }

    .magazine-top-banner .social-icon {
        width: 24px;
        height: 24px;
    }

    .magazine-top-banner .social-icon svg {
        width: 12px;
        height: 12px;
    }

    .magazine-header-main {
        padding: 0.6rem 0;
    }

    /* E-commerce Header Mobile */
    .flipkart-style-title {
        font-size: 1rem;
    }

    .flipkart-style-subtitle {
        font-size: 0.55rem;
    }

    .search-input {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
    }

    .header-action-btn {
        font-size: 0.85rem;
    }

    .header-right-section {
        gap: 0.75rem;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .split-content h2,
    .single-column h2 {
        font-size: 2rem;
    }

    .logo h1 {
        font-size: 1rem;
        font-weight: 900;
        letter-spacing: 1px;
    }

    .logo-container {
        gap: 0.35rem;
    }

    .logo-icon svg {
        width: 30px;
        height: 30px;
    }

    .logo .subtitle {
        font-size: 0.58rem;
        font-weight: 800;
        letter-spacing: 1.5px;
    }

    .header-content {
        gap: 0.25rem;
        grid-template-columns: auto 1fr auto;
    }

    .social-media-icons {
        gap: 0.15rem;
    }

    .social-icon {
        width: 26px;
        height: 26px;
    }

    .social-icon svg {
        width: 14px;
        height: 14px;
    }

    .contact-info a svg {
        width: 20px;
        height: 20px;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.placeholder-image {
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
    font-size: 4rem;
}

/* ===================================
   Asymmetrical Layout Styles
   =================================== */
/* Hero section with asymmetrical layout */
.hero-z-pattern {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
    min-height: 550px;
    position: relative;
}

.hero-z-content {
    text-align: left;
    padding: 3rem 0;
    padding-right: 2rem;
    z-index: 2;
}

.hero-z-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: var(--background);
    font-weight: 800;
}

.hero-z-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    max-width: 90%;
}

.hero-z-content .btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-z-image {
    position: relative;
    width: 120%;
    height: 520px;
    overflow: visible;
    transform: translateY(-20px);
    margin-left: -2rem;
}

.hero-z-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s ease, transform 0.4s ease;
    opacity: 1;
}

.hero-z-image img:hover {
    transform: scale(1.03) rotate(-1deg);
}

/* Alternating feature layout for Z-pattern */
.z-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.z-feature-row:last-child {
    margin-bottom: 0;
}

.z-feature-row.reverse {
    direction: rtl;
}

.z-feature-row.reverse > * {
    direction: ltr;
}

.z-feature-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.z-feature-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.z-feature-icon-box {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #DB2777, #EC4899);
    color: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* CTA section with right alignment for Z-pattern */
.cta-z-pattern {
    background: var(--background-light);
    padding: 4rem 0;
}

.cta-z-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-z-text {
    flex: 1;
}

.cta-z-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-z-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.cta-z-action {
    flex-shrink: 0;
}

/* Responsive Asymmetrical Layout */
@media (max-width: 968px) {
    .hero-z-pattern {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .hero-z-content {
        text-align: center;
        padding-right: 0;
    }

    .hero-z-content p {
        max-width: 100%;
    }

    .hero-z-content .btn-group {
        justify-content: center;
    }

    .hero-z-image {
        width: 100%;
        height: 400px;
        transform: translateY(0);
        margin-left: 0;
    }

    .z-feature-row,
    .z-feature-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }

    .cta-z-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-z-content h1 {
        font-size: 2.25rem;
    }

    .hero-z-content p {
        font-size: 1.05rem;
    }

    .hero-z-image {
        height: 350px;
    }

    .z-feature-content h3 {
        font-size: 1.5rem;
    }

    .cta-z-text h2 {
        font-size: 2rem;
    }
}

/* ===================================
   Magazine Layout Styles
   =================================== */

/* MODERN GEOMETRIC HERO SECTION */
.magazine-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 50%, #FDF2F8 100%);
    min-height: 80vh;
}

.magazine-hero-container {
    width: 100%;
    height: 80vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
}

.magazine-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9) saturate(1.2);
    transition: all 0.5s ease-in-out;
    border-radius: 0 0 0 120px;
    box-shadow: -30px 30px 80px rgba(236, 72, 153, 0.3);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
}

.magazine-hero-overlay {
    position: relative;
    padding: 4rem 4rem 4rem 6rem;
    z-index: 10;
    text-align: left;
    background: transparent;
}

.magazine-hero-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.4);
}

.magazine-hero-overlay h1 {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.magazine-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.magazine-hero-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.magazine-hero-meta .divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* MODERN FEATURE CARDS */
.magazine-feature-strip {
    background: white;
    padding: 0;
    margin: -80px auto 0;
    position: relative;
    z-index: 100;
    max-width: 1200px;
}

.feature-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-strip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.feature-strip-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-strip-icon svg {
    color: var(--candy-red);
}

.feature-strip-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.feature-strip-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Magazine Main Layout - ASYMMETRIC */
.magazine-main-section {
    padding: 4rem 0;
    background: #F8F8F8;
    position: relative;
}

.magazine-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to left, rgba(236, 72, 153, 0.03), transparent);
    pointer-events: none;
}

.magazine-layout {
    display: grid;
    grid-template-columns: 1.8fr 380px;
    gap: 4rem;
    position: relative;
}

/* Magazine Section Header */
.magazine-section-header {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
}

.header-decoration {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--candy-red), var(--wine-red));
}

.magazine-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.magazine-section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-style: italic;
}

/* Large Feature Article - ASYMMETRIC */
.magazine-large-feature {
    display: block;
    background: white;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    transform: translateX(-20px);
    border-left: 6px solid var(--candy-red);
}

.magazine-large-feature:hover {
    transform: translateX(-20px) translateY(-8px) rotate(-0.5deg);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.25);
}

.magazine-large-feature-image {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.magazine-large-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    background: var(--background-gray);
}

.magazine-large-feature:hover .magazine-large-feature-image img {
    transform: scale(1.05);
}

.magazine-feature-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--candy-red);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    z-index: 2;
}

.magazine-large-feature-content {
    padding: 2rem;
}

.magazine-category {
    color: var(--wine-red);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.magazine-large-feature-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.magazine-large-feature-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.magazine-read-more {
    color: var(--candy-red);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Medium Grid - ASYMMETRIC */
.magazine-medium-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem 1.5rem;
    margin-bottom: 2rem;
}

.magazine-medium-grid .magazine-medium-card:nth-child(1) {
    grid-row: span 1;
    transform: translateY(-20px);
}

.magazine-medium-grid .magazine-medium-card:nth-child(2) {
    grid-row: span 1;
}

.magazine-medium-grid .magazine-medium-card:nth-child(3) {
    grid-column: 1;
    transform: translateX(30px);
}

.magazine-medium-grid .magazine-medium-card:nth-child(4) {
    grid-column: 2;
    transform: translateY(20px);
}

.magazine-medium-card {
    display: block;
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.magazine-medium-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.15);
}

.magazine-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.magazine-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background: var(--background-gray);
}

.magazine-medium-card:hover .magazine-card-image img {
    transform: scale(1.08);
}

.magazine-card-text {
    padding: 1.5rem;
}

.magazine-card-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.magazine-card-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Services Grid - ASYMMETRIC */
.magazine-services-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr;
    gap: 1.5rem;
}

.magazine-services-grid .magazine-service-card:nth-child(1) {
    transform: translateY(-15px);
}

.magazine-services-grid .magazine-service-card:nth-child(2) {
    transform: translateY(10px);
}

.magazine-services-grid .magazine-service-card:nth-child(3) {
    transform: translateY(-5px);
}

.magazine-service-card {
    display: block;
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.magazine-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.15);
}

.magazine-service-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.magazine-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
    background: var(--background-gray);
}

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

.magazine-service-content {
    padding: 1.25rem;
}

.magazine-service-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.magazine-service-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.magazine-service-link {
    color: var(--candy-red);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Sidebar */
.magazine-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.magazine-sidebar-box {
    background: white;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--wine-red);
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-title svg {
    color: var(--candy-red);
}

.trending-box {
    border-top-color: var(--candy-red);
}

.sidebar-featured-item {
    display: block;
    text-decoration: none;
    color: inherit;
}

.sidebar-item-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.sidebar-featured-item:hover .sidebar-item-image img {
    transform: scale(1.05);
}

.placeholder-image-small {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.sidebar-item-text h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.sidebar-item-text p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

.sidebar-category-list {
    list-style: none;
}

.sidebar-category-list li {
    border-bottom: 1px solid #eee;
}

.sidebar-category-list li:last-child {
    border-bottom: none;
}

.sidebar-category-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.sidebar-category-list a:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--candy-red);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-category-list a:hover {
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.sidebar-category-list a:hover:before {
    opacity: 1;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--wine-red), var(--primary-color));
    color: white;
    border-top: none;
}

.newsletter-box .sidebar-title {
    color: white;
}

.newsletter-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-sidebar {
    width: 100%;
    text-align: center;
    background: white;
    color: var(--primary-color);
}

.btn-sidebar:hover {
    background: var(--candy-red);
    color: white;
}

.quote-box {
    background: var(--background-light);
    border-top-color: var(--primary-color);
    text-align: center;
    padding: 2rem 1.5rem;
}

.quote-icon {
    color: var(--candy-red);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.quote-box p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.quote-author {
    font-size: 0.9rem;
    color: var(--wine-red);
    font-weight: 600;
}

/* CTA Banner */
.magazine-cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--wine-red) 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-banner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.cta-banner-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-cta:hover {
    background: var(--candy-red);
    color: white;
}

/* Magazine Layout Responsive - ASYMMETRIC */
@media (max-width: 1024px) {
    .magazine-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .magazine-sidebar {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 2rem;
    }

    .magazine-services-grid {
        grid-template-columns: 1.3fr 1fr;
    }

    .magazine-services-grid .magazine-service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 60%;
        margin: 0 auto;
    }

    .magazine-medium-grid {
        grid-template-columns: 1fr;
    }

    .magazine-medium-grid .magazine-medium-card:nth-child(1),
    .magazine-medium-grid .magazine-medium-card:nth-child(2),
    .magazine-medium-grid .magazine-medium-card:nth-child(3),
    .magazine-medium-grid .magazine-medium-card:nth-child(4) {
        transform: none;
    }

    .magazine-medium-grid .magazine-medium-card:nth-child(odd) {
        transform: translateX(-15px);
    }

    .magazine-medium-grid .magazine-medium-card:nth-child(even) {
        transform: translateX(15px);
    }
}

@media (max-width: 768px) {
    .magazine-hero-container {
        height: 50vh;
        min-height: 400px;
    }

    .magazine-hero-image {
        transform: scale(1.05) translateX(5%);
    }

    .magazine-hero-overlay {
        padding: 2rem 1.5rem;
        left: 3%;
        bottom: 5%;
        max-width: 90%;
        clip-path: polygon(0 0, 100% 0, 98% 100%, 0 100%);
    }

    .magazine-hero-overlay h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .magazine-hero-subtitle {
        font-size: 1.1rem;
    }

    .feature-strip-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .magazine-section-header h2 {
        font-size: 2rem;
    }

    .magazine-large-feature {
        transform: translateX(-10px);
    }

    .magazine-large-feature:hover {
        transform: translateX(-10px) translateY(-5px);
    }

    .magazine-large-feature-image {
        height: 250px;
    }

    .magazine-large-feature-content h3 {
        font-size: 1.5rem;
    }

    .magazine-medium-grid {
        grid-template-columns: 1fr;
    }

    .magazine-medium-grid .magazine-medium-card:nth-child(odd) {
        transform: translateX(-10px);
    }

    .magazine-medium-grid .magazine-medium-card:nth-child(even) {
        transform: translateX(10px);
    }

    .magazine-services-grid {
        grid-template-columns: 1fr;
    }

    .magazine-services-grid .magazine-service-card:nth-child(1),
    .magazine-services-grid .magazine-service-card:nth-child(2),
    .magazine-services-grid .magazine-service-card:nth-child(3) {
        transform: none;
    }

    .magazine-services-grid .magazine-service-card:nth-child(odd) {
        transform: translateX(-8px);
    }

    .magazine-services-grid .magazine-service-card:nth-child(even) {
        transform: translateX(8px);
    }

    .magazine-sidebar {
        grid-template-columns: 1fr;
    }

    .cta-banner-content h2 {
        font-size: 1.8rem;
    }

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

@media (max-width: 480px) {
    .magazine-hero-container {
        height: 40vh;
        min-height: 300px;
    }

    .magazine-hero-image {
        transform: scale(1.05) translateX(3%);
    }

    .magazine-hero-overlay {
        left: 2%;
        bottom: 3%;
        max-width: 94%;
        padding: 1.5rem;
    }

    .magazine-hero-overlay h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .magazine-hero-subtitle {
        font-size: 0.95rem;
    }

    .magazine-hero-meta {
        font-size: 0.75rem;
        flex-wrap: wrap;
    }

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

    .magazine-large-feature {
        transform: translateX(-5px);
    }

    .magazine-large-feature:hover {
        transform: translateX(-5px) translateY(-3px);
    }

    .magazine-large-feature-content {
        padding: 1.5rem;
    }

    .magazine-medium-grid .magazine-medium-card:nth-child(odd) {
        transform: translateX(-5px);
    }

    .magazine-medium-grid .magazine-medium-card:nth-child(even) {
        transform: translateX(5px);
    }

    .magazine-services-grid .magazine-service-card:nth-child(odd) {
        transform: translateX(-5px);
    }

    .magazine-services-grid .magazine-service-card:nth-child(even) {
        transform: translateX(5px);
    }

    .magazine-card-text,
    .magazine-service-content {
        padding: 1rem;
    }
}

/* ===================================
   MedPlus/Pharmacy Style Header
   =================================== */

/* Top Header Bar */
.top-header-bar {
    background: var(--background);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

.top-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand-logo-section {
    flex-shrink: 0;
}

.brand-logo-link {
    text-decoration: none;
    display: inline-block;
}

.brand-logo {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: color var(--transition);
}

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

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

.login-btn {
    color: var(--primary-color);
    font-weight: 500;
}

/* Second Header Bar - Sticky */
.second-header-bar {
    background: var(--background-light);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-sm);
}

.second-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Delivery Address */
.delivery-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.delivery-address svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.address-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.delivery-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.address-value {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Main Search Bar */
.main-search-bar {
    flex: 1;
    max-width: 600px;
    display: flex;
    align-items: center;
    background: var(--background);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.main-search-bar:focus-within {
    border-color: var(--primary-color);
}

.search-category {
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    font-size: 0.875rem;
    color: var(--text-primary);
    border-right: 1px solid var(--border-color);
    cursor: pointer;
    outline: none;
}

.search-input-main {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    font-size: 0.875rem;
    color: var(--text-primary);
    outline: none;
}

.search-input-main::placeholder {
    color: var(--text-secondary);
}

.search-btn-main {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

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

.search-btn-main svg {
    color: white;
}

/* Upload Prescription */
.upload-prescription {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--accent-color);
    color: white;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
    flex-shrink: 0;
}

.upload-prescription:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.upload-prescription svg {
    color: white;
    flex-shrink: 0;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.action-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background);
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition);
}

.action-link:hover {
    background: var(--background-gray);
    color: var(--primary-color);
}

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

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

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-color);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
}

/* Main Navigation */
.main-navigation {
    background: var(--primary-color);
    border-bottom: 2px solid var(--primary-dark);
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-item a {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition);
    position: relative;
}

.nav-item a:hover {
    background: var(--primary-dark);
}

.nav-item.active a {
    background: var(--primary-dark);
    font-weight: 600;
}

.nav-item.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .second-header-content {
        flex-wrap: wrap;
    }

    .main-search-bar {
        order: 3;
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .top-header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .top-header-right {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .top-link span {
        display: none;
    }

    .delivery-address {
        display: none;
    }

    .upload-prescription {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .upload-prescription span {
        display: none;
    }

    .search-category {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        font-size: 1.2rem;
    }

    .top-link {
        font-size: 0.75rem;
    }

    .second-header-content {
        gap: 0.75rem;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .action-link {
        width: 36px;
        height: 36px;
    }
}