.elementor-6 .elementor-element.elementor-element-67d7cc6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-3c61f73 *//* =============================================
   ASTRO SHOP PREMIUM STYLES
   Color Palette: Deep Gold, Amber, Glass
   ==========================
   =================== */
/* --- Container & Reset --- */
.astro-shop-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 140px 40px 60px;
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
    /* Ensure Gradient is here if it was removed */
    background: linear-gradient(180deg, #FFE4A8 0%, #FFF3D1 20%, #FFFEF9 40%, #FFFFFF 60%, #FFFEF9 100%);
    min-height: 100vh;
}

.astro-shop-container * {
    box-sizing: border-box;
}

/* --- Floating Background Particles --- */
.shop-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.4) 0%, rgba(255, 193, 7, 0) 70%);
    animation: float 10s infinite ease-in-out;
}

.p1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-duration: 20s;
}

.p2 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: -50px;
    animation-duration: 15s;
    animation-delay: 2s;
}

.p3 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 20%;
    animation-duration: 12s;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* --- Header Section --- */
.shop-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.shop-subtitle {
    font-size: 1.1rem;
    color: #DAA520;
    /* Goldenrod */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.shop-title {
    font-size: 3rem;
    color: #333;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.shop-title .highlight {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shop-desc {
    max-width: 600px;
    margin: 20px auto 0;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* --- Category Filters --- */
.shop-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* --- Products Grid --- */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    /* Tighter constraint */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- Product Cards --- */
.shop-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.shop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.3);
}

/* Card Image Area */
.card-image {
    height: 250px;
    /* Slightly taller for better balance */
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* CRITICAL: Wraps the image */
}

.image-content {
    width: 100%;
    height: 100%;
}

.shop-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shop-card:hover .shop-card-img {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Badges */
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF5252;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 82, 82, 0.3);
}

.featured .card-ribbon {
    position: absolute;
    top: 20px;
    left: -30px;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: white;
    padding: 5px 40px;
    transform: rotate(-45deg);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Card Content */
.card-details {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-cat {
    font-size: 0.8rem;
    color: #DAA520;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-title {
    font-size: 1.4rem;
    color: #2D3436;
    margin: 5px 0 10px;
    font-weight: 700;
}

.card-excerpt {
    font-size: 0.95rem;
    color: #636e72;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
    /* Pushes price down */
}

/* Price Section */
.card-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.price-current {
    font-size: 1.5rem;
    color: #2D3436;
    font-weight: 800;
}

.price-original {
    font-size: 1rem;
    color: #b2bec3;
    text-decoration: line-through;
}

/* Action Buttons */
/* Action Buttons */
.card-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-cart {
    flex: 1.5;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    font-size: 0.95rem;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cart:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.5);
    color: white;
}

.btn-cart:active {
    transform: translateY(-1px);
}

.btn-view {
    flex: 1;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    color: #2D3436;
    border: 1px solid #dfe6e9;
    text-align: center;
    padding: 12px 15px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-view:hover {
    background: #2D3436;
    color: white;
    border-color: #2D3436;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .shop-title {
        font-size: 2.5rem;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        /* Stack vertically on mobile */
    }

    .card-actions {
        flex-direction: column;
    }

    .btn-cart,
    .btn-view {
        width: 100%;
    }
}

/* --- Trust Footer --- */
.shop-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #636e72;
    font-size: 0.9rem;
}/* End custom CSS */