﻿/* Sweet Karam Coffee Exact Theme Clone */

:root {
    --skc-black: #000000;
    --skc-orange: #800000;
    --skc-red: #c9024c;
    --skc-dark-gray: #1a1a1a;
    --skc-medium-gray: #666666;
    --skc-light-gray: #f5f5f5;
    --skc-white: #ffffff;
    --skc-success: #4caf50;
    --skc-border: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--skc-dark-gray);
    background: var(--skc-white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: 'Playfair Display', serif;
}

/* Header */
.skc-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050; /* Increased to stay above sticky sidebars (1020) */
    transition: all 0.3s ease;
}

/* Initially Transparent (at top) */
.navbar-transparent {
    background: transparent;
    box-shadow: none;
}

.navbar-transparent .skc-nav-item,
.navbar-transparent .skc-logo-text,
.navbar-transparent .skc-action-btn i,
.navbar-transparent .skc-search-toggle i {
    color: #222 !important;
}

.navbar-transparent .skc-logo-tagline {
    color: rgba(0, 0, 0, 0.6) !important;
}

/* Scrolled State */
.navbar-scrolled {
    background: white !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.navbar-scrolled .skc-nav-item,
.navbar-scrolled .skc-logo-text,
.navbar-scrolled .skc-action-btn i,
.navbar-scrolled .skc-search-toggle i {
    color: #222 !important;
}

.navbar-scrolled .skc-logo-tagline {
    color: #666 !important;
}

.skc-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.skc-header-main {
    display: flex;
    align-items: center;
    padding: 15px 0;
    gap: 30px;
}

/* Logo */
.skc-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.skc-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--skc-black);
    letter-spacing: -0.5px;
    line-height: 1;
}

.skc-logo-tagline {
    font-size: 10px;
    color: var(--skc-medium-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Navigation */
.skc-nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

.skc-nav-item {
    color: var(--skc-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
}

.skc-nav-item:hover {
    color: var(--skc-orange);
}

.skc-nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--skc-orange);
    transition: width 0.3s;
}

.skc-nav-item:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.skc-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--skc-white);
    border: 1px solid var(--skc-border);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    padding: 10px 0;
}

.skc-nav-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.skc-nav-dropdown-wrapper:hover .skc-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.skc-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.skc-dropdown a {
    display: block;
    padding: 8px 20px;
    color: var(--skc-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: background 0.2s;
}

.skc-dropdown a:hover {
    background: var(--skc-light-gray);
    color: var(--skc-orange);
}

/* Expandable Search */
.skc-search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.skc-search-toggle {
    background: none;
    border: none;
    color: var(--skc-dark-gray);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 1001;
}

.skc-search-toggle:hover {
    background: var(--skc-light-gray);
    color: var(--skc-orange);
}

.skc-search-container.active .skc-search-toggle {
    opacity: 0;
    pointer-events: none;
}

.skc-search-expandable {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--skc-white);
    border: 1px solid var(--skc-border);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px;
    width: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.skc-search-expandable.active {
    width: 300px;
    opacity: 1;
    visibility: visible;
}

.skc-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 280px;
}

.skc-search-input-expanded {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--skc-dark-gray);
    padding: 8px 12px;
    background: var(--skc-light-gray);
    border-radius: 4px;
    min-width: 200px;
}

.skc-search-input-expanded::placeholder {
    color: var(--skc-medium-gray);
}

.skc-search-submit {
    background: var(--skc-orange);
    border: none;
    color: var(--skc-white);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.skc-search-submit:hover {
    background: #e88c0c;
}

/* Header Actions */
.skc-header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.skc-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--skc-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.skc-action-btn:hover {
    color: var(--skc-orange);
}

.skc-action-btn i {
    font-size: 20px;
}

.skc-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--skc-orange);
    color: var(--skc-white);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
}

/* Visibility classes - No more hardcoded display logic */
.cart-badge-hidden {
    display: none !important;
}

.cart-count-badge {
    /* Ensure the layout is handled by CSS, not inline properties */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.skc-hero-section {
    position: relative;
    width: 100%;
    /* Use responsive height instead of fixed 500px to prevent extreme cropping */
    height: clamp(400px, 55vw, 700px);
    overflow: hidden;
    background: var(--skc-light-gray);
}

.skc-hero-slider {
    position: relative;
    height: 100%;
}

.skc-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
}

.skc-hero-slide.active {
    opacity: 1;
}

.skc-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Ensure the focal point (e.g., model's head) is not cropped */
}

.skc-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--skc-white);
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.skc-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.skc-hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.skc-hero-btn {
    background: #800000; /* Maroon color explicitly defined */
    color: var(--skc-white);
    padding: 14px 35px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.skc-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 0, 0, 0.4);
}

/* Section Styles */
.skc-section {
    padding: 50px 0;
}

.skc-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.skc-section-header {
    text-align: center !important;
    margin-bottom: 50px;
    display: block !important;
    justify-content: center !important;
    align-items: center !important;
}

.skc-section-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 40px;
    font-weight: 700 !important;
    color: var(--skc-black) !important;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-align: center !important;
    width: 100%;
}

.skc-section-subtitle {
    font-size: 16px;
    color: var(--skc-medium-gray);
    max-width: 600px;
    margin: 0 auto !important;
    text-align: center !important;
    display: block !important;
    width: 100%;
}

/* Product Grid */
.skc-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.skc-product-card {
    background: var(--skc-white);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    position: relative;
    box-shadow: none;
}

.skc-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.skc-product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--skc-orange);
    color: var(--skc-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
    letter-spacing: 0.5px;
}

.skc-product-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fafafa;
    border-radius: 8px;
    margin-bottom: 15px;
}

.skc-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.skc-product-card:hover .skc-product-image {
    transform: scale(1.03);
}

.skc-product-details {
    padding: 0;
    text-align: center;
}

.skc-product-category {
    font-size: 11px;
    color: var(--skc-medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 500;
}

.skc-product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--skc-black);
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: 42px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.skc-product-price-section {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.skc-product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--skc-black);
    margin: 0;
}

.skc-product-price-currency {
    font-size: 16px;
    font-weight: 700;
}

.skc-product-original-price {
    font-size: 14px;
    color: var(--skc-medium-gray);
    text-decoration: line-through;
    margin: 0;
}

.skc-product-discount {
    font-size: 12px;
    color: var(--skc-orange);
    font-weight: 600;
    margin: 0;
}

.skc-product-footer {
    display: block;
    text-align: center;
}

.skc-add-cart-btn {
    background: var(--skc-black);
    color: var(--skc-white);
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skc-add-cart-btn:hover {
    background: var(--skc-orange);
    transform: translateY(-1px);
}

.skc-add-cart-btn:disabled {
    background: var(--skc-medium-gray);
    cursor: not-allowed;
    transform: none;
}

/* Quick View Button */
.skc-quick-view-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--skc-white);
    color: var(--skc-black);
    padding: 8px 16px;
    border: 1px solid var(--skc-border);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skc-product-card:hover .skc-quick-view-btn {
    opacity: 1;
}

/* Product Rating */
.skc-product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 8px;
}

.skc-product-stars {
    color: #ffc107;
    font-size: 12px;
}

.skc-product-rating-count {
    font-size: 11px;
    color: var(--skc-medium-gray);
}

/* Categories Section */
.skc-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.skc-category-card {
    background: var(--skc-white);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--skc-border);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.skc-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.skc-category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: var(--skc-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.skc-category-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.skc-category-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--skc-black);
    margin-bottom: 5px;
}

.skc-category-count {
    font-size: 14px;
    color: var(--skc-medium-gray);
}

/* Features Section */
.skc-features {
    background: var(--skc-light-gray);
}

.skc-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.skc-feature-box {
    text-align: center;
}

.skc-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--skc-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--skc-white);
    font-size: 24px;
}

.skc-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--skc-black);
    margin-bottom: 10px;
}

.skc-feature-desc {
    font-size: 14px;
    color: var(--skc-medium-gray);
    line-height: 1.6;
}

/* Newsletter Section */
.skc-newsletter {
    background: var(--skc-black);
    color: var(--skc-white);
    padding: 50px 0;
}

.skc-newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.skc-newsletter-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.skc-newsletter-text {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.skc-newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto;
}

.skc-newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--skc-white);
    font-size: 14px;
}

.skc-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.skc-newsletter-btn {
    background: var(--skc-orange);
    color: var(--skc-white);
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.skc-newsletter-btn:hover {
    background: #e88c0c;
}

/* Footer */
/* Footer styles removed - handled dynamically in app.blade.php */

/* Mobile Menu */
.skc-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--skc-black);
    cursor: pointer;
}

/* Mobile Bottom Navigation */
.skc-mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.skc-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 8px 4px;
    text-decoration: none;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.skc-bottom-nav-item:hover {
    color: var(--skc-orange);
}

.skc-bottom-nav-item.active {
    color: var(--skc-orange);
}

.skc-bottom-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.skc-bottom-nav-item span {
    line-height: 1;
}

.skc-bottom-cart-count {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    background: var(--skc-orange);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .skc-nav-menu {
        display: none;
    }

    .skc-mobile-menu-toggle {
        display: block;
    }

    .skc-hero-title {
        font-size: 36px;
    }

    .skc-hero-subtitle {
        font-size: 18px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .skc-header-main {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }

    .skc-logo-link {
        flex-shrink: 0;
    }

    .skc-header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .skc-search-container {
        display: block;
        position: relative;
    }

    .skc-search-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        color: var(--skc-black);
        cursor: pointer;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .skc-search-toggle:hover {
        background-color: var(--skc-light-gray);
    }

    .skc-search-expandable {
        display: none;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        background: white;
        border-radius: 25px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 5px;
        min-width: 250px;
        z-index: 1000;
        border: 1px solid #eee;
    }

    .skc-search-expandable.active {
        display: block;
    }

    .skc-search-form {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .skc-search-input-expanded {
        flex: 1;
        padding: 8px 15px;
        border: none;
        border-radius: 20px;
        font-size: 14px;
        outline: none;
        background: transparent;
        min-width: 180px;
    }

    .skc-search-input-expanded::placeholder {
        color: #999;
    }

    .skc-search-submit {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: var(--skc-orange);
        border: none;
        color: white;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.2s;
        font-size: 12px;
    }

    .skc-search-submit:hover {
        background: #e67e22;
    }

    .skc-action-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        color: var(--skc-black);
        cursor: pointer;
        border-radius: 50%;
        transition: background-color 0.2s;
        position: relative;
    }

    .skc-action-btn:hover {
        background-color: var(--skc-light-gray);
    }

    .skc-mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        color: var(--skc-black);
        cursor: pointer;
        border-radius: 50%;
        transition: background-color 0.2s;
        font-size: 18px;
    }

    .skc-mobile-menu-toggle:hover {
        background-color: var(--skc-light-gray);
    }
}

@media (max-width: 768px) {
    .skc-header-main {
        padding: 20px 0;
        min-height: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .skc-logo-link {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
    }

    .skc-logo-link img {
        height: 35px !important;
        width: 35px !important;
        border-radius: 6px !important;
    }

    .skc-logo-text {
        font-size: 14px !important;
    }

    .skc-logo-tagline {
        display: none;
    }

    .skc-header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .skc-search-container,
    .skc-action-btn {
        display: none;
    }

    .skc-mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        color: var(--skc-black);
        cursor: pointer;
        border-radius: 50%;
        transition: background-color 0.2s;
        font-size: 18px;
    }

    .skc-mobile-menu-toggle:hover {
        background-color: var(--skc-light-gray);
    }

    .skc-mobile-bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 80px;
    }



    /* Mobile Search Page */
    .skc-mobile-search-page {
        min-height: 100vh;
        background: #f8f9fa;
    }

    .skc-search-header {
        background: white;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .skc-search-bar {
        padding: 0 20px;
    }

    .skc-search-form-mobile {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .skc-search-input-wrapper {
        flex: 1;
        position: relative;
        display: flex;
        align-items: center;
    }

    .skc-search-icon {
        position: absolute;
        left: 15px;
        color: #999;
        font-size: 16px;
    }

    .skc-search-input-mobile {
        width: 100%;
        padding: 12px 15px 12px 45px;
        border: 1px solid #ddd;
        border-radius: 25px;
        font-size: 16px;
        outline: none;
        background: #f8f9fa;
    }

    .skc-search-input-mobile:focus {
        border-color: var(--skc-orange);
        background: white;
    }

    .skc-clear-search {
        position: absolute;
        right: 15px;
        background: none;
        border: none;
        color: #999;
        cursor: pointer;
        padding: 5px;
    }

    .skc-search-submit-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: var(--skc-orange);
        border: none;
        color: white;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .skc-search-submit-mobile:hover {
        background: #e67e22;
    }

    .skc-search-content {
        padding: 20px;
    }

    .skc-search-section {
        margin-bottom: 30px;
    }

    .skc-search-section h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--skc-black);
    }

    .skc-section-header {
        display: block !important;
        text-align: center !important;
        margin-bottom: 15px;
    }

    .skc-clear-btn {
        background: none;
        border: none;
        color: #999;
        cursor: pointer;
        padding: 5px;
        font-size: 14px;
    }

    .skc-search-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .skc-search-tag {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 15px;
        background: white;
        border: 1px solid #eee;
        border-radius: 20px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.2s;
    }

    .skc-search-tag:hover {
        background: var(--skc-orange);
        color: white;
        border-color: var(--skc-orange);
    }

    .skc-search-tag i {
        font-size: 12px;
    }

    .skc-category-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .skc-category-card-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 15px;
        background: white;
        border-radius: 12px;
        text-decoration: none;
        color: #333;
        transition: transform 0.2s;
        border: 1px solid #eee;
    }

    .skc-category-card-mobile:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .skc-category-icon-mobile {
        margin-bottom: 10px;
    }

    .skc-category-emoji {
        font-size: 32px;
    }

    .skc-category-image-mobile {
        width: 48px;
        height: 48px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 10px;
    }

    .skc-category-name-mobile {
        font-size: 14px;
        font-weight: 500;
        text-align: center;
    }

    .skc-quick-actions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .skc-quick-action {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 15px;
        background: white;
        border-radius: 12px;
        text-decoration: none;
        color: #333;
        transition: transform 0.2s;
        border: 1px solid #eee;
    }

    .skc-quick-action:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .skc-quick-action i {
        font-size: 24px;
        color: var(--skc-orange);
        margin-bottom: 8px;
    }

    .skc-quick-action span {
        font-size: 14px;
        font-weight: 500;
        text-align: center;
    }

    /* Mobile Footer 2x2 Grid */
    .skc-footer-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .skc-footer-column {
        margin-bottom: 0;
    }

    .skc-footer-column h3 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
        color: white;
    }

    .skc-footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .skc-footer-column ul li {
        margin-bottom: 8px;
        color: white;
    }

    .skc-footer-column ul li a {
        color: white;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s;
    }

    .skc-footer-column ul li a:hover {
        color: var(--skc-orange);
    }

    .skc-footer-column ul li i {
        margin-right: 8px;
        color: var(--skc-orange);
    }

    .skc-footer-column p {
        color: white;
    }

    .skc-footer-column .skc-contact-info {
        color: white;
    }

    .skc-footer-column .skc-contact-info i {
        color: var(--skc-orange);
        margin-right: 8px;
    }

    /* Mobile section headers - stack title and subtitle vertically */
    .skc-section-header {
        display: block !important;
        text-align: center !important;
    }

    .skc-section-title {
        margin-bottom: 0;
    }

    .skc-section-subtitle {
        margin-top: 0;
    }

    /* About section spans full width */
    .skc-footer-about {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }

    .skc-footer-about .skc-social-links {
        justify-content: center;
        margin-top: 15px;
    }

    /* Mobile Why Choose Us Grid */
    .skc-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .skc-feature-box {
        padding: 20px 15px;
        text-align: center;
        background: white;
        border-radius: 12px;
        border: 1px solid #eee;
        transition: transform 0.2s;
    }

    .skc-feature-box:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .skc-feature-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
        background: var(--skc-orange);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
    }

    .skc-feature-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--skc-black);
    }

    .skc-feature-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.4;
    }

    .skc-hero-title {
        font-size: 28px;
    }

    .skc-section {
        padding: 40px 0;
    }

    .skc-section-title {
        font-size: 28px;
    }

    .skc-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .skc-footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .skc-footer-column {
        text-align: center;
    }

    .skc-footer-about {
        max-width: 100%;
    }

    .skc-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Login Page Styles */
.skc-login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef7e0 0%, #ffeaa7 100%);
    padding: 20px;
}

.skc-login-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.skc-login-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, #ff6b6b 0%, #feca57 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
}

.skc-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.skc-login-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--skc-orange) 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.skc-login-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--skc-black);
    margin-bottom: 10px;
    font-family: 'Jost', sans-serif;
}

.skc-login-subtitle {
    color: var(--skc-medium-gray);
    font-size: 16px;
}

.skc-login-link {
    color: var(--skc-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.skc-login-link:hover {
    color: #e67e22;
}

.skc-google-auth {
    margin-bottom: 30px;
}

.skc-google-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.skc-google-btn:hover {
    border-color: #ccc;
    background: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.skc-google-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.skc-divider {
    position: relative;
    margin: 30px 0;
    text-align: center;
}

.skc-divider-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.skc-divider-text {
    position: relative;
    background: white;
    padding: 0 20px;
    color: var(--skc-medium-gray);
    font-size: 14px;
    display: inline-block;
}

.skc-login-form {
    margin-top: 30px;
}

.skc-form-group {
    margin-bottom: 20px;
}

.skc-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
    background: white;
}

.skc-form-input:focus {
    outline: none;
    border-color: var(--skc-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.skc-form-input.error {
    border-color: #e74c3c;
}

.skc-error-message {
    background: #fdf2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.skc-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.skc-checkbox-group {
    display: flex;
    align-items: center;
}

.skc-checkbox {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    accent-color: var(--skc-orange);
}

.skc-checkbox-label {
    font-size: 14px;
    color: var(--skc-black);
}

.skc-forgot-link {
    color: var(--skc-orange);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.skc-forgot-link:hover {
    color: #e67e22;
}

.skc-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--skc-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
}

.skc-submit-btn:hover {
    background: #e67e22;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(255, 107, 107, 0.4);
}

.skc-submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .skc-login-card {
        padding: 30px 20px;
        margin: 20px;
    }

    .skc-login-title {
        font-size: 24px;
    }

    .skc-form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Toast Notifications */
.skc-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 350px;
    border-left: 4px solid #6c757d;
}

.skc-toast.show {
    transform: translateX(0);
}

.skc-toast-success {
    border-left-color: #28a745;
}

.skc-toast-error {
    border-left-color: #dc3545;
}

.skc-toast-info {
    border-left-color: #17a2b8;
}

.skc-toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.skc-toast-content i {
    font-size: 18px;
}

.skc-toast-success .skc-toast-content i {
    color: #28a745;
}

.skc-toast-error .skc-toast-content i {
    color: #dc3545;
}

.skc-toast-info .skc-toast-content i {
    color: #17a2b8;
}

.skc-toast-content span {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .skc-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }

    .skc-toast.show {
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .skc-footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .skc-header-main {
        padding: 12px 0;
    }

    .skc-hero-section {
        height: 400px;
    }

    .skc-hero-title {
        font-size: 28px;
    }

    .skc-section {
        padding: 40px 0;
    }

    .skc-section-title {
        font-size: 28px;
    }

    .skc-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .skc-footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .skc-footer-column {
        text-align: center;
        margin-bottom: 0;
    }

    .skc-footer-about {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }

    .skc-footer-about .skc-social-links {
        justify-content: center;
        margin-top: 15px;
    }

    .skc-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skc-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Force center alignment for section headers */
.skc-section-header h2,
.skc-section-header p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Utility Classes */
.skc-text-center {
    text-align: center;
}

.skc-mb-0 {
    margin-bottom: 0;
}

.skc-mt-20 {
    margin-top: 20px;
}

.skc-mt-40 {
    margin-top: 40px;
}

/* Product List Item Structure (Swiggy/Zomato Style) */
.skc-pli-container {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 25px;
    align-items: flex-start;
    background: transparent;
}

.skc-pli-container:last-child {
    border-bottom: none;
}

.skc-pli-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.skc-pli-type-icon {
    width: 14px;
    height: 14px;
    border: 1.5px solid #ed7063;
    /* Default red for non-veg */
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    margin-bottom: 6px;
}

.skc-pli-type-icon::after {
    content: '';
    width: 7px;
    height: 7px;
    background: #ed7063;
    border-radius: 50%;
}

.skc-pli-type-icon.veg {
    border-color: #60b246;
}

.skc-pli-type-icon.veg::after {
    background: #60b246;
}

.skc-pli-name {
    font-size: 20px;
    font-weight: 700;
    color: #3e4152;
    margin: 0;
    line-height: 1.2;
}

.skc-pli-price {
    font-size: 16px;
    font-weight: 600;
    color: #3e4152;
}

.skc-pli-rating {
    font-size: 14px;
    font-weight: 700;
    color: #800000;
    /* Using theme orange for rating */
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 4px 0;
}

.skc-pli-rating.high {
    color: #60b246;
    /* Green for high ratings */
}

.skc-pli-rating-count {
    color: #93959f;
    font-weight: 400;
    font-size: 13px;
}

.skc-pli-description {
    font-size: 14px;
    color: rgba(40, 44, 63, 0.45);
    line-height: 1.5;
    margin-top: 10px;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Zomato-Style Product Cards for Category Page */
.skc-zomato-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 0;
}

.skc-zomato-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    gap: 20px;
}

.skc-zomato-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 122, 0, 0.1);
}

.skc-zomato-image-wrapper {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #fdf5f0;
}

.skc-zomato-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.skc-zomato-card:hover .skc-zomato-image {
    transform: scale(1.1);
}

.skc-zomato-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
}

.skc-zomato-type-icon {
    width: 12px;
    height: 12px;
    border: 1px solid #15803d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    padding: 2px;
    margin-bottom: 2px;
}

.skc-zomato-type-icon::after {
    content: '';
    width: 100%;
    height: 100%;
    background: #15803d;
    border-radius: 50%;
}

.skc-zomato-type-icon.non-veg {
    border-color: #b91c1c;
}

.skc-zomato-type-icon.non-veg::after {
    background: #b91c1c;
}

.skc-zomato-name {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.skc-zomato-description {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.skc-zomato-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.skc-zomato-rating i {
    font-size: 10px;
    color: #800000;
}

.skc-zomato-rating-text {
    font-size: 11px;
    font-weight: 600;
    color: #444;
}

.skc-zomato-price {
    font-size: 16px;
    font-weight: 800;
    color: #800000;
    margin-top: 5px;
}

.skc-zomato-action {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skc-zomato-add-btn {
    background: #ffffff;
    color: #800000;
    border: 1px solid #800000;
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(128, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skc-zomato-add-btn:hover {
    background: #800000;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(128, 0, 0, 0.2);
}

@media (max-width: 576px) {
    .skc-zomato-card {
        padding: 12px;
        gap: 12px;
    }

    .skc-zomato-image-wrapper {
        width: 80px;
        height: 80px;
    }

    .skc-zomato-name {
        font-size: 16px;
    }

    .skc-zomato-add-btn {
        padding: 6px 18px;
        font-size: 13px;
    }
}

/* Media Side (Right) */
.skc-pli-media {
    position: relative;
    width: 156px;
    height: 144px;
    flex-shrink: 0;
}

.skc-pli-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.skc-pli-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.skc-pli-container:hover .skc-pli-image {
    transform: scale(1.05);
}

.skc-pli-add-wrapper {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    z-index: 10;
}

.skc-pli-add-btn {
    width: 100%;
    background: white;
    color: #60b246;
    border: 1px solid #d4d5d9;
    padding: 8px 0;
    border-radius: 8px;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.2s;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skc-pli-add-btn:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18);
    background: #f9f9f9;
    transform: scale(1.02);
}

/* Responsive adjustment */
@media (max-width: 576px) {
    .skc-pli-container {
        padding: 20px 0;
        gap: 15px;
    }

    .skc-pli-media {
        width: 120px;
        height: 110px;
    }

    .skc-pli-name {
        font-size: 17px;
    }

    .skc-pli-description {
        line-clamp: 3;
        -webkit-line-clamp: 3;
    }
}
 / *   P r o d u c t   C a r d   H o v e r   I m a g e   S w a p   * / 
 . s k c - i m a g e - w r a p p e r   { 
         p o s i t i o n :   r e l a t i v e ; 
         o v e r f l o w :   h i d d e n ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
 } 
 
 . s k c - i m a g e - w r a p p e r   i m g   { 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         o b j e c t - f i t :   c o v e r ; 
         t r a n s i t i o n :   o p a c i t y   0 . 4 s   e a s e ,   t r a n s f o r m   0 . 4 s   e a s e ; 
 } 
 
 . s k c - i m a g e - w r a p p e r   . i m g - d e f a u l t   { 
         o p a c i t y :   1 ; 
 } 
 
 . s k c - i m a g e - w r a p p e r   . i m g - h o v e r   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         o p a c i t y :   0 ; 
 } 
 
 . s k c - p r o d u c t - c a r d : h o v e r   . i m g - d e f a u l t   { 
         o p a c i t y :   0 ; 
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
 } 
 
 . s k c - p r o d u c t - c a r d : h o v e r   . i m g - h o v e r   { 
         o p a c i t y :   1 ; 
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
 } 
 
 
 
/* Custom Sections Responsive Styles */

/* Mobile First Approach */
.custom-section {
    width: 100%;
    overflow-x: hidden;
}

.custom-section img {
    display: block;
    width: 100%;
    height: auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 400px;
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .hero-section {
        min-height: 500px;
    }
    
    .custom-section .grid {
        align-items: stretch;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .hero-section {
        min-height: 600px;
    }
    
    /* Full width image sections */
    .custom-section > div:first-child img {
        width: 100vw;
        max-width: none;
        margin-left: calc(-50vw + 50%);
    }
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
    .hero-section {
        min-height: 700px;
    }
}

/* Ensure images cover full width */
.custom-section .w-full {
    width: 100% !important;
}

/* Object-fit fallback for older browsers */
@supports not (object-fit: cover) {
    .custom-section img {
        min-width: 100%;
        min-height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Responsive text sizing */
@media (max-width: 640px) {
    .custom-section h1 {
        font-size: 2rem !important;
    }
    
    .custom-section h2 {
        font-size: 1.5rem !important;
    }
    
    .custom-section h3 {
        font-size: 1.25rem !important;
    }
    
    .custom-section .prose {
        font-size: 0.95rem;
    }
}

/* Ensure proper spacing on mobile */
@media (max-width: 640px) {
    .custom-section .px-8 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .custom-section .py-12 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}
/* Frontend Styling Fixes */

:root {
    /* Primary Colors */
    --bakery-primary: #FF6B00;
    --bakery-primary-light: #FF8533;
    --bakery-primary-dark: #CC5500;
    --bakery-cream: #FFF5E6;
    
    /* SKC Theme Colors */
    --skc-orange: #FF6B00;
    --skc-black: #000000;
    --skc-gray: #666666;
    --skc-light-gray: #F5F5F5;
    --skc-medium-gray: #999999;
    --skc-border: #E5E5E5;
    
    /* Gray Scale */
    --gray-100: #F7FAFC;
    --gray-200: #EDF2F7;
    --gray-300: #E2E8F0;
    --gray-400: #CBD5E0;
    --gray-500: #A0AEC0;
    --gray-600: #718096;
    --gray-700: #4A5568;
    --gray-800: #2D3748;
    --gray-900: #1A202C;
    
    /* Basic Colors */
    --white: #FFFFFF;
    --black: #000000;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Fix Pagination Styling */
.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem;
    background: var(--skc-light-gray);
    border-radius: 10px;
}

.pagination-info {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.pagination-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-item {
    display: flex;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    cursor: pointer;
}

.pagination-link:hover {
    background: var(--bakery-cream);
    border-color: var(--bakery-primary);
    color: var(--bakery-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pagination-item.active .pagination-link,
.pagination-link.current {
    background: linear-gradient(135deg, var(--bakery-primary) 0%, var(--bakery-primary-light) 100%);
    border-color: var(--bakery-primary-dark);
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pagination-item.disabled .pagination-link {
    background: var(--gray-100);
    border-color: var(--gray-200);
    color: var(--gray-400);
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination-item.disabled .pagination-link:hover {
    transform: none;
    background: var(--gray-100);
    border-color: var(--gray-200);
    color: var(--gray-400);
}

.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: var(--gray-400);
    font-weight: 500;
}

/* Fix Icons in Pagination */
.pagination-link i {
    font-size: 14px;
    display: inline-block;
}

.pagination-link i.fa-chevron-left,
.pagination-link i.fa-chevron-right {
    font-size: 12px;
}

/* Fix Font Awesome Icons if missing */
.fas::before,
.far::before,
.fa::before {
    display: inline-block;
    font-style: normal;
    font-weight: 900;
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free";
}

/* Ensure chevron icons work */
.fa-chevron-left::before {
    content: "\f053";
}

.fa-chevron-right::before {
    content: "\f054";
}

/* Fix Button Styles Throughout */
.skc-btn,
.btn-primary,
.btn-orange {
    display: inline-block;
    padding: 12px 24px;
    background: var(--bakery-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.skc-btn:hover,
.btn-primary:hover,
.btn-orange:hover {
    background: var(--bakery-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Fix Form Controls */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition-fast);
    background: white;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--bakery-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

/* Fix Card Components */
.card,
.product-card,
.skc-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.card:hover,
.product-card:hover,
.skc-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Fix Badge/Status Styles */
.badge,
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success,
.status-success {
    background: #D1FAE5;
    color: #065F46;
}

.badge-warning,
.status-warning {
    background: #FEF3C7;
    color: #92400E;
}

.badge-danger,
.status-danger {
    background: #FEE2E2;
    color: #991B1B;
}

.badge-info,
.status-info {
    background: #DBEAFE;
    color: #1E40AF;
}

/* Fix Loading Spinners */
.spinner,
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--bakery-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Fix Dropdown Menus */
.dropdown,
.dropdown-menu {
    position: relative;
}

.dropdown-content,
.dropdown-menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    z-index: 1000;
}

.dropdown-item {
    display: block;
    padding: 10px 15px;
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--bakery-cream);
    color: var(--bakery-primary);
}

/* Fix Modal/Dialog Styles */
.modal,
.dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content,
.dialog-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

/* Fix Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: var(--skc-light-gray);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--gray-700);
    border-bottom: 2px solid var(--gray-200);
}

td {
    padding: 15px;
    border-bottom: 1px solid var(--gray-200);
}

tr:hover {
    background: var(--bakery-cream);
}

/* Fix Alert/Notification Styles */
.alert,
.notification {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success,
.notification-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.alert-error,
.notification-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.alert-warning,
.notification-warning {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
}

.alert-info,
.notification-info {
    background: #DBEAFE;
    color: #1E40AF;
    border: 1px solid #BFDBFE;
}

/* Fix Breadcrumb Styles */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    font-size: 14px;
}

.breadcrumb-item {
    color: var(--gray-600);
}

.breadcrumb-item a {
    color: var(--gray-600);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--bakery-primary);
}

.breadcrumb-separator {
    color: var(--gray-400);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .pagination-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .pagination-list {
        order: 2;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination-info {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .pagination-page-size {
        order: 3;
        margin-top: 1rem;
    }
    
    .pagination-link {
        min-width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pagination-list {
        gap: 0.125rem;
    }
    
    .pagination-link {
        min-width: 32px;
        height: 32px;
        padding: 0 0.5rem;
        font-size: 0.85rem;
    }
    
    .modal-content,
    .dialog-content {
        width: 95%;
        margin: 10px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
/* Blogs Section Styles */
.skc-blogs {
    padding: 80px 0;
    background: #faf9f7;
}

.skc-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.skc-blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.skc-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.skc-blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.skc-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.skc-blog-card:hover .skc-blog-image img {
    transform: scale(1.1);
}

.skc-blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(128, 0, 0, 0.9), rgba(128, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skc-blog-card:hover .skc-blog-overlay {
    opacity: 1;
}

.skc-blog-read-btn {
    background: white;
    color: #800000;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.skc-blog-card:hover .skc-blog-read-btn {
    transform: translateY(0);
}

.skc-blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.skc-blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #888;
}

.skc-blog-author {
    font-weight: 600;
    color: var(--skc-orange, #FF6B00);
}

.skc-blog-title {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.skc-blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.skc-blog-title a:hover {
    color: var(--skc-orange, #FF6B00);
}

.skc-blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.skc-blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.skc-blog-tag {
    background: #f0f0f0;
    color: #666;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.skc-blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.skc-blog-reading-time {
    font-size: 14px;
    color: #888;
}

.skc-blog-link {
    color: var(--skc-orange, #FF6B00);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.skc-blog-link:hover {
    color: #e55a00;
}

.skc-blog-link i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.skc-blog-link:hover i {
    transform: translateX(5px);
}

.skc-btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--skc-orange, #FF6B00);
    color: var(--skc-orange, #FF6B00);
    background: transparent;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.skc-btn-outline:hover {
    background: var(--skc-orange, #FF6B00);
    color: white;
}

.skc-section-footer {
    text-align: center;
    margin-top: 50px;
}

/* Testimonials Section Styles */
.skc-testimonials {
    padding: 80px 0;
    background: #fff;
}

.testimonials-swiper {
    margin-top: 50px;
    padding-bottom: 50px;
    position: relative;
}

.skc-testimonial-card {
    background: #faf9f7;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.skc-testimonial-card:hover {
    transform: translateY(-5px);
}

.skc-testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 80px;
    color: var(--skc-orange, #FF6B00);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.skc-testimonial-rating {
    margin-bottom: 20px;
}

.skc-testimonial-rating i {
    color: #FFD700;
    font-size: 18px;
    margin: 0 2px;
}

.skc-testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 25px 0;
    font-style: italic;
}

.skc-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: center;
}

.skc-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--skc-orange, #FF6B00);
}

.skc-testimonial-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--skc-orange, #FF6B00);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.skc-testimonial-info {
    text-align: left;
}

.skc-testimonial-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.skc-testimonial-position {
    margin: 2px 0 0 0;
    color: var(--skc-orange, #FF6B00);
    font-size: 14px;
    font-weight: 500;
}

.skc-testimonial-location {
    margin: 2px 0 0 0;
    color: #888;
    font-size: 13px;
}

.skc-testimonial-product {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.skc-testimonial-product small {
    color: #888;
    font-style: italic;
}

/* Swiper Navigation Customization */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    color: var(--skc-orange, #FF6B00);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
    background: var(--skc-orange, #FF6B00);
    color: white;
    transform: scale(1.1);
}

.testimonials-swiper .swiper-button-next:after,
.testimonials-swiper .swiper-button-prev:after {
    font-size: 20px;
}

.testimonials-swiper .swiper-pagination-bullet {
    background: #ddd;
    width: 12px;
    height: 12px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--skc-orange, #FF6B00);
    transform: scale(1.2);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .skc-blogs, .skc-testimonials {
        padding: 50px 0;
    }
    
    .skc-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .skc-blog-content {
        padding: 20px;
    }
    
    .skc-blog-title {
        font-size: 20px;
    }
    
    .skc-testimonial-card {
        padding: 25px 20px;
        margin: 5px;
    }
    
    .skc-testimonial-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .skc-testimonial-author {
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
        gap: 12px;
    }
    
    .skc-testimonial-info {
        text-align: left;
    }

    .skc-testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .skc-testimonial-avatar-placeholder {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .testimonials-swiper .swiper-button-next,
    .testimonials-swiper .swiper-button-prev {
        display: none;
    }

    .testimonials-swiper {
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .skc-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .skc-blog-meta {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .skc-blog-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}
/* Checkout Page Styles - SKC Theme Consistent */

/* Container - Same as SKC theme */
.skc-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles - Match front-end */
.skc-section {
    padding: 60px 0;
    background: var(--skc-light-gray, #f5f5f5);
}

/* Layout utilities */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Max width utilities */
.max-w-3xl {
    max-width: 48rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-w-7xl {
    max-width: 80rem;
}

/* Grid System - Match SKC theme */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.space-y-1 > * + * {
    margin-top: 0.25rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-3 > * + * {
    margin-left: 0.75rem;
}

@media (min-width: 768px) {
    .md\\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

@media (min-width: 1024px) {
    .lg\\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .lg\\:col-span-1 {
        grid-column: span 1 / span 1;
    }
}

/* Typography - Match SKC theme exactly */
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.font-serif {
    font-family: Georgia, serif;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

/* Colors - SKC Theme palette */
.text-gray-500 {
    color: var(--skc-medium-gray, #666666);
}

.text-gray-600 {
    color: var(--skc-medium-gray, #666666);
}

.text-gray-700 {
    color: #374151;
}

.text-gray-800 {
    color: var(--skc-dark-gray, #1a1a1a);
}

.text-gray-900 {
    color: var(--skc-black, #000000);
}

.text-bakery-500 {
    color: var(--skc-orange, #800000);
}

.text-bakery-600 {
    color: var(--skc-orange, #800000);
}

.text-bakery-700 {
    color: #d97706;
}

.text-white {
    color: #ffffff;
}

.text-blue-500 {
    color: #3b82f6;
}

.text-blue-600 {
    color: #2563eb;
}

.text-blue-700 {
    color: #1d4ed8;
}

.text-blue-800 {
    color: #1e40af;
}

.text-green-500 {
    color: var(--skc-success, #4caf50);
}

.text-green-600 {
    color: #059669;
}

.text-red-500 {
    color: #ef4444;
}

.text-red-600 {
    color: #dc2626;
}

.text-yellow-600 {
    color: #ca8a04;
}

/* Background Colors - SKC theme */
.bg-white {
    background-color: var(--skc-white, #ffffff);
}

.bg-gray-50 {
    background-color: var(--skc-light-gray, #f5f5f5);
}

.bg-gray-200 {
    background-color: #e5e7eb;
}

.bg-bakery-50 {
    background-color: #fef7ea;
}

.bg-bakery-500 {
    background-color: var(--skc-orange, #800000);
}

.bg-bakery-600 {
    background-color: var(--skc-orange, #800000);
}

.bg-blue-50 {
    background-color: #eff6ff;
}

.bg-blue-500 {
    background-color: #3b82f6;
}

.bg-blue-600 {
    background-color: #2563eb;
}

.bg-red-50 {
    background-color: #fef2f2;
}

/* Gradient backgrounds */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--gradient-from-color, #fff), var(--gradient-to-color, #fff));
}

.from-blue-50 {
    --gradient-from-color: #eff6ff;
}

.to-indigo-50 {
    --gradient-to-color: #eef2ff;
}

/* Borders - SKC theme style */
.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-t {
    border-top-width: 1px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-gray-200 {
    border-color: var(--skc-border, #e0e0e0);
}

.border-gray-300 {
    border-color: #d1d5db;
}

.border-blue-200 {
    border-color: #bfdbfe;
}

.border-blue-500 {
    border-color: #3b82f6;
}

.border-green-500 {
    border-color: var(--skc-success, #4caf50);
}

.border-red-200 {
    border-color: #fecaca;
}

.border-red-500 {
    border-color: #ef4444;
}

.border-yellow-500 {
    border-color: #eab308;
}

.border-transparent {
    border-color: transparent;
}

/* Border Radius - SKC style */
.rounded {
    border-radius: 0.25rem;
}

.rounded-lg {
    border-radius: 8px;
}

.rounded-xl {
    border-radius: 12px;
}

.rounded-2xl {
    border-radius: 15px;
}

/* Shadow - SKC theme style */
.shadow-sm {
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.shadow {
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Flexbox utilities */
.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

/* Display utilities */
.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.hidden {
    display: none !important;
}

/* Position utilities */
.sticky {
    position: sticky;
}

.top-24 {
    top: 6rem;
}

/* Width utilities */
.w-full {
    width: 100%;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

/* Margin utilities */
.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-3 {
    margin-left: 0.75rem;
}

.mr-1 {
    margin-right: 0.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

/* Padding utilities */
.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-3 {
    padding-top: 0.75rem;
}

.pt-4 {
    padding-top: 1rem;
}

/* Forms - SKC theme style */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--skc-border, #e0e0e0);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Jost', sans-serif;
    color: var(--skc-dark-gray);
    background: white;
    outline: none;
    transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    border-color: var(--skc-orange);
    box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
}

input[type="radio"],
input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--skc-orange);
    border-color: var(--skc-border);
    cursor: pointer;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
    background-color: var(--skc-orange);
    border-color: var(--skc-orange);
}

/* Buttons - SKC theme exact style */
button {
    font-family: 'Jost', sans-serif;
}

button[type="submit"],
.skc-btn-primary {
    background: var(--skc-orange);
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 5px 15px rgba(128, 0, 0, 0.3);
}

button[type="submit"]:hover,
.skc-btn-primary:hover {
    background: #e88d0c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(128, 0, 0, 0.3);
}

/* Hover states */
.hover\\:bg-gray-50:hover {
    background-color: var(--skc-light-gray, #f5f5f5);
}

.hover\\:bg-blue-600:hover {
    background-color: #2563eb;
}

.hover\\:bg-bakery-600:hover {
    background-color: #e88d0c;
}

.hover\\:bg-bakery-700:hover {
    background-color: #d97706;
}

.hover\\:text-bakery-700:hover {
    color: #d97706;
}

.hover\\:text-blue-800:hover {
    color: #1e40af;
}

/* Transition utilities */
.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Cursor utilities */
.cursor-pointer {
    cursor: pointer;
}

/* Other utilities */
.underline {
    text-decoration: underline;
}

.divide-y > * + * {
    border-top: 1px solid var(--skc-border, #e0e0e0);
}

/* Disabled state */
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

input:disabled,
select:disabled,
textarea:disabled {
    background-color: var(--skc-light-gray);
    cursor: not-allowed;
}

/* Loading spinner */
.fa-spinner.fa-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Checkout specific cards - Match SKC theme */
.checkout-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    overflow: hidden;
}

/* Error states */
.error,
input.error,
.border-red-500 {
    border-color: #ef4444 !important;
}

/* Success states */
.success,
input.success,
.border-green-500 {
    border-color: var(--skc-success, #4caf50) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .container,
    .skc-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .checkout-card {
        padding: 25px;
        border-radius: 12px;
    }

    .text-3xl {
        font-size: 1.5rem;
    }

    .text-2xl {
        font-size: 1.25rem;
    }
}

/* Override any conflicting Tailwind styles */
.container,
.mx-auto,
.px-4,
.py-8 {
    font-family: 'Jost', sans-serif !important;
}

/* Match exact SKC section styling */
section {
    background: var(--skc-light-gray, #f5f5f5);
}

/* Ensure consistent font throughout checkout */
* {
    font-family: 'Jost', sans-serif;
}

/* Match SKC card hover effects */
.checkout-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: box-shadow 0.3s ease;
}
