/* Default (Desktop) */
.logo-img {
    width: 200px;
    height: auto;
    width: 100%;
    display: block;
}

/* Large devices (laptops) */
@media (max-width: 1200px) {
    .logo-img {
        width: 200px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .logo-img {
        max-width: 160px;
    }
}

.custom-marquee {
    width: 100%;
    overflow: hidden;
    color: #fff;
}

.track {
    display: flex;
    width: max-content;
    animation: scroll 45s linear infinite;
}

.track span {
    margin-right: 50px;
    font-size: 18px;
    white-space: nowrap;
}

.editorial-img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .editorial-img {
        height: auto;
        margin-bottom: 20px;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.breadcrumb__menu a {
    color: #ffffff !important;
    text-decoration: none;
}

.breadcrumb__menu span {
    color: #ffffff !important;
    text-decoration: none;
}

.breadcrumb__menu ul li:not(:last-child)::before {
    color: #fff;
}

/* ---------------------banner--------- */
.premium-banner-area {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
    padding-top: 60px;
}

.premium-slide {
    height: 99vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 100% 100%;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 15px;
}

/* Elegant Dark Overlay */
.premium-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    /*background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);*/
    z-index: 1;
}

.premium-slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Premium Typography & Animations */
.premium-subtitle {
    color: #ffb800;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: clamp(12px, 2vw, 16px);
    display: block;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease both;
}

.premium-title {
    color: #ffffff;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s both;
}

.premium-desc {
    color: #f0f0f0;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    margin-bottom: 45px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.6s both;
}

.premium-btn {
    display: inline-block;
    background: #ffb800;
    color: #000;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 1s ease 0.9s both;
}

.premium-btn:hover {
    background: #ffffff;
    color: #000;
    box-shadow: 0 15px 25px rgba(255, 184, 0, 0.2);
    transform: translateY(-5px);
}

.premium-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.premium-nav-btn svg path {
    stroke: #ffffff;
    transition: all 0.3s ease;
}

.premium-nav-btn:hover {
    background: #ffb800;
    border-color: #ffb800;
    transform: translateY(-50%) scale(1.1);
}

.premium-nav-btn:hover svg path {
    stroke: #000000;
}

.nav-prev {
    left: 40px;
}

.nav-next {
    right: 40px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*---------------------------------service------------------*/
.services-area-astrology {
    padding: 50px 0;
    background-color: #ffffff;
    position: relative;
    font-family: 'Cinzel', serif, sans-serif;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
}

.service-card {
    background: #ffffff;
    padding: 0;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #c5a059 !important;
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.12);
}

/* New Image Wrapper */
.service-img-wrapper {
    width: 100%;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}

/* New Text Wrapper with Padding */
.service-text-wrapper {
    padding: 10px 20px;
    flex-grow: 1;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: #c5a059;
}

.service-desc {
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
    font-family: 'Open Sans', sans-serif;
}

.compact-title-wrapper {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.compact-title-wrapper h3 {
    color: #001d08;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.compact-title-wrapper p {
    color: #ffb800;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

.service-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.service-card-compact {
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.service-card-compact:hover {
    border-color: #c5a059;
    background: rgba(197, 160, 89, 0.02);
    transform: translateX(5px);
}

.service-card-compact img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    min-width: 30px;
}

.service-card-compact h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

/* Button */
.all-services-btn-wrapper {
    text-align: center;
    margin-top: 70px;
}

.premium-btn-solid {
    display: inline-block;
    background: #c5a059;
    color: #ffffff;
    padding: 18px 50px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    border: 1px solid transparent;
}

.premium-btn-solid:hover {
    background-color: #b8860b !important;
    color: #FFF;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-description-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    font-family: 'Open Sans', sans-serif;
}

@media (max-width: 768px) {
    .service-title {
        margin-bottom: 10px;
    }
}

@media (max-width: 999px) {
    .premium-banner-area {
        padding-top: 10px;
    }
}

/* =========================================
   1. SHARED STYLES (Applies to all screens)
   ========================================= */
.service-description-content h2,
.service-description-content h3,
.service-description-content h4,
.service-description-content h5 {
    color: #1a1a1a;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* =========================================
   2. MOBILE FIRST FONT SIZES (Phones)
   ========================================= */
.service-description-content h2 {
    font-size: 26px;
}

.service-description-content h3 {
    font-size: 22px;
}

.service-description-content h4 {
    font-size: 19px;
}

.service-description-content h5 {
    font-size: 16px;
}

/* =========================================
   3. TABLET (768px and wider)
   ========================================= */
@media (min-width: 768px) {
    .service-description-content h2 {
        font-size: 30px;
    }

    .service-description-content h3 {
        font-size: 25px;
    }

    .service-description-content h4 {
        font-size: 21px;
    }

    .service-description-content h5 {
        font-size: 18px;
    }
}

/* =========================================
   4. LAPTOP & PC (1024px and wider)
   ========================================= */
@media (min-width: 1024px) {

    /* Larger fonts and slightly more margin for big screens */
    .service-description-content h2,
    .service-description-content h3,
    .service-description-content h4,
    .service-description-content h5 {
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .service-description-content h2 {
        font-size: 32px;
    }

    .service-description-content h3 {
        font-size: 26px;
    }

    .service-description-content h4 {
        font-size: 22px;
    }

    .service-description-content h5 {
        font-size: 20px;
    }
}

.service-description-content p {
    margin-bottom: 20px;
}

.service-description-content ul {
    list-style: none;
    padding-left: 15px;
    margin-bottom: 30px;
}

.service-description-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 4px;
    color: #555;
}

.service-description-content ol {
    padding-left: 25px;
    margin-bottom: 30px;
}

.service-description-content ol li {
    position: relative;
    padding-left: 2px;
    margin-bottom: 4px;
    color: #555;
}

.service-description-content ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #c5a059;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}


@media (max-width: 1199px) {
    .sticky-style {
        position: static !important;
    }

    .service-details-right {
        margin-top: 20px;
    }
}

.tstpb-100 {
    padding-bottom: 100px;
}

/* Mobile Devices (Below 768px) */
@media (max-width: 767px) {
    .service-details__area {
        margin-top: 1px !important;
        margin-bottom: 30px !important;
    }

    .tstpb-100 {
        padding-bottom: 20px;
    }

    .service-details__area .serviceimg {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .services-area-astrology {
        padding: 20px 0 50px;
    }


    .service-details-righ-widget {
        padding: 30px 20px !important;
    }

}


/*----------------------------------section-about-------*/
.editorial-section {
    background-color: #FCFAF5;
    padding-top: 80px;
    padding-bottom: 20px;
    /* reduced bottom padding */
    font-family: 'Outfit', 'Jost', 'Segoe UI', Roboto, sans-serif;
}

.editorial-img {
    width: 100%;
    height: auto;
    display: block;
}

.editorial-content {
    padding-left: 20px;
    padding-top: 10px;
}

@media (max-width: 991px) {
    .editorial-content {
        padding-left: 15px;
    }
}

.edit-name {
    color: #c9a64b;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.edit-roles {
    color: #222;
    font-size: 28px;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 15px;
    margin-top: 10px;
}

.edit-exp {
    font-size: 16px;
    font-weight: 800;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 30px;
}

.edit-hook {
    font-size: 25px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.edit-body {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    max-width: 95%;
}

.edit-quote-wrapper {
    display: flex;
    align-items: flex-start;
    margin-top: 40px;
}

.edit-quote-icon {
    font-size: 75px;
    color: #8fa498;
    line-height: 0.8;
    font-family: Georgia, serif;
    margin-right: 20px;
}

.edit-quote-main {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.2;
}

.edit-quote-sub {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin-bottom: 5px;
}

.edit-quote-bold {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .premium-nav-btn {
        display: none;
        /* Hide arrows on tablets/mobile, rely on swipe */
    }
}

@media (max-width: 768px) {
    .premium-banner-area {
        padding-top: 40px;
        background-position: center;
    }

    .contact-us__area .contact-us__form-wrapper .contact-us__form .contact-us__input input {
        margin-bottom: 8px;
        padding: 13px 20px;
    }

    .edit-exp {
        margin-bottom: 7px;
    }

    .edit-hook {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .editorial-section {
        padding-top: 40px;
    }

    .premium-slide {
        height: 35vh;
        padding: 80px 15px;
    }

    .edit-roles {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .premium-btn {
        padding: 14px 35px;
    }
}

/*---------------------footer--------------*/
/* Premium Dark Footer Styles for Soulful Healing */
.footer-premium {
    background-color: #0b0716;
    /* Deep cosmic dark */
    background-image: radial-gradient(circle at 50% 100%, #1a103c 0%, transparent 70%);
    color: #b8b2c6;
    padding-top: 70px;
    position: relative;
    border-top: 3px solid #c5a059;
    /* Elegant gold border */
    font-family: 'Open Sans', sans-serif;
}

.footer-premium .footer__widget-title h4 {
    color: #c5a059 !important;
    /* Gold headings */
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

/* Little gold underline under headings */
.footer-premium .footer__widget-title h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #c5a059;
}

.footer-premium .footer__content p {
    color: #e0d8c3;
    line-height: 1.8;
    font-size: 15px;
}

/* Elegant Link Hover Effects */
.footer-premium .footer__link ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-premium .footer__link ul li {
    margin-bottom: 12px;
}

.footer-premium .footer__link ul li a {
    color: #b8b2c6;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.footer-premium .footer__link ul li a i {
    color: #c5a059;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-premium .footer__link ul li a:hover {
    color: #c5a059;
    padding-left: 6px;
    /* Smooth slide right on hover */
}

.footer-premium .footer__link ul li a:hover i {
    transform: translateX(3px);
}

/* Premium Social Icons */
.footer-premium .footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    color: #c5a059;
    margin-right: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.footer-premium .footer__social a:hover {
    background: #c5a059;
    color: #0b0716;
    /* Dark icon on gold background */
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
    border-color: #c5a059;
}

/* Contact Info Styling */
.footer-premium .footer__subscribe ul {
    list-style: none;
    padding: 0;
}

.footer-premium .footer__subscribe ul li a {
    color: #e0d8c3;
    transition: color 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    text-decoration: none;
    line-height: 1.5;
    font-size: 15px;
}

.footer-premium .footer__subscribe ul li a:hover {
    color: #c5a059;
}

.footer-premium .footer__subscribe ul li a svg path {
    transition: stroke 0.3s ease;
}

/* Bottom Copyright Bar */
.footer-premium .footer__bottom-wrapper {
    border-top: 1px solid rgba(197, 160, 89, 0.15) !important;
    margin-top: 50px;
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    /* Slightly darker for the very bottom */
}

.footer-premium .footer__bottom p {
    color: #888888;
    margin: 0;
    font-size: 16px;
}

.footer-premium .footer__bottom a {
    color: #c5a059;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-premium .footer__bottom a:hover {
    color: #ffffff;
}

.footer-premium .footer__copyright-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.whatsapp-icon {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
    padding: 10px;
    transition: transform 0.3s ease;
}

.whatsapp-icon img {
    width: 50px;
    height: 50px;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

/*----------------form------------*/

/* --- REFINED DESKTOP AUTH CSS --- */
.astro-login-container input.astro-input {
    width: 100%;
    padding: 15px 20px !important;
    border: 1px solid #d1cdd9 !important;
    /* Forces borders to show */
    border-radius: 6px !important;
    background-color: #fcfbfe !important;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
}

.astro-login-container input.astro-input:focus {
    outline: none !important;
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15) !important;
    background-color: #fff !important;
}

.astro-auth-wrapper {
    background-color: #f9f8fa;
    padding: 60px 0;
}

.astro-auth-container {
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(44, 30, 74, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.astro-auth-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d4af37, #f3e5ab, #d4af37);
}

.astro-auth-header {
    text-align: center;
    margin-bottom: 35px;
}

.astro-auth-header img {
    max-width: 50px;
    margin-bottom: 15px;
}

.astro-auth-header h2 {
    color: #2c1e4a;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 32px;
    font-family: 'Georgia', serif;
}

.astro-auth-header p {
    color: #6c757d;
    font-size: 15px;
}

.astro-form-group {
    margin-bottom: 22px;
    text-align: left;
}

/* Forced Input Styles */
.astro-auth-container input.astro-input {
    width: 100%;
    padding: 15px 20px !important;
    border: 1px solid #d1cdd9 !important;
    border-radius: 6px !important;
    background-color: #fcfbfe !important;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
}

.astro-auth-container input.astro-input:focus {
    outline: none !important;
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15) !important;
    background-color: #fff !important;
}

.privacy-text {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
    text-align: center;
}

/* Clean background for the main content area */
.astro-address-wrapper {
    background-color: #f9f8fa;
    padding: 80px 0;
    min-height: 60vh;
}

/* Address Page Specific Styles */
.astro-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.astro-page-header h2 {
    color: #2c1e4a;
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-size: 32px;
    margin: 0;
}

.astro-btn-primary {
    background: #1a1130;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.astro-btn-primary:hover {
    background: #d4af37;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Card Styling */
.astro-address-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(44, 30, 74, 0.05);
    border: 1px solid #e0dce6;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.astro-address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 30, 74, 0.1);
}

.astro-address-card.is-default {
    border: 2px solid #d4af37;
    background-color: #fffdf8;
}

.default-badge {
    background: linear-gradient(135deg, #d4af37, #b5952f);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: absolute;
    top: 20px;
    right: 20px;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.astro-address-type {
    color: #2c1e4a;
    font-family: 'Georgia', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: capitalize;
}

.astro-address-details {
    color: #6c757d;
    line-height: 1.8;
    font-size: 15px;
    flex-grow: 1;
}

.astro-address-name {
    color: #2c1e4a;
    font-weight: 700;
    font-size: 17px;
    display: block;
    margin-bottom: 5px;
}

.astro-card-actions {
    border-top: 1px solid #e0dce6;
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.is-default .astro-card-actions {
    border-top-color: rgba(212, 175, 55, 0.3);
}

.action-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.btn-edit {
    background-color: #f4f1f8;
    color: #2c1e4a;
    border: 1px solid #d1cdd9;
}

.btn-edit:hover {
    background-color: #2c1e4a;
    color: #fff;
    border-color: #2c1e4a;
}

.btn-delete {
    background-color: #fff;
    color: #dc3545;
    border: 1px solid #f5c6cb;
}

.btn-delete:hover {
    background-color: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.btn-default {
    background-color: #fffaf0;
    color: #b5952f;
    border: 1px solid #ffe082;
}

.btn-default:hover {
    background-color: #d4af37;
    color: #fff;
    border-color: #d4af37;
}

/* Empty State */
.empty-address-state {
    background: #fff;
    border: 1px dashed #d1cdd9;
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
}

.empty-address-icon {
    width: 80px;
    height: 80px;
    background-color: #f4f1f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: #2c1e4a;
}

/*------------product-------------*/
 /* --- PREMIUM PRODUCT GRID CSS --- */
    .astro-products-wrapper {
        background-color: #f9f8fa; 
        padding: 60px 0 100px 0;
    }

    .astro-sorting-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #ffffff;
        padding: 15px 25px;
        border-radius: 10px;
        border: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: 0 5px 20px rgba(44, 30, 74, 0.04);
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .astro-sorting-bar h6 {
        margin: 0;
        color: #6c757d;
        font-weight: 500;
        font-size: 15px;
    }

    .astro-sort-select {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .astro-sort-select span {
        color: #2c1e4a;
        font-weight: 600;
    }

    .astro-sort-select select {
        border: 1px solid #d1cdd9;
        padding: 8px 15px;
        border-radius: 6px;
        color: #2c1e4a;
        font-weight: 500;
        outline: none;
        cursor: pointer;
        background-color: #fff;
        transition: border-color 0.3s ease;
    }

    .astro-sort-select select:focus {
        border-color: #d4af37;
    }

    /* Product Card */
    .astro-product-card {
        background: #ffffff;
        border-radius: 12px;
        border: 1px solid #e0dce6;
        box-shadow: 0 5px 20px rgba(44, 30, 74, 0.05);
        transition: all 0.4s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        position: relative;
    }

    .astro-product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
        border-color: #d4af37;
    }

    .astro-product-img-wrapper {
        display: block;
        width: 100%;
        height: 260px;
        overflow: hidden;
        background-color: #f4f1f8;
        position: relative;
    }

    .astro-product-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .astro-product-card:hover .astro-product-img-wrapper img {
        transform: scale(1.08);
    }

    .astro-product-info {
        padding: 25px 20px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .astro-product-title {
        font-family: 'Georgia', serif;
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .astro-product-title a {
        color: #2c1e4a;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .astro-product-card:hover .astro-product-title a {
        color: #d4af37;
    }

    .astro-product-price {
        margin-top: auto;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .astro-product-price del {
        color: #a09caf;
        font-size: 15px;
        font-weight: 500;
    }

    .astro-current-price {
        color: #2c1e4a;
        font-weight: 800;
        font-size: 20px;
    }

    .astro-btn-outline {
        display: block;
        text-align: center;
        border: 2px solid #2c1e4a;
        color: #2c1e4a;
        padding: 10px;
        border-radius: 6px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 14px;
    }

    .astro-btn-outline:hover {
        background: #2c1e4a;
        color: #ffffff;
        border-color: #2c1e4a;
    }
        
    /* --- PREMIUM TOOLBAR & SEARCH --- */
    .astro-premium-toolbar {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        background: #ffffff;
        padding: 15px 25px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
        margin-bottom: 40px;
        gap: 20px;
        border: 1px solid #f0f0f0;
    }
    .astro-premium-toolbar h6 {
        margin: 0;
        color: #555;
        font-weight: 500;
        font-size: 15px;
    }
    .astro-toolbar-controls {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 25px;
    }
    
    /* Premium Search Input */
    .astro-premium-search {
        display: flex;
        align-items: center;
        background: #fdfdfd;
        border: 1px solid #e5e5e5;
        border-radius: 50px; /* Pill shape */
        padding: 4px 4px 4px 20px;
        transition: all 0.3s ease;
    }
    .astro-premium-search:focus-within {
        border-color: #2c1e4a;
        box-shadow: 0 4px 15px rgba(44, 30, 74, 0.08);
        background: #ffffff;
    }
    .astro-premium-search input {
        border: none;
        outline: none;
        background: transparent;
        padding: 8px 10px 8px 0;
        font-size: 14px;
        color: #333;
        width: 220px;
    }
    .astro-premium-search button {
        background: #2c1e4a;
        color: white;
        border: none;
        border-radius: 50px;
        padding: 8px 24px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.2s ease;
    }
    .astro-premium-search button:hover {
        background: #1e1436;
        transform: translateY(-1px);
    }

    /* Premium Sort Dropdown */
    .astro-premium-sort {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #333;
        font-weight: 500;
    }
    .astro-premium-sort select {
        padding: 8px 35px 8px 15px;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        background-color: #fff;
        color: #333;
        font-size: 14px;
        cursor: pointer;
        outline: none;
        appearance: auto;
        transition: border-color 0.3s ease;
    }
    .astro-premium-sort select:focus {
        border-color: #2c1e4a;
    }

    /* --- PREMIUM PAGINATION --- */
    .astro-premium-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 50px 0;
        gap: 8px;
    }
    .astro-premium-pagination li a {
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 42px;
        height: 42px;
        color: #555;
        background-color: transparent;
        border: 1px solid #eaeaea;
        border-radius: 50%; /* Perfect circles */
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s ease;
    }
    /* Oval shape for Previous/Next text buttons */
    .astro-premium-pagination li a.text-btn {
        border-radius: 25px;
        padding: 0 20px;
        min-width: auto;
    }
    .astro-premium-pagination li a:hover {
        background-color: #f8f6fb;
        border-color: #2c1e4a;
        color: #2c1e4a;
    }
    .astro-premium-pagination li.active a {
        background-color: #2c1e4a;
        color: #fff;
        border-color: #2c1e4a;
        box-shadow: 0 4px 12px rgba(44, 30, 74, 0.25); /* Elegant glow */
    }
    .astro-premium-pagination li.disabled a {
        color: #ccc;
        background-color: #fafafa;
        border-color: #f0f0f0;
        pointer-events: none;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .astro-premium-toolbar {
            flex-direction: column;
            align-items: flex-start;
        }
        .astro-toolbar-controls {
            flex-direction: column;
            align-items: stretch;
            width: 100%;
        }
        .astro-premium-search input {
            width: 100%;
        }
        .astro-premium-search {
            width: 100%;
            justify-content: space-between;
        }
    }