/* ===== CSS VARIABLES ===== */
:root {
   --primary: #7c3aed;
   --primary-dark: #5b21b6;
   --primary-light: #a78bfa;
   --pink: #ec4899;
   --pink-light: #f9a8d4;
   --gradient: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
   --gradient-soft: linear-gradient(135deg, #ede9fe 0%, #fce7f3 100%);
   --bg: #faf8ff;
   --bg-card: #ffffff;
   --text: #1e1b4b;
   --text-muted: #6b7280;
   --border: #e5e7eb;
   --shadow: 0 4px 24px rgba(124, 58, 237, 0.10);
   --shadow-hover: 0 8px 32px rgba(124, 58, 237, 0.22);
   --radius: 18px;
   --radius-sm: 10px;
   --radius-pill: 50px;
   --brand-gradient: linear-gradient(to right, #a23ecd, #d853a5);
   --brand-pink: #d853a5;
   --brand-mid: #c247ba;
   --star-inactive: #cbd5e0;
   --bg-light: #fcf9fd;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

body {
   font-family: 'Nunito', 'Segoe UI', sans-serif;
   background: var(--bg);
   color: var(--text);
   overflow-x: hidden;
}

a {
   text-decoration: none;
   color: inherit;
}

img {
   max-width: 100%;
   height: auto;
}

ul {
   list-style: none;
   padding: 0;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5 {
   font-family: 'Playfair Display', serif;
   font-weight: 700;
}

.section-title {
   font-size: 2rem;
   color: var(--text);
   margin-bottom: 0.3rem;
}

.section-sub {
   color: var(--text-muted);
   margin-bottom: 2rem;
}

.gradient-text {
   background: var(--gradient);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
   background: var(--gradient);
   color: #fff;
   border: none;
   border-radius: var(--radius-pill);
   padding: 0.6rem 1.6rem;
   font-weight: 700;
   font-size: 0.95rem;
   transition: all 0.3s;
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
}

.btn-primary-custom:hover {
   transform: translateY(-2px);
   box-shadow: var(--shadow-hover);
   color: #fff;
}

.btn-outline-custom {
   background: transparent;
   color: var(--primary);
   border: 2px solid var(--primary);
   border-radius: var(--radius-pill);
   padding: 0.55rem 1.5rem;
   font-weight: 700;
   font-size: 0.95rem;
   transition: all 0.3s;
}

.btn-outline-custom:hover {
   background: var(--gradient);
   color: #fff;
   border-color: transparent;
   transform: translateY(-2px);
}

/* ===== BADGES ===== */
.badge-cart {
   position: absolute;
   top: -6px;
   right: -8px;
   background: var(--pink);
   color: #fff;
   font-size: 0.65rem;
   width: 18px;
   height: 18px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
}

/* ===================================================================
   DESKTOP / TABLET NAVBAR
   =================================================================== */
.desktop-navbar {
   background: #fff;
   box-shadow: 0 2px 16px rgba(124, 58, 237, 0.08);
   padding: 0.8rem 0;
   position: sticky;
   top: 0;
   z-index: 1000;
}

.desktop-navbar .navbar-brand .logo {
   height: 60px;
   width: 100%;
}


.desktop-navbar .navbar-brand .logo img {
   height: 100%;
   width: 100%;
   object-fit: contain;
}

.desktop-navbar .navbar-brand span {
   font-family: 'Playfair Display', serif;
   font-size: 1.5rem;
   font-weight: 700;
   background: var(--gradient);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.desktop-navbar .nav-link {
   font-weight: 600;
   font-size: 0.95rem;
   color: var(--text);
   padding: 0.4rem 0.85rem !important;
   border-radius: var(--radius-pill);
   transition: all 0.2s;
}

.desktop-navbar .nav-link:hover,
.desktop-navbar .nav-link.active {
   background: var(--gradient-soft);
   color: var(--primary) !important;
}

.desktop-navbar .nav-search {
   position: relative;
}

.desktop-navbar .nav-search input {
   border: 2px solid var(--border);
   border-radius: var(--radius-pill);
   padding: 0.4rem 1rem 0.4rem 1rem;
   font-size: 0.9rem;
   width: 200px;
   transition: all 0.3s;
}

.desktop-navbar .nav-search input:focus {
   outline: none;
   border-color: var(--primary);
   width: 250px;
}

.desktop-navbar .cart-icon {
   position: relative;
   font-size: 1.4rem;
   color: var(--text);
   padding: 0.3rem;
   cursor: pointer;
   transition: color 0.2s;
}

.desktop-navbar .cart-icon:hover {
   color: var(--primary);
}

/* ===================================================================
   MOBILE NAVBAR (APP STYLE) - hidden on tablet/desktop
   =================================================================== */
.mobile-header {
   display: none;
   position: sticky;
   top: 0;
   z-index: 1000;
   background: #fff;
   box-shadow: 0 2px 12px rgba(124, 58, 237, 0.10);
   padding: 0.75rem 1rem;
   flex-direction: column;
   gap: 0.7rem;
}

.mobile-header-top {
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.mobile-header .hamburger {
   background: var(--gradient-soft);
   border: none;
   border-radius: 10px;
   padding: 0.4rem 0.6rem;
   font-size: 1.3rem;
   color: var(--primary);
   cursor: pointer;
}

.mobile-header .logo-center {
   font-family: 'Playfair Display', serif;
   font-size: 1.4rem;
   font-weight: 700;
   background: var(--gradient);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.logo-mobile {
   height: 60px;
   width: 50%;
}


.logo-mobile img {
   height: 100%;
   width: 100%;
   object-fit: contain;
}

.mobile-header .cart-btn {
   position: relative;
   background: var(--gradient-soft);
   border: none;
   border-radius: 10px;
   padding: 0.4rem 0.6rem;
   font-size: 1.3rem;
   color: var(--primary);
   cursor: pointer;
}

.mobile-search-bar {
   position: relative;
   display: flex;
   align-items: center;
   gap: 0.5rem;
   background: var(--gradient-soft);
   border-radius: var(--radius-pill);
   padding: 0.4rem 0.7rem;
}

.city-select {
   background: transparent;
   border: none;
   font-size: 0.82rem;
   color: var(--primary);
   font-weight: 700;
   cursor: pointer;
   outline: none;
   max-width: 110px;
}

.search-divider {
   width: 1px;
   height: 22px;
   background: var(--primary-light);
   opacity: 0.5;
}

.mobile-search-bar input {
   flex: 1;
   background: transparent;
   border: none;
   font-size: 0.88rem;
   color: var(--text);
   outline: none;
}

.search-arrow-btn {
   background: var(--gradient);
   border: none;
   border-radius: 50%;
   width: 30px;
   height: 30px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   cursor: pointer;
   flex-shrink: 0;
   position: absolute !important;
   right: 2%;
   top: 10%;
}

/* Mobile Drawer */

.logo-drawer {
   height: 50px;
   width: 70%;
}

.logo-drawer img {
   height: 100%;
   width: 100%;
   object-fit: contain;
}



.mobile-drawer {
   position: fixed;
   top: 0;
   left: -280px;
   width: 280px;
   height: 100vh;
   background: #fff;
   z-index: 2000;
   transition: left 0.35s cubic-bezier(.4, 0, .2, 1);
   box-shadow: 4px 0 24px rgba(124, 58, 237, 0.15);
   overflow-y: auto;
}

.mobile-drawer.open {
   left: 0;
}

.mobile-drawer-header {
   background: var(--gradient);
   padding: 2rem 1.5rem 1.5rem;
   color: #fff;
}

.mobile-drawer-header h3 {
   font-family: 'Playfair Display', serif;
   font-size: 1.4rem;
}

.mobile-drawer-header p {
   font-size: 0.85rem;
   opacity: 0.85;
}

.mobile-drawer-close {
   position: absolute;
   top: 1rem;
   right: 1rem;
   background: rgba(255, 255, 255, 0.2);
   border: none;
   border-radius: 8px;
   padding: 0.3rem 0.6rem;
   color: #fff;
   font-size: 1.1rem;
   cursor: pointer;
}

.drawer-nav a {
   display: flex;
   align-items: center;
   gap: 0.8rem;
   padding: 0.9rem 1.5rem;
   font-weight: 600;
   color: var(--text);
   border-bottom: 1px solid var(--border);
   transition: all 0.2s;
   font-size: 0.95rem;
}

.drawer-nav a:hover,
.drawer-nav a.active {
   background: var(--gradient-soft);
   color: var(--primary);
}

.drawer-nav a i {
   width: 22px;
   text-align: center;
   color: var(--primary);
   font-size: 1.1rem;
}

.drawer-overlay {
   display: none;
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.4);
   z-index: 1999;
}

.drawer-overlay.show {
   display: block;
}

/* ===================================================================
   BOTTOM NAV (Mobile Only)
   =================================================================== */
.bottom-nav {
   display: none;
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #fff;
   border-top: 1px solid var(--border);
   z-index: 999;
   padding: 0.4rem 0;
   box-shadow: 0 -4px 20px rgba(124, 58, 237, 0.10);
}

.bottom-nav .nav-items {
   display: flex;
   justify-content: space-around;
   align-items: center;
}

.bottom-nav .nav-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 0.15rem;
   padding: 0.3rem 0.5rem;
   cursor: pointer;
   border-radius: 12px;
   transition: all 0.2s;
   flex: 1;
}

.bottom-nav .nav-item i {
   font-size: 1.25rem;
   color: var(--text-muted);
}

.bottom-nav .nav-item span {
   font-size: 0.6rem;
   color: var(--text-muted);
   font-weight: 600;
}

.bottom-nav .nav-item.active i,
.bottom-nav .nav-item.active span {
   color: var(--primary);
}

.bottom-nav .nav-item.active {
   background: var(--gradient-soft);
}

.bottom-nav .nav-item:nth-child(5) i {
   color: #25D366;
}

.bottom-nav .nav-item:nth-child(5).active i {
   color: #25D366;
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
   background: var(--gradient);
   color: #fff;
   padding: 5rem 0 4rem;
   position: relative;
   overflow: hidden;
}

.hero::before {
   content: '';
   position: absolute;
   width: 600px;
   height: 600px;
   background: rgba(255, 255, 255, 0.05);
   border-radius: 50%;
   top: -200px;
   right: -200px;
}

.hero::after {
   content: '';
   position: absolute;
   width: 400px;
   height: 400px;
   background: rgba(255, 255, 255, 0.05);
   border-radius: 50%;
   bottom: -150px;
   left: -100px;
}

.hero-badge {
   background: rgba(255, 255, 255, 0.2);
   border: 1px solid rgba(255, 255, 255, 0.3);
   padding: 0.3rem 1rem;
   border-radius: var(--radius-pill);
   display: inline-block;
   font-size: 0.85rem;
   font-weight: 600;
   margin-bottom: 1rem;
   backdrop-filter: blur(8px);
}

.hero h1 {
   font-size: 3rem;
   line-height: 1.2;
   margin-bottom: 1.2rem;
}

.hero p {
   font-size: 1.1rem;
   opacity: 0.9;
   margin-bottom: 2rem;
   max-width: 500px;
}

.hero-stats {
   display: flex;
   gap: 2rem;
   margin-top: 2.5rem;
}

.hero-stats .stat {
   text-align: center;
}

.hero-stats .stat .num {
   font-size: 1.6rem;
   font-weight: 800;
   font-family: 'Playfair Display', serif;
}

.hero-stats .stat .lbl {
   font-size: 0.78rem;
   opacity: 0.85;
}

.hero-img-wrap {
   position: relative;
   text-align: center;
}

.hero-img-wrap img {
   border-radius: var(--radius);
   box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
   max-height: 420px;
   object-fit: cover;
}

.hero-float-badge {
   position: absolute;
   background: #fff;
   border-radius: var(--radius);
   padding: 0.8rem 1.2rem;
   box-shadow: var(--shadow);
   display: flex;
   align-items: center;
   gap: 0.6rem;
}

.hero-float-badge.badge1 {
   top: 20px;
   left: -20px;
}

.hero-float-badge.badge2 {
   bottom: 30px;
   right: -20px;
}

.hero-float-badge i {
   font-size: 1.4rem;
}

.hero-float-badge .ftxt strong {
   display: block;
   font-size: 0.95rem;
   color: var(--text);
}

.hero-float-badge .ftxt span {
   font-size: 0.75rem;
   color: var(--text-muted);
}

/* ===================================================================
   CATEGORY CIRCLES
   =================================================================== */
.categories-section {
   padding: 4rem 0;
}

.cat-scroll {
   display: flex;
   gap: 1.2rem;
   overflow-x: auto;
   flex-wrap: wrap;
   padding: 10px 10px;
   scrollbar-width: none;
}

.cat-scroll::-webkit-scrollbar {
   display: none;
}

.cat-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 0.6rem;
   cursor: pointer;
   flex-shrink: 0;
   min-width: 90px;
}

.cat-circle {
   width: 100px;
   height: 100px;
   border-radius: 50%;
   overflow: hidden;
   border: 3px solid transparent;
   background: var(--gradient) border-box;
   padding: 3px;
   transition: all 0.3s;
   box-shadow: var(--shadow);
}

.cat-circle img {
   width: 100%;
   height: 100%;
   border-radius: 50%;
   object-fit: cover;
}

.cat-item:hover .cat-circle {
   transform: scale(1.08);
   box-shadow: var(--shadow-hover);
}

.cat-item span {
   font-size: 0.8rem;
   font-weight: 700;
   color: var(--primary);
   text-align: center;
}

.cat-item.active span {
   color: var(--primary);
}

/* ===================================================================
   DECORATION CARDS
   =================================================================== */
.decorations-section {
   padding: 4rem 0;
   background: var(--gradient-soft);
}

.deco-card {
   background: var(--bg-card);
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: var(--shadow);
   transition: all 0.35s;
   display: flex;
   flex-direction: column;
}

.deco-card:hover {
   transform: translateY(-6px);
   box-shadow: var(--shadow-hover);
}

.deco-card-img {
   position: relative;
   overflow: hidden;
   height: 200px;
}

.deco-card-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.4s;
}

.deco-card:hover .deco-card-img img {
   transform: scale(1.08);
}

.deco-card-badge {
   position: absolute;
   top: 12px;
   left: 12px;
   background: var(--gradient);
   color: #fff;
   font-size: 0.72rem;
   font-weight: 700;
   padding: 0.25rem 0.7rem;
   border-radius: var(--radius-pill);
}

.deco-card-fav {
   position: absolute;
   top: 12px;
   right: 12px;
   background: #fff;
   border: none;
   border-radius: 50%;
   width: 34px;
   height: 34px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1rem;
   cursor: pointer;
   color: #ccc;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
   transition: all 0.2s;
}

.deco-card-fav:hover,
.deco-card-fav.active {
   color: var(--pink);
}

.deco-card-body {
   padding: 1rem 1.1rem;
   flex: 1;
   display: flex;
   flex-direction: column;
}

.deco-card-title {
   font-family: 'Playfair Display', serif;
   font-size: 1.05rem;
   font-weight: 700;
   margin-bottom: 0.3rem;
}

.deco-card-loc {
   font-size: 0.8rem;
   color: var(--text-muted);
   margin-bottom: 0.5rem;
}

.deco-rating {
   display: flex;
   align-items: center;
   gap: 0.3rem;
   font-size: 0.82rem;
   color: #f59e0b;
   margin-bottom: 0.7rem;
}

.deco-rating span {
   color: var(--text-muted);
}

.deco-price {
   font-size: 1.15rem;
   font-weight: 800;
   color: var(--primary);
   margin-top: auto;
}

.deco-price small {
   font-size: 0.78rem;
   color: var(--text-muted);
   font-weight: 400;
}

.btn-add-cart {
   background: var(--gradient);
   color: #fff;
   border: none;
   border-radius: var(--radius-pill);
   padding: 0px 15px;
   font-weight: 700;
   font-size: 0.85rem;
   cursor: pointer;
   transition: all 0.3s;
   display: flex;
   align-items: center;
   text-align: center;
   gap: 0.4rem;
}

.btn-add-cart:hover {
   transform: scale(1.05);
   box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3);
}

.btn-add-cart.added {
   background: linear-gradient(135deg, #10b981, #059669);
}

/* ===================================================================
   WHY CHOOSE US
   =================================================================== */
.why-section {
   padding: 4rem 0;
}

.why-card {
   text-align: center;
   padding: 2rem 1.5rem;
   background: #fff;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   transition: all 0.3s;
   height: 100%;
}

.why-card:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow-hover);
}

.why-icon {
   width: 70px;
   height: 70px;
   background: var(--gradient);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 1.2rem;
   font-size: 1.8rem;
   color: #fff;
   box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
}

.why-card h5 {
   font-size: 1.05rem;
   margin-bottom: 0.5rem;
}

.why-card p {
   font-size: 0.88rem;
   color: var(--text-muted);
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.reviews-section {
   padding: 4rem 0;
   background: var(--gradient-soft);
}

.review-card {
   background: #fff;
   border-radius: var(--radius);
   padding: 1.5rem;
   box-shadow: var(--shadow);
   height: 100%;
   transition: all 0.3s;
}

.review-card:hover {
   transform: translateY(-3px);
   box-shadow: var(--shadow-hover);
}

.review-avatar {
   width: 52px;
   height: 52px;
   border-radius: 50%;
   object-fit: cover;
   border: 3px solid var(--primary-light);
}

.owl-carousel .owl-item img {
   width: 52px;
}

.review-name {
   font-weight: 700;
   font-size: 0.95rem;
}

.review-loc {
   font-size: 0.78rem;
   color: var(--text-muted);
}

.review-stars {
   color: #f59e0b;
   font-size: 0.85rem;
   margin: 0.7rem 0 0.5rem;
}

.review-text {
   font-size: 0.88rem;
   color: var(--text-muted);
   line-height: 1.6;
}

.quote-icon {
   font-size: 2.5rem;
   color: var(--primary-light);
   opacity: 0.5;
   float: right;
   line-height: 1;
}

/* ===================================================================
   CART PAGE
   =================================================================== */
.cart-section {
   padding: 3rem 0;
   min-height: 70vh;
}

.cart-item-card {
   background: #fff;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   padding: 1.2rem;
   margin-bottom: 1rem;
   display: flex;
   align-items: center;
   gap: 1rem;
}

.cart-item-img {
   width: 90px;
   height: 80px;
   border-radius: var(--radius-sm);
   object-fit: cover;
   flex-shrink: 0;
}

.cart-item-title {
   font-weight: 700;
   font-size: 0.95rem;
}

.cart-item-price {
   color: var(--primary);
   font-weight: 800;
   font-size: 1rem;
}

.qty-control {
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.qty-btn {
   background: var(--gradient-soft);
   border: none;
   border-radius: 8px;
   width: 30px;
   height: 30px;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   font-weight: 700;
   color: var(--primary);
   font-size: 1rem;
   transition: all 0.2s;
}

.qty-btn:hover {
   background: var(--gradient);
   color: #fff;
}

.qty-val {
   font-weight: 700;
   width: 24px;
   text-align: center;
}

.remove-btn {
   background: #fff0f3;
   border: none;
   border-radius: 8px;
   padding: 0.3rem 0.6rem;
   color: #ef4444;
   cursor: pointer;
   font-size: 0.85rem;
   transition: all 0.2s;
}

.remove-btn:hover {
   background: #fee2e2;
}

.cart-summary {
   background: #fff;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   padding: 1.5rem;
   position: sticky;
   top: 100px;
}

.cart-summary h4 {
   font-size: 1.2rem;
   margin-bottom: 1.2rem;
}

.summary-row {
   display: flex;
   justify-content: space-between;
   margin-bottom: 0.7rem;
   font-size: 0.92rem;
}

.summary-total {
   border-top: 2px solid var(--border);
   padding: 1rem 0rem;
   font-weight: 800;
   font-size: 1.05rem;
   color: var(--primary);
}

.btn-checkout {
   background: var(--gradient);
   color: #fff;
   border: none;
   border-radius: var(--radius-pill);
   padding: 0.9rem;
   font-weight: 700;
   font-size: 1rem;
   width: 100%;
   cursor: pointer;
   transition: all 0.3s;
   margin-top: 1rem;
}

.btn-checkout:hover {
   box-shadow: 0 6px 24px rgba(124, 58, 237, 0.3);
   transform: translateY(-2px);
}

.empty-cart {
   text-align: center;
   padding: 4rem 1rem;
}

.empty-cart i {
   font-size: 5rem;
   color: var(--primary-light);
   margin-bottom: 1.5rem;
}

.empty-cart h3 {
   margin-bottom: 0.8rem;
}

.empty-cart p {
   color: var(--text-muted);
   margin-bottom: 2rem;
}

/* ===================================================================
   AUTH PAGES
   =================================================================== */
.auth-section {
   min-height: 90vh;
   display: flex;
   align-items: center;
   padding: 3rem 0;
}

.auth-card {
   background: #fff;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   overflow: hidden;
   max-width: 480px;
   margin: 0 auto;
}

.auth-header {
   background: var(--gradient);
   color: #fff;
   padding: 2.5rem 2rem 2rem;
   text-align: center;
}

.auth-header h2 {
   font-size: 1.8rem;
   margin-bottom: 0.3rem;
}

.auth-header p {
   opacity: 0.85;
   font-size: 0.9rem;
}

.auth-body {
   padding: 2rem;
}

.form-label {
   font-weight: 700;
   font-size: 0.88rem;
   color: var(--text);
   margin-bottom: 0.3rem;
}

.form-control-custom {
   border: 2px solid var(--border);
   border-radius: var(--radius-sm);
   padding: 0.7rem 1rem;
   font-size: 0.95rem;
   width: 100%;
   transition: all 0.3s;
   outline: none;
   background: #faf8ff;
}

.form-control-custom:focus {
   border-color: var(--primary);
   background: #fff;
}

.input-group-custom {
   position: relative;
}

.input-group-custom i {
   position: absolute;
   left: 0.9rem;
   top: 50%;
   transform: translateY(-50%);
   color: var(--primary-light);
   font-size: 1rem;
}

.input-group-custom .form-control-custom {
   padding-left: 2.5rem;
}

.btn-auth {
   background: var(--gradient);
   color: #fff;
   border: none;
   border-radius: var(--radius-pill);
   padding: 0.85rem;
   font-weight: 700;
   font-size: 1rem;
   width: 100%;
   cursor: pointer;
   transition: all 0.3s;
   margin-top: 0.5rem;
}

.btn-auth:hover {
   box-shadow: 0 6px 24px rgba(124, 58, 237, 0.3);
   transform: translateY(-2px);
}

.auth-switch {
   text-align: center;
   margin-top: 1.2rem;
   font-size: 0.9rem;
   color: var(--text-muted);
}

.auth-switch a {
   color: var(--primary);
   font-weight: 700;
}

.divider-or {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin: 1.2rem 0;
   color: var(--text-muted);
   font-size: 0.85rem;
}

.divider-or::before,
.divider-or::after {
   content: '';
   flex: 1;
   height: 1px;
   background: var(--border);
}

/* ===================================================================
   PROFILE PAGE
   =================================================================== */
.profile-section {
   padding: 3rem 0;
   min-height: 80vh;
}

.profile-header-card {
   background: var(--gradient);
   border-radius: var(--radius);
   padding: 2.5rem 2rem;
   color: #fff;
   text-align: center;
   margin-bottom: 2rem;
}

.profile-avatar {
   width: 100px;
   height: 100px;
   border-radius: 50%;
   border: 4px solid rgba(255, 255, 255, 0.5);
   object-fit: cover;
   margin-bottom: 1rem;
}

.profile-name {
   font-size: 1.5rem;
   font-family: 'Playfair Display', serif;
}

.profile-email {
   opacity: 0.85;
   font-size: 0.9rem;
}

.profile-stat-card {
   background: #fff;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   padding: 1.2rem;
   text-align: center;
}

.profile-stat-card .num {
   font-size: 2rem;
   font-weight: 800;
   color: var(--primary);
   font-family: 'Playfair Display', serif;
}

.profile-stat-card .lbl {
   font-size: 0.8rem;
   color: var(--text-muted);
}

.profile-menu-card {
   background: #fff;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   overflow: hidden;
}

.profile-menu-item {
   display: flex;
   align-items: center;
   gap: 1rem;
   padding: 1rem 1.3rem;
   border-bottom: 1px solid var(--border);
   cursor: pointer;
   transition: all 0.2s;
}

.profile-menu-item:last-child {
   border-bottom: none;
}

.profile-menu-item:hover {
   background: var(--gradient-soft);
}

.profile-menu-item i {
   width: 36px;
   height: 36px;
   background: var(--gradient-soft);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--primary);
   font-size: 1rem;
}

.profile-menu-item .menu-text strong {
   display: block;
   font-size: 0.92rem;
}

.profile-menu-item .menu-text span {
   font-size: 0.78rem;
   color: var(--text-muted);
}

.profile-menu-item .chevron {
   margin-left: auto;
   color: var(--text-muted);
}

.profile-menu-item.danger i {
   background: #fee2e2;
   color: #ef4444;
}

.profile-menu-item.danger strong {
   color: #ef4444;
}

/* ===================================================================
   ABOUT PAGE
   =================================================================== */
.about-hero {
   background: var(--gradient);
   color: #fff;
   padding: 5rem 0 4rem;
   text-align: center;
}

.about-hero h1 {
   font-size: 2.8rem;
   margin-bottom: 1rem;
}

.about-hero p {
   font-size: 1.1rem;
   opacity: 0.9;
   max-width: 600px;
   margin: 0 auto;
}

.about-content {
   padding: 4rem 0;
}

.about-img {
   border-radius: var(--radius);
   box-shadow: var(--shadow);
}

.team-card {
   background: #fff;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   padding: 1.5rem;
   text-align: center;
   transition: all 0.3s;
}

.team-card:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow-hover);
}

.team-card img {
   width: 80px;
   height: 80px;
   border-radius: 50%;
   object-fit: cover;
   border: 3px solid var(--primary-light);
   margin-bottom: 1rem;
}

.team-card h5 {
   font-size: 1rem;
   margin-bottom: 0.2rem;
}

.team-card span {
   font-size: 0.82rem;
   color: var(--primary);
   font-weight: 600;
}

/* ===================================================================
   CONTACT PAGE
   =================================================================== */
.contact-section {
   padding: 4rem 0;
}

.contact-hero {
   background: var(--gradient);
   color: #fff;
   padding: 4rem 0 3rem;
   text-align: center;
}

.contact-info-card {
   background: #fff;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   padding: 1.5rem;
   display: flex;
   align-items: flex-start;
   gap: 1rem;
   margin-bottom: 1rem;
}

.contact-icon {
   width: 50px;
   height: 50px;
   background: var(--gradient);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-size: 1.3rem;
   flex-shrink: 0;
}

.contact-form-card {
   background: #fff;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   padding: 2rem;
}

/* ===================================================================
   PAGE HERO (Generic)
   =================================================================== */
.page-hero {
   background: var(--gradient);
   color: #fff;
   padding: 3.5rem 0 2.5rem;
   text-align: center;
   margin-bottom: 0;
}

.page-hero h1 {
   font-size: 2.5rem;
}

.page-hero p {
   opacity: 0.9;
   margin-top: 0.5rem;
}

.breadcrumb-custom {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   justify-content: center;
   margin-top: 0.8rem;
   font-size: 0.85rem;
   opacity: 0.85;
}

.breadcrumb-custom a {
   color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-custom a:hover {
   color: #fff;
}

/* ===================================================================
   DETAIL PAGE
   =================================================================== */
.detail-section {
   padding: 3rem 0;
}

.detail-main-img {
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   width: 100%;
   height: 400px;
   object-fit: cover;
}

.detail-thumb {
   border-radius: 10px;
   cursor: pointer;
   border: 3px solid transparent;
   transition: all 0.2s;
   height: 80px;
   object-fit: cover;
}

.detail-thumb.active,
.detail-thumb:hover {
   border-color: var(--primary);
}

.detail-price-box {
   background: var(--gradient);
   color: #fff;
   border-radius: var(--radius);
   padding: 1.5rem;
   margin-bottom: 1.2rem;
}

.detail-price-box .price {
   font-size: 2rem;
   font-weight: 800;
   font-family: 'Playfair Display', serif;
}

.detail-price-box small {
   font-size: 0.85rem;
   opacity: 0.85;
}

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

.detail-features li {
   display: flex;
   align-items: center;
   gap: 0.6rem;
   padding: 0.5rem 0;
   border-bottom: 1px solid var(--border);
   font-size: 0.92rem;
}

.detail-features li:last-child {
   border-bottom: none;
}

.detail-features li i {
   color: var(--primary);
   font-size: 1rem;
   width: 20px;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
   background: #1e1b4b;
   color: #c4b5fd;
   padding: 3.5rem 0 1.5rem;
}

.footer h5 {
   color: #fff;
   font-family: 'Playfair Display', serif;
   margin-bottom: 1.2rem;
}

.footer a {
   color: #c4b5fd;
   font-size: 0.88rem;
   display: block;
   margin-bottom: 0.5rem;
   transition: color 0.2s;
}

.footer a:hover {
   color: var(--pink-light);
}

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

.footer .social-icons a {
   background: rgba(255, 255, 255, 0.1);
   border-radius: 10px;
   width: 38px;
   height: 38px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1rem;
   margin: 0;
   transition: all 0.2s;
}

.footer .social-icons a:hover {
   background: var(--gradient);
   color: #fff;
}

.footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 1.2rem;
   margin-top: 2.5rem;
   text-align: center;
   font-size: 0.82rem;
   color: rgba(196, 181, 253, 0.7);
}

.footer-logo {
   font-family: 'Playfair Display', serif;
   font-size: 1.5rem;
   color: #fff;
   font-weight: 700;
}

/* ===================================================================
   TOAST / NOTIFICATION
   =================================================================== */
.toast-container-custom {
   position: fixed;
   bottom: 80px;
   right: 1rem;
   z-index: 9999;
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
}

.toast-custom {
   background: #fff;
   border-radius: var(--radius-sm);
   box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
   padding: 0.8rem 1.2rem;
   display: flex;
   align-items: center;
   gap: 0.8rem;
   min-width: 260px;
   animation: slideInRight 0.3s ease;
   font-size: 0.9rem;
   font-weight: 600;
   border-left: 4px solid var(--primary);
}

.toast-custom.success {
   border-left-color: #10b981;
}

.toast-custom.error {
   border-left-color: #ef4444;
}

.toast-custom i {
   font-size: 1.2rem;
   color: var(--primary);
}

.toast-custom.success i {
   color: #10b981;
}

.toast-custom.error i {
   color: #ef4444;
}

@keyframes slideInRight {
   from {
      transform: translateX(100%);
      opacity: 0;
   }

   to {
      transform: translateX(0);
      opacity: 1;
   }
}

/* ===================================================================
   FILTER BAR
   =================================================================== */
.filter-bar {
   background: #fff;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   padding: 1rem 1.5rem;
   margin-bottom: 2rem;
   display: flex;
   align-items: center;
   gap: 1rem;
   flex-wrap: wrap;
}

.filter-btn {
   background: var(--gradient-soft);
   border: none;
   border-radius: var(--radius-pill);
   padding: 0.4rem 1rem;
   font-size: 0.85rem;
   font-weight: 600;
   color: var(--primary);
   cursor: pointer;
   transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
   background: var(--gradient);
   color: #fff;
}

/* ===================================================================
   MISC
   =================================================================== */
.section-badge {
   background: var(--gradient);
   color: #fff;
   font-size: 0.75rem;
   font-weight: 700;
   padding: 0.25rem 0.9rem;
   border-radius: var(--radius-pill);
   display: inline-block;
   margin-bottom: 0.7rem;
}

.rating-stars {
   color: #f59e0b;
}

.page-body {
   padding-bottom: 0;
}

@media (max-width: 767px) {
   .page-body {
      padding-bottom: 70px;
   }
}

/* Transitions */
.fade-in {
   animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
   from {
      opacity: 0;
      transform: translateY(16px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

/* Scroll to top */
.scroll-top-btn {
   position: fixed;
   bottom: 90px;
   right: 1.2rem;
   background: var(--gradient);
   color: #fff;
   border: none;
   border-radius: 50%;
   width: 44px;
   height: 44px;
   display: none;
   align-items: center;
   justify-content: center;
   font-size: 1.1rem;
   cursor: pointer;
   box-shadow: var(--shadow);
   z-index: 999;
   transition: all 0.3s;
}

.scroll-top-btn:hover {
   transform: scale(1.1);
}

.scroll-top-btn.visible {
   display: flex;
}

.main-img {
   width: 100%;
   height: 420px;
   object-fit: cover;
   border-radius: 12px;
}

.thumbs {
   max-height: 420px;
   overflow-y: auto;
}

.thumbs img {
   width: 70px;
   height: 70px;
   object-fit: cover;
   border-radius: 8px;
   margin-bottom: 10px;
   cursor: pointer;
}

.price {
   font-size: 28px;
   font-weight: bold;
}

.offer-box {
   background: #eaf8f1;
   padding: 12px;
   border-radius: 10px;
   display: flex;
   justify-content: space-between;
}

.city-card {
   background: #f3effa;
   padding: 18px;
   border-radius: 12px;
}

.contact-btn {
   background: var(--gradient);
   color: white;
   padding: 12px 25px;
   border: none;
   border-radius: 8px;
}

.cart-btn {
   background: var(--gradient);
   color: white;
   padding: 12px 25px;
   border: none;
   border-radius: 8px;
}

.coupon-box {
   background: #f7f7f7;
   padding: 15px;
   border-radius: 10px;
}

.coupon {
   cursor: pointer;
   margin-right: 8px;
   padding: 6px 10px;
}

/* similar product css  */
.section-title {
   font-weight: 700;
   color: #7b3fe4;
}

.product-card {
   border-radius: 14px;
   overflow: hidden;
   background: #fff;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   transition: 0.3s;
}

.product-card:hover {
   transform: translateY(-5px);
}

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

.price {
   margin-top: 5px;
}

.price .new {
   font-weight: 700;
   font-size: 18px;
}

.price .old {
   text-decoration: line-through;
   color: #888;
   margin-left: 6px;
}

.rating {
   margin-top: 5px;
   font-size: 14px;
   color: #555;
}


/*checkout page start*/

/* modal header */

.modal-title {
   font-weight: 600;
   color: #6f42c1;
}

/* input design */

.form-control,
.form-select {
   border-radius: 12px;
   padding: 12px;
   background: #ffffff;
   border: none;
}

.form-control:focus,
.form-select:focus {
   box-shadow: none;
   background: #ffffff;
}

/* button */

.save-btn {
   background: #6f2dbd;
   color: white;
   padding: 14px;
   border: none;
   border-radius: 12px;
   font-weight: 600;
   width: 100%;
}

.save-btn:hover {
   background: #5a23a5;
}

/* icon spacing */

.label-icon {
   margin-right: 6px;
   color: #666;
}

/*checkout page end*/

/* Similar & Related product mobile fix */
@media (max-width:576px) {
   .col-6 {
      flex: 0 0 50% !important;
      max-width: 50% !important;
   }
}

/* contect us page start  */


.contact-title {
   font-size: 2.5rem;
   margin-top: 0.5rem;
}

.contact-heading {
   font-weight: 800;
   margin-bottom: 0.3rem;
}

.contact-text {
   color: var(--text-muted);
   font-size: 0.88rem;
   margin: 0;
}

.contact-link {
   color: var(--primary);
   font-size: 0.82rem;
   font-weight: 700;
   margin-top: 0.3rem;
   display: block;
}

.contact-email-icon {
   background: linear-gradient(135deg, #ec4899, #f9a8d4);
}

.form-title {
   margin-bottom: 0.3rem;
}

.event-select {
   border: 2px solid var(--border);
   border-radius: var(--radius-sm);
   padding: 0.7rem 1rem;
   width: 100%;
   outline: none;
   background: #faf8ff;
}

.message-box {
   border: 2px solid var(--border);
   border-radius: var(--radius-sm);
   padding: 0.7rem 1rem;
   width: 100%;
   font-size: 0.95rem;
   outline: none;
   background: #faf8ff;
   resize: vertical;
   font-family: inherit;
}

.submit-btn {
   font-size: 1rem;
   padding: 0.85rem 2.5rem;
}

/* contect us page end */

/* map section css start */

/* STORE LOCATION */

.store-title {
   font-weight: 700;
}

.store-line {
   width: 70px;
   height: 4px;
   background: #ff2c83;
   margin-bottom: 25px;
}

.store-card {
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
   background: #fff;
   border-radius: 20px;
   padding: 20px;
   border: 1px solid #eee;
   gap: 15px;
}

.store-number {
   width: 50px;
   height: 50px;
   background: #ff2c83;
   color: #fff;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 600;
   font-size: 18px;
}

.store-info {
   flex: 1;
   min-width: 200px;
}

.store-name {
   font-weight: 600;
   margin-bottom: 8px;
}

.store-address {
   margin: 0;
   color: #666;
   font-size: 15px;
}

.store-time {
   margin-top: 8px;
   font-weight: 500;
   font-size: 14px;
   text-decoration: underline;
}

.store-icon {
   font-size: 22px;
   color: #7b4b9b;
}

.map-wrapper {
   width: 100%;
   height: 100%;
   overflow: hidden;
   border-radius: 20px;
}

.map-wrapper iframe {
   width: 100%;
   height: 100%;
   border: 0;
   min-height: 350px;
}

/* map  section end css */

/* review form css start */

.review-page {
   background-color: var(--bg-light);
   font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
   margin: 0;
  
   display: flex;
   justify-content: center;
   align-items: center;
   /* min-height: 100vh; */
}

.main-wrapper {
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
}

/* Base Card Style (Mobile First Default) */
.custom-card {
   background-color: #fff;
   overflow: hidden;
   position: relative;
}

/* Gradient Top Border */
.custom-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 5px;
   background: var(--brand-gradient);
   z-index: 10;
}


.image-section {
   background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
   background-size: cover;
   background-position: center;
   width: 100%;
}

.image-overlay {
   background: linear-gradient(to top, rgba(162, 62, 205, 0.9) 0%, rgba(0, 0, 0, 0) 70%);
}

.text-gradient {
   background: var(--brand-gradient);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   display: inline-block;
}

/* Inputs */
.custom-input {
   background-color: #fafafa;
   border-radius: 10px;
   padding: 0.85rem 1rem;
   border: 1px solid #e2e8f0;
   font-size: 0.95rem;
   box-shadow: none;
   transition: all 0.3s ease;
}

.custom-input:focus {
   background-color: #ffffff;
   border-color: var(--brand-mid);
   box-shadow: 0 0 0 4px rgba(194, 71, 186, 0.15);
}

/* Pure CSS Stars */
.star-rating {
   display: inline-flex;
   flex-direction: row-reverse;
   gap: 0.3rem;
}

.star-rating input {
   display: none;
}

.star-rating label {
   cursor: pointer;
   font-size: 2.2rem;
   color: var(--star-inactive);
   transition: all 0.2s ease;
   line-height: 1;
   margin: 0;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label {
   color: var(--brand-pink);
   transform: scale(1.1);
}

/* Button */
.btn-gradient {
   background: var(--brand-gradient);
   color: #ffffff;
   border-radius: 10px;
   border: none;
   transition: all 0.3s ease;
}

.btn-gradient:hover {
   color: #ffffff;
   opacity: 0.9;
   box-shadow: 0 8px 20px rgba(216, 83, 165, 0.25);
}

.btn-gradient:active {
   transform: scale(0.98);
}
.main-wrapper {
   padding: 1rem;
  
}

.custom-card {
   width: 100%;
   max-width: 500px;
   border-radius: 16px;
}

.image-section {
   height: 220px;

}

.form-section {
   padding: 2rem 1.5rem;
}


/* profile page css start */


       .profile-wrapper-container {
        width: 100%;
        max-width: 480px; /* Mobile width optimized */
        margin: 15px auto;
        padding: 0 12px;
        font-family: 'Segoe UI', Roboto, sans-serif;
    }

    /* Header with Gradient */
    .profile-banner {
        background: linear-gradient(135deg, #7b2ff7 0%, #f107a3 100%);
        border-radius: 24px;
        padding: 30px 15px;
        text-align: center;
        color: white;
        box-shadow: 0 8px 25px rgba(123, 47, 247, 0.15);
    }

    /* Avatar and Edit Icon Logic */
    .profile-pic-container {
        position: relative;
        width: 90px;
        height: 90px;
        margin: 0 auto 12px;
    }

    .profile-img-main {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 3px solid rgba(255, 255, 255, 0.4);
        object-fit: cover;
        background: #f0f0f0;
    }

    .edit-icon-overlay {
        position: absolute;
        bottom: 2px;
        right: 2px;
        background: #fff;
        color: #7b2ff7;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        text-decoration: none;
        transition: 0.2s;
    }
    .edit-icon-overlay:hover { background: #7b2ff7; color: #fff; }

    .premium-status {
        background: rgba(255, 255, 255, 0.2);
        padding: 4px 14px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 600;
        display: inline-block;
    }

    /* Stats Grid */
    .profile-stats-row {
        margin-top: -15px; /* Slight overlap for modern look */
        padding: 0 10px;
    }

    .stat-mini-card {
        background: white;
        border-radius: 16px;
        padding: 12px 5px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.04);
        border: 1px solid #f0f0f0;
    }

    .stat-val { font-size: 18px; font-weight: 700; color: #7b2ff7; line-height: 1.2; }
    .stat-txt { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }

    /* Menu List */
    .menu-options-card {
        background: #fff;
        border-radius: 22px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        overflow: hidden;
        margin-top: 20px;
    }

    .option-link {
        display: flex;
        align-items: center;
        padding: 15px 18px;
        text-decoration: none !important;
        border-bottom: 1px solid #f4f4f4;
        transition: 0.3s;
    }
    .option-link:last-child { border-bottom: none; }
    .option-link:active { background-color: #f8f6ff; }

    .opt-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        font-size: 18px;
    }

    .bg-light-p { background: #f5eeff; color: #7b2ff7; }
    .bg-light-r { background: #fff2f2; color: #ff4757; }

    .opt-info h6 { margin: 0; font-size: 15px; font-weight: 600; color: #2d3436; }
    .opt-info p { margin: 0; font-size: 12px; color: #95a5a6; }
    
    .support-num {
        display: block;
        color: #7b2ff7;
        font-weight: 700;
        margin-top: 2px;
    }

    .chevron-next {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        background: #f8f9fa;
        color: #b2bec3;
    }

   
/* profile page css end */

