/* [GLOBAL THEME - ROYAL WEDDING] */
:root {
    --primary-gold: #c5a059;
   --primary-dark: #C21E56;
    --text-dark: #333;
    --bg-light: #fdfdfd;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* [NAVBAR STYLES] */
.navbar-royal {
   background-color: var(--primary-dark);
    border-bottom: 3px solid var(--primary-gold);
    padding: 5px 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    color: #ffffff !important;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    padding: 5px 15px !important;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary-gold) !important;
}

/* [MEGA MENU] */
.dropdown-menu.mega-menu {
    width: 100%;
    border-radius: 0;
    border: none;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 20px;
    background: #fff;
    margin-top: 0;
}

.mega-menu-header {
    color: var(--primary-dark);
    font-weight: 700;
    border-bottom: 2px solid var(--primary-gold);
    display: inline-block;
    margin-bottom: 10px;
    text-decoration: none;
}

.mega-menu-item {
    display: block;
    color: #666;
    text-decoration: none;
    padding: 5px 0;
    transition: 0.2s;
    font-size: 14px;
}

.mega-menu-item:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

/* [HERO SECTION] */
.hero-section {
    background-color: var(--primary-dark);
    color: white;
    padding: 100px 0 140px 0;
    text-align: center;
    position: relative;
}

/* [SEARCH BAR - FLOATING] */
.search-wrapper {
    background: #fff;
    padding: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.search-input-group {
    border: 2px solid #eee;
    border-radius: 50px;
    overflow: hidden;
}

.search-input {
    border: none;
    height: 55px;
    box-shadow: none !important;
}

.search-btn {
    background: var(--primary-dark);
    color: white;
    padding: 0 40px;
    font-weight: 600;
    border: none;
}

.search-btn:hover {
    background: var(--primary-gold);
    color: #000;
}

/* [6 FANCY ANIMATED BUTTONS] */
.cat-btn-card {
    border: none;
    border-radius: 15px;
    text-align: center;
    padding: 20px 10px;
    color: white;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.cat-btn-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.cat-icon {
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
}

.cat-title {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bg-gradient-1 { background: linear-gradient(135deg, #8E0E00, #1F1C18); } 
.bg-gradient-2 { background: linear-gradient(135deg, #D4AF37, #3a3012); } 
.bg-gradient-3 { background: linear-gradient(135deg, #134E5E, #71B280); } 
.bg-gradient-4 { background: linear-gradient(135deg, #4b6cb7, #182848); } 
.bg-gradient-5 { background: linear-gradient(135deg, #834d9b, #d04ed6); } 
.bg-gradient-6 { background: linear-gradient(135deg, #e65c00, #F9D423); } 

/* [ICONS NAV] */
.nav-icon-btn {
    color: var(--primary-dark);
    font-size: 20px;
    margin-left: 15px;
    position: relative;
}
.badge-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--primary-gold);
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
}

/* Feature: Product Card Configuration */
.product-card, .cm-product-card {
    transition: all 0.3s ease-in-out;
    background: #fff;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 0 !important;
    display: block;
}

.product-card:hover, .cm-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.product-card img, .cm-product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 0;
    margin: 0;
    display: block;
    background: #fff;
}

.product-card .card-body, .cm-product-card .card-body {
    padding: 10px 15px !important;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.badge.bg-danger {
    position: absolute;
    overflow: hidden;
}

.badge.bg-danger::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
    animation: shine 2s infinite;
}

.btn-success {
    background-color: #25d366;
    border-color: #25d366;
    font-weight: 500;
}

.btn-success:hover {
    background-color: #128c7e;
    border-color: #128c7e;
}

.cm-product-card a.position-relative {
    padding: 5px !important;
}

.cm-product-card .card-body {
    padding: 10px !important;
}

