/* ============================================
   VELVETY - CUSTOM STYLES
   ============================================ */

/* Base Styles */
:root {
    --primary-pink: #FF69B4;
    --primary-pink-dark: #FF1493;
    --primary-pink-light: #FFB6C1;
    --primary-blue: #4A90E2;
    --primary-purple: #9B59B6;
    --primary-green: #27AE60;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #FEEDF7;
    --white: #FFFFFF;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* ============================================
   TOP BAR SECTION
   ============================================ */
.top-bar {
    background: var(--bg-light);
    padding: 10px 0;
    font-size: 14px;
}

.logo img {
    width: 200px;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar-link:hover {
    color: var(--primary-pink);
}

.top-bar-link i {
    margin-right: 5px;
}

.top-bar-right {
    color: var(--text-light);
}

/* ============================================
   HEADER SECTION
   ============================================ */
.main-header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .row.align-items-center {
    justify-content: center;
    text-align: center;
}

.top_social_connect a {
    color: #000;
    text-decoration: none;
    margin-right: 5px;
}

.delivery-dropdown-location .form-select {
    padding: 0;
    border: 0;
    font-size: 12px;
}

.delivery-dropdown-location {
    display: flex;
    gap: 5px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-pink);
    margin: 0;
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar .form-control {
    border-radius: 25px;
    border: 2px solid #E0E0E0;
    padding: 10px 50px 10px 20px;
    font-size: 14px;
}

.search-bar .form-control:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.2rem rgba(255, 105, 180, 0.25);
}

.search-btn {
    position: absolute;
    right: 5px;
    background: var(--primary-pink);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: var(--primary-pink-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.header-icon {
    color: var(--text-dark);
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
    background: none;
    border: none;
    padding: 8px;
    position: relative;
    cursor: pointer;
}

.header-icon:hover {
    color: var(--primary-pink);
}

.header-icon::after {
    display: none;
}

.header-dropdown {
    position: relative;
}

.header-dropdown .badge-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-pink);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Dropdown Menu Styles */
.header-dropdown .dropdown-menu {
    min-width: 300px;
    border: none;
    box-shadow: var(--shadow-hover);
    border-radius: 10px;
    padding: 0;
    margin-top: 10px;
}

.header-dropdown .dropdown-header {
    padding: 12px 15px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    border-radius: 10px 10px 0 0;
}

.header-dropdown .dropdown-item {
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s;
}

.header-dropdown .dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-pink);
}

.header-dropdown .dropdown-item i {
    width: 20px;
    text-align: center;
}

.dropdown-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.btn-remove-item {
    background: none;
    border: none;
    color: var(--text-light);
    padding: 5px;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-remove-item:hover {
    color: var(--primary-pink);
}

.cart-dropdown {
    min-width: 350px;
}

.cart-dropdown .dropdown-item {
    padding: 15px;
}

.delivery-dropdown {
    min-width: 120px;
}

.delivery-dropdown .form-select {
    border-radius: 20px;
    border: 2px solid #E0E0E0;
    font-size: 14px;
    padding: 8px 15px;
}

.delivery-text {
    font-size: 12px;
    color: var(--text-light);
    margin: 5px 0 0 0;
    text-align: right;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: var(--primary-pink);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
}

.mobile-menu-btn:hover {
    background: var(--primary-pink-dark);
}

/* ============================================
   NAVIGATION MENU
   ============================================ */
.main-nav {
    background: var(--white);
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    padding: 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 0px;
    white-space: nowrap;
    overflow: auto;
}

.nav-menu li {
    flex: 1;
    min-width: fit-content;
}

.nav-menu li a {
    display: block;
    padding: 15px 5px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    text-align: center;
    border-bottom: 3px solid transparent;
}

.nav-menu li a:hover {
    color: var(--primary-pink);
    background: var(--bg-light);
    border-bottom-color: var(--primary-pink);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding: 10px 0;
}

.hero-banner {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-section .row {
    align-items: stretch;
}

.hero-section .row>div {
    display: flex;
    flex-direction: column;
}

.hero-section .row>div>* {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-banner-left {
    background: linear-gradient(135deg, #4A90E2 0%, #5BA3F5 100%);
    color: var(--white);
}

.hero-banner-center {
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-banner-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(255 105 180 / 14%) 0%, rgb(255 140 200 / 7%) 100%);
    z-index: 1;
    border-radius: 15px;
}

.hero-banner-center .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 30px 60px 30px;
    background-color: transparent !important;
}

.hero-banner-right {
    background: linear-gradient(135deg, #9B59B6 0%, #BB7DD9 100%);
    color: var(--white);
}

.hero-banner h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-banner h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-banner p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.btn-shop {
    background: var(--white);
    color: var(--primary-pink);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

/* .hero-banner-left .btn-shop {
    color: var(--primary-blue);
} */
/* 
.hero-banner-center .btn-shop {
    color: var(--primary-pink);
} */
/* 
.hero-banner-right .btn-shop {
    color: var(--primary-purple);
} */

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Owl Carousel Custom Styles */
.owl-carousel .owl-item {
    padding: 20px 0px;

}

.hero-center-carousel .owl-item {
    padding: 0;
}

.hero-center-carousel {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    position: relative;
}

.hero-center-carousel .owl-stage-outer,
.hero-center-carousel .owl-stage,
.hero-center-carousel .owl-item {
    height: 100%;
}

.hero-center-carousel .hero-banner {
    height: 100%;
    min-height: 400px;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-carousel .owl-nav button {
    pointer-events: all;
    background: var(--primary-pink) !important;
    color: var(--white) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    border: none;
    margin: 0 15px;
}

.owl-carousel .owl-nav button:hover {
    background: var(--primary-pink-dark) !important;
    transform: scale(1.1);
}

.owl-carousel .owl-nav .owl-prev {
    left: -20px;
}

.owl-carousel .owl-nav .owl-next {
    right: -20px;
}

.hero-center-carousel .owl-nav .owl-prev {
    left: 15px;
}

.hero-center-carousel .owl-nav .owl-next {
    right: 15px;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-center-carousel .owl-dots {
    bottom: 20px;
}

.owl-theme .owl-dots .owl-dot span {
    display: none;
}

.owl-carousel .owl-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5) !important;
    margin: 0 4px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 0;
    transition: all 0.3s;
}

.owl-carousel .owl-dots button:hover {
    background: rgba(255, 255, 255, 0.8) !important;
}

.owl-carousel .owl-dots button.active {
    background: var(--white) !important;
    border-color: var(--white);
    width: 24px;
    border-radius: 12px;
}

.product-carousel .owl-dots button.active {
    background: var(--primary-pink) !important;
    border-color: var(--primary-pink);
}

.product-carousel .owl-dots {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
}

.product-carousel .owl-dots button {
    background: #ddd !important;
    border-color: #ddd;
    width: 10px;
    height: 10px;
}

.product-carousel .owl-dots button:hover {
    background: var(--primary-pink-light) !important;
    border-color: var(--primary-pink-light);
}

.product-carousel .owl-dots button.active {
    width: 24px;
    border-radius: 12px;
}

/* ============================================
   CATEGORY ICONS SECTION
   ============================================ */
.category-icons {
    padding: 50px 0;
    background: var(--white);
}

.category-icons a {
    text-decoration: none;

}

.category-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-icon-wrapper {
    margin-bottom: 15px;
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 36px;
    color: var(--white);
    transition: all 0.3s;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    background: var(--primary-pink-dark);
}

.category-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #6B46C1;
}

.category-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   GIFTS FOR CHEERS SECTION
   ============================================ */
.gifts-cheers {
    padding: 30px;
    border-radius: 30px;
    border: solid 3px #FFB6E3;

}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    line-height: 30px;
    font-weight: normal;
}

.section-header span {
    width: 100%;
    display: inline-block;
    font-size: 15px;
    font-weight: normal;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Promotional Header Card */
.cheer-header-card {
    background: #FFF0F5;
    border: 1px solid var(--primary-pink-light);
    border-radius: 15px;
    padding: 10px 10px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.cheer-header-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cheer-header-image {
    width: 100%;
    max-width: 200px;
    height: 130px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cheer-header-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cheer-header-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.cheer-title-pink {
    color: var(--primary-pink);
}

.cheer-title-dark {
    color: #2C3E50;
}

.cheer-header-tagline {
    font-size: 14px;
    color: #2C3E50;
    margin: 0;
    font-weight: 500;
}

/* Category Cards */
.cheer-category-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cheer-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cheer-category-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
}

.cheer-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.cheer-category-card:hover .cheer-category-image img {
    transform: scale(1.1);
}

.cheer-category-card h4 {
    padding: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* ============================================
   CATEGORIZED GIFTS SECTION
   ============================================ */
.categorized-gifts {
    padding: 50px 0;
    background: var(--white);
    position: relative;
}

.categorized-gifts::before {
    width: 100%;
    height: 250px;
    content: '';
    background-image: url(../images/short_banner_bg.jpg);
    background-size: cover;
    position: absolute;
    left: 0;
    top: 40px;
    z-index: 0;
}

.categorized-gifts .container-fluid {
    position: relative;
}

.categorized-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    background: var(--white);
}

.categorized-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.categorized-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.categorized-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.categorized-card:hover .categorized-image img {
    transform: scale(1.1);
}

.categorized-card h4 {
    padding: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
}

/* ============================================
   PROMOTIONAL BANNERS SECTION
   ============================================ */
.promotional-banners {
    padding: 50px 0;
    background: var(--bg-light);
}

.promo-banner {
    border-radius: 15px;
    padding: 40px 30px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow);
}

.promo-banner-blue {
    background: linear-gradient(135deg, #4A90E2 0%, #5BA3F5 100%);
}

.promo-banner-green {
    background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
}

.promo-banner-pink {
    background: linear-gradient(135deg, #FF69B4 0%, #FF8CC8 100%);
}

.promo-banner h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.logo {
    text-align: left;
}

.promo-banner .btn-light {
    background: var(--white);
    color: var(--text-dark);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    align-self: flex-start;
    z-index: 2;
    position: relative;
    font-size: 14px;
}

.promo-banner .btn-light:hover {
    background-color: var(--primary-pink);
    color: #fff;
}

.promo-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.2s ease-in-out;
}

.promo-banner:hover img {
    transform: scale(1.1);
}

/* ============================================
   TRENDING ITEMS SECTION - BOOTSTRAP TABS
   ============================================ */
.trending-items {
    padding: 50px 0;
    background: var(--white);
}

.trending-nav {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 0 0;
    padding: 0;
}

.trending-nav li {
    list-style: none;
}

.trending-nav li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.3s;
    display: block;
}

.trending-nav li a:hover,
.trending-nav li a.active {
    background: var(--primary-pink);
    color: var(--white);
}

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 30px;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--text-light);
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 20px;
    margin: 0 5px;
    transition: all 0.3s;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    background: var(--bg-light);
}

.nav-tabs .nav-link.active {
    background: var(--primary-pink);
    color: var(--white);
    border: none;
}

/* ============================================
   PRODUCT CARD STYLES
   ============================================ */
.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    color: var(--white);
}

.badge-new {
    background: var(--primary-blue);
}

.badge-hot {
    background: #FF4500;
}

.badge-out {
    background: #95A5A6;
}

.badge-off {
    background: var(--primary-green);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card h5 {
    padding: 15px 15px 5px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 68px;
}

.product-card h5 a {
    color: inherit;
    text-decoration: none;
}

.product-card h5 a:hover {
    color: var(--primary-pink);
}

.product-card .btn-add-cart,
.product-card a.btn-add-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.product-rating {
    padding: 0 15px;
    color: #FFD700;
    font-size: 14px;
}

.product-price {
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-pink);
}

.price-old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 14px;
    margin-right: 10px;
}

.price-new {
    color: var(--primary-pink);
}

.btn-add-cart {
    margin: 0 15px 15px;
    background: var(--primary-pink);
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: 40px;
    width: 48px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 0;
}

.btn-add-cart:hover {
    background: var(--primary-pink-dark);
    transform: translateY(-2px);
}

/* ============================================
   PREMIUM GIFTS SECTION
   ============================================ */
.premium-gifts {
    padding: 50px 0;
    background-image: url(../images/short_banner_bg.jpg);
    background-size: cover;
}

.premium-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.premium-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-primary {
    background: var(--primary-pink) !important;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-pink-dark);
}

.btn-outline-primary {
    border: solid 1px var(--primary-pink);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--primary-pink);
}

.btn-outline-primary:hover {
    background: var(--primary-pink-dark);
}

.text-primary {
    color: var(--primary-pink) !important;
}

/* ============================================
   BEST SELLERS SECTION
   ============================================ */
.best-sellers {
    padding: 50px 0;
    background: var(--white);
}

/* ============================================
   CELEBRATION CALENDAR SECTION
   ============================================ */
.celebration-calendar {
    padding: 50px 0;
    background: var(--bg-light);
}

.calendar-card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
}

.calendar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.calendar-date {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.calendar-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.calendar-image {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}

.calendar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   FLOWER PICKS SECTION
   ============================================ */
.flower-picks {
    padding: 50px 0;
    background: var(--white);
}

.flower-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    background: var(--white);
}

.flower-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.flower-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.flower-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.flower-card:hover .flower-image img {
    transform: scale(1.1);
}

.flower-card h4 {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
}

/* ============================================
   TRUSTED COMPANIES SECTION
   ============================================ */
.trusted-companies {
    padding: 50px 0;
    background: var(--bg-light);
}

.company-logo {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.company-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.company-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.main-footer {
    background: #342C57;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.footer-brand p {
    color: #BDC3C7;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-contact p {
    color: #BDC3C7;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-pink);
}

.footer-links h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
}

.footer-links h5:before {
    background-color: #FF1493;
    width: 20px;
    height: 2px;
    content: '';
    position: absolute;
    left: 0;
    bottom: -9px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #BDC3C7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-pink);
}

.footer-app h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-app p {
    color: #BDC3C7;
    font-size: 14px;
    margin-bottom: 10px;
}

.app-title {
    font-weight: 600;
    color: var(--white) !important;
    margin-bottom: 15px !important;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn {
    display: inline-block;
}

.app-btn img {
    width: 120px;
    height: auto;
    border-radius: 5px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #34495E;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.footer-social h6 {
    margin: 0 !important;
}

.footer-payment h6,
.footer-social h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.payment-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-logos img {
    height: 40px;
    width: auto;
    background: var(--white);
    padding: 5px;
    border-radius: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--primary-pink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-pink-dark);
    transform: translateY(-3px);
}

.copyright {
    color: #BDC3C7;
    font-size: 14px;
    margin: 0;
}

.hero-content {
    position: relative;
    z-index: 9;
}

.hero-banner {
    justify-content: end;
}

.product-card .product-actions {
    display: flex;
    gap: 10px;
    padding: 0 15px 15px;
    margin-top: auto;
    flex-direction: row;
}

.product-card .btn-add-cart {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100% !important;
    margin: 0 !important;
    background: var(--primary-pink);
    border: none;
    color: var(--white);
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    position: static;
}

.product-card .btn-wishlist {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--bg-light);
    width: 100% !important;
    border: 2px solid #E0E0E0;
    color: var(--text-light);
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    position: static;
}


/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet Styles */
@media (max-width: 992px) {
    .hero-banner h2 {
        font-size: 24px;
    }

    .hero-banner h3 {
        font-size: 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .nav-menu {
        justify-content: center;
    }

    .nav-menu li {
        flex: none;
    }

    .owl-carousel .owl-nav {
        display: none;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 10px;
    }

    .logo-text {
        font-size: 24px;
    }

    .header-actions {
        justify-content: end;
        margin-top: 15px;
    }

    .header-dropdown .dropdown-menu {
        min-width: 280px;
        max-width: 90vw;
    }

    .cart-dropdown {
        min-width: 300px;
        max-width: 90vw;
    }

    .delivery-text {
        text-align: center;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-hover);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        border-bottom: 1px solid #E0E0E0;
        border-left: 3px solid transparent;
    }

    .nav-menu li a:hover {
        border-left-color: var(--primary-pink);
    }

    .main-header {
        padding: 10px 0;
    }

    .search-bar {
        width: 96%;
        margin: auto;
    }

    .auth-card {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .product-image {
        height: 160px;
    }

    .gifts-cheers {
        padding: 10px;
    }

    .product-card h5 {
        font-size: 13px;
        padding: 10px 10px 0;
        line-height: 1.3;
        min-height: 44px;
    }

    .product-carousel .owl-dots {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .product-price {
        font-size: 14px;
        padding: 5px 10px;
    }

    .btn-add-cart,
    .product-card .btn-wishlist {
        padding: 8px !important;
        font-size: 13px;
    }

    .product-rating {
        padding: 0 10px;
        font-size: 11px;
    }

    .product-actions {
        padding: 0 10px 10px;
    }

    .badge-count {
        width: 15px;
        height: 15px;
        font-size: 9px;
    }

    .delivery-dropdown-location span {
        font-size: 11px;
    }

    .logo img {
        margin-left: 0;
        width: 150px;
    }
}

.btn-outline-secondary {
    border-radius: 30px;
}

.cart-dropdown .btn-outline-danger {
    border-radius: 30px;
}

.hero-banner {
    min-height: 300px;
    margin-bottom: 20px;
}

/* Share Button for Product Card */
.btn-share-card {
    background: var(--bg-light);
    border: 2px solid #E0E0E0;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-share-card:hover {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
    transform: scale(1.05);
}

.btn-share-card i {
    font-size: 16px;
}


.hero-banner h2 {
    font-size: 20px;
}

.hero-banner h3 {
    font-size: 18px;
}

.section-header h2 {
    font-size: 24px;
}

.trending-nav {
    gap: 10px;
}

.trending-nav li a {
    padding: 6px 15px;
    font-size: 14px;
}

.nav-tabs .nav-link {
    padding: 6px 15px;
    font-size: 14px;
    margin: 0 3px;
}

.premium-content h2 {
    font-size: 24px;
}

.footer-bottom {
    text-align: center;
}

.footer-social {
    margin-top: 20px;
}

.social-icons {
    justify-content: center;
}
}

@media (max-width: 576px) {
    .category-card {
        padding: 20px 15px;
    }

    .category-icon {
        font-size: 36px;
    }

    .category-card h4 {
        font-size: 14px;
    }

    .product-image {
        height: 200px;
    }

    .categorized-image,
    .flower-image {
        height: 200px;
    }

    .promo-banner {
        min-height: 200px;
        padding: 30px 20px;
    }

    .promo-banner h3 {
        font-size: 18px;
    }

    .hero-banner-center .hero-content {
        padding: 0 !important;
    }

    .header-dropdown .dropdown-menu {
        min-width: 250px;
    }

    .cart-dropdown {
        min-width: 280px;
    }
}