/* ============================================================ */
/* GIXI ARTISTO — Enhanced Store CSS                           */
/* Same class names preserved. Enhanced visuals throughout.    */
/* ============================================================ */

/* ---------------- Base Overrides ---------------- */

.pr-outlined-button,
.pr-plus-minus-button {
    background-color: #f2f6f4 !important;
}

#footer {
    background-color: #000000 !important;
    color: #fff !important;
}

.three-col-footer__heading {
    color: inherit !important;
}

#sh-footer-git svg {
    color: #fff !important;
}

.vertical-soc-cont .sh-social-icon {
    background-color: #fff !important;
}

.vertical-soc-cont .sh-social-icon img {
    filter: invert(1);
}

.sh-home-page-prod-section .sh-solid-button:hover {
    background-color: #000;
}

.app-bar {
    background-color: #fff !important;
    color: #000 !important;
}

.app-bar-main svg {
    color: #000 !important;
}

.search-container:before {
    background-color: #000 !important;
}

.search-field .search-input {
    color: #000 !important;
}

.pr-plus-minus-button {
    background-color: #000000 !important;
    color: #fff !important;
}

.badge {
    background-color: #000000;
    color: #fff !important;
}

/* ============================================================ */
/* 🔔 NOTICE BAR — Upgraded with 3-message cycle + delivery    */
/* ============================================================ */

.notice {
    background-color: #000 !important;
    color: #fff !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: normal !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    width: 100%;
    overflow: hidden;
}

/* Hide original content */
.notice * {
    display: none !important;
}

/* Shared pseudo style */
.notice::before,
.notice::after {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    position: absolute;
    opacity: 0;
    display: flex !important;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* Message 1 — delivery icon + 999+ free delivery */
.notice::before {
    content: "🚚  Order Above 999+ Free Shipping Pan India";
    animation: noticeFade 10s infinite 0s;
}

/* Message 2 — custom gifts */
.notice::after {
    content: "🎁  Custom Gifts & Keepsakes  |  ✨ All Products Are Fully Customizable";
    animation: noticeFade 10s infinite 5s;
}

@keyframes noticeFade {
    0%   { opacity: 0; transform: translateY(8px); }
    8%   { opacity: 1; transform: translateY(0); }
    42%  { opacity: 1; transform: translateY(0); }
    50%  { opacity: 0; transform: translateY(-8px); }
    100% { opacity: 0; }
}

/* ============================================================ */
/* 💰 PRODUCT PRICE                                             */
/* ============================================================ */

.price,
.product-price,
.sh-product-price,
.sh-price,
.pr-price {
    font-weight: 700 !important;
    color: #000 !important;
}

.price span,
.product-price span {
    font-weight: 700 !important;
}

/* ============================================================ */
/* ✨ SMOOTH TRANSITIONS                                        */
/* ============================================================ */

* {
    transition: all 0.3s ease;
}

/* ============================================================ */
/* 🏷 LOGO CENTER                                              */
/* ============================================================ */

.app-bar-main {
    position: relative;
}

.logo-ctn {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    z-index: 5;
}

.logo-ctn.left-aligned {
    left: 50% !important;
}

.sh-header-logo {
    max-height: 40px;
    width: auto;
}

.sh-header-account-icon,
.sh-header-cart-icon,
.sh-header-location-icon {
    position: relative;
    z-index: 6;
}

/* ============================================================ */
/* 📌 STICKY HEADER                                            */
/* ============================================================ */

.app-bar {
    top: 0 !important;
    position: sticky !important;
    z-index: 999 !important;
}

/* ============================================================ */
/* 🏷 CUSTOMISABLE BADGE — NEW: Typewriter Chip Style          */
/* Replaces blinker with a sleek sliding-text badge            */
/* ============================================================ */

.product-pricing-primary {
    position: relative;
}

.product-pricing-primary::after {
    content: "✦ Customisable";
    background: transparent;
    color: #000;
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 10px 3px 8px;
    margin-left: 10px;
    border-radius: 4px;
    border: 1.5px solid #000;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;

    /* Shimmer sweep — no blink */
    background-image: linear-gradient(
        100deg,
        transparent 0%,
        transparent 30%,
        rgba(0,0,0,0.06) 50%,
        transparent 70%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: badgeSweep 2.8s ease-in-out infinite;
}

@keyframes badgeSweep {
    0%   { background-position: 200% center; }
    60%  { background-position: -200% center; }
    100% { background-position: -200% center; }
}

/* ============================================================ */
/* 🛒 BUY NOW BUTTON — Glowing Shine                           */
/* ============================================================ */

.sh-product-buy-now-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #000, #222) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    letter-spacing: 0.5px;
    border-radius: 10px !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    animation: glowPulse 2s infinite;
}

.sh-product-buy-now-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: skewX(-20deg);
    animation: shineMove 2.5s infinite;
}

.sh-product-buy-now-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.sh-product-buy-now-button:active {
    transform: scale(0.97);
}

@keyframes shineMove {
    0%   { left: -75%; }
    100% { left: 125%; }
}

@keyframes glowPulse {
    0%   { box-shadow: 0 6px 18px rgba(0,0,0,0.25); }
    50%  { box-shadow: 0 10px 28px rgba(0,0,0,0.45); }
    100% { box-shadow: 0 6px 18px rgba(0,0,0,0.25); }
}

/* ============================================================ */
/* 🧾 ADD TO CART BUTTON                                       */
/* ============================================================ */

.pr-outlined-button {
    background-color: #f5f5f5 !important;
    color: #333 !important;
    border: 1.5px solid #ccc !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}

.pr-outlined-button:hover {
    border-color: #000 !important;
    background-color: #f0f0f0 !important;
}

/* ============================================================ */
/* FOOTER                                                      */
/* ============================================================ */

.copyright {
    background-color: #ffffff !important;
}

#sh-footer-copyright p {
    color: #6b7280 !important;
}

.menu-bottom {
    justify-content: center !important;
}

/* ============================================================ */
/* INLINE PADDING REMOVAL                                      */
/* ============================================================ */

div[style*="padding-bottom"] {
    padding-bottom: 0 !important;
}

/* ============================================================ */
/* 📲 BOTTOM NAV                                               */
/* ============================================================ */

#bottom-nav {
    position: fixed !important;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(255,255,255,0.96) !important;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    box-shadow: 0 -6px 25px rgba(0,0,0,0.08);
    z-index: 9999 !important;
    display: flex;
    justify-content: space-around;
    align-items: center;
    backdrop-filter: blur(10px);
}

/* Remove notch */
#bottom-nav::before {
    display: none !important;
}

/* Fix cart inline */
#bottom-nav button:nth-child(3) {
    position: static !important;
    top: 0 !important;
    transform: none !important;
}

#bottom-nav button:nth-child(3) svg {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    width: 24px !important;
    height: 24px !important;
    stroke: var(--bottom-nav-not-selected) !important;
}

#bottom-nav button:nth-child(3) .MuiBottomNavigationAction-label {
    display: block !important;
}

/* Tab states */
.bottom-nav__buttons {
    transition: all 0.3s ease;
}

.bottom-nav__buttons:active {
    transform: scale(0.85);
}

.bottom-nav__buttons svg {
    opacity: 0.5;
    transition: 0.3s;
}

.sh-bottom-nav-selected svg {
    opacity: 1;
    transform: scale(1.15);
    stroke: #000 !important;
}

.MuiBottomNavigationAction-label {
    font-size: 10px;
    color: #888;
    transition: 0.3s;
}

.sh-bottom-nav-selected .MuiBottomNavigationAction-label {
    color: #000;
    font-weight: 600;
}

/* ============================================================ */
/* 📬 CONTACT PAGE                                             */
/* ============================================================ */

.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 100vh;
    background: #f5f5f2;
}

.contact-info-panel {
    padding: 3rem 2.5rem;
    background: #ffffff;
    border-right: 0.5px solid rgba(0,0,0,0.1);
}

.contact-form-panel {
    padding: 3rem 2.5rem;
    background: #f5f5f2;
}

.contact-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e1f5ee;
    color: #0f6e56;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.contact-status-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000000;
    flex-shrink: 0;
}

.contact-main-heading {
    font-size: 28px !important;
    font-weight: 500 !important;
    color: rgba(0,0,0,0.87);
    line-height: 1.2 !important;
    margin-bottom: 0.5rem !important;
}

.contact-sub-heading {
    font-size: 14px !important;
    color: rgba(0,0,0,0.5) !important;
    margin-bottom: 2.5rem !important;
    justify-content: flex-start !important;
}

.contact-heading {
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    color: rgba(0,0,0,0.38) !important;
    text-transform: uppercase !important;
    margin-bottom: 6px !important;
}

.contact-icon {
    width: 15px !important;
    height: 15px !important;
    color: #000000 !important;
    flex-shrink: 0;
    margin-top: 2px;
    margin-right: 10px;
}

.contact-text {
    font-size: 13.5px !important;
    color: rgba(0,0,0,0.87) !important;
    line-height: 1.5 !important;
}

.contact-divider {
    border: none;
    border-top: 0.5px solid rgba(0,0,0,0.1);
    margin: 1.5rem 0;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 12px;
    border: 0.5px solid rgba(0,0,0,0.1);
    padding: 1.75rem;
}

.contact-us-input-label {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: rgba(0,0,0,0.55) !important;
    letter-spacing: 0.02em !important;
}

.contact-us-input-field {
    border-radius: 8px !important;
    background: #f5f5f2 !important;
    transition: border-color 0.15s, box-shadow 0.15s !important;
}

.contact-us-input-field:hover .MuiOutlinedInput-notchedOutline {
    border-color: rgba(140,157,152,0.4) !important;
}

.contact-us-input-field.Mui-focused .MuiOutlinedInput-notchedOutline {
    border-color: #000000 !important;
    border-width: 1.5px !important;
}

.contact-us-input-field.Mui-focused {
    box-shadow: 0 0 0 3px rgba(29,158,117,0.1) !important;
}

.contact-us-input {
    font-size: 13.5px !important;
    color: rgba(0,0,0,0.87) !important;
    padding: 8px 12px !important;
}

.contact-us-input::placeholder {
    color: rgba(0,0,0,0.3) !important;
}

.contact-custom-button {
    background: #000000 !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    border: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    height: 44px !important;
    letter-spacing: 0.02em !important;
    margin-top: 0.75rem !important;
    transition: background 0.15s, transform 0.1s !important;
}

.contact-custom-button:hover {
    background: #111111 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
}

.contact-custom-button:active {
    transform: scale(0.99) !important;
}

/* ============================================================ */
/* 📱 RESPONSIVE                                               */
/* ============================================================ */

@media (max-width: 768px) {
    .contact-page-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 2rem 1.25rem;
    }

    .notice::before {
        font-size: 11.5px;
    }

    .notice::after {
        font-size: 11.5px;
    }
}

