/**
 * Bellam Sweets - Main Stylesheet
 * Mobile-First, Similar to sweetkaramcoffee.in
 */

/* ===== CSS Variables ===== */
:root {
    /* --primary-color: #f69d1c; - DYNAMIC FROM DB */
    /* --primary-dark: #e08d0c; - DYNAMIC FROM DB */
    /* --secondary-color: #004e4a; - DYNAMIC FROM DB */
    --text-color: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e5e5e5;
    --success-color: #22c55e;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --font-family: 'Jost', sans-serif;
    --transition: all 0.3s ease;
    --dark: #1a1a1a;
    
    
    
    
}

/* ===== Utilities ===== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
}

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

.btn-secondary {
    background: var(--secondary-color);
    color: #fff;
}

.btn-secondary:hover {
    background: #003a37;
}

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

.btn-outline:hover {
    background: var(--text-color);
    color: #fff;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

/* ===== Announcement Bar ===== */
.announcement-bar {
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 13px;
}

.announcement-bar i {
    margin-right: 8px;
}

/* Flash Messages */
.flash-message {
    padding: 15px 0;
    font-size: 14px;
}

.flash-success {
    background: #d1fae5;
    color: #065f46;
}

.flash-error {
    background: #fee2e2;
    color: #991b1b;
}

.flash-message .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flash-close {
    padding: 5px;
    opacity: 0.7;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
}

.hero-slider {
    width: 100%;
}

.hero-slide {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    display: none;
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-default {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
}

.swiper-button-prev, .swiper-button-next {
    color: #fff;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* ===== Features Bar ===== */
.features-bar {
    background: var(--bg-light);
    padding: 30px 0;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 28px;
    color: var(--primary-color);
}

.feature-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== Sections ===== */
.section {
    padding: 50px 0;
}

.section.bg-light {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 15px;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 15px;
}

.view-all:hover {
    gap: 10px;
}

/* ===== Categories Grid ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.category-card {
    display: block;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.category-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-light);
}

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

.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
}

.category-card h3 {
    font-size: 14px;
    font-weight: 600;
}

/* ===== Products Grid ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.product-badges .badge {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.badge-sale {
    background: var(--error-color);
    color: #fff;
}

.badge-new {
    background: var(--success-color);
    color: #fff;
}

.badge-bestseller {
    background: var(--primary-color);
    color: #000;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
    transition: var(--transition);
}

.wishlist-btn:hover, .wishlist-btn.active {
    background: var(--error-color);
    color: #fff;
}

.product-image {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-light);
}

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

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

.product-info {
    padding: 15px;
}

.product-category {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 5px;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

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

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.product-rating .stars {
    display: flex;
    gap: 2px;
}

.product-rating .stars i {
    font-size: 12px;
    color: var(--border-color);
}

.product-rating .stars i.filled {
    color: var(--primary-color);
}

.review-count {
    font-size: 12px;
    color: var(--text-muted);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-weight {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.btn-add-cart {
    width: 100%;
    padding: 10px;
    font-size: 13px;
}

/* Products Slider */
.products-slider {
    padding-bottom: 40px;
}

.products-slider .swiper-slide {
    height: auto;
}

/* ===== Promo Banner ===== */
.promo-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #006b66 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.promo-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: #000;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}

.promo-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.promo-content p {
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Why Choose Section ===== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-choose-item {
    text-align: center;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}

.why-choose-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-choose-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== Testimonials ===== */
.testimonials-slider {
    padding-bottom: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--primary-color);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.author-avatar {
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
}

.author-info h5 {
    font-size: 15px;
    font-weight: 600;
}

.author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== Instagram Section ===== */
.instagram-placeholder {
    text-align: center;
    padding: 60px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.instagram-placeholder i {
    font-size: 48px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* ===== Footer ===== */

.footer-main {
    padding: 50px 0;
    background: #1a1a1a;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-col h4 {
    color: var(--footer-heading-color, var(--primary-color)) !important;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    max-height: 40px;
}

.footer-col p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--primary-color);
}

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

.footer-col ul a {
    font-size: 14px;
    color: #aaa;
}

.footer-col ul a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background: #111;
    padding: 20px 0;
    color: #aaa;
    font-size: 14px;
}

.footer-bottom-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: var(--primary-color);
    color: #000;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--text-color);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 998;
    transition: var(--transition);
}

.back-to-top.visible {
    display: flex;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay.active {
    display: flex;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Toast Notifications */
.toast-container {
    pointer-events: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    pointer-events: auto;
    padding: 15px 20px;
    background: #333;
    color: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

.toast.success {
    background: var(--success-color);
}

.toast.error {
    background: var(--error-color);
}

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

/* ===== Breadcrumb ===== */
.breadcrumb-section {
    padding: 15px 0;
    background: var(--bg-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
}

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

.breadcrumb .separator {
    font-size: 10px;
    color: var(--text-muted);
}

/* ===== Page Header ===== */
.page-header {
    padding: 30px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 28px;
    font-weight: 700;
}

/* ===== Products Page ===== */
.products-page-section {
    padding: 30px 0 50px;
}

.products-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.products-sidebar {
    display: none;
}

.filter-group h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.category-list li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.category-list li a i {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.category-list li a .cat-name-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
}

.products-count {
    font-size: 14px;
    color: var(--text-muted);
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.sort-dropdown select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.view-toggle {
    display: none;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn, .page-num {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    transition: var(--transition);
}

.page-num.active, .page-btn:hover, .page-num:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
}

.no-products i {
    font-size: 60px;
    color: var(--border-color);
    margin-bottom: 20px;
}

/* ===== Product Detail Page ===== */
.product-detail-section {
    padding: 30px 0 50px;
}

.product-detail-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-gallery {
    position: relative;
}

.main-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-light);
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 15px;
    background: var(--error-color);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    z-index: 2;
}

.main-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.thumbnail-slider-wrapper {
    margin-top: 15px;
}

.thumbnail {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.thumbnail.active, .thumbnail:hover {
    border-color: var(--primary-color);
}

.thumbnail img {
    aspect-ratio: 1;
    object-fit: cover;
}

.product-info-detail {
    padding: 0;
}

.product-category-link {
    display: inline-block;
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-info-detail .product-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.product-rating-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-rating-detail .stars i {
    color: var(--primary-color);
}

.rating-text {
    font-size: 14px;
    color: var(--text-muted);
}

.product-price-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.product-price-detail .current-price {
    font-size: 32px;
}

.product-price-detail .original-price {
    font-size: 20px;
}

.discount-percent {
    padding: 4px 10px;
    background: #dcfce7;
    color: #15803d;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.tax-info {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.product-short-desc {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.product-variants {
    margin-bottom: 25px;
}

.product-variants label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variant-btn {
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: var(--transition);
}

.variant-btn:hover, .variant-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #000;
}

.variant-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.in-stock {
    color: var(--success-color);
    font-weight: 500;
}

.out-of-stock {
    color: var(--error-color);
    font-weight: 500;
}

.low-stock {
    color: var(--warning-color);
    font-size: 13px;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
}

.qty-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.quantity-selector input {
    width: 50px;
    height: 45px;
    text-align: center;
    border: none;
    font-weight: 600;
}

.btn-add-to-cart {
    flex: 1;
}

.btn-wishlist {
    width: 50px;
}

.btn-wishlist.active {
    background: var(--error-color);
    border-color: var(--error-color);
    color: #fff;
}

.btn-buy-now {
    width: 100%;
    margin-bottom: 25px;
}

.product-meta {
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.meta-item .label {
    color: var(--text-muted);
}

.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.pinterest { background: #e60023; }

.delivery-check {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
}

.delivery-check h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 15px;
}

.pincode-form {
    display: flex;
    gap: 10px;
}

.pincode-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

/* Product Tabs */
.product-tabs {
    margin-top: 50px;
}

.tabs-nav {
    display: flex;
    gap: 5px;
    border-bottom: 2px solid var(--border-color);
    overflow-x: auto;
}

.tab-btn {
    padding: 15px 20px;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tabs-content {
    padding: 30px 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Reviews */
.reviews-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.average-rating {
    text-align: center;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.total-reviews {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}

.review-item {
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar, .reviewer-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-avatar-placeholder {
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
}

.reviewer-info h5 {
    font-size: 15px;
    margin-bottom: 3px;
}

.verified-badge {
    font-size: 12px;
    color: var(--success-color);
}

.review-rating i {
    color: var(--primary-color);
    font-size: 14px;
}

.review-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.helpful-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Rating Input */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 24px;
    color: var(--border-color);
    cursor: pointer;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: var(--primary-color);
}

/* ===== Cart Page ===== */
.cart-section {
    padding: 30px 0 50px;
}

.cart-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cart-header {
    display: none;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item .product-image {
    width: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cart-item .product-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-item h4 {
    font-size: 15px;
}

.variant-info {
    font-size: 13px;
    color: var(--text-muted);
}

.cart-item .price {
    font-weight: 600;
    color: var(--primary-color);
}

.cart-item .col-quantity {
    margin-top: 10px;
}

.cart-item .quantity-selector {
    display: inline-flex;
}

.cart-item .remove-btn {
    color: var(--error-color);
    margin-left: auto;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.cart-summary {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-lg);
}

.cart-summary h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

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

.coupon-form h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.coupon-form form {
    display: flex;
    gap: 10px;
}

.coupon-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: #dcfce7;
    border-radius: var(--radius-md);
    font-size: 13px;
    color: #15803d;
    margin-top: 10px;
}

.summary-details {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
}

.summary-row.discount {
    color: var(--success-color);
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    border-top: 2px solid var(--border-color);
    margin-top: 10px;
    padding-top: 15px;
}

.free-shipping-notice {
    padding: 10px 15px;
    background: #fef3cd;
    border-radius: var(--radius-md);
    font-size: 13px;
    color: #856404;
    margin: 10px 0;
}

.btn-checkout {
    width: 100%;
    margin-bottom: 20px;
}

.payment-icons {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
}

.payment-icons p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.payment-icons .icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 24px;
    color: var(--text-muted);
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: var(--success-color);
    padding-top: 15px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-icon {
    font-size: 80px;
    color: var(--border-color);
    margin-bottom: 20px;
}

.empty-cart h2 {
    margin-bottom: 10px;
}

.empty-cart p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* ===== Auth Pages ===== */
.auth-section {
    padding: 50px 0;
}

.auth-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.auth-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 26px;
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-muted);
}

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

.auth-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

.auth-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.password-input {
    position: relative;
}

.password-input input {
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.forgot-link {
    font-size: 14px;
    color: var(--primary-color);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 500;
}

.auth-image {
    display: none;
}

/* ===== Dashboard ===== */
.dashboard-section {
    padding: 30px 0 50px;
}

.dashboard-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dashboard-sidebar {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 25px;
}

.user-profile {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-profile h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.user-profile p {
    font-size: 13px;
    color: var(--text-muted);
}

.dashboard-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: var(--radius-md);
    font-size: 14px;
    transition: var(--transition);
    margin-bottom: 5px;
}

.dashboard-nav .nav-item:hover {
    background: var(--bg-light);
}

.dashboard-nav .nav-item.active {
    background: var(--primary-color);
    color: #000;
}

.dashboard-nav .nav-item .badge {
    margin-left: auto;
    padding: 2px 8px;
    background: var(--error-color);
    color: #fff;
    font-size: 11px;
    border-radius: 10px;
}

.dashboard-content h1 {
    font-size: 24px;
    margin-bottom: 25px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.stat-card {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-details h4 {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
}

.dashboard-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
    font-size: 16px;
}

.card-body {
    padding: 20px;
}

.orders-table {
    overflow-x: auto;
}

.orders-table table {
    width: 100%;
    min-width: 500px;
}

.orders-table th, .orders-table td {
    padding: 12px;
    text-align: left;
    font-size: 14px;
}

.orders-table th {
    background: var(--bg-light);
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.status-pending { background: #fef3cd; color: #856404; }
.status-confirmed { background: #cce5ff; color: #004085; }
.status-processing { background: #d4edda; color: #155724; }
.status-shipped { background: #d1ecf1; color: #0c5460; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }

.empty-state {
    text-align: center;
    padding: 40px 20px;
}

.empty-state i {
    font-size: 50px;
    color: var(--border-color);
    margin-bottom: 15px;
}

.empty-state h3 {
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Order Success */
.order-success-section {
    padding: 50px 0;
}

.success-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px 30px;
    text-align: center;
}

.success-icon {
    font-size: 80px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.success-card h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.success-message {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.order-info-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.order-number {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.order-number span {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.order-number strong {
    font-size: 20px;
    color: var(--primary-color);
}

.order-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.detail-item span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.detail-item strong {
    font-size: 14px;
}

.total-amount {
    color: var(--primary-color);
    font-size: 18px !important;
}

.order-items-summary, .shipping-info, .whats-next {
    text-align: left;
    margin-bottom: 30px;
}

.order-items-summary h3, .shipping-info h3, .whats-next h3 {
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.items-list .item {
    display: flex;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.items-list .item img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.items-list .item-info {
    flex: 1;
}

.items-list .item-info h4 {
    font-size: 14px;
    margin-bottom: 3px;
}

.items-list .variant, .qty-price {
    font-size: 12px;
    color: var(--text-muted);
}

.items-list .item-total {
    font-weight: 600;
}

.address-box {
    background: var(--bg-light);
    padding: 15px;
    border-radius: var(--radius-md);
    font-size: 14px;
}

.address-box strong {
    display: block;
    margin-bottom: 5px;
}

.address-box p {
    color: var(--text-muted);
    margin-bottom: 3px;
}

.whats-next .steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whats-next .step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ===== Alert ===== */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.form-hint {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* ===== Responsive Styles ===== */
@media (min-width: 576px) {
    .hero-slide {
        height: 450px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .products-grid, .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .success-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .view-toggle {
        display: flex;
        gap: 5px;
    }

    .view-btn {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
    }

    .view-btn.active {
        background: var(--text-color);
        color: #fff;
    }

    .hero-slide {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .footer-bottom-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }

    .cart-header {
        display: grid;
        grid-template-columns: 3fr 1fr 1fr 1fr 50px;
        padding: 15px 0;
        border-bottom: 2px solid var(--border-color);
        font-weight: 600;
        font-size: 14px;
    }

    .cart-item {
        grid-template-columns: 3fr 1fr 1fr 1fr 50px;
        align-items: center;
    }

    .cart-item .col-product {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .cart-item .col-quantity {
        margin-top: 0;
    }

    .cart-wrapper {
        flex-direction: row;
    }

    .cart-items {
        flex: 1;
    }

    .cart-summary {
        width: 350px;
    }

    .auth-wrapper {
        flex-direction: row;
        max-width: 900px;
    }

    .auth-card {
        flex: 1;
    }

    .auth-image {
        display: block;
        flex: 1;
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

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

    .auth-image-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 30px;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        color: #fff;
    }

    .dashboard-wrapper {
        flex-direction: row;
    }

    .dashboard-sidebar {
        width: 280px;
        flex-shrink: 0;
    }

    .dashboard-content {
        flex: 1;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .hero-slide {
        height: 550px;
    }

    .categories-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .products-layout {
        flex-direction: row;
    }

    .products-sidebar {
        display: block;
        width: 250px;
        flex-shrink: 0;
    }

    .filter-toggle {
        display: none;
    }

    .product-detail-wrapper {
        flex-direction: row;
    }

    .product-gallery {
        flex: 1;
        max-width: 500px;
    }

    .product-info-detail {
        flex: 1;
    }
}

@media (min-width: 1200px) {
    .hero-slide {
        height: 600px;
    }

    .hero-content h1 {
        font-size: 56px;
    }

    .product-gallery {
        max-width: 550px;
    }
}
/* ========================================
   NEW HEADER STYLES - SweetKaramCoffee Style
   ======================================== */

/* Scrolling Offers Bar */
.offers-bar {
    background: linear-gradient(90deg, #8B0000, #A52A2A, #8B0000);
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
}

.offers-marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.offers-track {
    display: flex;
    animation: marquee 30s linear infinite;
    min-width: 200%;
}

.offer-item {
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.offer-item i {
    color: #FFD700;
}

.offer-item .heart {
    font-style: normal;
}

.offer-divider {
    opacity: 0.5;
    padding: 0 5px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Promo Bar */
.promo-bar {
    background: transparent;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
}

.promo-bar p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.promo-bar i {
    color: var(--primary-color, #f69d1c);
}

.promo-bar a {
    color: var(--primary-color, #f69d1c);
    text-decoration: underline;
    font-weight: 600;
}

.promo-bar a:hover {
    color: #fff;
}

/* Experience South India Section */
.experience-section {
    background: transparent;
    padding: 0;
    text-align: center;
}

.experience-banner {
    position: relative;
    background: #fff;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.experience-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.experience-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color, #004e4a);
    line-height: 1.2;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
}

.experience-cta {
    padding: 30px 0;
}

.experience-cta .btn {
    padding: 12px 30px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Main Footer */
.footer-main {
    background: #1a1a1a;
    padding: 60px 0 40px;
}

.footer-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: var(--footer-heading-color, var(--primary-color)) !important;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

/* Footer Contact Info */
.footer-contact-info p {
    margin-bottom: 12px;
}

.footer-contact-info a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

/* Footer Legal */
.footer-legal {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-legal p {
    margin-bottom: 5px;
    color: rgba(255,255,255,0.5);
}

/* App Buttons */
.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-btn img {
    height: 45px;
    width: auto;
    border-radius: 6px;
    transition: transform 0.3s;
}

.app-btn:hover img {
    transform: scale(1.05);
}

/* Social Links Footer */
.follow-text {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    margin-bottom: 15px;
}

.social-links-footer {
    display: flex;
    gap: 12px;
}

.social-links-footer a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}

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

/* Footer Bottom */
.footer-bottom {
    background: #111;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 0;
}

.footer-bottom a {
    color: var(--primary-color, #f69d1c);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Customer Reviews Sidebar */
.reviews-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.reviews-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #c0392b;
    color: #fff;
    padding: 15px 12px;
    font-size: 13px;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    cursor: pointer;
    border-radius: 8px 0 0 8px;
    transition: all 0.3s;
}

.reviews-tab:hover {
    padding-right: 18px;
}

.reviews-tab i {
    color: #FFD700;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Responsive Footer */
@media (max-width: 1100px) {
    .footer-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .experience-content h2 {
        font-size: 28px;
    }

    .footer-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .reviews-sidebar {
        display: none;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .footer-grid-5 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links-footer {
        justify-content: center;
    }

    .app-buttons {
        align-items: center;
    }

    .experience-content h2 {
        font-size: 22px;
    }
}

/* View All Products Button */
.view-all-cta {
    text-align: center;
    padding: 40px 0 60px;
    background: #f8f5f0;
}
.view-all-cta .btn {
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: all 0.3s;
}
.view-all-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.view-all-cta .btn i {
    margin-left: 10px;
}

/* Full Size Experience Banner */
.experience-banner img {
    width: auto !important;
    max-width: none !important;
    min-width: 100%;
    height: auto;
    display: block;
}
.experience-section {
    overflow-x: auto;
}

/* Blog Section */
.blog-section { padding: 60px 0; background: #f8f5f0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: all 0.3s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.blog-image { display: block; height: 220px; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-image .no-image { width: 100%; height: 100%; background: #f0f0f0; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 48px; }
.blog-content { padding: 25px; }
.blog-meta { margin-bottom: 12px; }
.blog-date { font-size: 13px; color: #888; }
.blog-content h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; line-height: 1.4; }
.blog-content h3 a { color: #333; text-decoration: none; }
.blog-content h3 a:hover { color: var(--primary-color); }
.blog-content p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 15px; }
.read-more { font-size: 13px; font-weight: 600; color: #333; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: color 0.3s; }
.read-more:hover { color: var(--primary-color); }
.read-more i { font-size: 11px; }
.blog-view-all { text-align: center; margin-top: 40px; }
@media (max-width: 992px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .blog-grid { grid-template-columns: 1fr; } }

/* Blog Cards Section - Homepage */
.blog-section {
    padding: 70px 0;
    background: #fff;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.blog-image {
    display: block;
    height: 200px;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-image img {
    transform: scale(1.1);
}
.blog-image .no-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8ddd0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4a77d;
    font-size: 50px;
}
.blog-content {
    padding: 25px;
}
.blog-meta {
    margin-bottom: 12px;
}
.blog-date {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}
.blog-date i {
    color: #c4a77d;
}
.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}
.blog-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}
.blog-content h3 a:hover {
    color: #c4a77d;
}
.blog-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}
.read-more {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.read-more:hover {
    color: #c4a77d;
    gap: 12px;
}
.read-more i {
    font-size: 11px;
}
.blog-view-all {
    text-align: center;
    margin-top: 50px;
}
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-section {
        padding: 50px 0;
    }
}

/* View All Products CTA Button - Ensure Visibility */
.view-all-cta {
    text-align: center;
    padding: 50px 0;
    background: #f8f5f0;
}
.view-all-cta .btn {
    display: inline-block !important;
    visibility: visible !important;
    padding: 18px 50px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    background-color: #333 !important;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
    transition: all 0.3s ease !important;
}
.view-all-cta .btn:hover {
    background-color: #c4a77d !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25) !important;
}
.view-all-cta .btn i {
    margin-left: 12px;
}

/* Shop by Collection - Product Cards */
.shop-collection .skc-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #eee;
}
.shop-collection .skc-product-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}
.shop-collection .skc-product-image {
    display: block;
    height: 220px;
    overflow: hidden;
    background: #f5f5f5;
}
.shop-collection .skc-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.shop-collection .skc-product-card:hover .skc-product-image img {
    transform: scale(1.05);
}
.shop-collection .skc-product-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #ccc;
    font-size: 48px;
}
.shop-collection .skc-product-info {
    padding: 20px;
}
.shop-collection .skc-product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}
.shop-collection .skc-product-name a {
    color: #333;
    text-decoration: none;
}
.shop-collection .skc-product-name a:hover {
    color: #d4a853;
}
.shop-collection .skc-product-price {
    margin-bottom: 15px;
}
.shop-collection .skc-product-price .sale-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-right: 8px;
}
.shop-collection .skc-product-price .original-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}
.shop-collection .skc-product-price .sale-price {
    font-size: 18px;
    font-weight: 700;
    color: #e74c3c;
}
.shop-collection .skc-product-price .regular-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}
.shop-collection .skc-add-to-cart {
    width: 100%;
    padding: 12px 20px;
    background: #3a5a40;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.shop-collection .skc-add-to-cart:hover {
    background: #2d4830;
}

/* Shop by Collection Grid - Responsive */
#collection-products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
}
@media (max-width: 1200px) {
    #collection-products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media (max-width: 992px) {
    #collection-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 576px) {
    #collection-products-grid {
        grid-template-columns: 1fr !important;
    }
}
.collection-product-item {
    width: 100%;
}

/* Video Section Styles */
.video-section .play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #c49740;
}
.video-section .video-thumbnail:hover .play-button {
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 5px 25px rgba(212,168,83,0.5); }
    50% { box-shadow: 0 5px 40px rgba(212,168,83,0.8); }
    100% { box-shadow: 0 5px 25px rgba(212,168,83,0.5); }
}

/* Products Page Layout Fix */
.products-layout {
    display: grid !important;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}
.products-sidebar {
    display: block !important;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}
.products-sidebar .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.products-sidebar .sidebar-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}
.sidebar-close {
    display: none;
}
.products-main {
    flex: 1;
}
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.filter-group {
    margin-bottom: 25px;
}
.filter-group h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}
.price-filter-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}
.price-filter-form button {
    width: 100%;
    padding: 10px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.quick-filters {
    list-style: none;
    padding: 0;
    margin: 0;
}
.quick-filters a {
    display: block;
    padding: 8px 0;
    color: #333;
    text-decoration: none;
}
.quick-filters a:hover, .quick-filters a.active {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .products-layout {
        grid-template-columns: 1fr !important;
    }
    .products-sidebar {
        display: none !important;
    }
    .products-sidebar.show {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100%;
        z-index: 1000;
        overflow-y: auto;
        border-radius: 0;
    }
    .sidebar-close {
        display: block;
    }
}

/* Products Toolbar Styling */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}
.products-toolbar .toolbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.products-toolbar .toolbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.products-toolbar .sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
.products-toolbar .sort-wrapper label {
    font-size: 14px;
    color: #666;
    margin: 0;
    white-space: nowrap;
}
.products-toolbar select,
.sort-select {
    padding: 10px 35px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    min-width: 150px;
}
.products-toolbar select:focus,
.sort-select:focus {
    outline: none;
    border-color: var(--primary-color);
}
.view-toggles {
    display: flex;
    gap: 5px;
}
.view-toggles button,
.view-toggles a,
.view-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}
.view-toggles button:hover,
.view-toggles a:hover,
.view-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.view-toggles button.active,
.view-toggles a.active,
.view-toggle.active {
    background: #333;
    border-color: #333;
    color: #fff;
}
.products-count {
    font-size: 14px;
    color: #666;
}
@media (max-width: 768px) {
    .products-toolbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    .products-toolbar .toolbar-left,
    .products-toolbar .toolbar-right {
        width: 100%;
        justify-content: space-between;
    }
}

/* Enhanced Products Toolbar */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}
.products-toolbar .products-count,
.toolbar-left .products-count {
    font-size: 15px;
    color: #555;
    font-weight: 500;
}
.products-toolbar .toolbar-right,
.toolbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.products-toolbar .sort-wrapper,
.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}
.products-toolbar .sort-wrapper label,
.sort-wrapper label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin: 0;
}
.products-toolbar select,
.sort-select,
select.sort-select {
    padding: 10px 40px 10px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    min-width: 160px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.products-toolbar select:hover,
.sort-select:hover {
    border-color: #ccc;
}
.products-toolbar select:focus,
.sort-select:focus {
    outline: none;
    border-color: var(--primary-color, #2d5016);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}
.view-toggles {
    display: flex;
    gap: 6px;
    background: #f5f5f5;
    padding: 4px;
    border-radius: 8px;
}
.view-toggles button,
.view-toggles a,
.view-toggle,
button.view-toggle {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: 6px;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-size: 16px;
}
.view-toggles button:hover,
.view-toggles a:hover,
.view-toggle:hover {
    background: #e8e8e8;
    color: #555;
}
.view-toggles button.active,
.view-toggles a.active,
.view-toggle.active,
button.view-toggle.active {
    background: #333;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
    .products-toolbar {
        padding: 12px 15px;
    }
    .products-toolbar .toolbar-right,
    .toolbar-right {
        gap: 12px;
    }
    .products-toolbar select,
    .sort-select {
        min-width: 130px;
        padding: 8px 35px 8px 12px;
    }
}
@media (max-width: 480px) {
    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .products-toolbar .toolbar-right,
    .toolbar-right {
        justify-content: space-between;
    }
}

/* View Toggle Buttons Fix */
.view-toggle {
    display: flex;
    gap: 0;
    background: #f0f0f0;
    padding: 4px;
    border-radius: 8px;
}
.view-toggle .view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: 6px;
    color: #888;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
}
.view-toggle .view-btn:hover {
    color: #555;
    background: #e0e0e0;
}
.view-toggle .view-btn.active {
    background: #333;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.view-toggle .view-btn i {
    font-size: 15px;
}

/* Products Grid - Grid View */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Products Grid - List View */
.products-grid.list-view {
    grid-template-columns: 1fr;
    gap: 20px;
}
.products-grid.list-view .product-card,
.products-grid.list-view .skc-product-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}
.products-grid.list-view .product-card .product-image,
.products-grid.list-view .skc-product-card .skc-product-image {
    width: 200px;
    min-width: 200px;
    height: 200px;
}
.products-grid.list-view .product-card .product-info,
.products-grid.list-view .skc-product-card .skc-product-info {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid.list-view .product-card .product-image,
    .products-grid.list-view .skc-product-card .skc-product-image {
        width: 150px;
        min-width: 150px;
        height: 150px;
    }
}
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .products-grid.list-view {
        grid-template-columns: 1fr;
    }
    .products-grid.list-view .product-card,
    .products-grid.list-view .skc-product-card {
        flex-direction: column;
    }
    .products-grid.list-view .product-card .product-image,
    .products-grid.list-view .skc-product-card .skc-product-image {
        width: 100%;
        height: 180px;
    }
}

/* View Toggle Icon Fix */
.view-toggle .view-btn i,
.view-btn i {
    font-size: 14px !important;
    width: auto !important;
    height: auto !important;
    line-height: 1 !important;
    display: inline-block !important;
    transform: none !important;
}
.view-toggle .view-btn,
.view-btn {
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
}
.view-toggle .view-btn.active,
.view-btn.active {
    background: #333 !important;
    color: #fff !important;
    border-radius: 6px !important;
}
.view-toggle .view-btn:not(.active),
.view-btn:not(.active) {
    background: transparent !important;
    color: #666 !important;
}
.view-toggle {
    display: inline-flex !important;
    gap: 4px !important;
    background: #f0f0f0 !important;
    padding: 4px !important;
    border-radius: 8px !important;
}

/* FINAL View Toggle Button Fix */
.view-toggle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    background: #f0f0f0 !important;
    padding: 4px !important;
    border-radius: 8px !important;
}
.view-toggle .view-btn {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    background: transparent !important;
    color: #666 !important;
}
.view-toggle .view-btn.active {
    background: #333 !important;
    color: #fff !important;
}
.view-toggle .view-btn:not(.active):hover {
    background: #e0e0e0 !important;
}
.view-toggle .view-btn i.fas,
.view-toggle .view-btn i.fa {
    font-size: 14px !important;
    width: auto !important;
    height: auto !important;
    min-width: auto !important;
    min-height: auto !important;
    max-width: none !important;
    max-height: none !important;
    line-height: 1 !important;
    display: inline !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Fix View Toggle Container */
.view-toggle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0 !important;
    background: #f0f0f0 !important;
    padding: 4px !important;
    border-radius: 10px !important;
}
.view-toggle .view-btn {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    background: transparent !important;
    color: #888 !important;
    flex-shrink: 0 !important;
}
.view-toggle .view-btn.active {
    background: #333 !important;
    color: #fff !important;
}
.view-toggle .view-btn:not(.active):hover {
    background: rgba(0,0,0,0.08) !important;
    color: #555 !important;
}
.view-toggle .view-btn i.fas,
.view-toggle .view-btn i.fa,
.view-toggle .view-btn i {
    font-size: 16px !important;
    width: auto !important;
    height: auto !important;
    line-height: 1 !important;
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Toolbar Spacing Fix */
.view-toggle { margin-left: 20px !important; }
.products-toolbar { gap: 20px !important; }
.sort-wrapper { margin-right: 15px !important; }

/* ============================================
   View Toggle Buttons - Clean Fix
   ============================================ */
.view-toggle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0 !important;
    background: #f5f5f5 !important;
    padding: 5px !important;
    border-radius: 12px !important;
    border: 1px solid #e0e0e0 !important;
}
.view-toggle .view-btn {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    background: transparent !important;
    color: #999 !important;
    flex-shrink: 0 !important;
}
.view-toggle .view-btn.active {
    background: #333 !important;
    color: #fff !important;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2) !important;
}
.view-toggle .view-btn:not(.active):hover {
    background: #e8e8e8 !important;
    color: #555 !important;
}
.view-toggle .view-btn i.fas,
.view-toggle .view-btn i.fa,
.view-toggle .view-btn i {
    font-size: 15px !important;
    width: auto !important;
    height: auto !important;
    line-height: 1 !important;
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ============================================
   VIEW TOGGLE - FINAL OVERRIDE FIX
   ============================================ */
.toolbar-right .view-toggle,
.products-toolbar .view-toggle,
div.view-toggle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0 !important;
    background: #f0f0f0 !important;
    padding: 4px !important;
    border-radius: 10px !important;
    border: none !important;
    overflow: hidden !important;
}
.toolbar-right .view-toggle .view-btn,
.products-toolbar .view-toggle .view-btn,
div.view-toggle .view-btn,
div.view-toggle button.view-btn,
button.view-btn {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    background: transparent !important;
    color: #888 !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
    position: relative !important;
}
.toolbar-right .view-toggle .view-btn.active,
.products-toolbar .view-toggle .view-btn.active,
div.view-toggle .view-btn.active,
button.view-btn.active {
    background: #333 !important;
    color: #fff !important;
}
.toolbar-right .view-toggle .view-btn:not(.active):hover,
.products-toolbar .view-toggle .view-btn:not(.active):hover,
div.view-toggle .view-btn:not(.active):hover {
    background: #e0e0e0 !important;
    color: #555 !important;
}
.view-toggle .view-btn i,
.view-toggle .view-btn i.fas,
.view-toggle .view-btn i.fa,
button.view-btn i,
button.view-btn i.fas,
button.view-btn i.fa {
    font-size: 14px !important;
    width: auto !important;
    height: auto !important;
    min-width: auto !important;
    min-height: auto !important;
    max-width: none !important;
    max-height: none !important;
    line-height: 1 !important;
    display: inline !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    background: none !important;
    border: none !important;
}
.skc-hero-tc { display: none !important; }
body { background: #fff !important; }

/* Remove padding/margin around hero banner */
.skc-hero {
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
}
.skc-hero-slide {
    margin: 0 !important;
    padding: 0 !important;
}
.skc-hero .swiper,
.skc-hero .swiper-wrapper,
.skc-hero .swiper-slide {
    margin: 0 !important;
    padding: 0 !important;
}
.skc-hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Make hero banner full width without background */
.skc-hero {
    overflow: hidden;
    background: transparent !important;
    min-height: auto !important;
}
.skc-hero-slide {
    min-height: auto !important;
    background-size: cover !important;
    background-position: center top !important;
    aspect-ratio: 16/5;
}

/* Fix Product Detail Page Layout */
.product-detail-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: start !important;
}

.product-gallery {
    position: sticky !important;
    top: 100px !important;
}

.main-image-wrapper {
    max-width: 100% !important;
}

.main-image img {
    width: 100% !important;
    max-height: 500px !important;
    object-fit: contain !important;
    background: #f9f9f9 !important;
}

.product-info-detail {
    padding: 0 !important;
}

.product-title {
    font-size: 28px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #333 !important;
}

.product-price-detail {
    margin: 15px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.product-price-detail .current-price {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: var(--maroon) !important;
}

.product-price-detail .original-price {
    font-size: 18px !important;
    color: #999 !important;
    text-decoration: line-through !important;
}

.product-price-detail .discount-percent {
    background: #e8f5e9 !important;
    color: #2e7d32 !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

/* Responsive */
@media (max-width: 992px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr !important;
    }
    .product-gallery {
        position: relative !important;
        top: auto !important;
    }
}

/* Product Detail - Force Two Column Layout */
.product-detail-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: start !important;
}

.product-gallery .main-image img {
    max-height: 450px !important;
    width: 100% !important;
    object-fit: contain !important;
}

.product-gallery .thumbnail img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover !important;
}

@media (max-width: 768px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr !important;
    }
}

/* ==================== DASHBOARD STYLES ==================== */
.dashboard-section {
    padding: 40px 0;
    background: #f5f5f5;
    min-height: 70vh;
}

.dashboard-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

/* Sidebar */
.dashboard-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.user-profile {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    background: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-avatar span {
    font-size: 36px;
    color: #fff;
    font-weight: 600;
}

.user-profile h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.user-profile p {
    font-size: 14px;
    color: #666;
}

/* Dashboard Navigation */
.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dashboard-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}

.dashboard-nav .nav-item:hover {
    background: #f5f5f5;
    color: var(--maroon);
}

.dashboard-nav .nav-item.active {
    background: var(--maroon);
    color: #fff;
}

.dashboard-nav .nav-item i {
    width: 20px;
    text-align: center;
}

.dashboard-nav .nav-item .badge {
    margin-left: auto;
    background: var(--maroon);
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.dashboard-nav .nav-item.active .badge {
    background: #fff;
    color: var(--maroon);
}

/* Dashboard Content */
.dashboard-content {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.dashboard-content h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.stat-details h4 {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 5px;
}

.stat-details .stat-number {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

/* Recent Orders */
.recent-orders {
    margin-top: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.section-header a {
    color: var(--maroon);
    text-decoration: none;
    font-size: 14px;
}

/* Orders Table */
.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.orders-table th {
    background: #f9f9f9;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.orders-table td {
    font-size: 14px;
    color: #555;
}

.orders-table .order-id {
    font-weight: 600;
    color: var(--maroon);
}

.orders-table .status {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.orders-table .status.delivered {
    background: #e8f5e9;
    color: #2e7d32;
}

.orders-table .status.pending {
    background: #fff3e0;
    color: #ef6c00;
}

.orders-table .status.processing {
    background: #e3f2fd;
    color: #1976d2;
}

.orders-table .status.cancelled {
    background: #ffebee;
    color: #c62828;
}

.orders-table .btn-view {
    padding: 6px 15px;
    background: var(--maroon);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
}

/* Responsive Dashboard */
@media (max-width: 992px) {
    .dashboard-wrapper {
        grid-template-columns: 1fr;
    }
    .dashboard-sidebar {
        position: relative;
        top: auto;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .orders-table {
        display: block;
        overflow-x: auto;
    }
}

/* ===== Improved Breadcrumb Styles ===== */
.breadcrumb-section {
    padding: 15px 0;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: #fff;
}

.breadcrumb .separator {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .separator i {
    font-size: 10px;
}
