/* Theme Three - T-Shirt E-commerce Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header Styles */
.theme3-header {
    background: #000000 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #ff6b6b;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions a {
    color: #333;
    font-size: 18px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.header-actions a {
    display: inline-block;
    /* important so transform animations work */
    transition: color 0.3s ease;
}

.header-actions a:hover {
    color: #ecbb60;
    animation: shake 0.4s ease-in-out;
}

/* Keyframes for the shake effect */
@keyframes shake {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-3px);
    }

    40% {
        transform: translateX(3px);
    }

    60% {
        transform: translateX(-3px);
    }

    80% {
        transform: translateX(3px);
    }

    100% {
        transform: translateX(0);
    }
}


.header-actions .count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== MOBILE RESPONSIVE HEADER STYLES ===== */

/* Desktop Search & Actions - Hidden on Mobile */
.desktop-search {
    display: flex;
}

.desktop-actions {
    display: flex;
}

/* Mobile Toggle Button - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #ecbb60;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Container - Slide from Right */
.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: #fff;
    z-index: 1999;
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-container.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #000;
    border-bottom: 2px solid #ecbb60;
}

.mobile-menu-header .logo img {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #ecbb60;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
    color: #fff;
}

/* Mobile Menu Content */
.mobile-menu-content {
    padding: 0;
}

/* Mobile Search Box */
.mobile-search {
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.mobile-search .search-wrap {
    position: relative;
}

.mobile-search input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.mobile-search input:focus {
    border-color: #ecbb60;
}

.mobile-search .search-btn {
    position: absolute;
    right: 5px;
    top: 73%;
    transform: translateY(-50%);
    background: #ecbb60;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-search .search-btn:hover {
    background: #d7a659;
}

/* Mobile Navigation */
.mobile-nav {
    padding: 10px 0;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-menu li a {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-menu li a i {
    margin-right: 12px;
    font-size: 16px;
    color: #666;
    width: 20px;
    transition: color 0.3s ease;
}

.mobile-nav-menu li a:hover {
    background: #f8f9fa;
    color: #ecbb60;
    padding-left: 30px;
}

.mobile-nav-menu li a:hover i {
    color: #ecbb60;
}

.mobile-nav-menu li a .badge {
    margin-left: auto;
    background: #ff6b6b;
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.mobile-contact-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.mobile-contact-btn i {
    font-size: 20px;
}

/* Hero Section */
.hero-section {
    margin-top: 10px;
    padding: 20px 0;
    /* removed purple gradient */
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btn {
    display: inline-block;
    background: #3399cc;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #2b88b5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(51, 153, 204, 0.4);
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.category-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.category-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    /* padding: 10px 0px; */
}

/* ✅ Always visible overlay */
.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: rgba(0, 0, 0, 0.5); visible dark background */
    color: white;
    padding: 15px 10px;
    text-align: center;
    opacity: 1;
    /* always visible */
    visibility: visible;
    /* ensure it’s not hidden */
    transform: none;
    /* reset any previous transition effects */
    transition: background 0.3s ease;
    z-index: 2;
    /* make sure it stays above the image */
}

/* Optional: slightly darken overlay on hover */
.category-card:hover .category-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.category-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.category-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}


/* Products Section */
.products-section {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    position: relative;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #3399cc;
    color: white;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-price {
    /* display: flex; */
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3399cc;
}

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

.add-to-cart {
    width: 100%;
    /* background: #333; */
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
    color: #ecbb60;
    background: none;
    border: 1px solid #ecbb60 !important;
}

/* Footer Styles */
.theme3-footer {
    background: #000000;
    color: white;
    /* padding: 60px 0 20px; */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ecbb60;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #555;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #ff6b6b;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ecbb60;
}

.contact-info p {
    margin-bottom: 10px;
    color: #ccc;
}

.contact-info i {
    margin-right: 10px;
    color: #ecbb60;
}

.footer-bottom {
    border-top: 1px solid #555;
    margin-top: 0px;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
    width: 100%;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff6b6b;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Desktop: Hide mobile toggle above 992px */
@media (min-width: 993px) {
    .mobile-menu-toggle {
        display: none !important;
    }

    .mobile-menu-container,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Mobile: Show toggle at 992px and below */
@media (max-width: 992px) {
    .main-nav {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block !important;
    }

    .header-actions {
        gap: 15px;
    }

    .desktop-search {
        display: none !important;
    }

    .desktop-actions {
        display: none !important;
    }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    .header-actions {
        gap: 12px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .marquee-wrap2 {
        padding: 0px 0;
    }

    .marquee-wrap {
        padding: 0px 0;
    }

    .sparkle-text2 {
        color: #fffdd0;
        font-size: 12px;
        font-weight: bold;
    }

    .sparkle-text {
        font-size: 12px;
        font-weight: bold;
    }

    .promo-section {
        padding: 10px 0;
    }

    .faq-card {
        padding: 9px 20px;
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
    }

    .categories-section,
    .products-section {
        padding: 60px 0;
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* header */

/* Header Base */
.main-header {
    width: 100%;
    background: #000000;
    border-bottom: 2px solid #f1f1f1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo */
.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ccff66;
    text-decoration: none;
    letter-spacing: 1px;
}

/* Desktop Navigation */
.desktop-nav .nav-list {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-nav .nav-list li a {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.desktop-nav .nav-list li a:hover {
    color: #257aa6;
}

.desktop-nav .nav-list li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #257aa6;
    transition: 0.3s ease;
}

.desktop-nav .nav-list li a:hover::after {
    width: 100%;
}

/* Right Side Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: end;
    width: 100%;
}

.logo {
    width: 100%;
    margin-left: 13px;

}

.header-actions a {
    color: #ecbb60;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}



/* .header-action .user-btn .user-avatar{
    width: 22px;
    height: 22px;
    margin-bottom: 1px;
} */

/* .header-actions a:hover {
  color: #ccff66;
} */

/*
.offer-btn {
  padding: 0.4rem 1rem;
  background: #ccff66;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: background 0.3s ease;
  text-decoration: none;
} */

/* Hamburger (Mobile) */
.hamburger {
    background: none;
    border: none;
    font-size: 1.4rem;
    display: none;
    cursor: pointer;
}

/* Offcanvas Menu */
.offcanvas {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    z-index: 1000;
    padding: 1rem;
}

.offcanvas.active {
    left: 0;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.offcanvas-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offcanvas-menu li {
    margin: 1rem 0;
}

.offcanvas-menu li a {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 17px;
}


/* header */

.search-box {
    position: relative;
    width: 600px;
}

.search-box input {
    width: 602px;
    padding: 4px 40px 4px 17px;
    border-radius: 25px;
    border: 1px solid #ccc;
    outline: none;
    transition: 0.3s;
}

.search-box input:focus {
    border-color: #D7A659;
}

.search-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    cursor: pointer;
    transition: 0.3s;
}

/* ✅ Mobile responsive */
@media (max-width: 576px) {
    .search-box input {
        width: 80% !important;
        padding: 4px 40px 4px 17px;
        border-radius: 25px;
        border: 1px solid #ccc;
        outline: none;
        transition: 0.3s;
        margin-left: 10% !important;
    }

    .search-box i {
        position: absolute;
        right: 42px;
    }
}



.offer-btn {
    background: linear-gradient(120deg, #D7A659, #FBD182);
    border-radius: 12px;
    padding: 10px;
    color: #000;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.offer-btn:hover {
    transform: scale(1.03);
}


.allbtn {
    background: linear-gradient(120deg, #D7A659, #FBD182);
    border-radius: 12px;
    color: #000;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    border: none !important;
    text-decoration: none;
    padding: 12px;
}

.wishlist-container {
    padding: 20px;
}

.wishlist-container h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.wishlist-container span {
    color: #666;
    font-size: 14px;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}

.wishlist-card {
    position: relative;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.wishlist-card:hover {
    transform: translateY(-4px);
}

.wishlist-card h3 {
    font-size: 15px;
    margin: 8px 0 4px;
    /* width: 200px; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
}




.wishlist-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.wishlist-card h3 {
    font-size: 15px;
    margin: 8px 0 4px;
}

.price {
    font-weight: 600;
    font-size: 14px;
}

.price .old {
    text-decoration: line-through;
    color: #888;
    margin-left: 5px;
    font-weight: 400;
}

.price .offer {
    color: #ff6a00;
    font-weight: 500;
    margin-left: 5px;
}

.remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #555;
    transition: color 0.2s ease;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.remove-btn i {
    font-size: 12px;
}

.remove-btn:hover {
    color: red;
}

.outofstock {
    position: relative;
}

.outofstock-tag {
    width: 140px;
    position: absolute;
    bottom: 80px;
    left: 40px;
    right: 0;
    background: #fff;
    color: #ff4000 !important;
    text-align: center;
    font-weight: 600;
    padding: 10px 0;
    font-size: 13px;
}

.outofstock-tag p {
    color: #ff4000 !important;
    margin: 0;
}


.card-f {
    padding: 14px;
}

.card-f2 {
    color: gray;
    padding: 14px;
}

.add-to-wishlist-icon {
    border-radius: 50% !important;
}

.fa-stack {
    height: auto !important;
}

.account-page-menu ul li {
    background: #ffffff;
    padding: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 5px;
    list-style: none;
    margin: 5px 0px !important;
}

.account-page-menu ul li.active {
    background: #ffffff;
    color: #ecbb60 !important;
    padding: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 5px;
}

.account-page-menu ul li a {
    color: #656565;
    text-decoration: none;
}

.user-profile-right-part {
    background-color: #F6F6F6;
    padding: 30px;
}

.edit-profile-btn {
    background: linear-gradient(135deg, #b47832, #d7a659, #fbd182, #f9d998);
    color: black;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.edit-profile-btn:hover {
    background: linear-gradient(135deg, #a76a28, #c49e4d, #eac874, #f2d283);
    color: #fff;
    transform: translateY(-2px);
}

.profile-page-area {
    margin: 10px;
}

.account-page-sidemenu {
    margin-bottom: 50px;
    background-color: #F6F6F6;
    padding: 30px;
}

.account-page-menu ul {
    padding-left: 0;
}

.category-overlay p small {
    font-size: 11px;
}

.order-image {
    width: 100px;
    border-radius: 5px;
}

#preloader {
    display: flex;
    justify-content: center;
}

.addtocart {
    padding: 7px 22px !important;
}

.payment-option div {
    width: 100%;
}

.payment-option {
    width: 100%;
}

.hero-section & .hero-overlay .faq-card {
    background-color: #000000;
    color: #ecbb60;
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.toast-warning {
    background-color: #f39c12 !important;
    color: #fff !important;
}

.whatsapp-icon-style {
    text-decoration: none;
    color: #fff;
}

.whatsapp-icon-style {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: jump 2s infinite;
}



/* 👇 Keyframes for jump effect */
@keyframes jump {

    0%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-18px);
    }

    60% {
        transform: translateY(-12px);
    }
}