    /* ============================================
   🎨 ARTIST THEME SHOP - COMPLETE
   All features with zero conflicts
   Classes prefixed with 'as-'
   ============================================ */

    /* ============================================
   GLOBAL OVERRIDES - Prevent ALL Conflicts
   ============================================ */
    .as-page,
    .as-page * {
        box-sizing: border-box !important;
    }

    .as-page h1,
    .as-page h2,
    .as-page h3,
    .as-page h4,
    .as-page h5,
    .as-page h6 {
        margin: 0 !important;
        padding: 0 !important;
        font-weight: inherit !important;
        line-height: inherit !important;
    }

    .as-page p {
        margin: 0 !important;
        padding: 0 !important;
    }

    .as-page a {
        text-decoration: none !important;
        color: inherit !important;
        -webkit-text-fill-color: inherit !important;
    }

    .as-page button {
        font-family: inherit !important;
        outline: none !important;
    }

    .as-page img {
        max-width: 100% !important;
        display: block !important;
    }

    .as-page ul,
    .as-page ol {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Override any global link/button colors */
    .as-page .as-cat,
    .as-page .as-action,
    .as-page .as-add-btn,
    .as-page .as-load-btn,
    .as-page .as-search button,
    .as-page .as-modal-cart,
    .as-page .as-modal-view {
        text-decoration: none !important;
    }

    /* Ensure all FontAwesome icons inherit color */
    .as-page i[class*="fa-"] {
        color: inherit !important;
        -webkit-text-fill-color: inherit !important;
    }

    /* Override any global gradient text effects */
    .as-page [class*="gradient-text"],
    .as-page [class*="rainbow-text"] {
        background: none !important;
        -webkit-text-fill-color: inherit !important;
    }

    /* Base */
    .as-page {
        font-family: 'Outfit', system-ui, sans-serif !important;
        background: #FDF8F3 !important;
        color: #2d2d2d !important;
        min-height: 100vh !important;
    }

    /* ============================================
   HERO - Enhanced with Background Image
   ============================================ */
    .as-hero {
        position: relative;
        min-height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #1a1a1a !important;
        overflow: hidden;
        padding: 5rem 2rem;
    }

    .as-hero-bg {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .as-hero-bg img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        opacity: 0.4;
    }

    .as-hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        background:
            radial-gradient(ellipse at 50% 50%, rgba(139, 90, 90, 0.15), transparent 60%),
            linear-gradient(180deg, rgba(26, 26, 26, 0.4) 0%, rgba(26, 26, 26, 0.7) 100%);
    }


    /* Rotating Ring */
    .as-hero-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 600px;
        height: 600px;
        transform: translate(-50%, -50%);
        border: 2px solid transparent;
        border-radius: 50%;
        background: linear-gradient(#FDF8F3, #FDF8F3) padding-box, linear-gradient(135deg, rgba(139, 90, 90, 0.25), rgba(212, 165, 116, 0.2), rgba(90, 123, 139, 0.15)) border-box;
        animation: asRingRotate 30s linear infinite;
        pointer-events: none;
    }

    .as-hero-ring::after {
        content: '';
        position: absolute;
        inset: 50px;
        border: 1px solid transparent;
        border-radius: 50%;
        background: linear-gradient(#FDF8F3, #FDF8F3) padding-box, linear-gradient(45deg, rgba(212, 165, 116, 0.15), rgba(139, 90, 90, 0.1)) border-box;
        animation: asRingRotate 25s linear infinite reverse;
    }

    @keyframes asRingRotate {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }

    /* Floating Sparkles */
    .as-sparkle {
        position: absolute;
        width: 8px;
        height: 8px;
        background: #D4A574;
        border-radius: 50%;
        z-index: 5;
        animation: asSparkle 5s ease-in-out infinite;
        pointer-events: none;
    }

    .as-sparkle--1 {
        top: 20%;
        left: 15%;
        animation-delay: 0s;
    }

    .as-sparkle--2 {
        top: 35%;
        right: 20%;
        animation-delay: -1.5s;
    }

    .as-sparkle--3 {
        bottom: 30%;
        left: 25%;
        animation-delay: -3s;
    }

    .as-sparkle--4 {
        bottom: 25%;
        right: 15%;
        animation-delay: -2s;
    }

    @keyframes asSparkle {

        0%,
        100% {
            transform: translateY(0) scale(1);
            opacity: 0.4;
            box-shadow: 0 0 12px rgba(212, 165, 116, 0.5);
        }

        50% {
            transform: translateY(-20px) scale(1.3);
            opacity: 1;
            box-shadow: 0 0 25px rgba(212, 165, 116, 0.8);
        }
    }

    /* Floating Shapes */
    .as-shape {
        position: absolute;
        pointer-events: none;
        z-index: 2;
    }

    .as-shape--1 {
        top: 15%;
        right: 12%;
        width: 50px;
        height: 50px;
        border: 2px solid rgba(139, 90, 90, 0.15);
        border-radius: 10px;
        animation: asShapeDrift 15s ease-in-out infinite;
        transform: rotate(45deg);
    }

    .as-shape--2 {
        bottom: 20%;
        left: 8%;
        width: 35px;
        height: 35px;
        background: rgba(212, 165, 116, 0.1);
        border-radius: 50%;
        animation: asShapeDrift 18s ease-in-out infinite reverse;
    }

    @keyframes asShapeDrift {

        0%,
        100% {
            transform: translate(0, 0) rotate(45deg);
            opacity: 0.5;
        }

        50% {
            transform: translate(-15px, -25px) rotate(60deg);
            opacity: 0.8;
        }
    }

    .as-hero-content {
        position: relative;
        z-index: 10;
        text-align: center;
        max-width: 700px;
    }

    .as-hero-label {
        font-family: 'Dancing Script', cursive !important;
        font-size: 1.6rem !important;
        color: #D4A574 !important;
        -webkit-text-fill-color: #D4A574 !important;
        margin-bottom: 0.75rem;
        display: block;
        animation: asFadeUp 1s ease-out;
    }

    .as-hero-title {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: clamp(2.5rem, 6vw, 3.5rem) !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        line-height: 1.15;
        margin-bottom: 1.25rem;
        animation: asFadeUp 1s ease-out 0.1s both;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .as-hero-title span {
        color: #D4A574 !important;
        -webkit-text-fill-color: #D4A574 !important;
        font-style: italic;
    }

    @keyframes asFadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .as-hero-desc {
        font-size: 1.1rem !important;
        color: #b0b0b0 !important;
        -webkit-text-fill-color: #b0b0b0 !important;
        line-height: 1.7;
        max-width: 550px;
        margin: 0 auto 1.5rem !important;
        animation: asFadeUp 1s ease-out 0.2s both;
    }

    /* Search Box */
    .as-search {
        max-width: 500px;
        margin: 1.5rem auto 0;
        display: flex;
        gap: 0.5rem;
    }

    .as-search input {
        flex: 1;
        padding: 0.9rem 1.25rem;
        border: 1px solid #e5e5e5;
        border-radius: 50px;
        font-size: 0.95rem;
        background: #fff;
        color: #2d2d2d !important;
    }

    .as-search input::placeholder {
        color: #a0a0a0;
    }

    .as-search button {
        padding: 0.9rem 1.5rem;
        background: #8B5A5A !important;
        border: none;
        border-radius: 50px;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
    }

    .as-search button:hover {
        background: #7a4f4f !important;
    }

    /* ============================================
   FEATURED / HOT DEALS SECTION - Premium
   ============================================ */
    .as-section {
        padding: 5rem 2rem;
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
    }

    .as-section--alt {
        background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%) !important;
        max-width: none;
        padding: 5rem 0;
        position: relative;
    }

    .as-section--alt::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
    }

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

    .as-section-header::after {
        content: '';
        display: block;
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, #D4A574, #8B5A5A);
        margin: 1rem auto 0;
        border-radius: 1px;
    }

    .as-section-label {
        font-family: 'Dancing Script', cursive !important;
        font-size: 1.35rem !important;
        color: #D4A574 !important;
        -webkit-text-fill-color: #D4A574 !important;
        margin-bottom: 0.5rem;
        display: block;
        letter-spacing: 0.02em;
    }

    .as-section-title {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: clamp(1.75rem, 3.5vw, 2.25rem) !important;
        font-weight: 600 !important;
        color: #2d2d2d !important;
        -webkit-text-fill-color: #2d2d2d !important;
        letter-spacing: 0.01em;
    }

    /* ============================================
       ART COLLECTION BANNER
       ============================================ */
    .as-art-banner {
        position: relative;
        margin: 3rem auto;
        max-width: 1400px;
        padding: 0 2rem;
    }

    .as-art-banner-inner {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        min-height: 350px;
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #1a1a1a, #2d2018);
    }

    .as-art-banner-img {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .as-art-banner-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        opacity: 0.5;
    }

    .as-art-banner-overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient(90deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.6) 60%, transparent 100%);
    }

    .as-art-banner-content {
        position: relative;
        z-index: 10;
        padding: 3rem;
        max-width: 550px;
    }

    .as-art-banner-label {
        font-family: 'Dancing Script', cursive !important;
        font-size: 1.25rem !important;
        color: #D4A574 !important;
        -webkit-text-fill-color: #D4A574 !important;
        margin-bottom: 0.5rem;
        display: block;
    }

    .as-art-banner-title {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .as-art-banner-desc {
        font-size: 1rem !important;
        color: #b0b0b0 !important;
        -webkit-text-fill-color: #b0b0b0 !important;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .as-art-banner-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.9rem 2rem;
        background: #D4A574 !important;
        border: none;
        border-radius: 50px;
        color: #1a1a1a !important;
        -webkit-text-fill-color: #1a1a1a !important;
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: none !important;
        transition: all 0.3s;
    }

    .as-art-banner-btn:hover {
        background: #c9a87c !important;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
    }

    .as-art-banner-btn i {
        color: inherit !important;
        -webkit-text-fill-color: inherit !important;
    }

    /* Horizontal Scroll Container */
    .as-scroll-wrap {
        position: relative;
    }

    .as-scroll {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        padding: 1rem 2rem 2rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE */
    }

    .as-scroll::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }

    /* Scroll Arrow Buttons */
    .as-scroll-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        background: #fff !important;
        border: 1px solid rgba(212, 165, 116, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 4px 20px rgba(139, 90, 90, 0.15);
        transition: all 0.3s ease;
    }

    .as-scroll-btn:hover {
        background: linear-gradient(135deg, #8B5A5A, #7a4f4f) !important;
        border-color: #8B5A5A;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 8px 30px rgba(139, 90, 90, 0.25);
    }

    .as-scroll-btn i {
        font-size: 1.1rem;
        color: #8B5A5A !important;
        -webkit-text-fill-color: #8B5A5A !important;
        transition: color 0.3s;
    }

    .as-scroll-btn:hover i {
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
    }

    .as-scroll-btn--left {
        left: 0.5rem;
    }

    .as-scroll-btn--right {
        right: 0.5rem;
    }

    @media (max-width: 768px) {
        .as-scroll-btn {
            width: 40px;
            height: 40px;
        }

        .as-scroll-btn i {
            font-size: 0.9rem;
        }
    }

    /* ============================================
   FILTERS BAR - Premium Sticky
   ============================================ */
    .as-filters {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 1.25rem 2rem;
        border-bottom: 1px solid rgba(212, 165, 116, 0.15);
        position: sticky;
        top: 0;
        z-index: 50;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    .as-filters-inner {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 1.25rem;
    }

    .as-cats {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .as-cat {
        padding: 0.5rem 1rem;
        background: transparent;
        border: 1px solid #e5e5e5;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 500;
        color: #6b6b6b !important;
        -webkit-text-fill-color: #6b6b6b !important;
        text-decoration: none;
        transition: all 0.3s;
    }

    .as-cat:hover,
    .as-cat.active {
        background: #8B5A5A !important;
        border-color: #8B5A5A !important;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
    }

    .as-sort select {
        padding: 0.5rem 1rem;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        font-size: 0.85rem;
        background: #fff;
        color: #2d2d2d !important;
        cursor: pointer;
    }

    /* ============================================
   PRICE RANGE FILTER
   ============================================ */
    .as-filter-controls {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

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

    .as-price-form {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 50px;
        padding: 0.35rem 0.5rem 0.35rem 0.75rem;
        transition: all 0.3s;
    }

    .as-price-form:focus-within {
        border-color: #D4A574;
        box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
    }

    .as-price-label {
        color: #8B5A5A !important;
        -webkit-text-fill-color: #8B5A5A !important;
        font-size: 0.85rem;
    }

    .as-price-label i {
        color: inherit !important;
        -webkit-text-fill-color: inherit !important;
    }

    .as-price-input {
        width: 70px;
        padding: 0.4rem 0.5rem;
        border: none;
        background: transparent;
        font-size: 0.85rem;
        color: #2d2d2d !important;
        text-align: center;
    }

    .as-price-input::placeholder {
        color: #a0a0a0;
    }

    .as-price-input:focus {
        outline: none;
    }

    /* Hide number input spinners */
    .as-price-input::-webkit-outer-spin-button,
    .as-price-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .as-price-input[type=number] {
        -moz-appearance: textfield;
    }

    .as-price-separator {
        color: #c0c0c0 !important;
        -webkit-text-fill-color: #c0c0c0 !important;
        font-size: 0.9rem;
    }

    .as-price-btn {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #8B5A5A !important;
        border: none;
        border-radius: 50%;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
        cursor: pointer;
        transition: all 0.3s;
    }

    .as-price-btn:hover {
        background: #7a4f4f !important;
        transform: scale(1.05);
    }

    .as-price-btn i {
        font-size: 0.75rem;
        color: inherit !important;
        -webkit-text-fill-color: inherit !important;
    }

    .as-price-clear {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f5f5f5 !important;
        border-radius: 50%;
        color: #6b6b6b !important;
        -webkit-text-fill-color: #6b6b6b !important;
        transition: all 0.3s;
        text-decoration: none !important;
    }

    .as-price-clear:hover {
        background: #dc3545 !important;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
    }

    .as-price-clear i {
        font-size: 0.7rem;
        color: inherit !important;
        -webkit-text-fill-color: inherit !important;
    }

    /* ============================================
       IN STOCK FILTER TOGGLE
       ============================================ */
    .as-stock-filter {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        cursor: pointer;
        padding: 0.5rem 1rem;
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 50px;
        transition: all 0.3s;
        user-select: none;
    }

    .as-stock-filter:hover {
        border-color: #8B5A5A;
    }

    .as-stock-filter input[type="checkbox"] {
        width: 16px;
        height: 16px;
        accent-color: #8B5A5A;
        cursor: pointer;
    }

    .as-stock-filter .as-stock-label {
        font-size: 0.8rem;
        font-weight: 500;
        color: #6b6b6b !important;
        -webkit-text-fill-color: #6b6b6b !important;
        display: flex;
        align-items: center;
        gap: 0.35rem;
    }

    .as-stock-filter .as-stock-label i {
        font-size: 0.75rem;
        color: inherit !important;
        -webkit-text-fill-color: inherit !important;
    }

    .as-stock-filter:has(input:checked) {
        background: #8B5A5A !important;
        border-color: #8B5A5A !important;
    }

    .as-stock-filter:has(input:checked) .as-stock-label {
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
    }

    .as-stock-filter:has(input:checked) .as-stock-label i {
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
    }

    @media (max-width: 768px) {
        .as-filter-controls {
            width: 100%;
            justify-content: space-between;
        }

        .as-price-input {
            width: 55px;
        }

        .as-price-form {
            padding: 0.25rem 0.4rem 0.25rem 0.6rem;
        }
    }

    @media (max-width: 480px) {
        .as-filters-inner {
            flex-direction: column;
            align-items: stretch;
        }

        .as-filter-controls {
            flex-direction: column;
            gap: 0.75rem;
        }

        .as-price-filter {
            width: 100%;
        }

        .as-price-form {
            width: 100%;
            justify-content: center;
        }

        .as-price-input {
            flex: 1;
            max-width: 80px;
        }
    }

    /* ============================================
   PRODUCT GRID
   ============================================ */
    .as-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.75rem;
    }

    /* ============================================
   PRODUCT CARD
   ============================================ */
    .as-card {
        position: relative;
        background: #fff !important;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(139, 90, 90, 0.08);
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        scroll-snap-align: start;
        flex-shrink: 0;
        width: 280px;
        border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .as-grid .as-card {
        width: auto;
    }

    .as-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px rgba(139, 90, 90, 0.18);
        border-color: rgba(212, 165, 116, 0.2);
    }

    .as-card-img {
        position: relative;
        aspect-ratio: 1/1;
        overflow: hidden;
        background: linear-gradient(135deg, #f5f0eb, #faf9f7) !important;
    }

    .as-card-img::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 60%, rgba(139, 90, 90, 0.03) 100%);
        pointer-events: none;
    }

    .as-card-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .as-card:hover .as-card-img img {
        transform: scale(1.08);
    }

    /* Badges */
    .as-badge {
        position: absolute;
        top: 0.75rem;
        left: 0.75rem;
        padding: 0.35rem 0.7rem;
        background: linear-gradient(135deg, #D4A574, #c9a87c) !important;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
        font-size: 0.65rem;
        font-weight: 600;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        z-index: 5;
    }

    .as-badge--sale {
        background: linear-gradient(135deg, #8B5A5A, #a06b6b) !important;
    }

    .as-badge--new {
        background: linear-gradient(135deg, #5A7B8B, #6d8d9c) !important;
    }

    /* Quick Actions */
    .as-actions {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        z-index: 5;
        opacity: 0;
        transform: translateX(8px);
        transition: all 0.3s;
    }

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

    .as-action {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff !important;
        border: none;
        border-radius: 50%;
        color: #8B5A5A !important;
        -webkit-text-fill-color: #8B5A5A !important;
        cursor: pointer;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
        text-decoration: none;
    }

    .as-action:hover {
        background: linear-gradient(135deg, #8B5A5A, #7a4f4f) !important;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
        transform: scale(1.1);
    }

    .as-action i {
        font-size: 0.9rem;
        color: inherit !important;
        -webkit-text-fill-color: inherit !important;
    }

    /* Active Wishlist Heart */
    .as-action i.fas.fa-heart {
        color: #dc3545 !important;
        -webkit-text-fill-color: #dc3545 !important;
    }

    /* Keep white on hover */
    .as-action:hover i.fas.fa-heart {
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
    }

    /* Card Content */
    .as-card-body {
        padding: 1.25rem;
    }

    .as-card-cat {
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: #D4A574 !important;
        -webkit-text-fill-color: #D4A574 !important;
        margin-bottom: 0.5rem;
    }

    .as-card-name {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: 1.15rem !important;
        font-weight: 600 !important;
        color: #2d2d2d !important;
        -webkit-text-fill-color: #2d2d2d !important;
        margin-bottom: 0.5rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .as-card-name a {
        color: inherit !important;
        -webkit-text-fill-color: inherit !important;
        text-decoration: none;
    }

    .as-card-name a:hover {
        color: #8B5A5A !important;
        -webkit-text-fill-color: #8B5A5A !important;
    }

    .as-card-price {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .as-price {
        font-size: 1rem;
        font-weight: 600;
        color: #8B5A5A !important;
        -webkit-text-fill-color: #8B5A5A !important;
    }

    .as-price-old {
        font-size: 0.85rem;
        color: #a0a0a0 !important;
        -webkit-text-fill-color: #a0a0a0 !important;
        text-decoration: line-through;
    }

    /* Add to Cart */
    .as-add-btn {
        width: 100%;
        padding: 0.65rem 0.75rem;
        background: transparent;
        border: 1px solid #8B5A5A;
        border-radius: 8px;
        font-size: 0.8rem;
        font-weight: 500;
        color: #8B5A5A !important;
        -webkit-text-fill-color: #8B5A5A !important;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
    }

    .as-add-btn:hover {
        background: #8B5A5A !important;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
    }

    .as-add-btn i {
        color: inherit !important;
        -webkit-text-fill-color: inherit !important;
    }

    /* ============================================
   LOAD MORE
   ============================================ */
    .as-load-more {
        text-align: center;
        margin-top: 3rem;
    }

    .as-load-btn {
        padding: 0.9rem 2.5rem;
        background: transparent;
        border: 2px solid #8B5A5A;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        color: #8B5A5A !important;
        -webkit-text-fill-color: #8B5A5A !important;
        cursor: pointer;
        transition: all 0.3s;
    }

    .as-load-btn:hover {
        background: #8B5A5A !important;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
    }

    /* ============================================
   QUICK VIEW MODAL
   ============================================ */
    .as-modal {
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: rgba(45, 45, 45, 0.9);
        display: none;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        backdrop-filter: blur(5px);
    }

    .as-modal.active {
        display: flex;
    }

    .as-modal-content {
        background: #fff;
        border-radius: 20px;
        max-width: 900px;
        width: 100%;
        max-height: 90vh;
        overflow: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    @media (max-width: 768px) {
        .as-modal-content {
            grid-template-columns: 1fr;
        }
    }

    .as-modal-img {
        aspect-ratio: 1/1;
        overflow: hidden;
    }

    .as-modal-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .as-modal-body {
        padding: 2rem;
    }

    .as-modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        background: #fff;
        border: none;
        border-radius: 50%;
        font-size: 1.25rem;
        cursor: pointer;
        color: #2d2d2d !important;
    }

    .as-modal-cat {
        font-size: 0.75rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #D4A574 !important;
        -webkit-text-fill-color: #D4A574 !important;
        margin-bottom: 0.5rem;
    }

    .as-modal-name {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: 1.75rem !important;
        font-weight: 600 !important;
        color: #2d2d2d !important;
        -webkit-text-fill-color: #2d2d2d !important;
        margin-bottom: 1rem;
    }

    .as-modal-price {
        font-size: 1.5rem;
        font-weight: 600;
        color: #8B5A5A !important;
        -webkit-text-fill-color: #8B5A5A !important;
        margin-bottom: 1rem;
    }

    .as-modal-desc {
        font-size: 0.95rem;
        color: #6b6b6b !important;
        -webkit-text-fill-color: #6b6b6b !important;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .as-modal-actions {
        display: flex;
        gap: 1rem;
    }

    .as-modal-cart {
        flex: 1;
        padding: 0.9rem 1.5rem;
        background: #8B5A5A !important;
        border: none;
        border-radius: 10px;
        font-size: 0.9rem;
        font-weight: 600;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
        cursor: pointer;
    }

    .as-modal-view {
        padding: 0.9rem 1.5rem;
        background: transparent;
        border: 1px solid #8B5A5A;
        border-radius: 10px;
        font-size: 0.9rem;
        font-weight: 600;
        color: #8B5A5A !important;
        -webkit-text-fill-color: #8B5A5A !important;
        text-decoration: none;
    }

    /* ============================================
   EMPTY STATE
   ============================================ */
    .as-empty {
        text-align: center;
        padding: 4rem 2rem;
    }

    .as-empty i {
        font-size: 3rem;
        color: #D4A574;
        opacity: 0.5;
        margin-bottom: 1rem;
    }

    .as-empty h3 {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: 1.5rem !important;
        color: #2d2d2d !important;
        -webkit-text-fill-color: #2d2d2d !important;
        margin-bottom: 0.5rem;
    }

    .as-empty p {
        color: #6b6b6b !important;
        -webkit-text-fill-color: #6b6b6b !important;
    }

    /* ============================================
   ANIMATIONS
   ============================================ */
    .as-reveal {
        opacity: 0;
        transform: translateY(25px);
        transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .as-reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ============================================
       TRUST BADGES STRIP
       ============================================ */
    .as-trust {
        background: #ffffff;
        padding: 2rem 1.5rem;
        border-bottom: 1px solid rgba(212, 165, 116, 0.15);
    }

    .as-trust-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    @media (max-width: 768px) {
        .as-trust-inner {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .as-trust-inner {
            grid-template-columns: 1fr;
        }
    }

    .as-trust-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: linear-gradient(135deg, #faf9f7, #fff);
        border-radius: 12px;
        border: 1px solid rgba(212, 165, 116, 0.1);
        transition: all 0.3s ease;
    }

    .as-trust-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(139, 90, 90, 0.1);
        border-color: rgba(212, 165, 116, 0.3);
    }

    .as-trust-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #D4A574, #c9a87c);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .as-trust-icon i {
        font-size: 1.25rem;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
    }

    .as-trust-text h4 {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #2d2d2d !important;
        -webkit-text-fill-color: #2d2d2d !important;
        margin-bottom: 0.2rem;
    }

    .as-trust-text p {
        font-size: 0.75rem !important;
        color: #8a8a8a !important;
        -webkit-text-fill-color: #8a8a8a !important;
    }

    /* ============================================
       CATEGORY SHOWCASE
       ============================================ */
    .as-cat-showcase {
        padding: 4rem 2rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    .as-cat-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .as-cat-card {
        position: relative;
        padding: 2rem 1.5rem;
        background: #fff;
        border-radius: 16px;
        text-align: center;
        border: 1px solid rgba(212, 165, 116, 0.1);
        box-shadow: 0 8px 25px rgba(139, 90, 90, 0.06);
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        cursor: pointer;
        text-decoration: none !important;
        overflow: hidden;
    }

    .as-cat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #D4A574, #8B5A5A);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .as-cat-card:hover::before {
        transform: scaleX(1);
    }

    .as-cat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(139, 90, 90, 0.15);
        border-color: rgba(212, 165, 116, 0.3);
    }

    .as-cat-card-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 1rem;
        background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(139, 90, 90, 0.1));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .as-cat-card:hover .as-cat-card-icon {
        background: linear-gradient(135deg, #D4A574, #8B5A5A);
        transform: scale(1.1);
    }

    .as-cat-card-icon i {
        font-size: 1.75rem;
        color: #8B5A5A !important;
        -webkit-text-fill-color: #8B5A5A !important;
        transition: color 0.3s ease;
    }

    .as-cat-card:hover .as-cat-card-icon i {
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
    }

    .as-cat-card-name {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: 1.25rem !important;
        font-weight: 600 !important;
        color: #2d2d2d !important;
        -webkit-text-fill-color: #2d2d2d !important;
        margin-bottom: 0.35rem;
    }

    .as-cat-card-count {
        font-size: 0.8rem !important;
        color: #D4A574 !important;
        -webkit-text-fill-color: #D4A574 !important;
        font-weight: 500;
    }

    /* ============================================
       NEWSLETTER SECTION
       ============================================ */
    .as-newsletter {
        position: relative;
        padding: 5rem 2rem;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2018 100%);
        overflow: hidden;
        margin-top: 4rem;
    }

    .as-newsletter::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.5), transparent);
    }

    .as-newsletter-pattern {
        position: absolute;
        inset: 0;
        opacity: 0.05;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A574' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .as-newsletter-inner {
        position: relative;
        z-index: 5;
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .as-newsletter-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.5rem;
        background: linear-gradient(135deg, #D4A574, #c9a87c);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 40px rgba(212, 165, 116, 0.3);
    }

    .as-newsletter-icon i {
        font-size: 1.75rem;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
    }

    .as-newsletter-label {
        font-family: 'Dancing Script', cursive !important;
        font-size: 1.35rem !important;
        color: #D4A574 !important;
        -webkit-text-fill-color: #D4A574 !important;
        margin-bottom: 0.5rem;
        display: block;
    }

    .as-newsletter-title {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: clamp(1.75rem, 4vw, 2.25rem) !important;
        font-weight: 600 !important;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
        margin-bottom: 0.75rem;
    }

    .as-newsletter-desc {
        font-size: 1rem !important;
        color: #b0b0b0 !important;
        -webkit-text-fill-color: #b0b0b0 !important;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .as-newsletter-form {
        display: flex;
        gap: 0.75rem;
        max-width: 450px;
        margin: 0 auto;
    }

    @media (max-width: 480px) {
        .as-newsletter-form {
            flex-direction: column;
        }
    }

    .as-newsletter-form input {
        flex: 1;
        padding: 1rem 1.25rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 50px;
        font-size: 0.95rem;
        color: #fff !important;
        transition: all 0.3s;
    }

    .as-newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .as-newsletter-form input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.15);
        border-color: #D4A574;
    }

    .as-newsletter-form button {
        padding: 1rem 2rem;
        background: linear-gradient(135deg, #D4A574, #c9a87c) !important;
        border: none;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        color: #1a1a1a !important;
        -webkit-text-fill-color: #1a1a1a !important;
        cursor: pointer;
        transition: all 0.3s;
        white-space: nowrap;
    }

    .as-newsletter-form button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
    }

    .as-newsletter-note {
        font-size: 0.8rem !important;
        color: rgba(255, 255, 255, 0.4) !important;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.4) !important;
        margin-top: 1rem;
    }

    .as-newsletter-note i {
        color: #D4A574 !important;
        -webkit-text-fill-color: #D4A574 !important;
        margin-right: 0.3rem;
    }

    /* Toast Notification */
    #toast-container {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 11000;
        pointer-events: none;
    }

    .as-toast {
        background: #fff;
        color: #333;
        padding: 16px 24px;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        gap: 12px;
        transform: translateX(120%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        min-width: 300px;
        pointer-events: auto;
        border-left: 4px solid #100c7c;
        font-family: 'Outfit', sans-serif;
    }

    .as-toast.error {
        border-left-color: #dc3545;
    }

    .as-toast-icon {
        font-size: 20px;
        color: #100c7c;
    }

    .as-toast.error .as-toast-icon {
        color: #dc3545;
    }

    .as-toast-msg {
        font-weight: 500;
        font-size: 15px;
    }