/* ========================================
   STORE THEME - Reusable Styles
   Primary Color: #e60050
   ======================================== */

:root {
    --primary-color: #e60050;
    --primary-dark: #c70043;
    --primary-light: #ff1a6e;
    --light-bg: #f8f9fa;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.store-view-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    background: #f8f9fa;
}

/* Store Header Styles */
.store-header {
    background: white;
    margin-bottom: 2rem;
}

.banner-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #fde8ef 0%, #ffe0ea 100%);
}

.store-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-banner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e60050;
    font-size: 5rem;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.store-profile {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
    align-items: flex-start;
}

.store-logo-section {
    position: relative;
    margin-top: -50px;
}

.store-logo-section .store-logo{
    width: 100px;
    height: 100px;
}

.store-logo-wrapper {
    background: white;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.store-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #4caf50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.store-info-section {
    flex: 1;
    min-width: 300px;
}

.store-name {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.store-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 1rem;
}

.meta-item i {
    color: #e60050;
}

.store-description {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

.store-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 180px;
    text-decoration: none;
}

.action-btn.primary {
    background: #e60050;
    color: white;
}

.action-btn.primary:hover {
    background: #c70043;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 0, 80, 0.3);
}

.action-btn.secondary {
    background: transparent;
    color: #e60050;
    border: 2px solid #e60050;
}

.action-btn.secondary:hover {
    background: #e60050;
    color: white;
}

/* Section Styles */
.products-section,
.services-section,
.blogs-section,
.category-section,
.brand-section {
    padding: 4rem 0;
    background: white;
}

.services-section {
    background: #f8f9fa;
}

.brand-section {
    background: #f8f9fa;
}

/* Carousel Grid Container */
.owl-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.owl-carousel .owl-item {
    flex: 1;
    min-width: 250px;
}

/* Products Carousel */
.products-carousel {
    /* Owl carousel styles applied */
}

.products-carousel .owl-item {
    display: flex;
}

.products-carousel .product-card {
    width: 100%;
}

/* Services Carousel */
.services-carousel {
    /* Owl carousel styles applied */
}

.services-carousel .owl-item {
    display: flex;
}

.services-carousel .service-card {
    width: 100%;
}

/* Blogs Carousel */
.blogs-carousel {
    /* Owl carousel styles applied */
}

.blogs-carousel .owl-item {
    display: flex;
}

.blogs-carousel .blog-card {
    width: 100%;
}

/* Category Carousel */
.category-carousel {
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    gap: 24px;
    padding: 0 8px;
}

.category-carousel .owl-item {
    padding: 0 !important;
    margin: 0 !important;
}

.category-carousel .modern-category-card {
    width: 100%;
    margin: 0 !important;
}

/* Brand Carousel */
.brand-carousel {
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    gap: 24px;
    padding: 0 8px;
}

.brand-carousel .owl-item {
    padding: 0 !important;
    margin: 0 !important;
}

.brand-carousel .modern-brand-card {
    width: 100%;
    margin: 0 !important;
}

/* Category Card Styles - Modern Design */
.modern-category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.modern-category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(230, 0, 80, 0.15);
}

.category-image-wrapper {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modern-category-card:hover .category-image {
    transform: scale(1.12) rotate(1deg);
}

.category-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f4fd 0%, #d1e7f7 100%);
    color: #2196F3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-placeholder i {
    font-size: 3rem;
    opacity: 0.6;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-category-card:hover .category-overlay {
    opacity: 1;
}

.category-content {
    padding: 1.2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

/* Brand Card Styles - Modern Design */
.modern-brand-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(230, 0, 80, 0.1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    margin: 0;
    padding: 0;
    position: relative;
    aspect-ratio: 1 / 1;
}

.modern-brand-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(230, 0, 80, 0.2);
    border-color: rgba(230, 0, 80, 0.3);
}

/* Brand Logo - Full Cover */
.brand-logo-fullcover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    flex: 1;
    margin: 0;
    padding: 0;
    border: none;
}

.modern-brand-card:hover .brand-logo-fullcover {
    transform: scale(1.08);
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.modern-brand-card:hover .brand-overlay {
    opacity: 1;
}

/* Brand Placeholder - Full Cover with Centered Name */
.brand-placeholder-full {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
}

.gradient-placeholder-3 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.brand-name-centered {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.5px;
}

/* Legacy Styles - Hidden */
.brand-image-wrapper,
.brand-content,
.brand-logo,
.brand-placeholder,
.gradient-placeholder-2,
.brand-name {
    display: none;
}

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

.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.section-title i {
    color: #e60050;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* Product Card Styles - Modern Design */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    margin: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(230, 0, 80, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 0, 80, 0.2);
    border-color: rgba(230, 0, 80, 0.3);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulse 2s infinite;
}

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

.featured-badge i {
    font-size: 0.85rem;
    animation: rotate 3s linear infinite;
}

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

/* Product Image - Fixed Height (cards) */
.product-card .product-image-wrapper {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-card .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .product-image {
    transform: scale(1.15) rotate(2deg);
}

.product-card .product-placeholder {
    width: 100%;
    height: 100%;
    color: #e60050;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .gradient-placeholder-1 {
    background: linear-gradient(135deg, #fde8ef 0%, #ffe0ea 100%);
}

.product-card .product-placeholder i {
    font-size: 4rem;
    opacity: 0.6;
}

.product-card .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Product Info Wrapper */
.product-info-wrapper {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Product Content */
.product-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #e60050 0%, #ff1a6e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern Button */
.product-btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #e60050 0%, #c70043 100%);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 0, 80, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.product-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.product-btn-modern:hover::before {
    left: 100%;
}

.product-btn-modern:hover {
    background: linear-gradient(135deg, #ff1a6e 0%, #e60050 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 0, 80, 0.4);
}

.product-btn-modern i {
    transition: transform 0.3s ease;
}

.product-btn-modern:hover i {
    transform: translateX(3px);
}

.product-price {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e60050 0%, #ff1a6e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern Button */
.product-btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #e60050 0%, #c70043 100%);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 0, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.product-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.product-btn-modern:hover::before {
    left: 100%;
}

.product-btn-modern:hover {
    background: linear-gradient(135deg, #ff1a6e 0%, #e60050 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 0, 80, 0.4);
}

.product-btn-modern i {
    transition: transform 0.3s ease;
}

.product-btn-modern:hover i {
    transform: translateX(5px);
}

/* Legacy Support - Keep old class names working */
.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #e60050;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: #c70043;
    color: white;
    transform: translateX(5px);
}

/* Service Card Styles - Modern Design */
.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    margin: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(230, 0, 80, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 0, 80, 0.2);
    border-color: rgba(230, 0, 80, 0.3);
}

/* Service Image - Fixed Height */
.service-image-wrapper {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 0px;
}

.service-card:hover .service-image {
    transform: scale(1.15) rotate(2deg);
}

.service-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f4fd 0%, #d1e7f7 100%);
    color: #2196F3;
}

.service-placeholder i {
    font-size: 4rem;
    opacity: 0.6;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

/* Service Content */
.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    min-height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    min-height: 3.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0f1115 0%, #0f1115 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern Service Button */
.service-btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: #e60050;
    border: 2px solid #e60050;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e60050 0%, #c70043 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.service-btn-modern:hover::before {
    left: 0;
}

.service-btn-modern:hover {
    color: white;
    border-color: #e60050;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 0, 80, 0.3);
}

.service-btn-modern i {
    transition: transform 0.3s ease;
}

.service-btn-modern:hover i {
    transform: translateX(5px);
}

/* Legacy Support - Old service icon classes */
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e60050 0%, #c70043 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-content {
    padding-top: 1rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: #e60050;
    border: 2px solid #e60050;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #e60050;
    color: white;
}

/* Blog Card Styles - Modern Design */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    margin: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(230, 0, 80, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 0, 80, 0.2);
    border-color: rgba(230, 0, 80, 0.3);
}

/* Blog Image - Fixed Height */
.blog-image-wrapper {
    position: relative;
    height: 240px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-card:hover .blog-image {
    transform: scale(1.15) rotate(1deg);
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    color: #FF9800;
}

.blog-placeholder i {
    font-size: 3.5rem;
    opacity: 0.6;
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

/* Blog Content */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #999;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.blog-meta i {
    color: #e60050;
    font-size: 0.9rem;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    min-height: 2.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    min-height: 2.7rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Modern Blog Button */
.blog-btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #e60050 0%, #c70043 100%);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 0, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.blog-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.blog-btn-modern:hover::before {
    left: 100%;
}

.blog-btn-modern:hover {
    background: linear-gradient(135deg, #ff1a6e 0%, #e60050 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 0, 80, 0.4);
}

.blog-btn-modern i {
    transition: transform 0.3s ease;
}

.blog-btn-modern:hover i {
    transform: translateX(3px);
}

/* Legacy Support */
.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e60050;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.blog-btn:hover {
    color: #c70043;
    transform: translateX(5px);
}

/* Store Info Section */
.store-info-section {
    /* background: #f8f9fa; */
    padding: 3rem 0 1rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e60050 0%, #c70043 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.info-card p {
    color: #666;
    margin: 0;
}

/* Only style links inside info cards, not header navigation */
.store-view-page .info-card a,
.store-view-page .info-card a:hover {
    color: #e60050;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.store-view-page .info-card a:hover {
    color: #c70043;
}

/* Preserve original header menu link colors */
.main-menu ul li a {
    color:black!important;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, #e60050 0%, #c70043 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-btn.primary {
    background: white;
    color: #e60050;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #e60050;
}

/* Owl Carousel Custom Styles */
.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none !important;
}

.owl-carousel .owl-nav button:hover {
    background: #e60050 !important;
    box-shadow: 0 6px 20px rgba(230, 0, 80, 0.3);
}

.owl-carousel .owl-nav button.owl-prev {
    left: -25px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -25px;
}

.owl-carousel .owl-nav button span {
    font-size: 2rem;
    line-height: 1;
    color: #333;
}

.owl-carousel .owl-nav button:hover span {
    color: white;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.owl-carousel .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ddd !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active {
    background: #e60050 !important;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .store-profile {
        flex-direction: column;
        text-align: center;
    }

    .store-logo-section {
        margin: -80px auto 0;
    }

    .store-name {
        font-size: 2rem;
    }

    .store-meta {
        justify-content: center;
    }

    .store-actions {
        align-items: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .owl-carousel .owl-nav button {
        display: none;
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: 200px;
    }

    .store-logo-wrapper {
        width: 120px;
        height: 120px;
    }

    .store-name {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   MARKETPLACE PAGE STYLES
   ======================================== */

.marketplace-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    background: #f8f9fa;
}

/* Marketplace Header Styles */
.marketplace-header {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #e60050 0%, #c70043 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.marketplace-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

.marketplace-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.marketplace-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

/* Search Section */
.search-section {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus {
    border-color: #e60050;
    box-shadow: 0 0 0 3px rgba(230, 0, 80, 0.1);
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

/* Store List Section */
.store-list-section {
    padding: 3rem 0;
    background: white;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.store-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.store-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-banner {
    position: relative;
    height: 140px;
    overflow: hidden;
}

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

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

.placeholder-banner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fde8ef 0%, #ffe0ea 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #e60050;
}

.placeholder-banner i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.placeholder-banner span {
    font-weight: bold;
    font-size: 1.1rem;
}

.verified-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #28a745;
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: bold;
}

.card-content {
    padding: 1.5rem;
    position: relative;
}

.store-logo-wrapper {
    position: absolute;
    top: -40px;
    left: 1.5rem;
}

.store-logo {
    width: 75px;
    height: 75px;
    background: white;
    padding: 4px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.store-info {
    margin-top: 45px;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.location-info i {
    color: #e60050;
}

.store-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.store-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 45px;
}

.vendor-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.vendor-avatar {
    width: 35px;
    height: 35px;
    background: #e60050;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.vendor-name {
    font-weight: 500;
    color: #333;
}

.card-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.visit-button,
.details-button {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
    min-width: 120px;
    border: none;
}

.visit-button.primary {
    background: #e60050;
    color: white;
}

.visit-button.primary:hover {
    background: #c70043;
    transform: translateY(-2px);
}

.details-button {
    background: transparent;
    color: #e60050;
    border: 2px solid #e60050;
}

.details-button:hover {
    background: #e60050;
    color: white;
}

/* No Data Section */
.no-data-section {
    text-align: center;
    padding: 4rem 2rem;
}

.no-data-content i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.no-data-content h3 {
    color: #666;
    margin-bottom: 1rem;
}

.no-data-content p {
    color: #888;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.clear-search-btn {
    background: #e60050;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.clear-search-btn:hover {
    background: #c70043;
}

/* Mission Section */
.mission-section {
    background: #f8f9fa;
    padding: 3rem 0;
}

.two-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.column {
    flex: 0 0 48%;
    background: #fde8ef;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.column:hover {
    transform: translateY(-5px);
}

.column h2 {
    color: #e60050;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.column p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #e60050 0%, #c70043 100%);
    color: white;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 160px;
}

.cta-button.primary {
    background: white;
    color: #e60050;
    border: 2px solid white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.primary:hover {
    background: #f5f5f5;
}

.cta-button.secondary:hover {
    background: white;
    color: #e60050;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Responsive Design - Marketplace */
@media (max-width: 768px) {
    .marketplace-header h1 {
        font-size: 2rem;
    }

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

    .column {
        flex: 0 0 100%;
    }

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

    .card-actions {
        flex-direction: column;
    }

    .visit-button,
    .details-button {
        flex: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .marketplace-header {
        padding: 2rem 1rem;
    }

    .store-list-section {
        padding: 2rem 0;
    }

    .store-card {
        margin: 0 1rem;
    }
}

/* ========================================
   PRODUCT PAGE - Gallery & Action Buttons
   ======================================== */

/* Product Gallery - Main Image Container */
.product-image-wrapper {
    height: 600px;
    background: #0f1115;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* Product Video Badge */
.product-video-badge {
    background: white;
    color: #333;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.product-video-badge i {
    color: #e60050;
    font-size: 0.85rem;
}

.product-video-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Product Action Buttons */
.product-btn-primary,
.product-btn-secondary {
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.product-btn-primary {
    background: linear-gradient(135deg, #e60050 0%, #c70043 100%);
    color: white;
}

.product-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 0, 80, 0.3);
}

.product-btn-secondary {
    background: white;
    color: #e60050;
    border: 2px solid #e60050 !important;
}

.product-btn-secondary:hover {
    background: #e60050;
    color: white;
    transform: translateY(-2px);
}

/* Gallery Thumbnail Styles */
.thumbnail-active {
    border-color: #e60050 !important;
    opacity: 1 !important;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(230, 0, 80, 0.3) !important;
}

.thumbnail-inactive {
    opacity: 0.6;
    filter: grayscale(20%);
}

.thumbnail-inactive:hover {
    opacity: 0.9;
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.thumbnail-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Product Content Styling */
.product-content {
    word-wrap: break-word;
}

.product-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    color: #1a1a1a;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-content h1,
.product-content h2,
.product-content h3,
.product-content h4,
.product-content h5,
.product-content h6 {
    color: #1a1a1a;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-content p {
    margin-bottom: 1rem;
}

.product-content ul,
.product-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.product-content li {
    margin-bottom: 0.5rem;
}

.product-content a {
    color: #e60050;
    text-decoration: underline;
}

.product-content a:hover {
    color: #c70043;
}

.product-content blockquote {
    border-left: 4px solid #e60050;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #555;
}

.product-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.product-content table th,
.product-content table td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
}

.product-content table th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Smooth scroll for thumbnail gallery */
.overflow-auto::-webkit-scrollbar {
    height: 8px;
}

.overflow-auto::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.overflow-auto::-webkit-scrollbar-thumb {
    background: #e60050;
    border-radius: 10px;
}

.overflow-auto::-webkit-scrollbar-thumb:hover {
    background: #c70043;
}

/* Responsive adjustments for product page */
@media (max-width: 768px) {
    .product-image-wrapper {
        height: 400px;
    }

    .display-4 {
        font-size: 2rem !important;
    }

    .display-5 {
        font-size: 1.5rem !important;
    }

    .thumbnail-item {
        width: 80px !important;
        height: 80px !important;
    }

    .product-btn-primary,
    .product-btn-secondary {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

.breadcrumb-item:not(:first-child)::before{
    content: ">"!important;
    margin: 0 0.5rem;
}

/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230, 0, 80, 0.1) 0%, rgba(230, 0, 80, 0.05) 100%);
    color: #e60050;
    border: 2px solid rgba(230, 0, 80, 0.2);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, #e60050 0%, #c70043 100%);
    color: white;
    border-color: #e60050;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 0, 80, 0.3);
}