/* =======================
   FONT SETUP
   ======================= */
body {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.nav-link,
.badge-text,
.product-name,
.product-price,
.location-text,
.copyright-text,
.search-input,
.search-input::placeholder {
    font-family: 'Montserrat', sans-serif;
}

/* =======================
   EXISTING STYLES
   ======================= */

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/landing-page.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Navigation styles */
.navbar-nav.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.navbar-custom {
    background: transparent;
    padding: 1rem 0;
}

.navbar-brand img {
    height: 35px;
}

.nav-link {
    color: white !important;
    font-weight: 700 !important;
    margin: 0 1rem;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-size: 0.8rem !important;
}

.nav-link:hover {
    color: #FF018C !important;
}

.d-lg-block {
    margin-left: auto;
}

.bag-icon {
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.bag-icon:hover {
    transform: scale(1.1);
    color: #FF018C;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.hero-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.search-wrapper {
    max-width: 600px;
    width: 100%;
    margin: 2rem 0;
}

.search-wrapper .input-group {
    border-radius: 50px !important;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(0,0,0,0.3) !important;
}

.search-wrapper .input-group-text {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding-left: 1.5rem !important;
    border-radius: 50px 0 0 50px !important;
}

.search-wrapper .form-control {
    border: none !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    color: white !important;
    padding: 1rem 1.5rem !important;
    border-radius: 0 50px 50px 0 !important;
}

.search-wrapper .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: 'Montserrat', sans-serif;
}

.search-wrapper .form-control:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: none !important;
    color: white !important;
    outline: none !important;
    border: none !important;
}

.search-wrapper .input-group:focus-within {
    box-shadow: 0 8px 26px rgba(0,0,0,0.4) !important;
}

.search-wrapper .form-control::-webkit-search-decoration,
.search-wrapper .form-control::-webkit-search-cancel-button,
.search-wrapper .form-control::-webkit-search-results-button,
.search-wrapper .form-control::-webkit-search-results-decoration {
    display: none;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 26px rgba(0,0,0,0.4) !important;
    color: white !important;
    outline: none !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

.search-icon {
    position: absolute !important;
    left: 1.5rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem !important;
    z-index: 5 !important;
}

.bottom-bar {
    padding: 2rem 0;
    background: transparent;
}

.location-text {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.copyright-text {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F44336;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 7px rgba(0,0,0,0.15);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    color: #FF018C;
}

/* Product Badge Styles */
.product-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

.product-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.badge-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(310deg, #F44336 0%, #F44336 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 #FF018C;
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 214, 10, 0);
    }
}

.badge-text {
    font-weight: 600;
    color: #222222;
    font-size: 0.8rem;
}

/* Popover Custom Styles */
.popover {
    max-width: 300px;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.popover-body {
    padding: 0;
}

.product-card {
    padding: 1rem;
}

.product-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.product-name {
    font-weight: 700;
    color: #222222;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-price {
    color: #cb0c9f;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Badge Positions */
.badge-personalized {
    left: 10%;
    bottom: 23%;
}

.badge-customized {
    left: 8%;
    top: 45%;
}

.badge-corporate {
    right: 7%;
    bottom: 65%;
}

.badge-promotional {
    right: 5%;
    bottom: 25%;
}

/* =======================
   MOBILE RESPONSIVENESS
   ======================= */

@media (max-width: 991px) {
    /* Hide badges on mobile and tablet */
    .product-badge {
        display: none !important;
    }

    /* Center navigation items on mobile */
    .navbar-nav {
        text-align: center;
    }

    .nav-link {
        margin: 0.5rem 0;
    }

    /* Show shopping bag on mobile menu */
    .d-lg-block {
        display: block !important;
        margin-left: 0;
        text-align: center;
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .search-wrapper {
        max-width: 90%;
        margin: 1rem 0;
    }

    .search-input {
        padding: 0.8rem 1rem !important;
        padding-left: 2.5rem !important;
        font-size: 0.9rem;
    }

    .search-icon {
        left: 1rem !important;
        font-size: 0.9rem;
    }

    .social-icons {
        justify-content: center;
        margin-top: 1rem;
    }

    .copyright-text {
        margin: 1rem 0;
        text-align: center;
    }

    .location-text {
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 500;
        text-align: center;
    }

    .bottom-bar {
        padding: 1.5rem 0;
    }

    .navbar-brand img {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .search-wrapper {
        max-width: 95%;
    }

    .location-text span {
        font-size: 0.7rem;
    }

    .copyright-text {
        font-size: 0.75rem;
        font-weight: 500;

    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
}

/* =======================
   SHOP PAGE STYLES - Add these to your existing style.css
   ======================= */

/* Top Navbar Styles */
.top-navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.search-container {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 0.7rem 1rem 0.7rem 2.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: #FF018C;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-picker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    background: white;
}

.cart-btn, .signin-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: #222222;
    transition: color 0.3s;
}

.cart-btn:hover, .signin-btn:hover {
    color: #FF018C;
}

.cart-badge {
    background: #FF018C;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Categories Bar */
.categories-bar {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 0.8rem 0;
    overflow-x: auto;
    white-space: nowrap;
}

.categories-bar::-webkit-scrollbar {
    height: 5px;
}

.categories-bar::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.category-item {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    margin: 0 0.3rem;
    color: #222222;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 20px;
    transition: all 0.3s;
}

.category-item:hover, .category-item.active {
    background: #FF018C;
    color: white;
}

/* Banner Slider */
.banner-slider {
    margin: 2rem 0;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-item {
    height: 600px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.13) 0%, rgba(118, 75, 162, 0.06) 100%);
    position: relative;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
}

.carousel-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.0);
}

.carousel-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.watch-btn {
    background: white;
    color: #222222;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.watch-btn:hover {
    transform: scale(1.05);
}

/* Shop by Categories Section */
.shop-section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #222222;
    margin-bottom: 2rem;
    text-align: center;
}

/* Fix category grid to 5 columns */
.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 576px) {
    .category-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-name {
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    color: #222222;
    font-size: 1rem;
}

/* Footer Section */
.footer-section {
    background: #33001b;
    color: white;
    padding: 4rem 0 1rem;
}

.footer-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-icons-footer {
    display: flex;
    gap: 1rem;
}

.social-icon-footer {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-footer:hover {
    background: #FF018C;
    transform: translateY(-3px);
    color: white;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #FF018C;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
}

.footer-contact i {
    color: #FF018C;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.modal-header {
    padding: 1.5rem;
}

.modal-title {
    font-weight: 700;
    color: #222222;
}

.phone-auth-container {
    padding: 1rem 0;
}

.country-code {
    border-radius: 10px 0 0 10px;
    border-right: none;
}

#phoneNumber {
    border-radius: 0 10px 10px 0;
}

.form-control:focus {
    border-color: #FF018C;
    box-shadow: 0 0 0 0.2rem rgba(255, 1, 140, 0.25);
}

.bg-primary {
    background: #FF018C !important;
}

.text-primary {
    color: #FF018C !important;
}

.btn-primary {
    background: #FF018C;
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #d00175;
}

.btn-success {
    background: #10b981;
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 600;
}

.btn-success:hover {
    background: #059669;
}

.verification-section .form-control {
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .search-container {
        margin: 1rem 0;
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    .nav-actions {
        order: 2;
    }

    .navbar-brand {
        order: 1;
    }

    .carousel-content h2 {
        font-size: 2rem;
    }
}

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

    .carousel-item {
        height: 300px;
    }

    .carousel-content {
        left: 5%;
    }

    .carousel-content h2 {
        font-size: 1.5rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }

    .footer-section {
        padding: 3rem 0 1rem;
    }
}

@media (max-width: 576px) {
    .category-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .language-picker span {
        display: none;
    }

    .cart-btn span, .signin-btn span {
        display: none;
    }
}

/* =======================
   SHOP PAGE STYLES - Add these to your existing style.css
   ======================= */

/* Top Navbar Styles */
.top-navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.search-container {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 0.7rem 1rem 0.7rem 2.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: #FF018C;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-picker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    background: white;
}

.cart-btn, .signin-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: #222222;
    transition: color 0.3s;
}

.cart-btn:hover, .signin-btn:hover {
    color: #FF018C;
}

.cart-badge {
    background: #FF018C;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Categories Bar */
.categories-bar {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 0.8rem 0;
    overflow-x: auto;
    white-space: nowrap;
}

.categories-bar::-webkit-scrollbar {
    height: 5px;
}

.categories-bar::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.category-item {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    margin: 0 0.3rem;
    color: #222222;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 20px;
    transition: all 0.3s;
}

.category-item:hover, .category-item.active {
    background: #FF018C;
    color: white;
}

/* Banner Slider */
.banner-slider {
    margin: 2rem 0;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-item {
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
}

.carousel-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carousel-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.watch-btn {
    background: white;
    color: #222222;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.watch-btn:hover {
    transform: scale(1.05);
}

/* Shop by Categories Section */
.shop-section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #222222;
    margin-bottom: 2rem;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-name {
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    color: #222222;
    font-size: 1rem;
}

/* =======================
   ABOUT PAGE STYLES
   ======================= */

.about-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ff0084 0%, #33001b 100%);
}

.hero-heading {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.hero-subtext {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

.about-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #222222;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #222222;
}

.vm-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
    text-align: center;
}

.vm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FF018C 0%, #d00175 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 1rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255,1,140,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FF018C;
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 0.8rem;
}

.market-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.market-card i {
    font-size: 2.5rem;
    color: #FF018C;
    margin-bottom: 1rem;
}

.market-card h5 {
    font-weight: 700;
    color: #222222;
    margin-bottom: 0.5rem;
}

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    transition: all 0.3s;
}

.partner-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.bg-gradient {
    background: linear-gradient(135deg, #ff0084 0%, #33001b 100%);
}

.app-features {
    list-style: none;
    padding: 0;
}

.app-features li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.app-features i {
    margin-right: 0.5rem;
    color: #4ade80;
}

.app-download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: #222222;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: #222222;
}

.app-btn i {
    font-size: 2rem;
}

.app-mockup {
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* =======================
   CONTACT PAGE STYLES
   ======================= */

.contact-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ff0084 0%, #33001b 100%);
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FF018C 0%, #d00175 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.contact-info-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 1rem;
}

.contact-info-card a {
    color: #222222;
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
}

.contact-info-card a:hover {
    color: #FF018C;
}

.whatsapp-banner {
    background: #25d366;
    color: white;
    padding: 2rem;
    border-radius: 15px;
}

.whatsapp-banner h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.btn-whatsapp {
    background: white;
    color: #25d366;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #f0f0f0;
    color: #25d366;
    transform: scale(1.05);
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.map-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.business-hours {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.business-hours h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 1rem;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-list li:last-child {
    border-bottom: none;
}

.accordion-button {
    font-weight: 600;
    color: #222222;
}

.accordion-button:not(.collapsed) {
    background-color: #FF018C;
    color: white;
}

/* =======================
   SERVICES PAGE STYLES
   ======================= */

.services-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ff0084 0%, #33001b 100%);
}

.service-card-large {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s;
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-icon-badge {
    width: 50px;
    height: 50px;
    background: rgba(255,1,140,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FF018C;
    margin-bottom: 1rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    margin-bottom: 0.8rem;
    color: #666;
}

.service-features i {
    color: #4ade80;
    margin-right: 0.5rem;
}

.filter-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin: 0.3rem;
    font-weight: 600;
    color: #222222;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: #FF018C;
    color: white;
    border-color: #FF018C;
}

.portfolio-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.3s;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.process-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FF018C 0%, #d00175 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.process-step h4 {
    font-weight: 700;
    color: #222222;
    margin-bottom: 0.8rem;
}

.cta-section {
    background: linear-gradient(135deg, #ff0084 0%, #33001b 100%);
}

/* Responsive */
@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .search-container {
        margin: 1rem 0;
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    .nav-actions {
        order: 2;
    }

    .navbar-brand {
        order: 1;
    }

    .carousel-content h2 {
        font-size: 2rem;
    }
}

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

    .carousel-item {
        height: 300px;
    }

    .carousel-content {
        left: 5%;
    }

    .carousel-content h2 {
        font-size: 1.5rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }

    .footer-section {
        padding: 0rem 0 1rem;
    }
}

@media (max-width: 576px) {
    .category-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .language-picker span {
        display: none;
    }

    .cart-btn span, .signin-btn span {
        display: none;
    }
}
/* =======================
   MOBILE APP SECTION STYLES
   ======================= */

.mobile-app-section {
    position: relative;
    overflow: hidden;
}

.mobile-app-section.bg-gradient {
    position: relative;
}

/* Optional: Add animated background pattern */
.mobile-app-section.bg-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.mobile-app-section .container {
    position: relative;
    z-index: 1;
}

/* Typography */
.mobile-app-section h2 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.mobile-app-section .lead {
    font-size: 1.15rem;
    line-height: 1.7;
}

/* App Features List */
.app-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: black;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.app-features li:hover {
    transform: translateX(10px);
}

.app-features i {
    margin-right: 1rem;
    color: #4ade80;
    font-size: 1.3rem;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* App Download Buttons */
.app-download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: #222222;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    min-width: 180px;
}

.app-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: #222222;
}

.app-btn:active {
    transform: translateY(-2px);
}

.app-btn i {
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.app-btn:hover i {
    transform: scale(1.1);
}

.app-btn small {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.2rem;
    font-weight: 400;
}

.app-btn .fw-bold {
    font-size: 1rem;
    color: #222222;
    font-weight: 700;
}

/* App Mockup Image */
.app-mockup {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: all 0.5s ease;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.app-mockup:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
}

/* Responsive Design */
@media (max-width: 991px) {
    .mobile-app-section h2 {
        font-size: 2rem;
        text-align: center;
    }

    .mobile-app-section .lead {
        font-size: 1rem;
        text-align: center;
    }

    .app-features {
        text-align: left;
        max-width: 500px;
        margin: 0 auto 2rem;
    }

    .app-download-buttons {
        justify-content: center;
    }

    .app-mockup {
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mobile-app-section {
        padding: 3rem 0 !important;
    }

    .mobile-app-section h2 {
        font-size: 1.75rem;
    }

    .app-features li {
        font-size: 1rem;
    }

    .app-download-buttons {
        flex-direction: column;
        width: 100%;
    }

    .app-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .mobile-app-section h2 {
        font-size: 1.5rem;
    }

    .mobile-app-section .lead {
        font-size: 0.95rem;
    }

    .app-features li {
        font-size: 0.95rem;
    }

    .app-features i {
        font-size: 1.1rem;
    }

    .app-btn {
        padding: 0.9rem 1.2rem;
        min-width: 160px;
    }

    .app-btn i {
        font-size: 2rem;
    }

    .app-mockup {
        max-width: 250px;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .app-btn {
        background: rgba(255, 255, 255, 0.95);
    }
}

/* Print styles */
@media print {
    .mobile-app-section {
        background: white !important;
        color: black !important;
    }

    .app-mockup {
        box-shadow: none;
        animation: none;
    }
}


/* =======================
   PRODUCT ITEM PAGE STYLES
   ======================= */

.breadcrumb-section {
    background: #f8f9fa;
}

.breadcrumb {
    margin: 0;
}

.breadcrumb-item a {
    color: #FF018C;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #666;
}

.product-detail-section {
    background: white;
}

/* Product Images */
.main-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
}

.main-product-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

.badge-new {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FF018C;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.thumbnail-images {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #FF018C;
    transform: scale(1.05);
}

/* Product Info */
.product-title {
    font-size: 2rem;
    font-weight: 800;
    color: #222222;
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
}

.product-price {
    margin-bottom: 2rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF018C;
    margin-right: 1rem;
}

.original-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 1rem;
}

.discount-badge {
    background: #10b981;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
}

.product-description h5 {
    font-weight: 700;
    color: #222222;
    margin-bottom: 1rem;
}

.product-description ul {
    list-style: none;
    padding: 0;
}

.product-description li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-description li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Product Options */
.size-options,
.color-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.size-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    color: #222222;
    cursor: pointer;
    transition: all 0.3s;
}

.size-btn:hover,
.size-btn.active {
    border-color: #FF018C;
    background: #FF018C;
    color: white;
}

.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.color-btn:hover,
.color-btn.active {
    border-color: #FF018C;
    transform: scale(1.1);
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #222222;
    cursor: pointer;
    transition: all 0.3s;
}

.qty-btn:hover {
    border-color: #FF018C;
    color: #FF018C;
}

.quantity-selector input {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 700;
}

.quantity-selector input:focus {
    outline: none;
    border-color: #FF018C;
}

/* Product Meta */
.product-meta {
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.product-meta p {
    margin-bottom: 0.8rem;
    color: #666;
}

.product-meta a {
    color: #FF018C;
    text-decoration: none;
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #222222;
    margin-right: 0.5rem;
    transition: all 0.3s;
}

.social-share-btn:hover {
    background: #FF018C;
    color: white;
    transform: translateY(-3px);
}

/* Related Products */
.product-card-mini {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.product-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-card-mini img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card-mini h5 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #222222;
}

.product-card-mini .price {
    padding: 0 1rem 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FF018C;
    margin: 0;
}

.product-card-mini .btn {
    margin: 0 1rem 1rem;
}

/* =======================
   CATEGORY PAGE STYLES
   ======================= */

.category-header {
    background: linear-gradient(135deg, #ff0084 0%, #33001b 100%);
}

.category-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.category-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    margin: 0;
}

.product-count {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
}

/* Filter Sidebar */
.filter-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 20px;
}

.filter-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #222222;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h6 {
    font-weight: 700;
    color: #222222;
    margin-bottom: 1rem;
}

.form-check {
    margin-bottom: 0.8rem;
}

.form-check-input:checked {
    background-color: #FF018C;
    border-color: #FF018C;
}

/* View Toggle */
.view-toggle-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.view-toggle-btn:hover,
.view-toggle-btn.active {
    border-color: #FF018C;
    background: #FF018C;
    color: white;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card-body {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 0.5rem;
}

.product-rating-small {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.product-rating-small i {
    font-size: 0.8rem;
}

.product-price-large {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF018C;
    margin-bottom: 1rem;
}

/* Pagination */
.pagination .page-link {
    color: #222222;
    border: 2px solid #e0e0e0;
    margin: 0 0.2rem;
    border-radius: 8px;
}

.pagination .page-item.active .page-link {
    background: #FF018C;
    border-color: #FF018C;
}

.pagination .page-link:hover {
    background: #FF018C;
    border-color: #FF018C;
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .filter-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .category-title {
        font-size: 2rem;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .current-price {
        font-size: 2rem;
    }

    .thumbnail-images {
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .category-title {
        font-size: 1.5rem;
    }

    .product-count {
        margin-top: 1rem;
    }

    .thumbnail {
        width: 80px;
        height: 80px;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .size-options,
    .color-options {
        justify-content: flex-start;
    }

    .app-download-buttons {
        flex-direction: column;
    }
}
/* Outline Primary Button with Hover Effect */
.btn-outline-primary {
    color: #ff0084 !important;
    border: solid 2px #ff0084 !important;
    background: transparent !important;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    color: white !important;
    background: #ff0084 !important;
    border-color: #ff0084 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 132, 0.3);
}

.btn-outline-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 0, 132, 0.2);
}

.btn-outline-primary:focus {
    outline: none !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 132, 0.25) !important;
}

/* Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 5px;
}

.search-results-dropdown .list-group-item {
    border: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 15px;
    transition: background-color 0.2s;
}

.search-results-dropdown .list-group-item:hover {
    background-color: #f8f9fa;
}

.search-results-dropdown .list-group-item:last-child {
    border-bottom: none;
}

/* Cart Badge Animation */
.badge-bounce {
    animation: bounceEffect 0.5s ease;
}

@keyframes bounceEffect {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-notification.toast-success {
    border-left: 4px solid #28a745;
}

.toast-notification.toast-error {
    border-left: 4px solid #dc3545;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #FF018C;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: #e00178;
    transform: translateY(-3px);
}

/* =======================
   SEARCH BOX - PROPER STYLING
   ======================= */

.search-container {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
}

.search-container form {
    margin: 0;
    width: 100%;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    z-index: 2;
    pointer-events: none;
}

.search-box input {
    width: 100%;
    padding: 0.7rem 1rem 0.7rem 2.5rem !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 25px !important;
    font-size: 0.9rem !important;
    transition: all 0.3s !important;
    background: white !important;
}

.search-box input:focus {
    outline: none !important;
    border-color: #FF018C !important;
    box-shadow: 0 0 0 3px rgba(255, 1, 140, 0.1) !important;
}

.search-box input::placeholder {
    color: #999 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .search-container {
        max-width: 100%;
        margin: 1rem 0;
    }
}
/* Remove underline from category links */
.category-card {
    text-decoration: none !important;
}

.category-card:hover {
    text-decoration: none !important;
}

.category-name {
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    color: #222222;
    font-size: 1rem;
    text-decoration: none !important;
}

/* Also fix for any links inside category grid */
.category-grid a {
    text-decoration: none !important;
}

.category-grid a:hover {
    text-decoration: none !important;
}
/* Fix input text colors */
.form-control,
.form-select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    color: #212529 !important;
    background-color: #ffffff !important;
}

.form-control:focus,
.form-select:focus {
    color: #212529 !important;
    background-color: #ffffff !important;
}

.form-control::placeholder {
    color: #6c757d !important;
}

/* Ensure dark text on light backgrounds */
.card-body .form-control,
.modal-body .form-control {
    color: #000000 !important;
}
.product-name, a {
    text-decoration: none;
    color: #222222;
}